* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	    overflow-x: hidden;
}

@font-face {
	font-family: MullerRegular;
	src: url("/news/assets/MullerRegular.ttf");
}

@font-face {
	font-family: MullerBold;
	src: url("/news/assets/MullerBold.ttf");
}

@font-face {
	font-family: MullerMedium;
	src: url("/news/assets/MullerMedium.ttf");
}

@font-face {
	font-family: AvenirNextLTPro;
	src: url("/news/assets/avenirnext.ttf");
}

body {
	background-color: #eaeaea;
	color: #382828;
	font-family: MullerRegular;
	overflow-x: hidden;
}

.news_title h1 {
	font-family: MullerMedium;
}

.news_title h2 {
	font-family: MullerBold;
	font-size: 18px;
}
.citate_blog h2 {
	padding:0 10px;
}

.main_title p {
	font-family: AvenirNextLTPro;
}

.adver_corner_content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.hamburger_menu{
	display:none;
}

@media screen and (max-width: 400px) {
	.adver_corner {
		display: none;
	}

	.hamburger_menu {
		flex-direction: column;
		background-color: #fff;
		height: 450px;
		position: absolute;
		z-index: 5;
		width: 100vw;
		align-items: center;
		box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	}

	.hamburger_hidden {
		height: 0;
		opacity: 0;
		transition: opacity 0.1s ease-out;
	}

	.hamburger_visible {
		display: flex;
		transition: opacity 0.2s ease-out;
		opacity: 1;
		height: 450px;
	}

	@keyframes conditionalOpen {
		from {
			height: 0;
		}

		to {
			transform: scaleY(1);
		}
	}

	@keyframes conditionalClose {
		from {
			transform: scaleY(1);
		}

		to {
			height: 0;
		}
	}

	.hamburger_menu nav {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}

	.hamburger_menu nav a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		padding: 0.8rem;
		color: black;
	}

	.navbar_main {
		width: 100vw;
		height: 5rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3%;
		background-color: #fff;
	}

	.navbar_main__left {
		display: flex;
		align-items: center;
	}

	.navbar_main__left img {
		width: 60%;
		max-width: 100%;
	}

	.navbar_items {
		display: none;
	}

	.navbar_main__right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 1rem;
	}

	.navbar_main__right img {
		width: 90%;
		max-width: 100%;
	}

	.author {
		width: 70%;
	}

	.navbar_items {
		margin-left: 4rem;
	}

	.navbar_items a {
		text-decoration: none;
		color: #382828;
		font-family: AvenirNextLTPro;
		border-right: 2px solid #00bbff;
		padding-right: 0.8rem;
		margin-right: 0.8rem;
		font-weight: 700;
	}
	
	.hamburger {
		display: block;
	}

	.section_main {
		width: 95vw;
		position: relative;
		margin: 2rem auto 0 auto;
		margin-top: 2rem;
		background-color: #fff;
		border-radius: 20px;
	}

	.main_title {
		margin-left: 1.3rem;
		padding-top: 1.3rem;
	}

	.main_title_pic {
		max-height: 150px;
		overflow: hidden;
	}

	.main_title_text {
		font-style: normal;
		font-weight: 700;
		font-size: 22px;
		line-height: 24px;
		padding-right: 1rem;
	}

	.main_title p {
		color: #b3b3b3;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 16px;
		margin-top: 0.5rem;
	}

	.relative_buttons {
		margin-left: 1.4rem;
		margin-top: 0.5rem;
		display: flex;
		align-items: center;
	}

	.relative_buttons a {
		border: 1px solid #0073e6;
		color: #0073e6;
		border-radius: 20px;
		background-color: transparent;
		font-family: AvenirNextLTPro;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		padding: 1px 10px;	
		text-decoration:none;		
	}

	.relative_buttons a:nth-child(2) {
		margin-left: 0.5rem;
	}

	.news_title {
		display: flex;
		flex-direction: column;
		margin-top: 1rem;
	}

	.news_title_text {
		padding: 0 1rem;
		margin-top: 1rem;
	}

	.news_title_text h2 {
		font-size: 20px;
		font-family: MullerRegular;
		line-height: 22px;
		/* font-weight: 500; */
	}

	.news_title_pic img {
		width: 95vw;
		max-width: 100%;
	}

	.details_text_blue_border {
		border-left: 5px solid rgba(0, 187, 255, 0.8);
		width: 90%;
		margin: 1.5rem 1rem 0 1rem;
		padding: 0 1rem;
	}

	.details_text_blue_border p {
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 25px;
	}

	.adver_top {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}

	.adver_top_first {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.adver_top img {
		width: 80%;
		max-width: 100%;
	}

	.adver_sec {
		display: none;
	}

	.adver_inner {
		margin: 0 auto;
	}

	.adver_inner_content {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
	}

	.adver_inner_content img {
		width: 95%;
		max-width: 100%;
	}

	.citate_blog {
		display: flex;
		width: 90%;
		margin: 0 auto;
		padding: 1rem 1rem;
		justify-content: space-evenly;
		align-items: center;
		background-color: #f4f4f4;
		margin-top: 2rem;
		border-radius: 15px;
		text-align: center;
		font-size: 0.8rem;
		font-style: normal;
		font-weight: 500;
	}

	.citate_blog__image {
		display: flex;
	}

	.citate_down {
		width: 15px;
		height: 25px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(59% 0, 100% 0, 71% 100%, 6% 100%);
	}

	.citate_up {
		width: 15px;
		height: 25px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(19% 0, 89% 0, 52% 100%, 4% 100%);
	}	
}

