

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.my_social_contacts{
	position: fixed;
	bottom: 25px;
	right: 25px;
    z-index: 1000;
}
.my_social_contacts > a{
	width: 50px;
	height: 50px;
	box-shadow: rgb(0 0 0 / 15%) 0px 3px 12px, rgb(0 0 0 / 10%) 0px 3px 5px;
	border-radius: 50%;
	display: block;
	cursor: pointer;
	user-select: none;
	position: relative;
	margin-top: 20px;
	
	outline: transparent;
	background-color: rgb(255, 255, 255);
	
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	animation: kf_anim_widget 2s ease-in-out;
}
.my_social_contacts > a:hover::before{
	content: attr(data-title);
	color: black;
	background: #fff;
	padding: 10px 15px;
	border-radius: 10px;
	line-height: 1;
	display: block;
	transform: translate(-100%, -50%);
	width: max-content;
	top: 50%;
	left: 0;
	position: absolute;
	margin-left: -10px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: rgb(0 0 0 / 15%) 0px 3px 12px, rgb(0 0 0 / 10%) 0px 3px 5px;
	animation: kf_anim_widget_title 0.2s ease-in-out;
}

@media only screen and (max-width: 1000px){
	.my_social_contacts{
		/*right: 20px!important;*/
	}
	.my_social_contacts > a{
		width: 45px;
		height: 45px;
	}
}

@keyframes kf_anim_widget{
	0%, 80% {
		transform: translateX(300px);
	}
	100% {
		transform: none;
	}
}
@keyframes kf_anim_widget_title{
	from{
		opacity: 0;
		scale: 0.8;
	}
}


.fancybox__container{
	z-index: 1100;
}




.modal_amocrm  .modal-content{
	background: transparent;
	border: transparent
}
.modal_amocrm  iframe{
	height: 560px;
	width: 100%;
}
.modal_amocrm  .btn-close{
	border-radius: 50%;
	background-color: white;
	padding: 10px;
	opacity: 1;
	margin-left: auto;
}

.modal_form,
.my_form{
	
}
.mini_form_contact{
	background: #fff;
    border-radius: 15px;
}


.my_form *,
.modal_form *{
	transition: 0.2s;
}


.modal_form  .modal-content{
	margin-top: 30px;
	border-radius: 10px;
}


.my_form,
.modal_form .modal-body{
    padding: 30px 40px;
}

@media (max-width: 600px) {
	.my_form,
	.modal_form  .modal-body{
		padding: 25px;
	}
}


.my_form  h2,
.modal_form  .modal-body  h2{
	font-size: 20px;
	margin-bottom: 25px;
	font-weight: 600;
	color: #000;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}


.my_form  .description,
.modal_form  .modal-body  .description{
	font-size: 16px;
	margin-top: -20px;
}

.my_form  span,
.modal_form  .modal-body  span{
	font-size: 20px;
	margin-bottom: 25px;
	display: block;
	text-align: center;
}

.my_form  i,
.modal_form  .modal-body  i{
	color: green;
	font-size: 60px;
	text-align: center;
	display: block;
}

.my_form  button[disabled],
.modal_form  .modal-body  button[disabled]{
	background: #ccc;
	pointer-events: none;
}
.my_form  button:not(.btn-close),
.modal_form  .modal-body  button{
	user-select: none;
	display: block;
	width: 100%;
	color: #ffffff;
	background-color: #3745e1;
	border-radius: 10px;
	text-align: center;
	/*
	height: 50px;
	padding-left: 50px;
	padding-right: 50px;
	*/
	border: 1px solid #fff;
	font-size: 16px;
	padding: 15px;
	text-align: center;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	margin: 0;
	outline: none;
	transition: 0.2s;
}
.my_form  button:not(.btn-close):hover,
.modal_form  .modal-body  button:hover{
	background-color: #3842bd;
	/*
	background-color: #fff;
	color: #4754ed;
	border: 1px solid #4754ed;
	*/
}


.my_form  input,
.my_form  textarea,
.modal_form  .modal-body  input,
.modal_form  .modal-body  textarea{
	display: block;
	width: 100%;
	/*color: #000000;*/
	border: 1px solid rgb(201, 201, 201);
	border-radius: 5px;
	background-color: transparent;
	height: 50px;
	padding: 0 20px;
	font-size: 16px;
	outline: none;
	margin-bottom: 25px;
}


.my_form  textarea,
.modal_form  .modal-body  textarea{
	padding-top: 12px;
	padding-bottom: 12px;
	min-height: 100px;
	max-height: 150px;
}


.my_form  input.need,
.my_form  textarea.need,
.modal_form  .modal-body  input.need,
.modal_form  .modal-body  textarea.need{
	border-left: 5px solid #ff9f9f;
}
.my_form  input:focus,
.my_form  textarea:focus,
.modal_form  .modal-body  input:focus,
.modal_form  .modal-body  textarea:focus{
	box-shadow: 0px 0px 0px 4px rgb(104 177 255 / 20%);
}


.my_form  small,
.modal_form  small{
	color: red;
	display: none;
	transform: translateY(-22px);
}

.my_form.ne_zapolneno  small,
.modal_form.ne_zapolneno  small{
	display: block;
}

.my_form  .btn-close,
.modal_form  .btn-close{
	transform: translateY(-100%);
	position: absolute;
	border-radius: 50%;
	background-color: #fff;
	padding: 10px;
	opacity: 0.6;
	right: 0;
	margin-top: -10px;
	cursor: pointer;
	width: 20px;
	height: 20px;
}
.my_form  .btn-close:hover,
.modal_form  .btn-close:hover{
	opacity: 1;
}




body {
	background: #fff;
	color: #29363d;
	font-family: "Futura PT", Arial, sans-serif;
}

a {
	color: #2938d7;
	text-decoration: none;
	transition: 0.5s;
}

a:hover, a:active, a:focus {
	color: #0b6bd3;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}

h3{
	font-size: 37px;
    line-height: 1.4;
	font-family: "Futura PT Demi", Arial, sans-serif;
	font-weight: 600;
	/*color: #000000;*/
	text-align: center;
	margin-bottom: 40px;
}
@media (max-width: 767px) {
	h3{
		text-align: left;
	}
}

[data-after]::after{
	content: attr(data-after);
}

.img_fluid {
    border-radius: 10px;
}

select{
	outline: none;
}


.btn{
	position: relative;
	overflow: hidden;
}
.btn:hover::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: rgb(0,0,0,0.2);
}




/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	left: 15px;
	bottom: 15px;
	z-index: 996;
	background: #2938d7;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.4s;
}
.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}
.back-to-top:hover {
	background: #2990ff;
	color: #fff;
}
.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Alert Banner
--------------------------------------------------------------*/
#alert_banner{
	display: none!important;
	
	position: fixed;
	top: 0;
	left: 0;

	z-index: 998;
	text-align: center;
	height: 54px;
	width: 100%;
	overflow: hidden;

	background: #f87811;
	
	color: white;
	line-height: 1;
	font-size: 15px;
	font-weight: bold;
	
	padding: 0 10px;
	padding-bottom: 1px;

	display: flex;
	align-items: center;
	justify-content: center;
}
#alert_banner  .btn_more{
	color: white;
	background: #000000;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    display: block;
	cursor: pointer;
	
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	
	animation: kf_wiggle 5s infinite linear;
	-webkit-animation: kf_wiggle 5s infinite linear;
	
	transition: 0.2s;
}
#modal_ads  .modal-dialog{
	width: 900px;
	max-width: 100%;
	padding: 0 20px;
}
@media (max-width: 576px){
	#modal_ads  .modal-dialog{
		margin: 0;
	}
}
#modal_ads  img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0px 0px 20px 20px;
}
#modal_ads  img{
	content: url("https://landing.macdent.kz/img/ads.png");
}
#modal_ads  .btn_go{
	position: absolute;
	left: 31%;
	top: 84%;
	width: 33%;
	
	box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
	
	-webkit-animation: kf_pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: kf_pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: kf_pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: kf_pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes kf_pulse {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
@-moz-keyframes kf_pulse {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
@-ms-keyframes kf_pulse {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
@keyframes kf_pulse {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}

#alert_banner  a:active{
	opacity: 0.8;
}

@media (max-width: 600px) {
	#alert_banner{
		font-size: 14px;
	}
	#modal_ads  img{
		content: url("https://landing.macdent.kz/img/ads_mobile.png");
	}
	#modal_ads  .btn_go{
		left: 3%;
		top: 90%;
		width: 94%;
	}
}

@keyframes kf_wiggle{
	2% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}
	4% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
	6% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}
	8% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
	10% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}
	12% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}
	14% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}
	16% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}
	18% {
		-webkit-transform: translateX(1px) rotate(0);
		transform: translateX(1px) rotate(0);
	}
	20% {
		-webkit-transform: translateX(-1px) rotate(0);
		transform: translateX(-1px) rotate(0);
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	z-index: 997;
	transition: all 0.2s;
	/*background: #fff;*/
	/*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);*/
	background: transparent;
	
	position: fixed; 
	/*top: 54px;*/
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}
#header.header_scrolled,
#header.header_scrolled_forced{
	height: 80px;
	top: 0; 
	background: #fff;
	/*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);*/
	box-shadow: 0px 5px 35px -10px rgb(79 79 79 / 10%);
}
#header .logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 0;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#header .description{
	font-size: 14px;
	line-height: 1.3;
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 10px;
	border-left: 1px solid;
	font-weight: 400;
    opacity: 0.5;
}
#header.header_scrolled  .description,
#header.header_scrolled_forced  .description{
	color: #000;
}

