@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--background: #ffffff;
	--color-1: #A48858;
	--color-text: #4D4D4D;
}

html,
body {
	font-family: 'Jost';
	font-style: normal;
	background: var(--background);
}



button {
	border: none;
}
button:hover {
	
}

a,
a:focus,
a:active,
a:hover {
	
}
img {
	max-width: 100%;
}


/*  Container  */

.container_xl {
	width: 100%;
	max-width: 1700px;
	margin-left: auto;
	margin-right: auto; 
}
.container_md {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.content {
	overflow-x: hidden;
	background: var(--background);
	min-height: 50vh;
}

@media(max-width: 1700px){
	.container_xl {
		padding: 0 1rem;
	}
}
@media(max-width: 1200px){
	.container_md {
		padding: 0 1rem;
	}
}


/*  Container end  */


/*  Header  */

.header {
	background: #fff;
	position: relative;
	height: 108px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
}
.header.overflow {
	overflow: visible;
}
@media(max-width:1200px){
	.header.overflow {
		overflow: hidden;
	}
}
@media(max-width:525px){
	.header {
		overflow: visible !important;
	}
}
.header_lang_block {
	position: absolute;
	right: 6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
    top: calc(50% - 12px);
}

.header_lang_block .nice-select,
.header_lang_block .nice-select:active, 
.header_lang_block .nice-select.open, 
.header_lang_block .nice-select:focus {
	border: none;
}
.header_lang_block .nice-select {
	height: 25px;
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: #2C3E69;
	padding-left: 7px;
    padding-right: 23px;
}
.header_lang_block .nice-select:after {
	border: none;
	width: 7px;
	height: 4px;
	background: no-repeat url(../images/icons/arrow_down.svg);
	top: auto;
	bottom: 7px;
	margin-top: 0;
	transform: none;
}
.header_lang_block .nice-select:active:after,
.header_lang_block .nice-select.open:after {
	transform: rotate(180deg);
}

.header_block {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}
.header_logo_block {
	cursor: pointer;
}
.header_call_block {
	
}
.header_call_block button {
	width: 194px;
	height: 40px;
	background: #2C3E69;
	border-radius: 200px;
	border: none;
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: #FFFFFF;
	cursor: pointer;
}
.header_call_block button:hover {
	background: #3C5080;
}
.header_call_block button svg {
	margin-right: 10px;
}

.header_menu_block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
}
.header_menu_line {
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: var(--color-text);
	margin-right: 2.5rem;
	cursor: pointer;
}
.header_menu_line:hover {
	color: #2C3E69;
}
.header_menu_line:last-child {
	margin-right: 0;
}

