/* Подключаем шрифты тут */
@font-face {
	font-family: 'ActayWideCondensed';
	font-weight: 250;
	src: url('../fonts/Actay/ActayCondensed-Thin.otf');
}
@font-face {
	font-family: 'ActayWide';
	font-weight: 400;
	src: url('../fonts/Actay/Actay-Regular.otf');
}
@font-face {
	font-family: 'ActayWideCondensed';
	font-weight: 250;
	font-style: italic;
	src: url('../fonts/Actay/ActayCondensed-ThinItalic.otf');
}
@font-face {
	font-family: 'ActayWideBold';
	font-weight: 700;
	src: url('../fonts/Actay/ActayWide-Bold.otf');
}

/* Анимация вращения иконки */
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
	transition: .21s;
}

body {
	font-family: 'ActayWide', sans-serif;
	background-color: #edfdff;
	overflow-x: hidden;
}

.fancybox-thumbs__list a::before {
    border-color: #16c2dc;
}

a.a-null {
	text-decoration: none;
	color:unset;
}

.container {
	width: 100%;
	max-width: 1888px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}

/* BUTTONS */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #15C2DC;
	text-decoration: none;
	color: white;
	font-size: 16px;
	border: none;
	border-radius: 20px;
	outline: none;
	padding: 15px;
	cursor: pointer;
}
.btn.btn_more_padding {
	padding: 15px 25px;
}
.btn.btn_bordered {
	border: 5px solid #7bddea;
}
.btn:hover {
	background-color: #17AEC5;
}
.btn.btn_white {
	background-color: white;
	color: black;
}
.btn.btn_white:hover {
	background-color: #7bddea;
}
.btn_popup {
	cursor: pointer;
}

.mob_buttons {
	display: none;
}

/* COMMON */
.mt_50 {
	margin-top: 50px;
}

/* ICONS */
.icon {
	display: block;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}
.icon.icon_menu {
	background-image: url('../img/icons/menu_toggle.svg');
}
.icon.icon_star {
	background-image: url('../img/icons/icon_star.svg');
}
.icon.icon_phone {
	background-image: url('../img/icons/icon_phone.svg');
}
.icon.icon_mail {
	background-image: url('../img/icons/icon_mail.svg');
}
.icon.icon_group {
	background-image: url('../img/icons/icon_group.svg');
}

/* COLORS */
.text_orange, .text_orange * {
	color: rgb(240, 104, 71);
}
.text_blue, .text_blue * {
	color: rgb(21, 194, 220);
}

/* HEADER */
.main_header {
	background-color: #edfdff;
	padding: 15px 0;
}
.main_header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main_header .logo {
	text-transform: uppercase;
	color: black;
	text-decoration: none;
	font-family: 'ActayWide';
	font-size: 20px;
	font-weight: bolder;
	line-height: 31px;
}
.main_header .logo a {
	text-decoration: none;
	color: black;
}
.main_header .logo span {
	color: white;
	background: #15C2DC;
	border: 5px solid #a1e9f3;
	border-radius: 27px;
	padding: 8px 25px;
	line-height: 35px;
	font-family: 'ActayWide';
	font-weight: bolder;
}

/* MENU TOGGLE */
.menu_toggle {
	text-decoration: none;
	color: white;
	background-color: #15C2DC;
	border: 5px solid #a1e9f3;
	font-size: 20px;
	font-weight: bolder;
	display: flex;
	align-items: center;
	padding: 15px 15px;
	border-radius: 25px;
	cursor: pointer;
}
.menu_toggle:hover {
	background-color: #17AEC5;
}
.menu_toggle .icon {
	height: 18px;
	background-size: auto 18px;
	margin-right: 10px;
	margin-top: -3px;
}

/* TOP BUTTONS */
.top_buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
}
.tb_item {
	display: flex;
	align-items: center;
	border-radius: 20.5px;
	border: 1px solid #B2EBF2;
	padding: 10px 17px;
	min-width: 226px;
	cursor: pointer;
}
.tb_item:hover {
	background-color: #B2EBF2;
}
.tb_item_icon {
	width: 25px;
	margin-right: 15px;
}
.tb_icon {
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: 50%;
	display: block;
}
.tb_item_text {

}
.tb_item_title {
	margin-bottom: 3px;
}
.tb_item_title, .tb_item_title * {
	font-family: 'ActayWideBold';
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}
.tb_item_title + p {
	font-family: 'ActayWide';
	font-size: 13px;
	font-weight: bolder;
}
.tb_icon.icon_tooth {
	background-image: url('../img/icons/icon_tooth.svg');
}
.tb_icon.icon_phone {
	background-image: url('../img/icons/icon_phone.svg');
}