#header  a.navbar_number{
	order: 1;
}

#header  a.auth_client,
#header  a.navbar_phone{
	border: 1px solid #fff;
	color: #fff;
	
	border-radius: 10px;
	padding: 8px 20px;
	white-space: nowrap;
	font-weight: 500;
	font-size: 14px;
	order: 1;
	transition: 0.2s;
	margin-left: 20px;
	box-shadow: 0px 5px 15px -5px rgb(247 107 2 / 20%);
}
#header  a.auth_client{
	background: #fff;
	color: #ff7d19;
}
#header  a.auth_client:hover{
	background: transparent;
	color: #fff;
}
#header.header_scrolled  a.auth_client,
#header.header_scrolled_forced  a.auth_client{
	background: #ff7d19;
	color: #fff;
	border: 1px solid #ff7d19;
}
#header.header_scrolled  a.navbar_phone,
#header.header_scrolled_forced  a.navbar_phone{
	background: transparent;
	color: #ff7d19;
	border-color: #ff7d19;
}
#header.header_scrolled  a.auth_client:hover,
#header.header_scrolled_forced  a.auth_client:hover{
	background: transparent;
	color: #ff7d19;
}

#header  .apk_download{
	width: 35px;
	height: 35px;
	border: 1px solid #4caf50;
	border-radius: 10px;
	padding: 5px;
	order: 1;
	transition: 0.2s;
	margin-left: 20px;
	display: block;
	position: relative;
}
#header  .apk_download:hover{
	background: #4caf501f;
}
#header  .apk_download:hover::before{
	content: attr(data-title);
	color: black;
	background: #fff;
	padding: 10px 15px;
	border-radius: 10px;
	line-height: 1;
	display: block;
	width: max-content;
	top: 100%;
	right: 0;
	font-size: 12px;
	position: absolute;
	margin-top: 5px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: rgb(0 0 0 / 15%) 0px 3px 12px, rgb(0 0 0 / 10%) 0px 3px 5px;
}
#header  .apk_download  img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
@media (max-width: 991px) {
	#header .logo h1 {
		font-size: 28px;
	}
}
#header .logo h1 a, #header .logo h1 a:hover {
	color: #00366f;
	text-decoration: none;
}
#header .logo img {
	padding: 0;
	max-height: 40px;
}


@media (max-width: 1400px) {
	.navbar_astanahub{
		display: none;
	}
}

@media (max-width: 574px) {
	#header.header_scrolled,
	#header.header_scrolled_forced{
		height: 60px;
	}
	#header .logo img {
		max-height: 20px;
	}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
	margin-right: auto;
	width: 100%;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {
	position: relative;
}
.navbar a.active,
.navbar a:hover{
	opacity: 1;
	color: #fff;
}
/*
#header.header_scrolled  .navbar a.active,
#header.header_scrolled  .navbar a:focus,
#header.header_scrolled  .navbar a:hover{
	color: #2938d7;
}
*/
.navbar a.active,
.navbar a:focus,
.navbar a:hover{
	color: #2938d7;
}

.navbar a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	margin-left: 10px;
	font-size: 15px;
	color: #29363d;
	font-weight: 550;
	white-space: nowrap;
	transition: 0.3s;
	opacity: 0.85;
}
.navbar a i, .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}
/*
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
	color: #2938d7;
}

.navbar a:hover:before,
.navbar .active:before {
	visibility: visible;
	width: 30px;
}


#header.header_scrolled  .navbar a::before,
#header.header_scrolled  .navbar a:focus::before{
	background-color: #2938d7;
}
.navbar a::before, .navbar a:focus::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 5px;
	left: 10px;
	background-color: #fff;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
*/

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	border-radius: 10px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}
.navbar .dropdown ul li {
	min-width: 200px;
}
.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
}
.navbar .dropdown ul a i {
	font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: #2938d7;
}
.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}
	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile_nav_toggle {
	cursor: pointer;
	display: none;
	transition: 0.1s;
	background-image: url('/img/icon_menu_white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 75%;
    width: 50px;
    height: 35px;
}
#header.header_scrolled   .navbar   .mobile_nav_toggle,
#header.header_scrolled_forced   .navbar   .mobile_nav_toggle{
	background-image: url('/img/icon_menu_orange.svg');
}

#header   .navbar.navbar_mobile   .mobile_nav_toggle,
#header.header_scrolled   .navbar.navbar_mobile   .mobile_nav_toggle,
#header.header_scrolled_forced   .navbar.navbar_mobile   .mobile_nav_toggle{
	background-image: url('/img/icon_close.svg');
}

@media (max-width: 768px) {
	#header  a.auth_client{
		order: 0;
	}
	.navbar{
		order: 0;
	}
	#header .description{
		font-size: 13px;
	}
}
@media (max-width: 991px) {
	.navbar{
		order: 1;
	}
	.mobile_nav_toggle {
		display: block;
	}
	
	#header  a.auth_client{
		margin-left: 15px;
		margin-right: 20px;
	}
	
	#header  a.apk_download{
		margin-left: auto;
		order: 0;
	}
	
	.navbar{
		margin-left: 0;
	}

	.navbar ul {
		display: none;
	}
}
.navbar_mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(23, 35, 46, 0.9);
	transition: 0.3s;
	z-index: 999;
}
.navbar_mobile .mobile_nav_toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}
.navbar_mobile ul {
	top: 0;
	right: 0;
	border-radius: 0;
	height: 100vh;
	width: max-content;
	min-width: 300px;
	max-width: 90%;
	padding-top: 75px;
	padding-bottom: 10px;
	
	display: block;
	position: absolute;
	/*
	top: 55px;
	right: 15px;
	bottom: 15px;
	padding: 10px 0;
	padding-left: 15px;
	*/
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
	animation: kf_show_mobile_navbar 0.2s ease-in-out;
}

@keyframes kf_show_mobile_navbar{
	from{
		transform: translate(100%, 0%);
	}
}
.navbar_mobile a{
	padding: 10px 20px;
	margin-left: 0px;
	font-size: 20px;
	color: black;
}
.navbar_mobile a::before, .navbar_mobile a:focus::before {
    left: 20px;
}
.navbar_mobile a:hover, .navbar_mobile .active, .navbar_mobile li:hover > a {
	opacity: 1;
	color: #2938d7;
}
.navbar_mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar_mobile .dropdown ul li {
	min-width: 200px;
}
.navbar_mobile .dropdown ul a {
	padding: 10px 20px;
}
.navbar_mobile .dropdown ul a i {
	font-size: 12px;
}
.navbar_mobile .dropdown ul a:hover, .navbar_mobile .dropdown ul .active:hover, .navbar_mobile .dropdown ul li:hover > a {
	color: #2938d7;
}
.navbar_mobile .dropdown > .dropdown-active {
	display: block;
}

h4{
	color: #29363d;
	font-family: "Futura PT", Arial, sans-serif;
	line-height: 1.55;
	font-weight: 400;
	opacity: 0.7;
}
h5{
	color: #29363d;
	font-size: 20px;
	font-family: "Futura PT", Arial, sans-serif;
	line-height: 1.55;
	font-weight: 400;
	opacity: 0.7;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#s_1 {
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 100px 0 50px 0;
}
#s_1::after {
	content: '';
	position: absolute;
	z-index: -1;
	/*
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #004a99;
	transform: skewY(175deg);
	transform-origin: left top;
	*/
	transform: rotate(240deg);
	border-radius: 50%;
	background-image: linear-gradient(180deg, rgba(14, 24, 127, 1) 0%, rgb(29, 45, 221) 100%);
	width: 100vw;
    height: 100vw;
    right: -55vw;
    top: -50vw;
}
@media (max-width: 991px) {
	#s_1 {
		padding: 140px 0 60px 0;
	}
}
@media (max-width: 574px) {
	#s_1 {
		padding: 100px 0 20px 0;
	}
}
#s_1 .box_video {
	margin-left: 200px;
	margin-top: 100px;
}

/*#s_1 .box_img {*/
/*	width: 55%;*/
/*	float: right;*/
/*	position: relative;*/
/*	margin-top: 250px;*/
/*}*/
/*#s_1 .box_img  .body_box_img{*/
/*	position: relative;*/
/*	width: max-content;*/
/*	margin-left: auto;*/
/*	margin-bottom: 40%;*/
/*	max-width: 100%;*/
/*}*/