.header_menu_select {
	position: relative;
}
.header_menu_select_switch {
	
}
.header_menu_select:after {
	position: absolute;
	content: '';
	width: 7px;
	height: 4px;
	background: no-repeat url(../images/icons/arrow_down.svg);
	bottom: 6px;
    right: -16px;
    transition-duration: 300ms;
}
.header_menu_select:hover:after,
.header_menu_select.active:after {
	transform: rotate(180deg);
}
.header_menu_select_block {
	position: absolute;
	background: #fff;
	z-index: 1;
    left: -20px;
    padding: 0px;
    max-height: 0;
    overflow: hidden;
    transition-duration: 300ms;
    color: var(--color-text);
    
}
.header_menu_select:hover .header_menu_select_block,
.header_menu_select_block.active{
	padding: 20px 0px 15px 0px;
	max-height: none;
	border-bottom: solid thin var(--color-text);
}
.header_menu_select_line {
	margin-bottom: 10px;
	line-height: 20px;
	padding: 0 20px;
}
.header_menu_select_line:hover {
	color: #2C3E69;
}
.header_mobile_switch {
	display: none;
}
.header_mobile {
	display: none;
}
@media(max-width: 1600px){
	.header_lang_block {
		right: 4rem;
	}
}
@media(max-width: 1500px){
	.header_call_block {
		margin-right: 3rem;
	}
}
@media(max-width: 1400px){
	.header_call_block {
		margin-right: 4rem;
	}
	.header_lang_block {
		right: 2rem;
	}
}
@media(max-width: 1300px){
	.header_lang_block {
		right: 1rem;
	}
	.header_call_block {
		margin-right: 5rem;
	}
}
@media(max-width: 1250px){
	.header_call_block {
		margin-right: 6rem;
	}
}
@media(max-width: 1200px){
	.header_call_block {
		margin-right: 6rem;
	}
	.header_lang_block {
		display: none;
	}
	.header_menu_block {
		display: none;
	}
	.header_mobile_switch {
		display: block;
		position: absolute;
		right: 3rem;
    	top: calc(50% - 12px);
	}
	.header_mobile_switch svg g {
		fill: #2C3E69;
	}
	.header_mobile {
		display: block;
		background: #fff;
		width: 100%;
		max-width: 0;
		overflow: hidden;
		position: absolute;
    	z-index: 3;
    	top: 108px;
    	right: -597px;
    	transition-duration: 300ms;
    	/* border-top: solid thin var(--color-text); */
    	border-left: solid thin var(--color-text);
    	border-bottom: solid thin var(--color-text);
	}
	.header_mobile.active {
		top: 108px;
		right: 0;
		max-width: 597px;
		overflow: visible;
	}
	.header_mobile .header_menu_block {
		display: flex;
		flex-direction: column;
		-webkit-box-align: start;
    	-ms-flex-align: start;
    	align-items: flex-start;
    	margin-top: 1rem;
    	margin-bottom: 1rem;
	}
	.header_mobile .header_lang_block {
		display: flex;
		position: relative;
		right: 0;
		margin-left: 2.5rem;
		margin-bottom: 2.5rem;
	}
	.header_menu_line {
		margin-left: 2.5rem;
		margin-bottom: 0.5rem;
	}
	.header_menu_select_block {
		position: relative;
	}
	.header_menu_select_block.hide {
		display: none;
	}
	.header_menu_select:after {
		top: 20px;
    	left: 69px;
	}
	.header_menu_select:after {
		display: none;
	}
	.header_menu_select_block{
		padding: 10px 0px 15px 0px;
		max-height: none;
		border-bottom: none;
	}
	.header_menu_select:hover .header_menu_select_block,
	.header_menu_select_block.active {
		padding: 10px 0px 15px 0px;
		border-bottom: none;
	}
	.header_menu_select_line {
		padding: 0 35px;
	}
	.header_menu_select_switch {
		position: relative;
	}
	.header_menu_select_switch span {
		position: absolute;
		content: '';
		width: 11px;
    	height: 6px;
    	background: no-repeat url(../images/icons/arrow_down.svg);
    	background-size: 100%;
    	left: -20px;
    	bottom: 6px;
    	transition-duration: 300ms;
	}
}
@media(max-width: 625px){
	.header_mobile {
		border-left: none;
		border-bottom: none;
	}
}
@media(max-width: 525px){
	.header_block {
		flex-direction: column;
		padding: 1rem 0;
		-webkit-box-align: start;
    	-ms-flex-align: start;
    	align-items: flex-start;
	}
	.header_call_block {
		margin-right: 0;
		margin-top: 10px;
	}
	.header {
		height: 148px;
	}
	.header_mobile_switch {
		right: 1rem;
	}
	.header_lang_block {
		display: flex;
		right: 2.5rem;
	}
	.header_mobile  .header_lang_block {
		display: none;
	}
	.header_mobile.active {
		top: 148px;
	}	
}
/*  Header end  */



/*  Footer  */

.footer {
	
}
.footer_top_block {
	background: #2A2A2A;
	padding: 4rem 0;
}
.footer_top_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}

.footer_logo_block {
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	color: #FFFFFF;
}
.footer_logo {
	margin-bottom: 3rem;
}
.footer_logo_address {
	max-width: 220px;
	margin-bottom: 1rem;
}
.footer_logo_email {
	margin-bottom: 1rem;
}
.footer_logo_phone {
	
}
.footer_services_header {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 1rem 0;
}

.footer_services_data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
}

.footer_services_line {
	font-weight: 300;
	font-size: 15px;
	line-height: 150%;
	text-decoration-line: underline;
	color: rgba(255, 255, 255, 0.8);
	width: 221px;
	margin-bottom: 1rem;
	cursor: pointer;
}
.footer_services_line:hover {
	text-decoration-line: none;
	color: rgba(255, 255, 255, 1);
}
.footer_services_left {
	
}
.footer_services_right {
	margin-left: 80px;
}