@media screen and (min-width: 400px) and (max-width: 767px) {
	.adver_corner {
		display: none;
	}

	.hamburger_menu {
		flex-direction: column;
		background-color: #fff;
		height: 450px;
		position: absolute;
		z-index: 5;
		width: 100vw;
		align-items: center;
		box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	}

	.hamburger_hidden {
		height: 0;
		opacity: 0;
		transition: opacity 0.1s ease-out;
	}

	.hamburger_visible {
		display: flex;
		transition: opacity 0.2s ease-out;
		opacity: 1;
		height: 450px;
	}

	@keyframes conditionalOpen {
		from {
			height: 0;
		}

		to {
			transform: scaleY(1);
		}
	}

	@keyframes conditionalClose {
		from {
			transform: scaleY(1);
		}

		to {
			height: 0;
		}
	}

	.hamburger_menu nav {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}

	.hamburger_menu nav a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		padding: 0.8rem;
		color: black;
	}

	.navbar_main {
		width: 100vw;
		height: 5rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3%;
		background-color: #fff;
	}

	.navbar_main__left {
		display: flex;
		align-items: center;
	}

	.navbar_main__left img {
		width: 60%;
		max-width: 100%;
	}

	.navbar_items {
		display: none;
	}

	.navbar_main__right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 1rem;
	}

	.navbar_main__right img {
		width: 90%;
		max-width: 100%;
	}

	.author {
		width: 70%;
	}

	.navbar_items {
		margin-left: 4rem;
	}

	.navbar_items a {
		text-decoration: none;
		color: #382828;
		font-family: AvenirNextLTPro;
		border-right: 2px solid #00bbff;
		padding-right: 0.8rem;
		margin-right: 0.8rem;
		font-weight: 700;
	}

	.hamburger {
		display: block;
	}

	.section_main {
		width: 95vw;
		position: relative;
		margin: 2rem auto 0 auto;
		margin-top: 2rem;
		background-color: #fff;
		border-radius: 20px;
	}

	.main_title {
		margin-left: 1.3rem;
		padding-top: 1.3rem;
	}

	.main_title_text {
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		line-height: 26px;
		padding-right: 1rem;
	}

	.main_title p {
		color: #b3b3b3;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 16px;
		margin-top: 1rem;
	}

	.relative_buttons {
		margin-left: 1.4rem;
		padding-top: 1rem;
		display: flex;
		align-items: center;
	}

	.relative_buttons a {
		border: 1px solid #0073e6;
		color: #0073e6;
		border-radius: 20px;
		background-color: transparent;
		font-family: AvenirNextLTPro;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		padding: 1px 10px;
		text-decoration:none;
	}

	.relative_buttons a:nth-child(2) {
		margin-left: 0.5rem;
	}

	.news_title {
		display: flex;
		flex-direction: column;
		margin-top: 1.6rem;
	}

	.news_title_text {
		padding: 0 1rem;
		margin-top: 1rem;
	}

	.news_title_text h2 {
		font-size: 20px;
		font-family: MullerRegular;
		line-height: 22px;
		/* font-weight: 500; */
	}

	.news_title_pic img {
		width: 100vw;
		max-width: 100%;
	}

	.details_text_blue_border {
		border-left: 5px solid rgba(0, 187, 255, 0.8);
		width: 90%;
		margin: 1.5rem 1rem 0 1rem;
		padding: 0 1rem;
	}

	.details_text_blue_border p {
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 25px;
	}

	.adver_top {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}

	.adver_top_first {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.adver_top img {
		width: 80%;
		max-width: 100%;
	}

	.adver_sec {
		display: none;
	}

	.adver_inner {
		margin: 0 auto;
	}

	.adver_inner_content {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
	}

	.adver_inner_content img {
		width: 95%;
		max-width: 100%;
	}

	.citate_blog {
		display: flex;
		width: 90%;
		margin: 0 auto;
		padding: 1rem 1rem;
		justify-content: space-evenly;
		align-items: center;
		background-color: #f4f4f4;
		margin-top: 2rem;
		border-radius: 15px;
		text-align: center;
		font-size: 0.8rem;
		font-style: normal;
		font-weight: 500;
	}

	.citate_blog__image {
		display: flex;
	}

	.citate_down {
		width: 15px;
		height: 25px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(59% 0, 100% 0, 71% 100%, 6% 100%);
	}

	.citate_up {
		width: 15px;
		height: 25px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(19% 0, 89% 0, 52% 100%, 4% 100%);
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.adver_corner {
		display: none;
	}

	.hamburger_menu {
		flex-direction: column;
		background-color: #fff;
		height: 450px;
		position: absolute;
		z-index: 5;
		width: 100vw;
		align-items: center;
		box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	}

	.hamburger_hidden {
		height: 0;
		opacity: 0;
		transition: opacity 0.1s ease-out;
	}

	.hamburger_visible {
		display: flex;
		transition: opacity 0.2s ease-out;
		opacity: 1;
		height: 450px;
	}

	@keyframes conditionalOpen {
		from {
			height: 0;
		}

		to {
			transform: scaleY(1);
		}
	}

	@keyframes conditionalClose {
		from {
			transform: scaleY(1);
		}

		to {
			height: 0;
		}
	}

	.hamburger_menu nav {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}

	.hamburger_menu nav a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		padding: 0.8rem;
		color: black;
	}

	.navbar_main {
		background-color: #fff;
		width: 100vw;
		height: 5rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20%;
	}

	.navbar_main__left {
		display: flex;
		align-items: center;
	}

	.navbar_main__left img {
		width: 60%;
		max-width: 100%;
	}

	.navbar_items {
		font-size: 0.8rem;
	}

	.navbar_main__right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 1rem;
	}

	.navbar_main__right img {
		width: 90%;
		max-width: 100%;
	}

	.author {
		width: 70%;
	}

	.navbar_items {
		display: none;
	}

	.navbar_items a {
		text-decoration: none;
		color: #382828;
		font-family: AvenirNextLTPro;
		border-right: 2px solid #00bbff;
		padding-right: 0.8rem;
		margin-right: 0.8rem;
		font-weight: 700;
	}

	.section_main {
		width: 85vw;
		position: relative;
		margin: 2rem auto 0 auto;
		margin-top: 2rem;
		background-color: #fff;
		border-radius: 20px;
	}

	.hamburger {
		display: block;
	}

	.main_title {
		margin-left: 3rem;
		padding-top: 2rem;
	}

	.main_title_text {
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		line-height: 26px;
		padding-right: 3rem;
	}

	.main_title p {
		color: #b3b3b3;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 16px;
		margin-top: 1rem;
	}

	.relative_buttons {
		margin-left: 3rem;
		padding-top: 1rem;
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	.relative_buttons a {
		border: 1px solid #0073e6;
		color: #0073e6;
		border-radius: 20px;
		background-color: transparent;
		font-family: AvenirNextLTPro;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		padding: 1px 5px;
		text-decoration:none;
	}

	.adver_top {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}

	.adver_top_first {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.adver_top img {
		width: 90%;
		max-width: 100%;
	}

	.adver_sec {
		display: none;
	}

	.news_title {
		display: flex;
		flex-direction: column;
		margin-top: 1.6rem;
	}

	.news_title_text {
		padding: 0 2rem;
		margin-top: 1rem;
	}

	.news_title_text h2 {
		  font-size: 22px;
		font-style: normal;
	}

	.news_title_pic img {
		width: 85vw;
		max-width: 100%;
	}

	.hamburger {
		display: block;
	}

	.adver_inner {
		margin: 0 auto;
	}

	.adver_inner_content {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
	}

	.adver_inner_content img {
		max-width: 100%;
		width: 95%;
	}

	.details_text_blue_border {
		border-left: 5px solid rgba(0, 187, 255, 0.8);
		width: 90%;
		margin: 2rem 3rem 0rem 3rem;
		padding: 0 2rem;
	}

	.details_text_blue_border p {
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 25px;
	}

	.citate_blog {
		display: flex;
		width: 90%;
		margin: 0 auto;
		padding: 1.5rem 2rem;
		justify-content: space-evenly;
		align-items: center;
		background-color: #f4f4f4;
		margin-top: 2rem;
		border-radius: 15px;
		text-align: center;
		font-size: 0.8rem;
		font-style: normal;
		font-weight: 500;
		line-height: 25px;
	}

	.citate_blog__image {
		display: flex;
	}

	.citate_down {
		width: 20px;
		height: 35px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(59% 0, 100% 0, 71% 100%, 6% 100%);
	}

	.citate_up {
		width: 20px;
		height: 35px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(19% 0, 89% 0, 52% 100%, 4% 100%);
	}
}

@media (max-width: 1025px) {
	.news_title_pic {
		max-height: 320px;
		overflow: hidden;
		margin-bottom: 1rem;
		border-radius: 15px;
	}
}

@media (max-width: 450px) {
	.news_title_pic {
		/*max-height: 170px;*/
		border-radius: 0px;
	}
	.adver_in_image{
		bottom: 20px;
		left: 20px;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1500px) {
	.adver_corner {
		display: none;
	}

	.hamburger_menu nav {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}
	.navbar_items {
		display: none;
	}

	.hamburger_menu nav a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		padding: 0.8rem;
		color: black;
	}

	.hamburger_menu {
		flex-direction: column;
		background-color: #fff;
		height: 450px;
		position: absolute;
		z-index: 5;
		width: 100vw;
		align-items: center;
		box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	}

	.hamburger_hidden {
		height: 0;
		opacity: 0;
		transition: opacity 0.1s ease-out;
	}

	.hamburger_visible {
		display: flex;
		transition: opacity 0.2s ease-out;
		opacity: 1;
		height: 450px;
	}

	.adver_corner {
		display: none;
	}

	.navbar_main {
		width: 100vw;
		height: 122px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 15rem;
		background-color: #fff;
		font-size: 0.9rem;
	}

	.navbar_main__left {
		display: flex;
		align-items: center;
	}

	.navbar_main__right {
		display: flex;
		align-items: center;
	}

	.navbar_items {
		margin-left: 3rem;
	}

	.navbar_items a {
		text-decoration: none;
		color: #382828;
		font-family: AvenirNextLTPro;
		border-right: 2px solid #00bbff;
		padding-right: 0.7rem;
		margin-right: 0.7rem;
		font-weight: 700;
	}

	.navbar_items a:last-child {
		border-right: none;
	}

	.hamburger {
		display: block;
	}

	.section_main {
		width: 788px;
		position: relative;
		margin: 2rem auto 0 auto;

		background-color: #fff;
		border-radius: 20px;
	}

	.section_main img {
		max-width: 100%;
	}

	.adver_top {
		display: flex;
		gap: 20px;
		width: 788px;
		position: relative;
		left: 230px;
		margin-top: 2rem;
	}

	.adver_inner {
		margin: 0 auto;
		margin-top: 0rem;
	}

	.adver_inner_content {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		gap: 1rem;
	}

	.adver_inner_content img {
		width: 350px;
		max-width: 100%;
	}

	.main_title {
		margin-left: 2rem;
		padding-top: 2rem;
		padding-left: 1rem;
		padding-right: 2rem;
	}

	.main_title h1 {
		font-style: normal;
		font-weight: 700;
		line-height: 32px;
		font-size: 30px;
	}

	.main_title_text {
	}

	.main_title p {
		color: #b3b3b3;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 16px;
		margin-top: 1rem;
	}

	.relative_buttons {
		margin-left: 3rem;
		padding-top: 1rem;
		padding-bottom: 1.3rem;
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	.relative_buttons a {
		border: 1px solid #0073e6;
		color: #0073e6;
		border-radius: 20px;
		background-color: transparent;
		font-family: AvenirNextLTPro;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		padding: 1px 5px;
		text-decoration:none;
	}

	.news_title {
		display: flex;
		flex-direction: column;
		margin-top: 1.6rem;
	}

	.news_title_text {
		padding: 0 3rem;
		margin-top: 0.5rem;
	}

	.news_title_pic {
		max-height: 320px;
		overflow: hidden;
		margin-bottom: 1rem;
		border-radius: 15px;
	}

	.news_title_text h2 {
		font-size: 24px;
		font-style: normal;
		line-height: 28px;
	}

	.details_text_blue_border {
		border-left: 5px solid rgba(0, 187, 255, 0.8);
		width: 90%;
		margin: 2rem 3rem 0rem 3rem;
		padding: 0 1.2rem;
	}

	.details_text_blue_border p {
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 25px;
	}

	.citate_blog {
		display: flex;
		width: 90%;
		margin: 0 auto;
		padding: 1.5rem 2rem;
		justify-content: space-evenly;
		align-items: center;
		background-color: #f4f4f4;
		margin-top: 2rem;
		border-radius: 15px;
		text-align: center;
		font-size: 0.8rem;
		font-style: normal;
		font-weight: 500;
		line-height: 25px;
	}

	.citate_blog__image {
		display: flex;
	}

	.citate_down {
		width: 20px;
		height: 35px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(59% 0, 100% 0, 71% 100%, 6% 100%);
	}

	.citate_up {
		width: 20px;
		height: 35px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(19% 0, 89% 0, 52% 100%, 4% 100%);
	}
}

@media screen and (min-width: 1501px) {
	.hamburger_menu {
		display: none;
	}

	.navbar_main {
		width: 100vw;
		height: 122px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 15rem;
		background-color: #fff;
		font-size: 0.9rem;
	}

	.navbar_main__left {
		display: flex;
		align-items: center;
	}

	.navbar_main__right {
		display: flex;
		align-items: center;
	}

	.navbar_items {
		margin-left: 3rem;
	}

	.navbar_items a {
		text-decoration: none;
		color: #382828;
		font-family: AvenirNextLTPro;
		border-right: 2px solid #00bbff;
		padding-right: 0.8rem;
		margin-right: 0.8rem;
		font-weight: 700;
		font-size: 1.1rem;
	}

	.navbar_items a:last-child {
		border-right: none;
	}

	.hamburger {
		display: none;
	}

	.section_main {
		width: 788px;
		position: relative;
		left: 230px;

		margin-top: 2rem;
		background-color: #fff;
		border-radius: 20px;
	}

	.section_main img {
		border-radius: 15px;
		max-width: 100%;
	}

	.adver_top {
		display: flex;
		gap: 20px;
		width: 788px;
		position: relative;
		left: 230px;
		margin-top: 2rem;
	}

	.adver_inner {
		margin: 0 auto;
		margin-top: 0rem;
	}

	.adver_inner_content {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		gap: 1rem;
	}

	.adver_inner_content img {
		width: 350px;
		max-width: 100%;
	}

	.main_title {
		margin-left: 3rem;
		padding-top: 3rem;
		padding-right: 1rem;
	}

	.main_title h1 {
		font-style: normal;
		font-weight: 700;
		line-height: 32px;
		font-size: 30px;
	}

	.main_title_text {
	}

	.main_title p {
		color: #b3b3b3;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 16px;
		margin-top: 1rem;
	}

	.relative_buttons {
		margin-left: 3rem;
		padding-top: 1rem;
		padding-bottom: 1.3rem;
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	.relative_buttons a {
		border: 1px solid #0073e6;
		color: #0073e6;
		border-radius: 20px;
		background-color: transparent;
		font-family: AvenirNextLTPro;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		padding: 1px 10px;
		text-decoration:none;
	}

	.news_title {
		display: flex;
		flex-direction: column;
		margin-top: 1.6rem;
	}

	.news_title_text {
		padding: 0 3rem;
		margin-top: 0.5rem;
	}

	.news_title_pic {
		margin-bottom: 1rem;
	}

	.news_title_text h2 {
		font-size: 24px;
		font-style: normal;
		line-height: 28px;
		font-family: MullerRegular;
	}

	.details_text_blue_border {
		border-left: 5px solid rgba(0, 187, 255, 0.8);
		width: 90%;
		margin: 2rem 3rem 0rem 3rem;
		padding: 0 1.2rem;
	}

	.details_text_blue_border p {
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 25px;
	}

	.citate_blog {
		display: flex;
		width: 90%;
		margin: 0 auto;
		padding: 1.5rem 2rem;
		justify-content: space-evenly;
		align-items: center;
		background-color: #f4f4f4;
		margin-top: 2rem;
		border-radius: 15px;
		text-align: center;
		font-size: 0.8rem;
		font-style: normal;
		font-weight: 500;
		line-height: 25px;
	}

	.citate_blog__image {
		display: flex;
	}

	.citate_down {
		width: 20px;
		height: 35px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(59% 0, 100% 0, 71% 100%, 6% 100%);
	}

	.citate_up {
		width: 20px;
		height: 35px;
		background-color: rgba(0, 187, 255, 0.8);
		clip-path: polygon(19% 0, 89% 0, 52% 100%, 4% 100%);
	}

	.adver_corner {
		position: fixed;
		left: 1050px;
		top: 150px;
	}

	.adver_corner img {
		width: auto;
		max-width: 100%;
	}
}

.post__meta{
	display:none;
}

.section_main img{
	height:auto;
}

.news_title_pic{
	position:relative;
}

.news_title_pic_post{
	margin-top:2rem;
	margin-bottom:0rem;
}

.news_title{
	padding-bottom:2rem;
}
.adver_in_image{
	position:absolute;
	bottom:30px;
	left:40px;
	padding:5px 15px;
	background:rgba(0, 115, 230, 1);
	border-radius:20px;
	color:#fff;
	font-size:12px;
	font-weight:500;
}
.news_link_pic{
	margin-top:30px;
	border-radius:15px;
	margin-bottom:-30px;
	position:relative;
}
.news_link_pic:last-child{
	margin-top:60px;
}
.news_link_pic img{
	border-radius:15px;
	max-width:100%;
	height:auto;
}

.news_link_pic .link-desc {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 100px 30px 65px;
	border-radius:0 0 15px 15px;
    text-shadow: 0 0 2px rgb(0 0 0 / 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.news_link_pic .link-desc span{
	display:block;
}

.news_link_pic .link-desc .link-desc-title{
	margin-bottom:10px;
	font-size:28px;
    font-weight: 700;
    line-height: 30px;
}
.news_link_pic .link-desc .link-desc-preview{
	font-size: 18px;
}

.news_link_pic .link-desc .more-link{
    position: absolute;
    bottom: 25px;
    left: 30px;
    padding: 5px 15px;
    background: rgba(0, 115, 230, 1);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.author-post{
	font-weight:400;
	font:12px/14px Arial;
}

@media screen and (max-width: 600px) {
	.news_link_pic .link-desc .link-desc-preview{
		font-size: 16px;
	}
	.news_link_pic .link-desc .link-desc-title{
		font-size:22px;
		line-height: 24px;
	}
	.news_link_pic .link-desc .more-link{
		font-size:12px;
	}
	.news_link_pic .link-desc{
		padding: 20px 20px 65px; 
	}
}

@media screen and (max-width: 500px) {
	.news_link_pic .link-desc .link-desc-preview{
		display:none;
	}
	.news_link_pic .link-desc .link-desc-title{
		margin-bottom:0;
		font-size:18px;
		line-height: 20px;
	}
}

.fixed{
	top:10px;
}

.ya-sitebar,.grid-box4 .b1{
	width:300px;
	max-height:300px;
}

.grid-box4 .b1{
	margin:30px 10px 0 10px;
	max-height:300px;
}

.grid-box4 {
    flex-wrap: wrap;
    /* -webkit-flex-wrap: wrap; */
    -ms-flex-wrap: wrap;
}
.grid-box4 {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content:center;
    -webkit-justify-content: center;
}

#rlBl2,#rlBl3{
	margin-top:10px;
}


/*LD*/

.adver_corner{
	position:absolute !important;
	top:0px !important;
	left:850px !important;
}
.container {
    width: 100%;
    max-width: 1250px;
    left: 180px;
    position: relative;
}
.grid-box3 {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.grid-box3 {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
#loader{
  margin-top:55px; 
}
#loader,.grid{
  font-family:Arial, sans-serif;
}
#loader a{
	color:#000;
	text-decoration:none;
}
#loader .b-box-new-preview .b-heading {
    font-size: 18px;
}
#loader .b-news-annotation,#loader .b-heading {
    -webkit-line-clamp: 2;
}
#loader .b-box-new-preview .b-news-annotation, #loader .b-box-new-preview .b-heading,.grid .b-heading__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: auto;
}
.grid .b-heading__text{
	font-weight: 600;
    padding: 10px 10px;
    color: #000;
	-webkit-line-clamp: 2;
	line-height:20px;
	height:50px;
	text-decoration:none;
}
#loader .b-box-new-preview .b-heading {
    font-weight: 600;
    font-size: 14px;
}
#loader .b-box-new-preview .b-news-annotation {
    margin: 10px 0 5px 0;
    font-size: 14px;
    line-height: 18px;
}
#loader .b-box-new-preview {
    position: relative;
    background: #fff;
    padding: 15px;
    width: 250px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 1px rgb(0 0 0 / 5%);
    min-height: 216px;
	border-radius:10px;
}
#loader .b-box-new-advs{
  background:#fff;	
  padding:10px;	
}
#loader .b-thumbnail .b-box-new-preview__image {
  height: auto;
}
#loader .b-news-annotation{
    -webkit-line-clamp: 2;
}
#loader .b-box-post{
  margin-bottom:55px;	
}
#loader .b-box-new-advs{
  height:auto;	
  min-height: 250px;
}
#loader .b-box-new-preview{
	width:32%;
	margin-bottom:25px;
	height:325px;
}
#loader .b-thumbnail { 
	max-height: 200px;
}
#loader .gnezdo_used {m
	argin-top:-20px !important;
}	
#loader .b-box-new-preview .b-heading {
	font-size: 18px;
}
#loader .b-box-new-preview .b-news-outlet,.grid .b-news-outlet {
    position: absolute;
    left:15px;
	bottom:15px;
    padding: 5px 15px;
    background: rgba(0, 115, 230, 1);
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    z-index: 1;
}
.grid .b-news-outlet {
	bottom:auto;
	top:20px;
}
#loader .b-link,.grid .b-box-new-preview{
	position:relative
}
#loader .b-thumbnail {
	position:relative;
    max-height: 180px;
	margin-bottom:20px;
	border-radius:10px;
    overflow: hidden;
}
#loader .b-thumbnail img{
	width:100%;
	height:auto;
}
#loader .b-thumbnail:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}
#loader .b-thumbnail:before {
    background: linear-gradient(359.62deg, rgba(48, 54, 63, 0.81) 0.81%, rgba(0, 0, 0, 0) 35.58%);
}