@media (max-width: 991px) {
	/*#s_1 .box_img {*/
	/*	width: 80%;*/
	/*	float: none;*/
	/*	margin: 0 auto 25px auto;*/
	/*}*/
}
#s_1 .hero-info {
	width: 45%;
	float: left;
}
@media (max-width: 991px) {
	#s_1 .hero-info {
		width: 80%;
		float: none;
		margin: auto;
		/*text-align: center;*/
	}
}
@media (max-width: 767px) {
	#s_1 .hero-info {
		width: 100%;
	}
}
#s_1 .hero-info h2 {
	margin-bottom: 40px;
	font-weight: 700;
	text-size-adjust: auto;
    line-height: 1.2;
	font-size: 45px;
}
#s_1 .hero-info h2 span {
	color: #74b5fc;
}
@media (max-width: 767px) {
	#s_1 .hero-info h2 {
		font-size: 34px;
		margin-bottom: 30px;
	}
}
#s_1 .hero-info .btn-get-started  button,
.btn_services  button{
	opacity: 0!important;
	position: absolute!important;
	left: 0!important;
	top: 0!important;
	width: 100%!important;
	height: 100%!important;
}
#s_1 .hero-info .btn-get-started,
.btn_services{
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	display: block;
	width: max-content;
	max-width: 100%;
	padding: 15px 20px;
	border-radius: 10px;
	transition: 0.5s;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
	cursor: pointer;
	user-select: none;
}
#s_1 .hero-info .btn-get-started {
	background: #fff;
	border: 2px solid #fff;
	color: #000;
}
#s_1 .hero-info .btn-get-started:hover {
	background: none;
	border-color: #fff;
	color: #fff;
}
#s_1 .btn_orange {
	background: rgba(247, 91, 0, 1);
	background-image: linear-gradient(319deg, rgba(247, 91, 0, 1) 0%, rgba(250, 144, 30, 1) 100%);
	color: #fff;
	box-shadow: 0px 12px 35px -10px rgb(250 144 30 / 30%);
}
#s_1 .btn_orange:hover {
	background: rgba(250, 144, 30, 1);
	background-image: linear-gradient(319deg, rgba(250, 144, 30, 1) 0%, rgba(247, 91, 0, 1) 100%);
}


/*--------------------------------------------------------------
# Hero Page Section
--------------------------------------------------------------*
#hero_page {
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 160px 0 60px 0;
}
#hero_page::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #004a99;
	transform-origin: left top;
}
@media (max-width: 991px) {
	#hero_page {
		padding: 140px 0 60px 0;
	}
}
@media (max-width: 574px) {
	#hero_page {
		padding: 125px 0 25px 0;
	}
}
#hero_page svg{
	animation: kf_arrow_down 1.7s infinite ease;
}
@keyframes kf_arrow_down{
	0% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-moz-transform: translateY(-7px);
		-ms-transform: translateY(-7px);
		-webkit-transform: translateY(-7px);
		-o-transform: translateY(-7px);
		transform: translateY(-7px);
	}
	55% {
		-moz-transform: translateY(-7px);
		-ms-transform: translateY(-7px);
		-webkit-transform: translateY(-7px);
		-o-transform: translateY(-7px);
		transform: translateY(-7px);
	}
	100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}


#hero_page .box_img {
	width: 55%;
	float: right;
	position: relative;
	margin-top: -25px;
}
#hero_page .box_img  .body_box_img{
	position: relative;
	width: max-content;
	margin-left: auto;
	max-width: 100%;
}

@media (max-width: 991px) {
	#hero_page .box_img {
		width: 80%;
		float: none;
		margin: 0 auto 25px auto;
	}
}
#hero_page .hero-info {
	width: 45%;
	float: left;
}
@media (max-width: 991px) {
	#hero_page .hero-info {
		width: 80%;
		float: none;
		margin: auto;
		text-align: center;
	}
}
@media (max-width: 767px) {
	#hero_page .hero-info {
		width: 100%;
	}
}
#hero_page .hero-info h2 {
	color: #fff;
	margin-bottom: 40px;
	font-size: 38px;
	font-weight: 700;
}
#hero_page .hero-info h2 span {
	color: #74b5fc;
	text-decoration: underline;
}
@media (max-width: 767px) {
	#hero_page .hero-info h2 {
		font-size: 34px;
		margin-bottom: 30px;
	}
}
#hero_page .hero-info .btn-get-started,
#hero_page .hero-info .btn_services {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px;
	border-radius: 10px;
	transition: 0.5s;
	margin: 0 20px 20px 0;
	color: #fff;
}
#hero_page .hero-info .btn-get-started {
	background: #fff;
	border: 2px solid #fff;
	color: #000;
}
#hero_page .hero-info .btn-get-started:hover {
	background: none;
	border-color: #fff;
	color: #fff;
}
#hero_page .hero-info .btn_services {
	background: #f87811;
	border: 2px solid #f87811;
	color: #fff;
}
#hero_page .hero-info .btn_services:hover {
	background: #fff;
	border: 2px solid #fff;
	color: #000;
}
*/
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
	overflow: hidden;
	padding: 50px 0;
}

/* Sections Header
--------------------------------*/
.section_header h3 {
	margin-bottom: 20px;
}
.section_header p {
	text-align: center;
	margin: auto;
	font-size: 17px;
	padding-bottom: 60px;
	color: #556877;
	width: 60%;
}
@media (max-width: 767px) {
	.section_header p {
		width: 100%;
	}
}

/* Section with background
--------------------------------*/
.section_bg {
	background: #ecf5ff;
}
.container_bg{
	position: relative;
	padding: 40px;
}
.container_bg::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 100%;
	transform: translateX(-50%);
	border-radius: 20px;
	z-index: -1;
}
.container_bg  .header{
	display: flex;
	align-items: center;
	font-weight: 700;
	line-height: 1.4;
	font-size: 22pt;
	margin-bottom: 30pt;
}
.container_bg  .header  img{
	width: 55px;
	border-radius: 10px;
	margin-right: 20pt;
	box-shadow: 0px 10px 25px -4px rgb(247 107 2 / 50%);
}


.bg_silver{
	background-color: #f9f9fb;
}
.bg_silver_50{
	background-color: #f9f9fb;
	background: linear-gradient(#f9f9fb 50%, transparent 0%);
}


.container_blue::before{
	background: #f5f6fd;
}
.container_blue  .header  img{
	box-shadow: 0px 10px 25px -4px rgb(41 56 215 / 50%);
}
.container_blue  .header,
.container_blue  .tab_group  select,
.container_blue  .tab_group  .list_btn_tab  div.selected{
	color: #2938d7;
}
.container_blue  .tab_group  .list_tabs  .btn,
.btn_blue {
	text-align: center;
	box-shadow: 0px 12px 35px -15px rgb(41 56 215 / 50%);
	background: rgba(41, 56, 215, 1);
	background-image: linear-gradient(319deg,rgba(41, 56, 215, 1) 0%,rgba(71, 84, 230, 1) 100%);
	padding: 8px 20px; /* Уменьшенная высота кнопки */
	height: auto; /* Автоматическая высота в зависимости от контента */
	min-height: 36px; /* Минимальная высота */
	width: 500px;
}
.container_blue  .tab_group  .list_tabs  .btn:hover,
.btn_blue:hover{
    background-image: linear-gradient(319deg,rgba(71, 84, 230, 1) 100%,rgba(41, 56, 215, 1) 0%);
}


.container_orange::before{
	background: #fff8f3;
}
.container_orange  .header  img{
	box-shadow: 0px 10px 25px -4px rgb(247 107 2 / 50%);
}
.container_orange  .header,
.container_orange  .tab_group  select,
.container_orange  .tab_group  .list_btn_tab  div.selected{
	color: #f76b02;
}
.container_orange  .tab_group  .list_tabs  .btn ,
.btn_orange {
    box-shadow: 0px 12px 35px -10px rgb(250 144 30 / 30%);
    background: rgba(247, 91, 0, 1);
    background-image: linear-gradient(319deg, rgba(247, 91, 0, 1) 0%, rgba(250, 144, 30, 1) 100%);
	text-align: center;
}
.container_orange  .tab_group  .list_tabs  .btn:hover ,
.btn_orange:hover {
    background-image: linear-gradient(319deg, rgba(250, 144, 30, 1) 100%, rgba(247, 91, 0, 1) 0%);
}





.tab_group  select{
	display: none;
	background: transparent;
    padding: 15px;
	font-size: 18px;
	margin-bottom: 20pt;
    width: 100%;
    border: 2px solid;
}

.tab_group  .list_btn_tab{
	margin-bottom: 20pt;
}
.tab_group  .list_btn_tab  div::after{
	content: attr(tab_name);
}
.tab_group  .list_btn_tab  div{
    display: inline-block;
	font-weight: 400;
    font-family: 'Futura PT';
    color: #777;
    font-size: 16px;
    line-height: 1.5;
    margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
	user-select: none;
}
.tab_group  .list_btn_tab  div.selected{
	font-weight: 700;
	border-bottom: 2px solid;
}

.tab_group  .list_tabs > div {
	display: none;
    align-items: flex-start;
	flex-wrap: nowrap;
}
.tab_group  .list_tabs  >  div.selected {
	display: flex;
}
.tab_group  .list_tabs  >  div  img {
	display: block;
    width: 50%;
    margin-left: 30px;
    border-radius: 10px;
}
.tab_group  .list_tabs{
	color: #29363d;
}

.tab_group  .list_tabs  .title {
    font-size: 33px;
    line-height: 1.3;
	margin-bottom: 20pt;
    font-weight: 600;
}
.tab_group  .list_tabs  .description {
	font-size: 18px!important;
	line-height: 1.55;
	font-weight: 400;
}
.tab_group  .list_tabs  .description  ul {
	margin-top: 5px;
	margin-bottom: 5px;
}
.tab_group  .list_tabs  .btn {
	margin-top: 15pt;
	border-radius: 10px;
	margin-bottom: 15pt;
	padding: 15px 40px;
    color: #fff;
	font-size: 18px;
	text-align: center;
}

@media (max-width: 767px) {
	.tab_group  select{
		display: block;
	}
	.tab_group  .list_btn_tab{
		display: none;
	}
	.tab_group  .list_tabs > div {
		flex-wrap: wrap;
	}
	.tab_group  .list_tabs  >  div  img {
		width: 100%!important;
		order: -1;
		margin: 0!important;
		margin-bottom: 20px!important;
	}
	.tab_group  .list_tabs  .btn {
		width: 100%;
	}
}






.s_mobile_scroll{
	display: none;
	width: 50px;
	height: 25px;
    margin-top: -15px;
	margin-bottom: 20px;
    margin-left: 80%;
	background-image: url('https://landing.macdent.kz/img/icon_slide.gif');
	background-repeat: no-repeat;
	background-size: contain;
}
@media (max-width: 1100px) {
	.s_mobile_scroll{
		display: block;
	}
}


/* service Us Section
--------------------------------*/
#s_2 {
	background: #fff;
	padding: 60px 0;
}