.footer_info_block {
	
}
.footer_info_header {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 1rem 0;
}
.footer_info_line {
	font-weight: 300;
	font-size: 15px;
	line-height: 170%;
	text-decoration-line: underline;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
	cursor: pointer;
}
.footer_info_line:hover {
	text-decoration-line: none;
	color: rgba(255, 255, 255, 1);
}
.footer_bottom_block {
	/* height: 195px; */
	height: 95px;
}
.footer_copyright {
	margin-top: 1rem;
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: #252525;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
}
.footer_copyright svg {
	margin-left: 1rem;
}
.scroll_top {
	cursor: pointer;
	position: fixed;
	right: 6rem;
	bottom: 8rem;
	z-index: 8;
}
@media(max-width: 1000px) {
	.footer_services_right {
		margin-left: 40px;
	}
}
@media(max-width: 875px) {
	.footer_top_flex {
		flex-direction: column;
		-webkit-box-align: center;
    	-ms-flex-align: center;
    	align-items: center;
	}
	.footer_info_block {
		width: 220px;
	}
	.footer_services_data {
		flex-direction: column;
	}
	.footer_services_right {
		margin-left: 0px;
	}
	.scroll_top {
		right: 4rem;
	}
}
@media(max-width: 475px) {
	.scroll_top {
		right: 2rem;
	}
}
/*  Footer end  */

/*  Main  */

.slider_block {
	position: relative;
}
.main_slider {
	
}
.main_slide {
	width: 100%;
	height: auto !important;
	position: relative;
}
.main_slide_block {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main_slide_data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: center;
	-ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.main_slide_sub_title {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 870px;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.main_slide_title {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 40px;
	line-height: 49px;
	color: #FFFFFF;
	max-width: 870px;
	margin-bottom: 2rem;
}
.main_slide_text {
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: #FFFFFF;
	max-width: 880px;
	margin-bottom: 3rem;
}
.main_slide_btn {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFFFFF;
}
.main_slide_btn a {
	cursor: pointer;
}
.main_slide_btn span {
	padding-top: 10px;
}
.main_slide_btn span:hover {
	border-top: solid 2px #FFFFFF;
}
.main_slide_btn svg {
	margin-left: 0.5rem;
}
.main_slider_dots {
	position: absolute;
	bottom: 2rem;
}
.main_slider_dots_block .slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}
.main_slider_dots_block .slick-dots li {
	display: block;
	margin-right: 14px;
}
.main_slider_dots_block .slick-dots li button {
	font-size: 2px;
	line-height: 2px;
	width: 8px;
	height: 8px;
	padding: 0;
	background: #FFFFFF;
	border-radius: 50px;
	border: none;
	opacity: 0.5;
	cursor: pointer;
}
.main_slider_dots_block .slick-dots li.slick-active button {
	opacity: 1;
	cursor: default;
}
.main_slider_arrows_block {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 0 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}
.main_slider_arrows_block button {
	margin-top: -4.3rem;
	border: none;
	background: none;
	cursor: pointer;
}

.main_sub_header {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #D72229;
	margin-bottom: 0.5rem;
}
.main_header {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 40px;
	line-height: 49px;
	color: #000000;
	position: relative;
}
.main_more {
	position: absolute;
	right: 0;
	top: 0.3rem;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
    -ms-flex-align: end;
	align-items: flex-end;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
}
.main_more_text {
	border-top: solid 2px #2C3E69;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2C3E69;
	padding-top: 0.8rem;
	cursor: pointer;
}
.main_more_arrow {
	margin-left: 1rem;
	padding-bottom: 0.3rem;
	cursor: pointer;
}
.main_more:hover .main_more_text {
	border-top: solid 2px rgba(0,0,0,0);
}
.main_about_block {
	margin-top: 5rem;
	margin-bottom: 7rem;
}
.main_about_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}
.main_about_left {
	max-width: 597px;
}
.main_about_right {
	position: relative;
}
.main_about_right:before {
	content: '';
	position: absolute;
	width: 392px;
	height: 100%;
	background: no-repeat url(../images/main/w.png);
	z-index: 0;
	right: -8rem;
}
.main_about_right img {
	position: relative;
	margin: 0 auto;
	border-radius: 50px;
	z-index: 1;
}
.main_about_text {
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	color: #000000;
	margin-top: 2.5rem;
}
.main_about_text p {
	margin-bottom: 1.5rem;
}
.main_about_btn {
	margin-top: 4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
    -ms-flex-align: end;
	align-items: flex-end;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
}
.main_about_btn_text {
	padding-top: 1rem;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2C3E69;
	margin-right: 1rem;
	border-top: solid 2px #2C3E69;
	cursor: pointer;
}
.main_about_arrow {
	margin-bottom: 0.3rem;
	cursor: pointer;
}
.main_about_btn:hover .main_about_btn_text {
	border-top: solid 2px rgba(0,0,0,0);
}
.main_about_avantages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    
    margin-top: 4rem;
}
.main_about_avantage_block {
	max-width: 180px;
}
.main_about_avantage_img {
	width: 102px;
	height: 102px;
	border-radius: 50px;
	background: #F4F6FA;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-around;
    
    margin: 0 auto;
}
.main_about_avantage_img img {
	
}
.main_about_avantage_img span {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000000;
	white-space: nowrap;
}
.main_about_avantage_text {
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #2B2B2B;
	margin-top: 1rem;
}
.main_services_faq {
	background: #F4F6FA;
	padding: 5rem 0;
}
.main_services_list_block {
	margin-top: 3rem;
	margin-bottom: 6rem;
}
.main_services_list_block .bx-wrapper {
	background: none;
}
.main_services_list {
	
	
	/* display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between; */
}
.main_service_block {
	position: relative;
	width: 285px;
	height: 361px;
	border-radius: 6px;
	padding: 2.5rem 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: end;
	-ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: 5rem;
    transition-duration: 300ms;
    cursor: pointer;
}