@media (max-width: 1500px) {
	.container{
		left:auto;
		margin:0 auto;
	}
}

@media (max-width: 1170px) {
	#loader .b-thumbnail { max-height: 190px;}
}
@media (max-width: 1000px) {
	#loader .b-box-new-preview,.b1{width:49%;}.b1{max-width:450px;height:310px;}
	#loader .smi24__auto{max-height:295px;overflow:hidden;}
}
@media (max-width: 700px) {
	#loader .b-box-new-preview,.b1{width:100%;margin-left:auto;margin-right:auto;max-width:550px;}.b1{height:auto;min-height:250px;}	
	#loader .gnezdo_used {margin-bottom: -20px !important;}
	#loader .b-box-new-preview{height:auto;}
}
@media (max-width: 450px) {
	#loader .b-box-new-preview .b-heading {font-size: 18px;}
	.video_box iframe{
		min-height:210px;
		height:210px;
	}
}

.nlc-ads-side-content .it-grid-news {
    margin-bottom: 20px;
    width: 345px;
}

.nlc-ads-block .it-grid-news {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
}

@media only screen and (min-width: 800px) {
	.nlc-ads-block .it-grid-news {
		width: 360px;
		height: 200px;
	}
	.video_box iframe{
		min-height:445px;
	}
}

.yandex_title{
    font-weight: 500;
    margin: 15px 0 0 0;
    font-size: 18px;
    line-height: 24px;
}
.video_box{
	margin:30px 0;
}

.navbar_items a:last-child,	.hamburger_menu nav a:last-child{
	color:rgba(0, 115, 230, 1);
}
@media only screen and (max-width: 1890px) {
	.navbar_items a:nth-child(5),.navbar_items a:nth-child(6){
		display:none;
	}
}
@media only screen and (max-width: 1500px) {
	.navbar_items a:nth-child(5),.navbar_items a:nth-child(6){
		display:block;
	}
}