#s_2  .box {
	height: 100%;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 5px 25px 0px rgb(46 84 217 / 10%);
}

#s_2  .box  img {
	display: block;
	width: auto;
	height: 32px;
	margin: 0 auto;
    margin-bottom: 20pt;
}

#s_2  .box  .title {
	font-size: 15pt;
    margin-bottom: 10pt;
	color: #2938d7;
	font-weight: 600;
	text-align: center;
}

#s_2  .box  .description {
	font-size: 13pt!important;
	color: #29363d;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}




#s_8  .more{
	color: #666666;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
	margin-top: 100px;
	padding: 0;
}




#s_9  .container{
	padding: 30px 50px;
	border-radius: 15px;
	background-image: linear-gradient(310deg, rgba(41, 56, 215, 1) 0%, rgba(71, 84, 237, 1) 100%);
	box-shadow: 0px 10px 45px -10px rgb(102 102 102 / 20%);
}
#s_9  .title{
	color: #fff;
	font-size: 50px;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 20px;
}
#s_9  .description{
	color: #fff;
	font-size: 26px;
	line-height: 1.5;
	font-weight: 400;
}
#s_9{
	position: relative;
	overflow: hidden;
}
#s_9 .img_phone{
	position: absolute;
	transition: 0.1s;
	top: 7vh;
	left: -30vh;
	height: 60vh;
}
#s_9 .img_nout{
	position: absolute;
	transition: 0.1s;
	top: 0;
	right: -50vh;
	height: 70vh;
}



#s_10  .row  >  div{
	display: flex;
	margin-bottom: 40px;
	align-items: center;
}
#s_10  .title{
	margin-left: 30px;
	font-weight: 500;
    font-size: 23px;
	line-height: 1.55;
}
#s_10  img{
	width: 100px;
	height: 100px;
	display: block;
	border-radius: 15px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}


#s_11{
	padding: 50px 0;
}
#s_11  .box{
	background: #fff;
	padding: 20px;
	border-radius: 15px;
	height: 100%;
	margin-bottom: 40px;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}
#s_11  img{
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 15px;
    box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
	margin-bottom: 20px;
}
#s_11  .title{
    color: #2938d7;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
	margin-bottom: 20px;
}
#s_11  .description{
	color: #666666;
    font-size: 17px!important;
    line-height: 1.55;
    font-weight: 400;
}






#s_11_1{
	padding: 50px 0;
}
#s_11_1  .box{
	background: #fff;
	padding: 30px 25px;
	border-radius: 15px;
	height: 100%;
	margin-bottom: 40px;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}
#s_11_1  .logo{
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 15px;
	margin-right: 20px;
}
#s_11_1  .name{
    color: #2938d7;
    font-size: 22px;
    font-weight: 600;
	line-height: 1;
	margin-bottom: 8px;
}
#s_11_1  .city{
    font-size: 20px;
	line-height: 1;
    font-weight: 500;
}
#s_11_1  .title{
	margin-top: 25px;
    line-height: 1.2;
	font-weight: 200;
	font-size: 22px;
	margin-bottom: 10px;
}
#s_11_1  .label{
    line-height: 1.2;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}
#s_11_1  .description{
	color: #666666;
    font-size: 18px!important;
    line-height: 1.2;
    font-weight: 400;
}





#s_11_2{
	padding: 50px 0;
}
#s_11_2  .box{
	background: #fff;
	padding: 30px 25px;
	border-radius: 15px;
	height: 100%;
	margin-bottom: 40px;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}

#s_11_2  .box_video{
	background: #000;
	border-radius: 15px;
	height: 190px;
	margin-bottom: 25px;
	margin-top: -30px;
	margin-left: -25px;
	margin-right: -25px;
	overflow: hidden;
}

#s_11_2  .title_section{
	margin-bottom: 20px;
}
#s_11_2  .box_name{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#s_11_2  .description_header{
	color: #666666;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	margin-bottom: 40px;
}

#s_11_2  .logo{
	width: 75px;
	height: 75px;
	display: block;
	border-radius: 50%;
	margin-right: 20px;
	flex-shrink: 0;
	object-fit: contain;
}
#s_11_2  .name{
    color: #2938d7;
    font-size: 22px;
    font-weight: 600;
	line-height: 1;
	margin-bottom: 8px;
}
#s_11_2  .org{
    font-size: 20px;
	line-height: 1;
    font-weight: 500;
}
#s_11_2  .description{
	margin-top: 25px;
	color: #666666;
    font-size: 18px!important;
    line-height: 1.2;
    font-weight: 400;
}




#s_11_3{
	padding: 50px 0;
}
#s_11_3  .title_section{
	margin-bottom: 20px;
}
#s_11_3  .description_header{
	color: #666666;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	margin-bottom: 40px;
}
#s_11_3  .list{
	padding: 0;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 400;
	list-style: none;
	counter-reset: iter_li;
}
#s_11_3  .list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}
#s_11_3  .list li::before {
    margin-top: -5px;
	flex-shrink: 0;
	counter-increment: iter_li;
	/*content: counter(iter_li, decimal-leading-zero);*/
	content: counter(iter_li);
	background: #2938d7;
	color: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}







#s_12  .icon{
	width: 50px;
	height: 50px;
	border-radius: 15px;
	margin-bottom: 30px;
	box-shadow: 0px 6px 25px -4px rgb(247 107 2 / 40%);
}
#s_12  .title{
	text-align: left;
	margin-bottom: 30px;
}
#s_12  .description{
	color: #29363d;
	font-size: 23px;
	line-height: 1.35;
	font-weight: 400;
	opacity: 0.7;
	margin-bottom: 30px;
}
#s_12  .photo{
	width: 100%;
	border-radius: 15px;
	box-shadow: 0px 25px 45px -15px rgb(247 107 2 / 10%);
}



#s_14  .box{
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}
#s_14  .icon{
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 15px;
    box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
	margin-right: 20px;
}
#s_14  .title{
	color: #29363d;
	font-size: 20px;
	line-height: 1.55;
	font-weight: 500;
}



#s_14_1  h3{
	margin-bottom: 25px;
}
#s_14_1  .box{
	display: flex;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 25px;
}
#s_14_1  .icon{
	width: 150px;
	height: 150px;
	display: block;
	border-radius: 50%;
	margin-right: 40px;
	background-color: silver;
	background-repeat: no-repeat;
	background-size: cover;
	flex-shrink: 0;
}
#s_14_1  .name{
	line-height: 1.2;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}
#s_14_1  .name::after{
	content: attr(data-name);
}
#s_14_1  .type{
	color: #666666;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 400;
	margin-bottom: 5px;
}

#s_14_1 .more {
	color: #666666;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
	margin-top: 100px;
	padding: 0;
}




#s_15  .container::before{
	content: '';
	display: block;
	width: 15px;
	height: 100%;
	position: absolute;
	background: #2938d7;
	left: 0;
	top: 0;
}
#s_15  .container{
	overflow: hidden;
	position: relative;
	border-radius: 15px;
	background: white;
	box-shadow: 0px 10px 45px -10px rgb(41 56 215 / 10%);
}
#s_15  .box{
}
#s_15  .title{
    color: #2938d7;
    font-size: 45px;
    line-height: 1.4;
    font-weight: 600;
	text-align: left;
	margin-bottom: 30px;
}
#s_15  .description{
	color: #666666;
	font-size: 26px;
	line-height: 1.5;
	font-weight: 400;
}