.main_service_text {
	font-weight: 600;
	font-size: 19px;
	line-height: 120%;
	color: #FFFFFF;
	z-index: 2;
	height: 45px;
}
.main_service_more {
	width: 148px;
	height: 40px;
	border: 1px solid #FFFFFF;
	background: #FFFFFF;
	border-radius: 200px;
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: #2C3E69;
	border: none;
	margin-top: 2.3rem;
	margin-bottom: -5rem;
	z-index: 2;
	transition-duration: 300ms;
	cursor: pointer;
}
.main_service_more:hover {
	background: none;
	border: 1px solid #FFFFFF;
	border-radius: 200px;
	color: #FFFFFF;
}
.main_shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 1;
	opacity: 0;
	transition-duration: 300ms;
}
.main_service_block.active,
.main_service_block:hover {
	margin-bottom: 0;
}
.main_service_block.active .main_shadow,
.main_service_block:hover .main_shadow {
	opacity: 0.25;
}
.main_service_block.active .main_service_more,
.main_service_block:hover .main_service_more {
	margin-top: 2rem;
	margin-bottom: 0rem;
}

.main_faq {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}

.main_faq_left {
	padding-top: 1rem;
}
.main_faq_right {
	
}
.main_faq_right_block {
	background: #2C3E69;
	border-radius: 6px;
	padding: 2.5rem 3rem;
	width: 590px;
}
.main_faq_line {
	position: relative;
	padding: 1.5rem 0;
	/* padding-right: 3rem; */
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.main_faq_line:last-child {
	border-bottom: none;
}
.main_faq_line_header {
	font-weight: 500;
	font-size: 20px;
	line-height: 29px;
	color: #FFFFFF;
	margin-bottom: 1rem;
	cursor: pointer;
	padding-right: 3rem;
}
.main_faq_line_header:hover {
	opacity: 0.8;
}
.main_faq_line_text {
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	color: #FFFFFF;
	max-height: auto;
	overflow-y: hidden;
	transition-property: max-height; 
	transition-duration: 300ms;
	padding-right: 3rem;
}
.main_faq_line:after {
	content: '';
	position: absolute;
	position: absolute;
	width: 14px;
	height: 2px;
	background: #F4F6FA;
	right: 0rem;
	top: 2.5rem;
}
.main_faq_line.hide:before {
	content: '';
	position: absolute;
	position: absolute;
	width: 14px;
	height: 2px;
	background: #F4F6FA;
	right: 0rem;
	top: 2.5rem;
	transform: rotate(90deg);
}
.main_faq_line.hide .main_faq_line_header {
	margin-bottom: 0;
}
.main_faq_line.hide .main_faq_line_text {
	max-height: 0;
}
.main_faq_left_text {
	margin-top: 2rem;
	max-width: 473px;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #1D1D1D;
}
.main_faq_left .main_about_btn {
	margin-top: 4.7rem;
}

.main_news_block {
	padding: 5rem 0;
	margin-bottom: 2rem;
}
.main_news_flex {
	margin-top: 4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}

.main_news_left {
	max-width: 590px;
	position: relative;
}
.main_news_left_text_block {
	width: 90%;
	max-width: 488px;
	background: #fff;
	position: absolute;
	padding: 2.5rem 2rem;
	bottom: 5rem;
	left: 0;
}
.main_news_left_data {
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #808080;
	margin-bottom: 1rem;
}
.main_news_left_text {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	cursor: pointer;
}
.main_news_left_text:hover {
	color: #2C3E69;
}
.main_news_right {
	height: 590px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}
.main_news_right_line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: start;
	-ms-flex-pack: start;
    justify-content: flex-start;
}
.main_news_right_img {
	max-width: 285px;
}
.main_news_right_data {
	width: 269px;
	margin-left: 36px;
}