/* HERO */
.hero_block {
	min-height: 625px;
	background-image: url('../img/hero_bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	position: relative;
	overflow: hidden;
}
.hero_container {
	width: 100%;

}
.hero_family {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/hero_family.webp');
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.hero_content {
	width: 650px;
	display: flex;
	flex-direction: column;
	padding: 80px 0;
	position: absolute;
	z-index: 9;
}
.hero_badge {
	font-size: 19px;
	color: white;
	border-radius: 30px;
	border: 1px solid white;
	padding: 10px 15px;
	display: flex;
	align-items: center;
}
.hero_badge .icon {
	width: 35px;
	height: 35px;
}
.hero_title {
	font-family: 'ActayWideBold';
	font-size: 40px;
	line-height: 60px;
	color: black;
	text-transform: uppercase;
	margin: 30px 0 15px 0;
}
.hero_title span {
	color: white;
}
.hero_dots {
	width: 80%;
	height: 80%;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	margin-left: -40%;
	margin-top: 5%;
}
.hero_dot {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: white;
	background-clip: padding-box;
	border: 3px solid rgba(255, 255, 255, 0.35);
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
	transition: none;
	animation: dot_float 4s ease-in-out infinite alternate;
}
.hero_dot:nth-child(2n) {
	animation-duration: 5s;
	animation-delay: -2s;
}
.hero_dot:nth-child(3n) {
	animation-duration: 6s;
	animation-delay: -1s;
}
.hero_dot:nth-child(5n) {
	animation-duration: 4.5s;
	animation-delay: -3s;
}
@keyframes dot_float {
	from { translate: 0 -7px; }
	to { translate: 0 7px; }
}
.hero_text {
	color: black;
	font-size: 16px;
	line-height: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero_text:before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: white;
	background-clip: padding-box;
	border: 3px solid rgba(255, 255, 255, 0.35);
}
.hero_buttons {
	max-height: 110px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin-top: 30px;
	gap: 20px;
}
.hero_button {
	flex: 1;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0 10px;
	position: relative;
	text-align: center;
	font-size: 21px;
	text-decoration: none;
	color: white;
	//box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.5);
	border: 5px solid #a1e9f3;	
}
.hero_button:not(.hero_button_animated) {
	cursor: pointer;
}
.hero_button:hover, .hero_button:hover .hero_button_text a {
	background-color: white;
	color: black;
}
.hero_button.hero_button_animated {
	background-color: white;
	border: 5px solid #a1e9f3;
	text-align: left;
	color: black;
	font-size: 16px;
	box-shadow: none;
}
.hero_button_price {
	display: none;
}
.hero_button_text {
	flex: 1;
}
.hero_button_text a {
	color: white;
	text-decoration: none;
}
.hero_button_icon {
	width: 100px;
	height: 100px;
	display: block;
	text-align: center;
	position: relative;
}
.hero_icon_discount {
	width: 100%;
	height: 100%;
	background-image: url('../img/discount.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    -webkit-animation:s pin 20s linear infinite;
    -moz-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}
.hero_icon_text {
	position: absolute;
	top: 12.5%;
	left: 12.5%;
	width: 75%;
	height: 75%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 0;
}
.hero_icon_text p:first-child {
	font-size: 11px;
}
.hero_icon_text p:last-child {
	font-size: 20px;
}

/* */
main {
	padding: 70px 0;
}
body.page main {
	padding: 5px 0 70px 0;
}

/* CONTACT BADGES */
.contact_badges {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.contact_badges li {
	flex: 1;
	background-color: #b2ebf2;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 25px 35px;
}
.contact_badges li .icon {
	width: 25px;
	height: 25px;
	background-size: 25px;
}
.contact_text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact_text .bigger, .contact_text .bigger a {
	font-family: 'ActayWideBold';
	text-decoration: none;
	color: black;
	font-size: 16px;
}
.contact_text p:last-child {
	font-size: 13px;
}
.contacts_grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin: 30px 0;
	gap: 10px;
}
.contacts_item {
	border-radius: 25px;
	border: 1px solid #B2EBF2;
	padding: 30px;
}
.contacts_item_title {
	background-image: url('../img/icons/icon_location.svg');
	background-position: 0%;
	background-repeat: no-repeat;
	background-size: 40px;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.contacts_item_title .bigger {
	font-size: 24px;
	font-family: 'ActayWideBold';
}
.contacts_item_map {
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: 25px;
	margin: 15px 0 15px 0;
}
.contacts_item_map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contacts_item_phones {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.contacts_item_phones a {
	text-decoration: none;
	color: black;
}
.contacts_item_rating {
	margin-top: 10px;
}
.cip_title {
	display: block;
	font-size: 14px;
	font-weight: bolder;
	margin: 20px 0 15px 0;
}
.cip {
	border: 1px solid #B2EBF2;
	font-size: 15px;
	padding: 14px 15px;
	border-radius: 15px;
}
.cip a {
	color: black;
	text-decoration: none;
}

/* WELCOME BLOCK */
.welcome_block {
	background-color: #b2ebf2;
	border-radius: 50px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	padding: 0;
}
.wb_img {
	width: 500px;
	border-radius: 50px;
	overflow: hidden;
}
.wb_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wb_text {
	flex: 1;
	padding: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wb_text p {
	line-height: 25px;
}
.wb_quote {
	padding: 80px 50px;
	position: relative;
}
.wb_quote:before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background-image: url('../img/icons/quote_top.svg');
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.wb_quote:after {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background-image: url('../img/icons/quote_bottom.svg');
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	right: 0;
}

/* BANNER */
.floating_animation {

}
.fa_el {
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	pointer-events: none;
	transition: none;
}
.fa_tooth1 {
	width: 76px;
	height: 79px;
	background-image: url('../img/tooth_small.svg');
	left: -37px;
	bottom: 12px;
}
.fa_tooth2 {
	width: 149px;
	height: 166px;
	background-image: url('../img/tooth_big.svg');
	left: 92px;
	top: 50%;
	margin-top: -83px;
}
.fa_tooth3 {
	width: 48px;
	height: 47px;
	background-image: url('../img/tooth1.svg');
	left: 23.3%;
	top: -17px;
}
.fa_tooth4 {
	width: 71px;
	height: 73px;
	background-image: url('../img/tooth_down.svg');
	left: 61.2%;
	bottom: -35px;
}
.fa_tooth5 {
	width: 52px;
	height: 49px;
	background-image: url('../img/tooth_up.svg');
	left: 67.5%;
	top: -19px;
}
.fa_tooth6 {
	width: 100px;
	height: 99px;
	background-image: url('../img/tooth_right.svg');
	right: -52px;
	top: 50%;
	margin-top: -61px;
}
.floating_banner {
	position: relative;
	width: 100%;
	border-radius: 50px;
	background-color: #16c2dc;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 50px;
}
.floating_banner.page_title {
	justify-content: center;
}
.floating_banner h1 {
	text-transform: uppercase;
	display: block;
	position: relative;
	padding-top: 20px;
	font-size: 40px;
}
.floating_banner h1 span {
	color: white;
}
.floating_banner h1:before {
	content: '';
  	width: 100px;
  	height: 2px;
  	display: block;
  	background: white;
  	left: 50%;
  	margin-left: -50px;
  	top: 0;
  	position: absolute;
}
.banner_title {
	padding-right: 150px;
}
.banner_title.page_title {
	padding: 0;
}
.banner_title_top {
	font-weight: bolder;
	font-size: 32px;
	color: black;
	margin-bottom: 5px;
}
.banner_title_top span {
	color: white;
}
.banner_title p {
	color: white;

}
.banner .btn {
	font-size: 14px;
	padding: 17px 40px;
	border-radius: 20px;
}

/* SERVICES */
section {
	padding: 50px 0;
}
section.services {

}
.section_title {
	font-family: 'ActayWideBold';
	font-weight: bolder;
	text-transform: uppercase;
	text-align: center;
	margin: 40px 0;
	font-size: 40px;
	padding-top: 10px;
	position: relative;
}
.section_title:before {
	content: '';
	width: 50px;
	height: 2px;
	display: block;
	background: rgb(21, 194, 220);
	left: 50%;
	margin-left: -25px;
	top: 0;
	position: absolute;
}
.section_title.no_line:before {
	display: none;
}
.section_title span {
	color: rgb(21, 194, 220);
}
.section_title.section_title_left {
	text-align: left;
	padding-left: 90px;
}
.section_title.section_title_left:before {
	left: 20px;
	margin-left: 0;
	top: 50%;
}
.section_after {

}
.section_after h2 {
	display: block;
	width: 95%;
	margin: 0 auto;
	font-weight: normal;
	text-align: center;
	font-size: 20px;
	line-height: 31px;
}
.badge {
	font-size: 20px;
	font-weight: bolder;
	color: white;
	background: #16c2dc;
	padding: 7px 20px;
	border-radius: 25px;
}
.services_grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 10px;
	margin-top: 15px;
}
.services_item {
	border-radius: 50px;
	background-color: #b2ebf2;
	padding: 12px;
}
.services_item_img {
	width: 100%;
	height: 140px;
	overflow: hidden;
	border-radius: 40px;
}
.services_item_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.services_item_title {
	text-align: center;
	font-weight: bolder;
	text-transform: uppercase;
	margin: 30px 0 25px 0;
	font-size: 20px;
}
.services_item_footer {
	padding: 0 15px 10px 15px;
}
.services_item .btn {
	display: flex;
	padding: 20px 15px;
}

.services_table {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.services_header {
	display: flex;
}
.services_header .sh_item {
	width: 50%;
	background-color: #b2ebf2;
	font-weight: bolder;
	font-size: 18px;
	padding: 20px;
}
.services_body {
	display: flex;
	flex-direction: column;
	border: 1px solid #b2ebf2;
}
.services_body .services_item {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	background: white;
	border-radius: 0;
	padding: 0;
}
.services_body .services_item .btn {
	padding: 10px 25px;
	margin: 0;
	display: inline-flex;
}
.services_body .services_item:nth-child(even) .sh_item {
	background: #edfdff;
}
.services_body .services_item .sh_item {
	width: 50%;
	padding: 20px;
	border: 1px solid #b2ebf2;
	border-bottom: none;
	border-right: none;
	font-size: 18px;
}
.services_body .services_item .sh_item:first-child {
	border-left: none;
}
.services_body .services_item:last-child .sh_item {
	border-bottom: none;
}
.services_body .services_item .sh_item:last-child {
	border-right: none;
}

/* PRICE LIST */
/* CONSUMER INFO */
.info_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 30px 0 60px 0;
}
.info_card {
	background: white;
	border-radius: 25px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 30px rgba(21, 194, 220, 0.08);
}
.info_card h3 {
	font-family: 'ActayWideBold';
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 20px;
}
.info_card p {
	font-size: 18px;
	line-height: 29px;
	margin-bottom: 20px;
}
.info_card p a {
	color: inherit;
}
.info_link {
	margin-top: auto;
	padding-top: 10px;
	color: rgb(240, 104, 71);
	text-decoration: none;
	font-size: 16px;
}
.info_link:hover {
	text-decoration: underline;
}
.info_sub {
	max-width: 950px;
	margin: -10px auto 40px auto;
	text-align: center;
	font-size: 20px;
	line-height: 31px;
}
.info_sub strong {
	display: block;
	font-size: 22px;
	margin-bottom: 10px;
}
.info_content {
	background: white;
	border-radius: 25px;
	padding: 50px;
	margin: 30px 0 60px 0;
}
.info_content strong {
	font-family: 'ActayWideBold';
}
.info_content h2 {
	font-family: 'ActayWideBold';
	font-size: 30px;
	line-height: 42px;
	margin-bottom: 30px;
}
.info_content ul {
	margin: 0 0 25px 25px;
	font-size: 20px;
	line-height: 31px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

section.prices .section_title {
	width: 85%;
	margin: 50px auto 30px auto;
}
.price_list {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	margin-top: 35px;
}
.price_list_item {
	font-size: 20px;
	display: flex;
	border-bottom: 1px solid #d4e3e5;
	padding: 15px 0;
	align-items: center;
	justify-content: space-between;
}
.pl_left {
	width: 80%;
}
.pl_right {
	font-weight: bolder;
}
.price_list_item:first-child {
	border-top: 1px solid #d4e3e5;
}
.price_list_item .sub {
	font-size: 14px;
	margin-top: 5px;
	opacity: .5;
}
.price_list_after {
	width: 75%;
	text-align: center;
	margin: 80px auto 10px auto;
	font-size: 30px;
	line-height: 40px;
}

.bullet_text {
	line-height: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.bullet_text p {
	flex: 1;
}
.bullet_text:before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #15C2DC;
	border: 3px solid #a1e9f3;
}

/* DOCS */
.docs_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.docs .section_title {
	text-align: left;
	margin: 0;
}
.docs .bullet_text {
	width: 90%;
	margin: 30px 0 50px 0;
}
.docs_left {
	width: 50%;
}
.docs_right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}
.docs_img_holder {
	width: 400px;
	height: 400px;
	border-radius: 50px;
	background-color: #16c2dc;
	position: relative;
}
.docs_img {
	position: absolute;
	transform: translate(-90px, -75px);
	animation: flydoc 1s;
}

@keyframes flydoc {

	0% {
		transform: translate(-130px, -75px);
	}
	100% {
		transform: translate(-90px, -75px);
	}

}

/* FOOTER */
footer {
	background-color: #073840;
	padding: 45px 0;
}
.footer_columns {
	display: grid;
	grid-template-columns: 0.7fr 1fr 0.5fr;
	gap: 30px;
}
.footer_columns .menu {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	list-style-type: disc;
	gap: 15px;
}
.footer_columns .menu li a {
	color: white;
}
.fc_first {
	display: flex;
	flex-direction: column;
}
.fsmall {
	margin-top: auto;
	font-size: 10px;
	color: white;
}
footer .menu li::marker {
	color: white;
	background-color: white;
}
footer .menu a:hover {
	text-decoration: none;
}
footer .logo {
	text-transform: uppercase;
	color: black;
	text-decoration: none;
	font-family: 'ActayWide';
	font-size: 20px;
	font-weight: bolder;
	line-height: 31px;
}
footer .logo a {
	text-decoration: none;
	color: white;
}
footer .logo span {
	color: white;
	background: #15C2DC;
	border: 5px solid #0b6876;
	border-radius: 27px;
	padding: 8px 25px;
	line-height: 35px;
	font-family: 'ActayWide';
	font-weight: bolder;
}
footer .sub {
	width: 75%;
	text-transform: uppercase;
	font-size: 13px;
	color: white;
	line-height: 19px;
	margin-top: 30px;
	background: url('../img/footer_star.svg') 0 no-repeat;
	padding-left: 30px;
}
footer .company {
	font-size: 12px;
	color: white;
}

/* SIDE NAV */
.side_nav {
	position: fixed;
	top: 120px;
	right: 0;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 100;
}
.side_nav a {
	background: white;
	font-size: 16px;
	color: rgb(22, 194, 220);
	font-weight: bolder;
	border-radius: 20px 0 0 20px;
	text-decoration: none;
	padding: 9px 25px;
	text-transform: uppercase;
	display: inline-flex;
	flex-grow: 0;
}

/* OVERLAY & MENU */
.overlay_bg {
	background: black;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 998;
	transition: 1s;
}
.overlay_bg.overlay_show {
	display: block;
	opacity: .6;
}
.main_nav {
	position: fixed;
	top: 0;
	right: 0;
	padding: 48px 58px 48px 48px;
	min-height: 100%;
	background-color: #15c2dc;
	z-index: 99999;
	display: block;
	transition: all 1s;
	right: -500px;
}
.main_nav.active {
	right: 0;
}
.main_nav.hiding {
	right: -500px;
}
.main_nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.main_nav li a {
	font-size: 24px;
	font-weight: normal;
	color: white;
	text-decoration: none;
}
.main_nav li a:hover {
	color: black;
}
.main_nav li.current a {
	color: black;
	font-family: 'ActayWideBold';
}
.button_close {
	background-color: none;
	background: none;
	border: none;
	font-size: 44px;
	position: absolute;
	top: 0px;
	right: 10px;
	font-family: Arial;
	font-weight: normal;
	color: white;
	cursor: pointer;
}

.vkg_cols {
	width: 75%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.vkg_left {
	width: 75%;
}
.vkg_left p {
	font-size: 20px;
	line-height: 31px;
}

/* POPUP */
@keyframes popup {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.1);
  }
  100%{
    transform: scale(1);
  }
}

.popup_close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 34px;
	line-height: 1;
	font-family: Arial;
	font-weight: normal;
	color: #9fb6ba;
	cursor: pointer;
	padding: 5px;
	z-index: 1;
}
.popup_close:hover {
	color: #15C2DC;
}
.popup {
	position: fixed;
	width: 550px;
	top: 50%;
	left: 50%;
	margin-left: -275px;
	margin-top: -225px;
	background: white;
	z-index: 999;
	padding: 30px 0;
	display: none;
	animation: popup .5s;
}
.popup_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.popup_title {
	font-size: 36px;
	font-weight: bolder;
}
.popup_sub {
	display: block;
	margin: 15px 0;
}
.popup_form {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0 30px;
}
.popup_group {
	width: 100%;
	padding: 10px 0;
}
.popup_input {
	width: 100%;
	height: 60px;
	padding-left: 15px;
	border: 1px solid rgb(201, 201, 201);
	border-radius: 5px;
}
.popup_submit {
	display: block;
	margin-top: 15px;
}
.popup_submit .btn {
	display: flex;
	width: 100%;
	border-radius: 5px;
}
.popup_footer {
	padding: 15px 0 0 0;
	text-align: center;
}
.popup_footer a {
	color: #15C2DC;
}

/* ARTICLE */
article p {
	font-size: 20px;
	line-height: 31px;
	margin-bottom: 25px;
}
article ul {
	margin: 15px;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* PERSONNEL */
.personal_items {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.personal_item {
	display: flex;
	align-items: center;
	background: white;
	border-radius: 25px;
	padding: 30px 50px 20px 70px;
}
.personal_name {
	width: 40%;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
}
.personal_info {
	width: 50%;
}
.personal_info p {
	line-height: 26px;
}
.personal_name .bullet_text {
	display: block;
	position: relative;
	font-size: 32px;
	line-height: 40px;
	padding-left: 35px;
	padding-right: 50px;
	font-family: 'ActayWideBold';
	font-weight: 700;
	text-transform: uppercase;
}
.personal_name .bullet_text:before {
	position: absolute;
	top: 50%;
	margin-top: -12px;
	left: 0;
}

/* LICENSE */
.license_items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.license_item {
	width: 100%;
	height: 250px;
}
.license_item a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}
.license_item img {
	width: auto;
	height: 100%;
	object-fit: cover;
}
.license_str {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-top: 70px;
}
.license_str_item a {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: black;
	text-decoration: none;
}
.license_str_img {
	margin-right: 30px;
}

@-webkit-keyframes in {
  100% {
    transform: translateX(0);
  }
}
@keyframes in {
  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes out {
  100% {
    transform: translateX(300px);
  }
}
@keyframes out {
  100% {
    transform: translateX(300px);
  }
}

@media (min-width: 1920px) {

	.hero_block {
		height: 625px;
		background-size: contain;
	}

}


.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.js-ajax-form .loading.d-block,
.js-ajax-form .error-message.d-block,
.js-ajax-form .sent-message.d-block {
	display: block !important;
}


.child {
	margin-top:40px;
    border-radius: 50px;
    border: 1px solid #B2EBF2;
    padding: 30px;
	display:flex;
	justify-content: space-evenly;
	align-items: center;
    flex-wrap: nowrap;
	overflow:hidden;
}

.child img {
	width:100%;
	max-width:400px;
	margin-top: -30px;
	margin-bottom: -30px;
}

.ch_text h4 {
	font-size:1.4em;
	font-family: 'ActayWideBold';
    font-weight: bolder;
    text-transform: uppercase;
	color: rgb(21, 194, 220);
	padding-bottom:20px;
}

.ch_text {
	padding-right:40px;
}




@media (max-width: 720px) {
	
.child {
    flex-wrap: wrap;
}
	
.ch_text {
	text-align:center;
	margin-bottom:50px;
	padding:0;
}

	.floating_banner h1:before {
	display:none;
}

	.license_str {
		gap: 10px;
	}
	.license_items {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.license_item {
		width: 100%;
		height: 180px;
	}
	.license_str_item a {
		font-size: 16px;
	}
	.personal_items {
		gap: 30px;
	}
	.personal_item {
		flex-direction: column;
		padding: 50px;
		gap: 15px;
	}
	.personal_name {
		width: 100%;
	}
	.personal_name .bullet_text {
		font-size: 20px;
		line-height: 31px;
	}
	.personal_info {
		width: 100%;
	}
	article p, article ul {
		font-size: 16px;
	}
	.section_after h2 {
		font-size: 16px;
	}
	.badge {
		font-size: 16px;
		margin-top: 10px;
	}
	.price_list {
		width: 100%;
	}
	.price_list_item {
		flex-direction: column;
		font-size: 16px;
		align-items: flex-start;
		gap: 10px;
	}
	section.vkg {
		padding-top: 0;
	}
	.vkg_cols {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.vkg_left, .vkg_right {
		width: 100%;
	}
	.vkg_left p {
		font-size: 16px;
	}
	.price_list_after {
		width: 100%;
		font-size: 20px;
	}
	.services_body .services_item .btn {
		padding: 10px 15px;
		text-align: center;
	}
	.services_header .sh_item {
		font-size: 14px;
		word-wrap: break-word;
	}
	.services_body .services_item .sh_item {
		font-size: 14px;
	}
	.floating_banner h1 {
		font-size: 20px;
		text-align: center;
	}
	.floating_banner.page_title {
		padding: 30px;
		align-items: center !important;
	}
	.popup {
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		margin: 0 !important;
	}
	.popup_title {
		font-size: 24px;
	}
	.main_header .container {
		padding: 0 15px;
	}
	.main_header .logo {
		font-size: 18px;
	}
	.main_header .logo span {
		padding: 8px 15px;
	}
	.mob_buttons {
		display: flex;
		align-items: center;
	}
	.menu_toggle {
		padding: 8px 15px;
		margin-left: 10px;
	}
	.menu_toggle .icon {
		margin: 0;
	}
	.hero_block .container {
		padding: 0 !important;
	}
	.hero_family {
		display: none !important;
	}
	.docs .bullet_text {
		width: 100%;
	}
	footer .sub {
		width: 100%;
	}
	.fc_first .fsmall {
		margin-top: 25px;
	}
	.footer_columns {
		grid-template-columns: 1fr;
	}
	.footer_columns .menu {
		grid-template-columns: 1fr;
		list-style: none;
	}
	.banner_title {
		padding: 0;
		text-align: center;
	}
	.banner_title p {
		font-size: 13px;
	}
	.floating_animation {
		position: static;
		width: 100%;
	}
	.fa_el {
		display: none;
	}
	.fa_tooth2 {
		display: block;
		position: static;
		width: 77px;
		height: 86px;
		margin: 0 auto;
	}
	.hero_dots {
		display: none;
	}
	.side_nav {
		display: none !important;
	}
	.container {
		padding: 0 15px;
	}
	.main_header {
		padding: 20px 0;
	}
	.main_header.container {
		justify-content: center;
	}
	.main_header .logo {
		text-align: center;
		width: 100%;
	}
	.top_buttons {
		display: none;
	}
	.top_menu {
		display: none;
	}

	/* HERO */
	.hero_content {
		width: 100%;
		padding: 30px;
		position: static;
	}
	.hero_button_price {
		display: flex;
	}
	.hero_badge {
		font-size: 16px;
	}
	.hero_badge p {
		flex: 1;
	}
	.hero_title {
		font-size: 22px;
		line-height: 32px;
	}
	.hero_text p {
		flex: 1;
	}
	.hero_buttons {
		flex-direction: column;
		max-height: none;
	}
	.hero_button:not(.hero_button_animated) {
		min-height: 80px;
	}
	.hero_family {
		display: none;
	}
	.welcome_block {
		flex-direction: column;
	}
	.wb_img {
		width: 100%;
		height: calc(100vw - 30px);
		border-radius: 50px;
	}
	.wb_text {
		padding: 30px;
	}
	.wb_quote {
		padding-left: 0;
		padding-right: 0;
	}
	.services_grid {
		flex-direction: column;
		grid-template-columns: 1fr;
	}
	.banner {
		padding: 0;
	}
	.banner .container {
		padding: 0 30px;
	}
	.banner_title_top {
		font-size: 20px;
	}
	.floating_banner {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		max-width: 320px;
		margin: 0 auto;
		border-radius: 30px;
		padding: 30px 25px;
	}
	.floating_banner .banner_action {
		margin-top: 15px;
	}
	.docs_container {
		flex-direction: column;
		align-items: flex-start;
	}
	.docs_left {
		width: 100%;
	}
	.section_title {
		font-size: 24px;
		margin: 25px 0;
	}
	.docs .section_title {
		font-size: 24px;
	}
	.docs_right {
		display: none;
	}
	.contact_badges {
		flex-direction: column;
	}
	.contact_badges li {
		width: 100%;
	}
	.contacts_grid {
		grid-template-columns: 1fr;
	}

	.info_grid {
		grid-template-columns: 1fr;
		gap: 15px;
		margin: 20px 0 40px 0;
	}
	.info_card {
		padding: 25px;
	}
	.info_card h3 {
		font-size: 20px;
		line-height: 28px;
	}
	.info_card p {
		font-size: 16px;
		line-height: 26px;
	}
	.info_sub {
		font-size: 16px;
		line-height: 26px;
	}
	.info_sub strong {
		font-size: 18px;
	}
	.info_content {
		padding: 25px;
		margin: 20px 0 40px 0;
	}
	.info_content h2 {
		font-size: 22px;
		line-height: 30px;
	}
	.info_content ul {
		font-size: 16px;
		line-height: 26px;
	}
}
		
/* ===== СТИЛИ ДЛЯ ТАБЛИЦЫ  ===== */
.table-wrapper {
            border-radius: 18px;
            background: #fff;
			overflow: hidden;
			width:100%;
			max-width:800px;
        }

        .table_price {
            width: 100%;
            table-layout: fixed;        
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        .table_price thead {
            background: #16c2dc;
            color: #ffffff;
        }

        .table_price thead th {
            padding: 16px 18px;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.3px;
            word-break: break-word;
        }

        .table_price thead th:last-child {
            text-align: right;
            width: 25%;           
        }

        .table_price tbody tr {
            border-bottom: 1px solid #e2ebf0;
            transition: background 0.15s ease;
        }

        .table_price tbody tr:last-child {
            border-bottom: none;
        }

        .table_price tbody td {
            padding: 14px 18px;
            vertical-align: middle;
            color: #1e2f3a;
            line-height: 1.4;
            word-break: break-word;      /* перенос длинных слов */
        }

        .table_price tbody td:first-child {
            width: 75%;                 /* услуги занимают три четверти */
        }

        .table_price tbody td:last-child {
            text-align: right;
            font-weight: 600;
            color: #1c5a6e;
            /* убрали white-space: nowrap — цена переносится, если надо */
        }

        .table_price tbody tr:hover {
            background: #16c2dc36;
            cursor: default;
        }

        .table_price tbody tr:nth-child(even) {
            background: #f8fbfd;
        }

        .table_price tbody tr:nth-child(even):hover {
            background: #16c2dc36;
        }

        .table_price .price-value {
            font-variant-numeric: tabular-nums;
        }

        /* ===== Адаптивность для мобильных ===== */
        @media (max-width: 700px) {
            .price-card {
                padding: 20px 15px 30px;
            }

            .price-header h1 {
                font-size: 1.6rem;
            }

            .table_price thead th,
            .table_price tbody td {
                padding: 12px 10px;
                font-size: 0.85rem;
            }

            /* можно оставить те же пропорции */
            .table_price thead th:last-child,
            .table_price tbody td:last-child {
                width: 22%;              /* чуть меньше на узких экранах */
            }
            .table_price tbody td:first-child {
                width: 78%;
            }

        }

        @media (max-width: 480px) {
            .price-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .table_price thead th,
            .table_price tbody td {
                padding: 10px 6px;
                font-size: 0.78rem;
            }

            .price-header span {
                font-size: 0.8rem;
                padding: 4px 12px;
            }

            .table_price thead th:last-child,
            .table_price tbody td:last-child {
                width: 20%;
            }
            .table_price tbody td:first-child {
                width: 80%;
            }
        }
		
		
.pre_price {
	text-align:center;
	font-size:1.5rem;
	max-width:800px;
	margin:0 auto 50px auto;
}

.pre_price a {
	color:#16c2dc;
}

.pre_price a:hover {
	color:#008ca1;
}

@media (max-width: 700px) {
           .pre_price {
	font-size:1.2rem;
	margin-bottom:30px;
}
        }
		
.tab_price h4 {
	font-size:1.4em;
	color:#16c2dc;
	padding:50px 0 20px 0;
}

/* ---------- Карточка табов ---------- */


        /* ---------- Строка кнопок ---------- */
        .tabs-header {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .tab-btn {
			font-family: 'ActayWide';
            padding: 10px 24px;
            font-size: 1.2rem;
            font-weight: 500;
            color: #4a5568;
            background: transparent;
            border: 2px solid #16c2dc;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.3px;
            user-select: none;
            background: #fff;
        }

        .tab-btn:hover {
            background: #16c2dc12;
            border-color: #16c2dc;
            transform: translateY(-1px);
        }

        /* Активная кнопка */
        .tab-btn.active {
            background: #16c2dc;
            border-color: #16c2dc;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(26, 32, 44, 0.15);
            transform: translateY(-1px);
        }

        .tab-btn.active:hover {
            cursor: default;
        }

        /* ---------- Контентная область ---------- */
        .tabs-content {

            min-height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .tab-panel {
            display: none;
            font-size: 1.25rem;
            font-weight: 400;
            color: #2d3748;
            text-align: center;
            line-height: 1.6;
            animation: fadeIn 0.3s ease;
        }

        .tab-panel.active {
            display: block;
        }

        /* ---------- Лёгкая анимация появления ---------- */
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(6px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---------- Адаптивность ---------- */
        @media (max-width: 480px) {
            .tabs-container {
                padding: 20px 16px 28px;
            }

            .tab-btn {
                padding: 8px 10px;
                font-size: 0.8rem;
                flex: 1 1 auto;
                min-width: 80px;
                text-align: center;
            }

            .tabs-header {
                gap: 8px;
            }

            .tabs-content {
                
                min-height: 120px;
            }

            .tab-panel {
                font-size: 1rem;
            }
        }

        @media (max-width: 380px) {
            .tab-btn {
                font-size: 0.8rem;
                padding: 6px 12px;
                min-width: 60px;
            }
        }
		
.listing {
	margin:0 !important;
	border-radius:20px;
	max-width:350px !important;
}

p.qwot {
	display:block;
	border:1px solid #16c2dc;
	border-radius:20px;
	padding:20px;
	text-align:center;
	width:100%;
	max-width:800px;
	margin:0 auto;
}

p.qwot span{
	color:#fff;
	font-weight:700;
	background-color: #16c2dc;
	border-radius:10px;
	padding:3px 10px;
}

/* соцсети */
.feedbackicon {
  position: fixed;
  bottom:20px;
  right:20px;
  width: 200px;
  z-index: 10;
}
.feedbackicon .contain {
  display: flex;
  column-gap:10px;
  justify-content: flex-end;
}
.feedback__link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.feedback__link:hover {
  opacity: .8;
}
.feedback__img {
  width: 50px;
  height: 50px;
}
@media (max-width:768px) {
  .feedbackicon  {
    bottom:10px;
  }
  .feedbackicon .contain {
    column-gap: 10px;
  }
  .feedbackicon .contain {
    justify-content:center;
  }
  .feedback__img {
    width: 50px;
    height: 50px;
  }
  footer.footer{
    padding-bottom:80px;
}
}