#s_16 .bg_orange  .title{
	color: #f76b02;
}
#s_16 .bg_orange  .icon{
	box-shadow: 0px 6px 25px -4px rgb(247 107 2 / 40%);
}

#s_16 .bg_blue  .title{
	color: #2938d7;
}
#s_16 .bg_blue  .icon{
	box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
}

#s_16 .bg_silver  .title{
	color: #666666;
}
#s_16 .bg_silver  .icon{
	box-shadow: 0px 6px 25px -4px rgb(102 102 102 / 40%);
}


#s_16 .box{
	border-radius: 15px;
}
#s_16 .icon{
	width: 50px;
	height: 50px;
	border-radius: 15px;
	margin-bottom: 30px;
}

#s_16 .title{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
	margin-bottom: 30px;
}

#s_16 .description{
	color: #29363d;
	font-size: 19px!important;
	line-height: 1.5;
	font-weight: 400;
}

#s_16 .description  b{
	display: block;
	margin-top: 30px;
	font-weight: bold;
}


.btn{
	text-align: center;
}



#s_17  .icon{
	width: 50px;
	height: 50px;
	border-radius: 15px;
	margin-bottom: 20px;
	box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
}
#s_17  .title{
	text-align: left;
	margin-bottom: 20px;
}
#s_17  .description{
	color: #29363d;
	font-size: 23px;
	line-height: 1.35;
	font-weight: 400;
	opacity: 0.7;
	margin-bottom: 20px;
}
#s_17  .btn {
	border-radius: 10px;
	padding: 15px 40px;
    color: #fff;
    box-shadow: 0px 12px 35px -15px rgb(41 56 215 / 50%);
    background: rgba(41, 56, 215, 1);
    background-image: linear-gradient(319deg,rgba(41, 56, 215, 1) 0%,rgba(71, 84, 230, 1) 100%);
}
#s_17  .photo{
	width: 100%;
	border-radius: 15px;
	box-shadow: 0px 25px 45px -15px rgb(41 56 215 / 10%);
}
#s_17  .bg{
	position: absolute;
	display: block;
	left: -10vh;
	top: 0;
	width: 40vh;
	height: 40vh;
	z-index: -1;
}
@media (max-width: 767px) {
	#s_17  .btn {
		width: 100%;
	}
}


#s_18  .title{
	color: #292929;
	font-size: 22px;
	line-height: 1.55;
	font-weight: 700;
	padding: 15px 30px;
}
#s_18  .list  >  div{
	height: 70px;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 400;
	display: flex;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
}
#s_18  .list  >  div:nth-child(odd){
	background-color: rgb(230 230 230 / 20%);
}
#s_18 .box_1{
	background: white;
	border-radius: 15px 0px 0px 15px;
    border: 3px solid #e8e8e8;
    border-right: none;
	box-shadow: 0px 10px 35px -15px rgb(194 194 194 / 60%);
}
#s_18  .box_2  .title{
	color: #fff;
}
#s_18  .box_2{
	padding-top: 3px!important;
	position: relative;
	background: white;
	border-radius: 0px;
	background-image: linear-gradient(90deg, rgba(43, 58, 217, 1) 0%, rgba(27, 40, 189, 1) 97%);
    border: 3px solid #1b28bd;
	border-top: none;
	border-bottom: none;
    box-shadow: 0px 2px 45px -10px rgb(41 56 215 / 50%);
}
#s_18  .box_2::before{
	content: '';
	display: block;
	position: absolute;
	top: 1px;
	left: -3px;
	right: -3px;
	transform: translateY(-100%);
	height: 15px;
	background-image: linear-gradient(90deg, rgba(43, 58, 217, 1) 0%, rgba(27, 40, 189, 1) 97%);
    border: 3px solid #1b28bd;
	border-bottom: 0;
	border-radius: 15px 15px 0 0;
}
#s_18  .box_2::after{
	content: '';
	display: block;
	position: absolute;
	bottom: 1px;
	left: -3px;
	right: -3px;
	transform: translateY(100%);
	height: 15px;
	background-image: linear-gradient(90deg, rgba(43, 58, 217, 1) 0%, rgba(27, 40, 189, 1) 97%);
    border: 3px solid #1b28bd;
	border-top: 0;
	border-radius: 0 0 15px 15px;
}
#s_18  .box_1  .list {
	color: #828282;
}
#s_18  .box_2  .list {
	color: #fff;
}
#s_18  .box_2  .list  img{
	width: 35px;
	height: 35px;
	margin-right: 30px;
}


#s_19  .container{
	position: relative;
}
#s_19  h3{
	color: #29363d;
	font-size: 50px;
	line-height: 1.3;
	font-weight: 600;
	text-align: left;
	z-index: 1;
    position: relative;
}
#s_19  h3  c{
	color: #2938d7;
}
#s_19  .bg{
	position: absolute;
	display: block;
	left: -10vh;
	top: 0;
	width: 40vh;
	height: 40vh;
	z-index: -1;
}
#s_19  .photo{
	width: 80%;
	margin-left: auto;
	display: block;
	margin-top: -10%;
	z-index: -1;
}

@media (max-width: 800px){
	#s_19  .photo{
		width: 100%;
		margin-top: 0;
	}
}


#s_20  .title{
	color: #828282;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 600;
	padding: 20px 30px;
	height: 100px;
	display: flex;
    align-items: flex-end;
}
#s_20  .list  >  div{
	height: 70px;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 400;
	display: flex;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
}
#s_20  .list  >  div:nth-child(odd){
	background-color: rgb(230 230 230 / 20%);
}
#s_20 .box_1{
	background: white;
	border-radius: 15px 0px 0px 15px;
    border: 3px solid #e8e8e8;
    border-right: none;
	box-shadow: 0px 10px 35px -15px rgb(194 194 194 / 60%);
}
#s_20  .box_2  .title  img{
	height: 100%;
	display: block;
}
#s_20  .box_2  .title{
	color: #fff;
}
#s_20  .box_2{
	padding-top: 3px!important;
	position: relative;
	background: white;
	border-radius: 0px;
	background-image: linear-gradient(90deg, rgba(255, 142, 56, 1) 0%, rgba(247, 107, 2, 1) 97%);
    border: 3px solid #f76b02;
	border-top: none;
	border-bottom: none;
    box-shadow: 0px 2px 45px -10px rgb(247 107 2 / 50%);
}
#s_20  .box_2::before{
	content: '';
	display: block;
	position: absolute;
	top: 1px;
	left: -3px;
	right: -3px;
	transform: translateY(-100%);
	height: 15px;
	background-image: linear-gradient(90deg, rgba(255, 142, 56, 1) 0%, rgba(247, 107, 2, 1) 97%);
    border: 3px solid #f76b02;
	border-bottom: 0;
	border-radius: 15px 15px 0 0;
}
#s_20  .box_2::after{
	content: '';
	display: block;
	position: absolute;
	bottom: 1px;
	left: -3px;
	right: -3px;
	transform: translateY(100%);
	height: 15px;
	background-image: linear-gradient(90deg, rgba(255, 142, 56, 1) 0%, rgba(247, 107, 2, 1) 97%);
    border: 3px solid #f76b02;
	border-top: 0;
	border-radius: 0 0 15px 15px;
}
#s_20  .box_1  .list {
	color: #828282;
}
#s_20  .box_2  .list {
	color: #fff;
}



#s_21  .icon{
	width: 50px;
	height: 50px;
	border-radius: 15px;
	margin-bottom: 30px;
	box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
}
#s_21  .pre_title{
	color: #2938d7;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
#s_21  .title{
	text-align: left;
	color: #29363d;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 30px;
}
#s_21  .list{
	color: #29363d;
	font-size: 23px;
	line-height: 1.35;
	font-weight: 400;
	opacity: 0.75;
}
#s_21  .description  c{
	opacity: 0.7;
} 
#s_21  .description{
	color: #29363d;
	font-size: 23px;
	line-height: 1.35;
	font-weight: 400;
	opacity: 0.75;
	margin-bottom: 30px;
}
#s_21  .btn {
	border-radius: 10px;
	padding: 15px 40px;
    color: #fff;
    box-shadow: 0px 12px 35px -15px rgb(41 56 215 / 50%);
    background: rgba(41, 56, 215, 1);
    background-image: linear-gradient(319deg,rgba(41, 56, 215, 1) 0%,rgba(71, 84, 230, 1) 100%);
}
#s_21  .photo{
	width: 100%;
	border-radius: 15px;
	box-shadow: 0px 25px 45px -15px rgb(41 56 215 / 10%);
}
#s_21  .bg{
	position: absolute;
	display: block;
	right: -10vh;
	top: 0;
	width: 40vh;
	height: 40vh;
	z-index: -1;
}









#s_21_1  .icon{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: auto;
	margin-bottom: 30px;
	display: block;
}
#s_21_1  .pre_title{
	color: #2938d7;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