.main_news_date_block {
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #808080;
	margin-bottom: 1rem
}
.main_news_title {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 1rem;
	cursor: pointer;
}
.main_news_title:hover {
	color: #2C3E69;
}
.main_news_text {
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	color: #000000;
}
@media(max-width:1400px){
	.main_slider_arrows_block {
		padding: 0 0.5rem;
	}
}
@media(max-width:1300px){
	.main_slider_arrows_block button {
		margin-top: -2.5rem;
	}
}
@media(max-width:1200px){
	.main_slide_title {
		margin-bottom: 1rem;
	}
	.main_slide_text {
		margin-bottom: 2rem;
	}
	.main_slide_sub_title {
    	margin-bottom: 0;
    	margin-top: 0;
    }
}
.main_news_right_line.mobile {
	display: none;
}
@media(max-width:1200px){
	.main_news_right_line.mobile {
		display: flex;
	}
	.main_news_right_line {
		margin-bottom: 20px;
	}
	.main_news_left {
		display: none;
	}
	.main_news_right {
		height: auto;
	}
}
@media(max-width:1000px){
	.main_slide_title {
		font-size: 32px;
    	line-height: 36px;
    	margin-bottom: 0.5rem;
	}
	.main_slide_text {
		font-size: 16px;
    	line-height: 20px;
    	margin-bottom: 1rem;
	}
	.main_about_left {
		max-width: 500px;
	}
	.main_faq {
		flex-direction: column;
	}
	.main_faq_left .main_about_btn {
    	margin-top: 3.7rem;
	}
	.main_faq_left_text {
		max-width: 100%;
	}
	.main_faq_left {
		margin-bottom: 2rem;
	}
	.main_faq_right {
		width: 100%;
	}
}
@media(max-width:936px){
	.main_more {
		position: relative;
		top: 0;
		margin-top: 0.5rem;
	}
}
@media(max-width:845px){
	.main_about_flex {
		flex-direction: column-reverse;
	}
	.main_about_left {
		max-width: 100%;
	}
	.main_about_right {
		width: 100%;
		text-align: left;
	}
	.main_about_right:before {
		right: 25%;
	}
	.main_about_right img {
		max-width: 500px;
		width: 80%;
	}
	.main_faq_right_block {
		width: 100%;
		max-width: 590px;
	}
}
@media(max-width:767px){
	.main_slide_data {
		-webkit-box-pack: start;
    	-ms-flex-pack: start;
    	justify-content: flex-start;
	}
	.main_slide_title {
		font-size: 26px;
    	line-height: 32px;
	}
	.main_slide_sub_title {
		margin-top: 1rem;
		font-size: 12px;
    	line-height: 14px;
	}
	.main_slide_text {
		font-size: 14px;
    	line-height: 16px;
	}
	.main_slide_btn {
		font-size: 14px;
    	line-height: 18px;
	}
	.main_more {
		/* top: -2rem; */
	}
	.main_news_right_img {
		max-width: 45%;
	}
	.main_about_right:before {
		right: 0%;
	}
}
@media(max-width:575px){
	.main_slide_title {
    	font-size: 18px;
    	line-height: 26px;
	}
	.main_slide_sub_title {
    	font-size: 10px;
    	line-height: 12px;
    }
    .main_slide_text {
    	font-size: 12px;
    	line-height: 14px;
	}
	.main_slide_btn {
    	font-size: 13px;
    	line-height: 16px;
	}
	.main_more {
		/* top: -5rem; */
	}
}
@media(max-width:525px){
	.main_slide_title {
		margin-bottom: 2rem;
	}
	.main_slide_text {
    	display: none;
	}
	.main_news_right_line {
		-webkit-box-align: start;
    	-ms-flex-align: start;
    	align-items: flex-start;
	}
	.main_news_right_data {
		margin-left: 12px;
	}
	.main_about_right:before {
		background-size: 90%;
		background-position: top;
	}
}
@media(max-width:475px){
	.main_slider_arrows_block {
		display: none;
	}
	.main_slide_sub_title {
		display: none;
	}
	.main_slider_dots {
		bottom: 1rem;
	}
	.main_slide_title {
		margin-top: 1rem;
		margin-bottom: 2rem;
	}
	.main_faq_right_block {
		padding: 1.5rem;
	}
}
@media(max-width:425px){
	.main_slide_title {
    	font-size: 16px;
    	line-height: 20px;
	}
	.slick-slide img {
		min-height: 160px;
		object-fit: cover;
	}
	.main_about_right {
		text-align: center;
		margin-bottom: 1rem;
	}
	.main_about_right img {
		max-width: 500px;
		width: 90%;
	}
	.main_about_avantages {
		flex-direction: column;
		-webkit-box-align: center;
    	-ms-flex-align: center;
    	align-items: center;
	}
	.main_about_avantage_text {
		margin-top: 0.5rem;
		margin-bottom: 1rem;
	}
	.main_about_right:before {
		background-size: 80%;
		background-position: top;
		right: -20%;
	}
}
@media(max-width:375px){
	.main_about_right:before {
		background-size: 70%;
		background-position: top;
		right: -25%;
	}
}
/*  Main end  */

/*  Breadcrumbs  */

.breadcrumbs_block {
	position: relative;
}
.breadcrumbs_block img {
	width: 100%;
}
.breadcrumbs_data {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}
.breadcrumbs_header_block {
	margin-top: 9.7rem;
}
.breadcrumbs_sub_header {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFFFFF;
	text-align: center;
}
.breadcrumbs_header {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 49px;
	color: #FFFFFF;
	text-align: center;
}
.breadcrumbs_data ul {
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #FFFFFF;
	margin-bottom: 2.5rem;
}
.breadcrumbs_data ul li {
	display: inline-block;
}
.breadcrumbs_data ul li a {
	cursor: pointer;
}
.breadcrumbs_data ul li:hover a {
	opacity: 0.9;
}
@media(max-width: 1500px){
	.breadcrumbs_header_block {
    	margin-top: 3rem;
	}
}
@media(max-width: 969px){
	.breadcrumbs_header_block {
    	margin-top: 1rem;
	}
	.breadcrumbs_data ul {
		margin-bottom: 1rem;
	}
}
@media(max-width: 676px){
	.breadcrumbs_sub_header {
    	font-size: 12px;
    	line-height: 14px;
	}
	.breadcrumbs_header {
		font-size: 32px;
    	line-height: 36px;
	}
	.breadcrumbs_data ul {
		font-size: 15px;
    	line-height: 20px;
	}
}
@media(max-width: 525px){
	.breadcrumbs_header_block {
    	margin-top: 0.5rem;
	}
	.breadcrumbs_data ul {
		margin-bottom: 0.5rem;
	}
	.breadcrumbs_header {
		font-size: 30px;
    	line-height: 32px;
	}
}
@media(max-width: 425px){
	.breadcrumbs_block img {
		min-height: 95px;
		object-fit: cover;
	}
}
/*  Breadcrumbs end  */

/*  News  */
.news_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 5rem;
    
}
.news_block {
	width: 285px;
	height: 560px;
	padding-bottom: 1rem;
	cursor: pointer;
}
.news_block.hidden {
	display: none;
}
.news_img {
	margin-bottom: 1.5rem;
}
.news_data {
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #808080;
	margin-bottom: 1rem;
}
.news_title {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 1rem;
	padding-right: 1rem;
	cursor: pointer;
}
.news_title:hover {
	color: #2C3E69;
}
.news_text {
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	color: #000000;
	padding-right: 1rem;
}
.news_block.empty {
	height: 0px;
}
.news_button {
	text-align: center;
	margin-top: -1rem;
	margin-bottom: 5rem;
}
.news_button span {
	padding-top: 1rem;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2C3E69;
    margin-right: 1rem;
    border-top: solid 2px #2C3E69;
    cursor: pointer;
}
.news_button span:hover {
	border-top: none;
}
@media(max-width:886px){
	.news_list {
		justify-content: space-around
	}
}
/*  News end  */