#s_21_1  .title{
	text-align: left;
	color: #29363d;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 30px;
}


#s_21_1  .description{
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}

#s_21_1  .question{
	font-weight: bold;
	margin-top: 35px;
	margin-bottom: 15px;
}
#s_21_1  .answer{
	font-style: italic;
    font-weight: 300;
}

#s_21_1  .form_question{
	text-align: center;
	font-size: 20px;
	line-height: 1.2;
}

#s_21_1  .btn {
	border-radius: 10px;
	padding: 15px 40px;
    color: #fff;
    box-shadow: 0px 12px 35px -15px rgb(41 56 215 / 50%);
    background: rgba(41, 56, 215, 1);
    background-image: linear-gradient(319deg,rgba(41, 56, 215, 1) 0%,rgba(71, 84, 230, 1) 100%);
}
#s_21_1  .photo{
	width: 100%;
	border-radius: 15px;
	box-shadow: 0px 25px 45px -15px rgb(41 56 215 / 10%);
}
#s_21_1  .bg{
	position: absolute;
	display: block;
	right: -10vh;
	top: 0;
	width: 40vh;
	height: 40vh;
	z-index: -1;
}







#s_22  .row  .title{
	color: #2938d7;
	font-size: 32px;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
}

#s_22  .row  >  div > div{
	padding: 30px;
}

#s_22  .list{
    margin-bottom: 40px;
}

#s_22  .price{
    color: #2938d7;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 800;
    border: 2px solid #2938d7;
    border-radius: 10px;
    background-color: #f1f2fa;
    padding: 15px 0px;
    text-align: center;
    width: 100%;
	margin-bottom: 30px;
}

#s_22  .price  c{
	color: rgb(0,0,0,0.3);
}

#s_22  .box_2  .price  c,
#s_22  .box_3  .price  c{
	color: rgb(255,255,255,0.3);
}
#s_22  .price_month{
	margin-top: 20px;
	color: #212121;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
}
#s_22  .price_month  b{
	font-weight: 700;
	color: #2938d7;
}
#s_22  .list  >  div{
	display: flex;
	align-items: center;
	margin: 15px 0;
	color: #000;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}
#s_22  .list  >  div.off{
	color: rgb(0,0,0,0.5);
	text-decoration: line-through;
}
#s_22  .list  img{
	display: block;
	width: 35px;
	height: 35px;
	margin-right: 15px;
}

#s_22  .box_1{
	border-radius: 15px;
	background: #fcfcfc;
	border: 2px solid #dedede;
}
#s_22  .box_2{
	transform: translate(0, -30px);
	border-radius: 15px;
    background-image: linear-gradient(133deg, rgba(43, 59, 222, 1) 0%, rgba(14, 24, 127, 1) 100%);
    box-shadow: 0px 10px 15px -5px rgb(41 56 215 / 20%);
}
#s_22  .box_3{
	border-radius: 15px;
    background-image: linear-gradient(133deg, rgba(250, 144, 30, 1) 0%, rgba(247, 91, 0, 1) 100%);
    box-shadow: 0px 10px 25px 0px rgb(247 107 2 / 30%);
}

#s_22  .box_2  .price,
#s_22  .box_3  .price{
	color: #fff;
	border-color: #fff;
	background-color: rgb(255,255,255,0.1);
}


#s_22  .more{
	display: block;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
    border-radius: 10px;
    padding: 10px 0px;
    text-align: center;
    width: 100%;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}
#s_22  .more:hover::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: rgb(0,0,0,0.15);
}
#s_22  .box_1  .more{
	background: #2938d7;
	background: linear-gradient(180deg, #2938d7, #1d2795);
	color: #fff;
}
#s_22  .box_2  .more{
	background: #fff;
	background: linear-gradient(180deg, #fff, #d5d8ff);
	color: #2938d7;
}
#s_22  .box_3  .more{
	background: #fff;
	background: linear-gradient(180deg, #fff, #fff0e1);
	color: #fa901e;
}
#s_22  .more  c{
	opacity: 0.5;
}





#s_22  .box_2  .title,
#s_22  .box_3  .title,
#s_22  .box_2  .list  >  div,
#s_22  .box_3  .list  >  div{
	color: #fff;
}
#s_22  .box_2  .list  >  div.off,
#s_22  .box_3  .list  >  div.off{
	color: rgb(255,255,255,0.5);
}
#s_22  .box_2  .price_month,
#s_22  .box_3  .price_month{
	color: rgb(255 255 255 / 70%);
}
#s_22  .box_2  .price_month  b,
#s_22  .box_3  .price_month  b{
	color: #fff;
}




#s_23  .title{
	display: flex;
	align-items: center;
	font-size: 40px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1.35;
    font-weight: 600;
	margin-bottom: 30px;
}
#s_23  img{
	display: block;
	width: 70px;
	height: 70px;
	margin-right: 30px;
}
#s_23  .description{
	font-size: 25px;
	line-height: 1.35;
	font-weight: 500;
}
#s_23  .box_1{
	border-radius: 15px;
	color: #666666;
	padding: 35px;
	background-color: #f5f5f5;
	box-shadow: 0px 10px 45px -10px rgb(41 56 215 / 0%);
	height: 100%;
}
#s_23  .box_2{
	border-radius: 15px;
	color: #fff;
	padding: 35px;
    background-image: linear-gradient(180deg, rgba(41, 56, 215, 1) 0%, rgba(7, 21, 179, 1) 100%);
    box-shadow: 0px 10px 45px -10px rgb(41 56 215 / 0%);
	height: 100%;
}




#s_24  .title{
	color: #2938d7;
    font-size: 50px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1.2;
    font-weight: 600;
	margin-bottom: 20px;
}
#s_24  .description{
    color: #29363d;
    font-size: 23px!important;
    line-height: 1.35;
    font-weight: 400;
    opacity: 0.8;
}
#s_24  .photo{
	width: 100%;
	border-radius: 15px;
	box-shadow: 0px 25px 45px -15px rgb(41 56 215 / 10%);
}
#s_24  .bg{
	position: absolute;
	display: block;
	left: -10vh;
	bottom: -10vh;
	width: 40vh;
	height: 40vh;
}



#s_25  .header{
	text-align: left;
}
#s_25  .big_list{
	display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 50vh;
    gap: 40px;
	width: max-content;
	margin: 0 auto;
}
#s_25  .small_list{
	display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 12vh;
    gap: 40px;
	width: max-content;
	margin: 0 auto;
}
#s_25  img{
	display: block;
	height: 100%;
}



#s_26  .col{
	margin-bottom: 30px;
}

#s_26  .col > div{
	display: flex;
	align-items: center;
	border-radius: 25px;
    background-color: #fff;
    box-shadow: 0px 5px 25px 0px rgb(41 56 215 / 10%);
	padding: 0;
	overflow: hidden;
	height: 100px;
}
#s_26  img{
	display: block;
	width: 100px;
	margin: 0 auto;
}





#s_27  .row > div{
	padding-bottom: 40px;
}
#s_27  .row > div > div{
	display: flex;
	align-items: center;
	border-radius: 25px;
    background-color: #fff;
    box-shadow: 0px 5px 25px 0px rgb(41 56 215 / 10%);
	padding: 20px 60px;
	overflow: hidden;
	height: 100px;
}
#s_27  img{
	display: block;
	margin: 0 auto;
	width: 100%;
    object-fit: contain;
    height: 100%;
}
@media (max-width: 800px) {
	#s_27  .row > div > div{
		padding: 20px;
	}
}




#s_28  .title{
	color: #29363d;
    font-size: 50px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1.2;
    font-weight: 600;
	margin-bottom: 20px;
}
#s_28  .description{
    color: #29363d;
    font-size: 23px!important;
    line-height: 1.35;
    font-weight: 400;
    opacity: 0.8;
}
#s_28  .photo{
	width: 100%;
	padding: 20px 40px;
	border-radius: 15px;
	box-shadow: 0px 5px 25px 0px rgb(41 56 215 / 10%);
}
#s_28  .photo  img{
	width: 100%;
}




#s_29 {
	padding: 60px 0;
	overflow: hidden;
}
#s_29 .title{
	/*color: #000000;*/
	font-size: 50px;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: left;
}
#s_29  .title  c{
	color: #2938d7;
}
#s_29  iframe{
	margin-bottom: 30px;
	width: 100%;
	height: 180px;
	border-radius: 15px;
	background: #000;
}
#s_29  video{
	object-fit: cover;
    margin-bottom: 30px;
    width: 100%;
    height: 210px;
    border-radius: 15px;
    background: #000;
}




#s_30  .container{
	padding-top: 40px;
	padding-bottom: 40px;
	border-radius: 15px;
	background-image: linear-gradient(180deg, rgba(255, 138, 48, 1) 0%, rgba(247, 107, 2, 1) 100%);
	box-shadow: 0px 10px 45px -10px rgb(247 107 2 / 20%);
}
#s_30  .title{
	color: #ffffff;
	font-size: 55px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.4;
	font-weight: 600;
	text-align: center;
}
#s_30  .list{
	display: flex;
	align-items: flex-end;
    justify-content: center;
	margin-bottom: 40px;
}
#s_30  .list  img{
	margin: 0 20px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	box-shadow: 0px 4px 25px -9px rgb(41 54 61 / 40%);
}
#s_30  .list  img.big{
	width: 75px;
	height: 75px;
}