/*  Faq  */
.faq_block {
	padding: 4rem 0;
}
.faq_text_block {
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: #000000;
	margin-bottom: 2rem;
}
.faq_text_block b,
.faq_text_block strong {
	font-weight: 500;
}
.faq_list_block {
	background: #F4F6FA;
	border-radius: 6px;
	padding: 3rem 12.5rem;
}
.faq_item_line {
	position: relative;
	padding: 1.5rem 0;
	/* padding-right: 4rem; */
	border-bottom: 1px solid #D3D8E1;
}
.faq_item_line:last-child {
	border-bottom: none;
}
.faq_item_line:after {
	content: '';
	position: absolute;
	position: absolute;
	width: 14px;
	height: 2px;
	background: #2C2C2C;
	right: 0rem;
	top: 2.5rem;
}

.faq_item_header {
	font-weight: 500;
	font-size: 20px;
	line-height: 29px;
	color: #000000;
	margin-bottom: 1rem;
	cursor: pointer;
	padding-right: 4rem;
}
.faq_item_text {
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: #000000;
	overflow: hidden;
	max-height: auto;
	padding-right: 4rem;
}
.faq_item_line.hide .faq_item_text {
	max-height: 0;
}
.faq_item_line.hide .faq_item_header {
	color: #2C3E69;
	margin-bottom: 0;
}
.faq_item_line.hide .faq_item_header:hover {
	color: #000000;
}
.faq_item_line.hide:after {
	background: #2C3E69;
}
.faq_item_line.hide:before {
	content: '';
	position: absolute;
	position: absolute;
	width: 14px;
	height: 2px;
	background: #2C3E69;
	right: 0rem;
	top: 2.5rem;
	transform: rotate(90deg);
}
@media(max-width: 1024px){
	.faq_list_block {
		padding: 3rem 6.5rem;
	}
}
@media(max-width: 767px){
	.faq_list_block {
		padding: 2rem 3.5rem;
	}
}
@media(max-width: 425px){
	.faq_list_block {
		padding: 2rem 1.5rem;
	}
	.faq_item_line {
		/* padding-right: 2rem; */
	}
	.faq_item_line .faq_item_header {
		padding-right: 2rem;
	}
	.faq_item_line .faq_item_text {
		padding-right: 2rem;
	}
}
/*  Faq end  */


/*  Services  */

.services_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
    -ms-flex-align: start;
	align-items: flex-start;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.service_block {
	position: relative;
    width: 285px;
    height: 361px;
    border-radius: 6px;
    padding: 2.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: 5rem;
    transition-duration: 300ms;
    cursor: pointer;
}
.service_block .main_service_text {
	
	transition-duration: 300ms;
}
.service_block .main_service_more {
	width: 148px;
	height: 40px;
	background: #FFFFFF;
	border: solid 1px #FFFFFF;
	border-radius: 200px;
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: #2C3E69;
	border: none;
	position: absolute;
	bottom: 1rem;
	z-index: 2;
	transition-duration: 300ms;
	cursor: pointer;
}
.service_block .main_service_more:hover {
	border: solid 1px #FFFFFF;
	background: none;
	color: #fff;
}
.service_block:hover {
	
}
.service_block:hover .main_service_text {
	margin-bottom: 4.5rem;
}
.service_block:hover .main_shadow {
	opacity: 0.25;
}
.service_block:hover .main_service_more {
	margin-top: 2rem;
	bottom: 7.5rem;
}
.service_block.empty {
	height: 0;
	margin-bottom: 0;
	padding: 0;
}
@media(max-width: 886px){
	.services_list {
		justify-content: space-around;
	}
}
/*  Services end  */


/*  Details  */
.details_block {
	margin-top: 5rem;
	margin-bottom: 7rem;
}
.details_block .main_header {
	margin-bottom: 3rem;
}
.details_block_text_img {
	min-height: 600px;
}
.details_block_img {
	float: left;
	margin-right: 2rem;
	padding-bottom: 1rem;
	border-bottom: solid thin #D3D8E1;
	margin-bottom: 1rem;
	max-width: 500px;
}
.details_text_block {
	font-weight: 300;
	font-size: 17px;
	line-height: 24px;
	color: #000000;
}
@media(max-width: 767px){
	.details_block_img {
		float: none;
		max-width: 100%;
		text-align: center;
	}
}
/*  Details end  */

/*  About  */

.about_block {
	margin-top: 5rem;
	margin-bottom: 7rem;
}
.about_block .main_header {
	margin-bottom: 3rem;
}

/*  About end  */


/*  Contacte  */

.contacts_block {
	margin-top: 3rem;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
	margin-bottom: 4rem;
}
.contact_form {
	max-width: 545px;
	width: 60%;
}
.contact_form_header {
	font-family: 'Montserrat';
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    color: #000000;
    margin-bottom: 1.5rem;
}
.contact_form_line {
	width: 100%;
	margin-bottom: 1rem;
}
.contact_form_line textarea,
.contact_form_line input {
	font-weight: 500;
	font-size: 14px;
	line-height: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000000;
	height: 50px;
	width: 100%;
	border-radius: 15px;
	background: #F4F6FA;
	border: none;
	padding: 0 1.5rem;
}
.contact_form_line textarea::placeholder,
.contact_form_line input::placeholder {
	font-weight: 400;
	color: #2B2B2B;
}
.contact_form_line textarea {
	padding: 1rem 1.5rem;
	height: 6.5rem;
	resize: none;
}
.contact_btn_block {
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.contact_btn_block button {
	width: 194px;
	height: 40px;
	background: #2C3E69;
	border-radius: 200px;
	border: none;
	font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #FFFFFF;
    cursor: pointer;
}
.contact_btn_block button:hover {
	background: #3C5080;
}
.contact_text {
	padding-left: 4rem;
	padding-top: 4rem;
}
.contact_text_line {
	margin-bottom: 1rem;
}
.contact_attr {
	font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #000000;
}
.contact_val {
	font-weight: 300;
    font-size: 17px;
    line-height: 150%;
}
.contact_val p {
	margin-top: 0.3rem;
	margin-bottom: 0.5rem;
}

.contacts_map {
	width: 100%;
}
.contacts_map iframe {
	width: 100%;
}
@media(max-width:1000px){
	.contacts_block {
		flex-direction: column;
	}
	.contact_text {
		padding-left: 0;
		padding-top: 2rem;
	}
}
@media(max-width:767px){
	.contact_form {
    	width: 100%;
	}
}
/*  Contacte end  */

.modal_space {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(25,25,25,0.2);
	display: none;
}
.modal_space.show {
	display: block;
}
.modal_block {
	position: relative;
	width: 100%;
	max-width: 545px;
	background: #fff;
	border-radius: 10px;
	margin: 0 auto;
	height: auto;
	min-height: 10rem;
	max-height: 85vh;
	margin-top: 10vh;
	padding: 2rem 1rem;
}
.modal_close {
	position: absolute;
	width: 32px;
	height: 32px;
	right: 1rem;
	top: 1rem;
	cursor: pointer;
}

.cookies_block {
	position: fixed;
	width: 100%;
	height: 234px;
	background: #FFFFFF;
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
	bottom: 0;
	z-index: 9;
	padding-top: 47px;
}

.cookies_close {
	position: fixed;
	width: 32px;
	height: 32px;
	right: 100px;
	bottom: 158px;
	cursor: pointer;
}
.cookies_header {
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 16px;
	line-height: 150.4%;
	color: #000000;
	margin-bottom: 1rem;
}
.cookies_text {
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	color: #434242;
	margin-bottom: 1rem;
}

.cookies_btn_block {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.cookies_btn_block button.yes {
	width: 192px;
	height: 44px;
	background: #2C3E69;
	border-radius: 200px;
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: #FFFFFF;
	cursor: pointer;
}
.cookies_btn_block button.yes:hover {
	background: #3C5080;
}
.cookies_btn_block button.no {
	background: none;
	border: none;
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	text-decoration-line: underline;
	color: #2C3E69;
	margin-left: 29px;
	cursor: pointer;
}
.cookies_btn_block button.no:hover {
	color: #000000;
}
@media(max-width: 1200px){
	.cookies_block {
		min-height: 234px;
		height: auto;
		padding-bottom: 2rem;
	}
	.cookies_block .container_md {
		position: relative;
	}
	.cookies_close {
		position: absolute;
		right: 2rem;
		bottom: auto;
		top: -1rem;
	}
}
@media(max-width: 425px){
	.cookies_close {
		position: absolute;
		right: 1rem;
		bottom: auto;
		top: -2rem;
	}
}

.about_text_block {
	font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    margin-top: 6rem
}

.about_text_block p {
	margin-bottom: 1.5rem;
}