#s_31  .container{
	padding-top: 80px;
	padding-bottom: 40px;
	padding-left: 130px;
	padding-right: 40px;
	border-radius: 15px;
	background-image: linear-gradient(158deg, rgba(41, 56, 215, 1) 0%, rgba(15, 27, 163, 1) 100%);
	box-shadow: 0px 10px 45px -10px rgb(41 56 215 / 20%);
	position: relative;
}
#s_31  .icon{
	position: absolute;
	top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    opacity: 0.3;
}
#s_31  .title{
	color: #ffffff;
	font-size: 55px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.35;
	font-weight: 600;
	margin-bottom: 30px;
}
#s_31  .author{
	display: flex;
    align-items: center;
	color: #ffffff;
	font-size: 20px;
	font-family: "Futura PT", Arial, sans-serif;
	font-weight: 500;
}
#s_31  .author img{
	margin-right: 20px;
	border-radius: 50%;
	border: 2px solid #fff;
	width: 55px;
	height: 55px;
	object-fit: cover;
}




#s_32  h3.title{
	color: #000;
	font-size: 50px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.5;
	font-weight: 600;
}

#s_32  .row  .title{
    font-size: 25px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1.5;
    font-weight: 600;
	margin-top: 20px;
	text-align: left;
}
#s_32  .row  >  div  >  div{
	border-radius: 15px;
	padding: 30px;
	height: 100%;
}
#s_32  .row   >  div{
	flex-shrink: 1;
	padding-bottom: 20px;
}
#s_32  .row   img{
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: block;
}

#s_32  .row  .box_1{
	background-color: #fffaf5;
}
#s_32  .row  .box_1  img{
	box-shadow: 0px 6px 25px -4px rgb(247 107 2 / 40%);
}
#s_32  .row  .box_1  .title{
	color: #f76b02;
}
#s_32  .row  .box_1  .description{
	color: #666666;
    font-size: 16px;
    font-family: "Futura PT", Arial, sans-serif;
    line-height: 1.5;
    font-weight: 500;
	margin-top: 10px;
    opacity: 0.7;
}

#s_32  .row  .box_2{
	background-color: #f9f9fb;
}
#s_32  .row  .box_2  img{
	box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
}
#s_32  .row  .box_2  .title{
	color: #2938d7;
}

#s_32  .row  .box_3{
	background-color: #fbf4ff;
}
#s_32  .row  .box_3  img{
	box-shadow: 0px 6px 25px -4px rgb(151 41 215 / 40%);
}
#s_32  .row  .box_3  .title{
	color: #9729d7;
}

#s_32  .row  .box_4{
	background-color: #f5f5f5;
}
#s_32  .row  .box_4  img{
	box-shadow: 0px 6px 25px -4px rgb(102 102 102 / 40%);
}
#s_32  .row  .box_4  .title{
	color: #666666;
}




#s_33  .title{
	color: #000;
	font-size: 50px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.5;
	font-weight: 600;
}
#s_33 .row {
	padding-top: 20px;
	padding-bottom: 40px;
}
#s_33 .row  .count {
	display: block;
	color: #f76b02;
    font-size: 70px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
	
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #71798433;
}
#s_33 .row  .title_count{
	padding: 0;
	margin: 0 0 40px 0;

	color: #0e187f;
    font-size: 21px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
}


#s_34{
	display: flex;
	flex-wrap: wrap;
}
#s_34  img{
	object-fit: cover;
	width: 33.33%;
	height: 50vh;
	display: block;
	transition: 0.15s;
}
#s_34  img:hover{
	transform: scale(1.02);
	box-shadow: 0 2px 20px 2px rgb(0 0 0 / 45%);
	z-index: 2;
	position: relative;
}
@media(max-width: 800px){
	#s_34  img{
		width: 50%;
		height: auto;
	}
}


#s_35  h3.title{
	color: #000;
	font-size: 50px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.5;
	font-weight: 600;
}

#s_35  .row  .title{
	color: #29363d;
	font-size: 25px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.55;
	font-weight: 600;
	position: relative;
    z-index: 1;
}
#s_35  .row   >  div{
	padding-top: 10px;
	padding-bottom: 10px;
}
#s_35  .row  >  div  >  div{
	position: relative;
	background: #fff;
	display: flex;
    align-items: center;
	color: #000;
	border-radius: 15px;
	padding: 40px 30px;
	padding-left: 60px;
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 5px 25px 0px rgb(41 56 215 / 10%);
}
#s_35  .icon{
	width: 65px;
	height: 65px;
	border-radius: 10px;
	display: block;
	margin-right: 30px;
	box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
	position: relative;
	z-index: 2;
}
#s_35  .icon_number{
	position: absolute;
	left: 15px;
	top: 15px;
	width: auto;
	height: calc(100% - 30px);
	display: block;
	z-index: 1;
}

@media (max-width: 1000px) {
	#s_35 .row  >  div{
	}
}



#s_35_1  h3.title_section{
	color: #000;
	font-size: 50px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.5;
	font-weight: 600;
}

#s_35_1  .row  .title{
	color: #29363d;
	font-size: 25px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.55;
	font-weight: 600;
	position: relative;
    z-index: 1;
}
#s_35_1  .row   >  div{
	padding-top: 10px;
	padding-bottom: 10px;
}
#s_35_1  .row  >  div  >  div{
	position: relative;
	background: #fff;
	display: flex;
    align-items: center;
	color: #000;
	border-radius: 15px;
	padding: 40px 30px;
	padding-left: 60px;
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 5px 25px 0px rgb(41 56 215 / 10%);
}
#s_35_1  .icon{
	width: 65px;
	height: 65px;
	border-radius: 10px;
	display: block;
	margin-right: 30px;
	box-shadow: 0px 6px 25px -4px rgb(41 56 215 / 40%);
	position: relative;
	z-index: 2;
}
#s_35_1  .icon_number{
	position: absolute;
	left: 15px;
	top: 15px;
	width: auto;
	height: calc(100% - 30px);
	display: block;
	z-index: 1;
}
#s_35_1  .big_list  > div{
	max-width: max-content;
	margin: 0 auto;
}
#s_35_1  .big_list  > div > div{
	
}
#s_35_1  .big_list  > div  img{
	display: block;
	max-height: 50vh;
}

@media (max-width: 1000px) {
	#s_35_1 .row  >  div{
	}
}




#s_36{
	position: relative;
}
#s_36 .img_phone{
	position: absolute;
	transition: 0.1s;
	top: 0;
	left: -30vh;
	height: 60vh;
}
#s_36 .img_nout{
	position: absolute;
	transition: 0.1s;
	top: 0;
	right: -39vh;
	height: 50vh;
}
#s_36  .container{
	position: relative;
	border-radius: 15px;
    background-image: linear-gradient(310deg, rgba(247, 107, 2, 1) 0%, rgba(255, 139, 51, 1) 100%);
    box-shadow: 0px 10px 45px -10px rgb(247 107 2 / 20%);
}
#s_36  .box{
}
#s_36  .title{
    color: #ffffff;
    font-size: 35px;
    font-family: "Futura PT Demi", Arial, sans-serif;
    line-height: 1.35;
    font-weight: 600;
	text-align: left;
	margin-bottom: 30px;
}
#s_36  .description{
	color: #ffffff;
    font-size: 26px!important;
    font-family: "Futura PT", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}





/* s_37 Section
--------------------------------*/
#s_37 {
	box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
	padding: 60px 0;
	overflow: hidden;
}
#s_37 .title{
	font-size: 50px;
}

#s_37 a {
	color: inherit;
}

#s_37  .map  iframe{
	width: 100%;
	height: 300px;
	border-radius: 15px;
}


#s_37 .item {
	color: #283d50;
	display: flex;
    align-items: center;
}
#s_37 .item img {
	width: 50px;
	height: 50px;
	margin-right: 20px;
}
#s_37 .item div {
	/*color: #000000;*/
	font-size: 17px;
	font-family: "Futura PT Demi", Arial, sans-serif;
	line-height: 1.5;
	font-weight: 600;
}





/* s_38 Section
--------------------------------*/
#s_38 {
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 200px 0 50px 0;
}

@media (max-width: 991px) {
	#s_38 {
		padding: 140px 0 60px 0;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 574px) {
	#s_38 {
		padding: 100px 0 20px 0;
	}
}

#s_38 .bg{
	position: relative;
	max-width: 100%;
}
#s_38 .box_text {
	
}
#s_38 .box_text h2 {
	color: #3541db;
	margin-bottom: 40px;
	font-weight: 500;
    line-height: 1.2;
	font-size: 50px;
	text-align: center;
	font-family: 'Futura PT Demi',Arial,sans-serif;
}
#s_38 .box_text h4 {
	margin-bottom: 40px;
	text-align: center;
	font-family: 'Futura PT Demi',Arial,sans-serif;
}
#s_38 .box_text h5 {
	margin-bottom: 40px;
	text-align: center;
	font-family: 'Futura PT Demi',Arial,sans-serif;
}






#hero_page {
	padding-top: 150px;
    padding-bottom: 50px;
	position: relative;
	background: #f8760f;
}

/*
#hero_page::after {
    content: '';
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-image: linear-gradient(180deg, rgba(248, 110, 11, 1) 0%, rgba(250, 144, 30, 1) 100%);
    left: 50%;
    top: 50%;
}
*/

/* Price Section
--------------------------------*/
#price {
	background: #fff;
	padding: 60px 0;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#price h4{
	font-weight: 600;
	font-size: 24px;
}

#price img{
	height: 200px;
	display: block;
	margin: 0 auto;
}

#price  .table_scroll{
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}
#price  .table_price{
	margin: 0 auto;
	padding: 0;
}
#price  .table_price .hint{
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	/*transform: translateY(-100%);*/
	max-width: 100%;
	font-size: 12px;
	color: white;
	padding: 5px 15px;
	border-radius: 10px;
	background: rgb(0,0,0,0.9);
	z-index: 100;
}
#price  .table_price .icon_hint{
	opacity: 0.7;
	cursor: pointer;
}
#price  .table_price .td_hint{
	position: relative;
}
#price  .table_price .td_hint:hover  .icon_hint{
	opacity: 1;
}
#price  .table_price .td_hint:hover  .hint{
	display: block;
}
#price  .table_price  thead  th{
	background: #f87811;
	border: 1px solid #f87811;
	color: #ffffff;
	padding: 20px;
	text-align: center;
}
#price  .table_price  tbody tr:not(.head):hover{
	background: rgb(0,0,0,0.05);
}
#price  .table_price  thead{
	position: relative;
	z-index: 1;
	will-change: transform;
}
#price  .table_price  tr.head{
	background: rgb(248 120 17 / 70%);
	cursor: pointer;
	user-select: none;
}

#price .table_price tr.head:hover{
    background: rgb(248 120 17);
}

#price  .table_price  tr.head td{
	color: #fff!important;
}
#price  .table_price  tr.head i.bi-caret-right-fill{
	margin-right: 10px;
	display: inline-block;
	transition: 0.2s;
	transform: rotate(0deg);
}
#price  .table_price  tr.head.active i.bi-caret-right-fill{
	transform: rotate(90deg);
}

[dropdown_content]{
	display: none;
}
tr.active[dropdown_content]{
	display: table-row;
}


#price  .table_price  tr.head  .bi-x-circle-fill{
	color: rgb(255 255 255 / 20%);
}
#price  .table_price  tr.head  .bi-check-circle-fill{
	color: #fff;
}
#price  .table_price  .bi-x-circle-fill{
	color: #ccc;
	font-size: 20px;
	line-height: 1;
}
#price  .table_price  .bi-check-circle-fill{
	color: #25b309;
	font-size: 20px;
	line-height: 1;
}
#price  .table_price  tbody  td:not(:first-child){
	text-align: center;
}
#price  .table_price  tbody  td{
	border: 1px solid #c3c3c3;
	vertical-align: middle;
	color: #565656;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 15px;
}



#price .btn_link{
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px;
	border-radius: 10px;
	transition: 0.5s;
	margin-bottom: 20px;
	color: #fff;
	cursor: pointer;
}
#price .btn_link:not(.invert){
	background: #0e187f;
	border: 2px solid #0e187f;
	color: #fff;
}
#price .btn_link:not(.invert):hover {
	background: transparent;
	color: #0e187f;
}
#price .btn_link.invert{
	background: transparent;
	border: 2px solid #0e187f;
	color: #0e187f;
}
#price .btn_link.invert:hover {
	background: #0e187f;
	color: #fff;
}










.bg_orange{
	background: #fffaf5;
}
.bg_blue{
	background: #f9f9fb;
}
@media (max-width: 767px) {
	.container{
		padding: 20px 10px;
		width: 95%;
	}
}


.img_full{
	cursor: zoom-in;
}


#chto_est_poleznogo{
	padding-bottom: 40px;
}

#chto_est_poleznogo .count{
	font-size: 22px;
	width: 60px;
	height: 60px;
	background: #004a99;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-right: 15px;
}

#chto_est_poleznogo h2{
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
}
#chto_est_poleznogo h4{
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 500;
}
#chto_est_poleznogo p{
	font-size: 15px;
	opacity: 0.8;
	margin: 0;
}


#add_service {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #f87811;
	text-align: center;
}

#add_service h4{
	margin-bottom: 35px;
	color: white;
	font-size: 20px;
	width: 800px;
	max-width: 100%;
    opacity: 1;
}

#add_service .btn-message{
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px;
	border-radius: 10px;
	transition: 0.5s;
	background: #fff;
    border: 2px solid #fff;
    color: #656565;
}
#add_service .btn-message:hover {
	background: transparent;
	border-color: #fff;
	color: #fff;
}






/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	padding: 0;
	color: #eee;
	font-size: 16px;
}
#footer .footer-top {
	background: #686868;
	background: linear-gradient(158deg, #686868 0%, rgb(30 30 30) 100%);
	padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
	margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
	font-size: 34px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	text-align: left;
	color: #fff;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}
#footer .footer-top .footer-info p {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 0;

	color: #ecf5ff;
}
#footer .footer-top .social_links a {
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #1e1e1e;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
#footer .footer-top .social_links a i {
	line-height: 0;
}
#footer .footer-top .social_links a:hover {
	background: #686868;
}
#footer .footer-top h4 {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
}
#footer .footer-top a {
	color: inherit;
}
#footer .footer-top .footer-links {
	margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}
#footer .footer-top .footer-links ul a {
	color: #ecf5ff;
}
#footer .footer-top .footer-links ul a:hover {
	color: #74b5fc;
}
#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
	line-height: 26px;
}
#footer .footer-top .footer-newsletter {
	margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type=email] {
	border: 0;
	padding: 6px 8px;
	width: 65%;
}
#footer .footer-top .footer-newsletter input[type=submit] {
	background: #2938d7;
	border: 0;
	width: 35%;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	transition: 0.3s;
	cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type=submit]:hover {
	background: #0062cc;
}
#footer .copyright {
	text-align: center;
	padding-top: 30px;
}
#footer .credits {
	text-align: center;
	font-size: 13px;
	color: #f1f7ff;
}
#footer .credits a {
	color: #bfddfe;
}
#footer .credits a:hover {
	color: #f1f7ff;
}





@media (max-width: 800px){
	
	#s_3 .header,
	#s_4 .header,
	#s_5 .header,
	#s_6 .header,
	#s_7 .header,
	#s_8 .header{
		flex-direction: column;
		align-items: flex-start;
	}
	#s_3 .header img,
	#s_4 .header img,
	#s_5 .header img,
	#s_6 .header img,
	#s_7 .header img,
	#s_8 .header img{
		margin-bottom: 20px;
	}
	
	
	.title_section{
		font-size: 33px!important;
		line-height: 1.2;
	}
	.section  .description{
		font-size: 25px!important;
	}
	
	.tab_group  .list_tabs  .title{
		font-size: 28px;
	}
	
	#s_16  .title{
		font-size: 28px;
	}
	
	#s_14_1  .icon{
		width: 100px;
		height: 100px;
	}
	/*
	
	#s_9 .title{
		font-size: 35px!important;
	}
	
	
	#s_37 .title{
		font-size: 35px!important;
	}
	
	#s_15 .title{
		font-size: 35px!important;
	}
	
	#s_19  h3{
		font-size: 35px!important;
	}
	
	#s_19  .title{
		font-size: 35px!important;
	}
	
	#s_30 .title{
		font-size: 30px!important;
	}
	
	#s_31 .title{
		font-size: 30px!important;
	}
	*/
	
	
	#s_9 .container{
		padding: 30px!important;
	}
	#s_9 .description{
		font-size: 25px!important;
	}
	
	
	#s_10 .title {
		font-size: 18px!important;
	}
	
	#s_15 .description{
		font-size: 25px!important;
	}
	#s_31 .container{
		padding-left: 30px;
		padding-right: 30px;
	}
	#s_31 .icon{
		width: 50px;
		height: 50px;
	}
}
#modal_regional h2{
	font-size: 30px;
    margin-bottom: 15px;
}
#modal_regional .buttons{
	display: flex;
}
#modal_regional .buttons .btn_cancel{
	margin-right: 15px;
	background-color: #9b9b9b;
}
#modal_regional .buttons > a{
	user-select: none;
    display: block;
    width: 100%;
    color: #ffffff;
    background-color: #3745e1;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 16px;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    margin: 0;
    outline: none;
    transition: 0.2s;
}


.g-recaptcha{
	transform: scale(0.9);
}

.information_above_button {
	color: #000000;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
}

.title_down_information_text {
	color: #f87811;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
}

.block-first {
	padding-bottom: 30px;
}

.block-second {
	padding-top: 30px;
	padding-bottom: 30px;
}