@import url(basic.css);


.navbar {
	display: none;
}



.under-construction {
	text-align: center;
	color: red;
	
	font-weight: 700;
	font-size: 18px;
}





.header-top {
	height: 40px;
	background: var(--red1)
}

.header-top-wrapper {
	display: flex;
	gap: 0px;
}

.header-top-wrapper .address {
	display: block;
	height: 40px;
	line-height: 30px;
	color: #fff;
	font-size: 12px;
	padding: 5px 15px 5px 50px;
	background: url(../images/icon-address.png) left 15px center no-repeat;
	font-weight: 700

}

.header-top-wrapper a.address1 {
	display: block;
	height: 40px;
	line-height: 30px;
	color: #fff;
	font-size: 12px;
	padding: 5px 15px 5px ;
	border-left: 1px solid #ddd;

}

.header-top-wrapper a.address1:hover {
	text-decoration: underline;
}

.header-top-wrapper .address:hover,
.header-top-wrapper .phone:hover,
.header-top-wrapper .whatsapp:hover,
.header-top-wrapper .email:hover {
	background-color: var(--red2);
	cursor: pointer;
}


.header-top-wrapper .phone {
	display: block;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 14px;
	padding: 0 15px 0 50px;
	margin-left: auto;
	background: url(../images/icon-phone.png) left 15px center no-repeat;

}

.header-top-wrapper .whatsapp {
	display: block;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 14px;
	padding: 0 15px 0 50px;
	background: url(../images/icon-whatsapp.png) left 15px center no-repeat;

}

.header-top-wrapper .email {
	display: block;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 14px;
	padding: 0 15px 0 50px;
	background: url(../images/icon-email.png) left 15px center no-repeat;

}

.header-flex {
	display: flex;
	gap: 15px;
	margin: 10px auto;

}

.header-flex .logo {
	display: flex;
	flex-direction: column;
	justify-content: center;

}

.header-flex .logo img {
	width: 200px;
}

.header-flex .home-h1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 36px;
	line-height: 36px;
	color: var(--red2);
	padding: 0;
	margin: 0;
	margin-left: auto;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.15rem;
}

.header-flex .links{
	display: flex;
	margin-left: auto;
		flex-wrap: wrap;
	gap: 0;
	align-items: center;
	font-weight: 600;
	text-transform: uppercase;
}

.header-flex .links a{
	padding: 10px 10px;
	font-size: 14px;
	color: #333;
}

.header-flex .links a:hover{
	color: var(--red1);
	text-decoration: underline
}


.header-grid{
	display: grid;
	gap: 15px;
	margin: 10px auto;
	grid-template-columns: 1fr 1fr 1fr;
}




.desktop-menu {

	background: rgba(255,255,255, 0.4);
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.desktop-menu.sticky {
	display: block;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	backdrop-filter: blur(10px);
}



.desktop-menu-wrapper {
	display: flex;
	gap: 0;
	justify-content: center;
}

.desktop-menu .item {

	min-height: 60px;
	position: relative;
}

.desktop-menu .item > a {
	display: flex;
	gap: 0;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #000;
	padding: 10px 20px;
	margin: 0 0;
	min-height: 60px;
	letter-spacing: 0.05rem;
	font-weight: 500;
	
	text-align: center;
	font-size: 14px;
	line-height: 20px;
}



.desktop-menu .item:hover > a {
	background-color: var(--red1);
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}


.desktop-menu .item .sub-menu {
	display: none;
	top: 60px;
	background: var(--red1);
	left: 0;
	position: absolute;
	padding: 15px 15px;
	color: #fff;
	width: auto;
	z-index: 200;
}

.desktop-menu .item:hover .sub-menu {
	display: block;
}

.desktop-menu .item .sub-menu > a{
	display: block;
	font-size: 12px;
	white-space: nowrap;
	padding: 8px 10px;
	line-height: 14px;
}

.desktop-menu .item .sub-menu > a:hover {
	text-decoration: underline
}


.home-carousel-desktop {
	margin: 15px auto;
	display: block;
}

.home-carousel-mobile-section {
	display: none;
}


.home-carousel-desktop-grid {
	display: grid;
	gap: 10px;
	grid-template-areas:
		"big big small1"
		"big big small2";
	grid-template-columns: 3fr, 1fr;
	grid-template-rows: 1fr, 1fr);

}

.home-carousel-desktop-grid .big {
	grid-area: big;
	min-height: 200px;

}

.home-carousel-desktop-grid .small1 {
	grid-area: small1
}

.home-carousel-desktop-grid .small2 {
	grid-area: small2
}


.owl-carousel.home-carousel-desktop .owl-nav button.owl-prev {
	width: 20px;
	height: 40px;
	background: url(../images/slider-arrow-left.png) center center no-repeat !important;
	background-size: contain !important;
	color: transparent;

	position: absolute;
	left: -40px;
	bottom: calc(50% - 20px);
	filter: grayscale(100%);
	opacity: 0.5;


}



.owl-carousel.home-carousel-desktop .owl-nav button.owl-next {
	width: 20px;
	height: 40px;
	background: url(../images/slider-arrow-right.png) center center no-repeat !important;
	background-size: contain !important;
	color: transparent;
	position: absolute;
	margin-top: 20px;
	right: -40px;
	bottom: calc(50% - 20px);
	filter: grayscale(100%);
	opacity: 0.5;
}

.owl-carousel.home-carousel-desktop .owl-nav button.owl-prev:hover,
.owl-carousel.home-carousel-desktop .owl-nav button.owl-next:hover {
	filter: grayscale(0%);
	opacity: 1;
}


.home-carousel-mobile.owl-carousel .owl-dots {
	display: flex;
	gap: 6px;
	justify-content: center;
	;
	margin: 10px auto;
}



.home-carousel-mobile.owl-carousel button.owl-dot {
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #666;
}


.home-carousel-mobile.owl-carousel button.owl-dot.active {
	transform: scale(1.5);
	background: var(--red2);
}


.home-clinics {
	background-color: rgba(46, 51, 57, 1);
	padding: 30px 0;
	margin: 30px auto;
}



.home-clinics .title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
	text-align: center;
	position: relative;
	margin: 10px auto 20px;
}

.home-clinics .title:after {
	display: block;
	position: absolute;
	left: 50%;
	bottom: -4px;
	height: 3px;
	width: 100px;
	margin-left: -50px;
	content: '';
	background: #fff;
	
}


.home-clinics .clinics-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
	max-width: 800px;
	margin: 0 auto;
}

.home-clinics .clinics-grid .clinics-item {
	
}


.home-clinics .clinics-grid .clinics-item .img-wrapper{
	width: 240px;
	height: 240px;
	margin: 0 auto 20px;
	overflow: hidden;
	border-radius: 50%;
}


.home-clinics .clinics-grid .clinics-item .img-wrapper img{ 
	display: block;
	width: 100%;
	transition: all 5s;
}

.home-clinics .clinics-grid .clinics-item .img-wrapper:hover img{ 
	transform: scale(1.2);
}



.home-clinics .clinics-grid .clinics-item .address {
	display: block;
	height: 40px;
	line-height: 30px;
	color: #fff;
	font-size: 16px;
	padding: 5px 15px 5px 50px;
	background: url(../images/icon-address.png) left 15px center no-repeat;
	font-weight: 700;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);

}

 
 .home-clinics .clinics-grid .clinics-item p {
	 color: #fff;
	 font-weight: 700;
		 text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
		 margin: 0 auto;
 }

.home-clinics .clinics-grid .clinics-item .phone {
	display: block;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 20px;
	padding: 0 15px 0 50px;
	background: url(../images/icon-phone.png) left 15px center no-repeat;
	font-weight: 700;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
		margin-top: 10px;
}





.classificator-wrapper {
	background: var(--gray1);
	padding: 10px;
	margin: 20px auto;
}

.classificator-form {
	display: grid;
	gap: 10px;
	grid-template-columns:  1fr 1fr 1fr;
}


.classificator-form input[type="submit"] {
	background: var(--red2);
	color: #fff;
	font-size: 14px;
	padding: 10px 15px;
	border-radius: 4px;
	transition: all 0.15s;
}



.classificator-form input[type="submit"]:hover {
	background: var(--red1);

}





.classificator-form select {
	appearance: none;
	/* Disable the default arrow */
	-webkit-appearance: none;
	/* For WebKit-based browsers */
	-moz-appearance: none;
	/* For Firefox */
	width: 100%;
	padding: 10px 35px 10px 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 20px;
	cursor: pointer;
}

.classificator-form select:focus {

	border: 1px solid var(--red2);
	outline: none;

}



.home-why .why-top {
	margin: 0 0;
	max-width: 1200px;
	width: 100%;
	margin-bottom: -50px;

}

.home-why .why-top img {
	display: block;
	width: 100%;
	padding: 0;
}

.home-why .why-middle {
	margin: 0 0;
	max-width: 1200px;
	width: 100%;
	background: url(../images/why-middle.jpg) center top repeat-y;
	background-size: 100% auto;
	min-height: 300px;
	padding: 0 10% 0px;

}

.home-why .why-middle .middle-content {
	position: relative;
	z-index: 10;
}

.home-why .why-bottom {
	margin: 0 0;
	max-width: 1200px;
	width: 100%;
	margin: 0px 0 0;
	position: relative;
	margin-top: -290px;
}





.home-why .why-bottom img {
	display: block;
	width: 100%;
	display: block;
	width: 100%;
	padding: 0;
	position: relative;
}



.home-why .why-middle h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--gray3);
	text-transform: uppercase;
	margin: 0 auto 20px
}


.home-why .why-middle p {
	color: #333;
	font-size: 14px;
}


.home-why .why-middle .digitable {
	display: grid;
	gap: 20px;
	grid-template-columns: 30px 1fr;
	margin: 15px;
}


.home-why .why-middle .digitable .digit {
	font-size: 40px;
	color: var(--red2);
	font-weight: 900;
	text-align: center;

}


.home-why .why-middle .digitable p {
	font-size: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 20px;
	padding: 0;
	margin: 0;
}


.home-programs {
	margin: 0px auto;

}

.home-programs h2 {
	text-align: center;
	font-size: 25px;
	text-transform: uppercase;
	margin: 0 auto;
	padding: 20px 0 40px;

	color: #555;
	font-weight: 700;

}

.home-programs .programs-flex {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.home-programs .programs-flex .programs-item {
	flex: 1 0 30%;
	max-width: 320px
}



.home-programs .programs-flex .programs-item img {
	display: block;
	margin: 0 auto;
	width: 200px;
}



.home-programs .programs-flex .programs-item p {
	text-align: center;
	margin: 15px auto;
}


.home-services-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr;
	
}


.home-services-grid .home-services-item {
	display: flex;
	gap: 10px;
	
}


.home-services-grid .home-services-item img {
	display: block;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	
}

.home-services-grid .home-services-item h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	color: #444;
	margin: 0 0 15px;
}


.home-services-grid .home-services-item a {
	display: block;
	font-size: 14px;
	color: var(--red1);
	line-height: 16px;
	margin: 9px auto;
	font-weight: 600;
}

.home-services-grid .home-services-item a:hover {
	text-decoration: underline;
}


.home-why-choose {
	background: var(--gray1);
	padding: 40px 15px;
	margin: 30px auto 0;
}

.home-why-choose h2 {
	color: var(--red1);
	font-weight: 900;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;

}

.home-why-choose .slogan {
	color: #777;
	font-weight: 900;
	text-align: center;
	font-size: 17px;
	margin-bottom: 30px;

}


.home-why-choose-flex {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.home-why-choose-flex .home-why-choose-item {
	flex: 1 0 30%;
	max-width: 320px;
}



.home-why-choose-flex .home-why-choose-item img {
	display: block;
	margin: 0 auto;
	height: 100px;
}



.home-why-choose-flex .home-why-choose-item p {
	text-align: center;
	margin: 15px auto;
}


.home-slogan-block {
	margin: 0px auto 30px;
	padding: 0 0;
	background: url(../images/slogan-block.jpg) center top no-repeat;
	background-size: cover;
}




.home-slogan-block .home-slogan-block-overlay {
	background: rgba(15, 128, 128, 0.75);
	padding: 120px 0px;
}

.home-slogan-block .home-slogan-block-overlay p {
	color: #fff;
	font-size: 20px;
	;
	text-align: center;
	margin: 0 auto;

	padding: 0 15px;
	font-weight: 700;
}

.home-our-programs {
	padding: 30px 0;
}

.home-our-programs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.home-our-programs-grid .text {}

.home-our-programs-grid .text .digit {
	color: var(--red2);
	font-weight: 900;
	text-align: center;
	font-size: 30px;
	margin: 20px auto 10px;
}

.home-our-programs-grid .text h2 {
	color: var(--red1);
	font-weight: 900;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
}



.home-our-programs-grid .text p {
	color: #666;
	font-weight: 400;
	text-align: center;
	font-size: 17px;
	padding: 6px 15px;
}

.home-our-programs-grid .text p.long {
	color: #666;
	font-weight: 400;
	text-align: center;
	font-size: 17px;
	margin-top: 30px;
}


.home-our-programs-img {
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.home-our-programs-img img {
	display: block;
	width: 90%;
	margin: 0 auto;
}




.home-steps-grid {
	display: grid;

	gap: 30px;
	grid-template-areas:
		"step1 step2 step3"
		"step4 step5 step6"
		"step7 step8 step8"
	;

}

.home-steps-item-1 {
	grid-area: step1
}

.home-steps-item-2 {
	grid-area: step2
}

.home-steps-item-3 {
	grid-area: step3
}

.home-steps-item-4 {
	grid-area: step4
}

.home-steps-item-5 {
	grid-area: step5
}

.home-steps-item-6 {
	grid-area: step6
}

.home-steps-item-7 {
	grid-area: step7
}

.home-steps-item-8 {
	grid-area: step8
}

.home-steps-item-9 {
	grid-area: step9
}

.home-steps-item {
	background: var(--red1);
	border-radius: 20px;
	padding: 20px 25px;
	position: rel
}

.home-steps-item img {
	display: block;
	width: 100px;
	border-radius: 50%;
	margin: 0 auto;
}

.home-steps-item .text {
	margin-top: -60px;
	display: flex;
	gap: 30px;
}






.home-steps-item .text .digit {
	display: block;
	color: #129995;
	font-size: 120px;
	line-height: 120px;
	font-weight: 900;
	width: 75px;
	text-align: center;
	;
}

.home-steps-item .text p {
	margin-top: 100px;
	color: #fff;
	flex-grow: 5;
}


.float-contacts {
	display: none;
	position: fixed;
	bottom: 20px;
	width: 290px;
	border-radius: 50px;
	height: 70px;

	right: 20px;
	box-shadow: 0 0 13px 2px rgba(0, 0, 0, 0.5);
	z-index: 10;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.float-contacts a {
	width: 70px;
	height: 70px;
	display: block;
	background: var(--red2);
}

.float-contacts a:hover {
	background-color: var(--red1);
}

.float-contacts-grid {
	display: grid;
	gap: 0;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.float-contacts-grid a.address {
	width: 80px;
	height: 70px;
	border-radius: 30px 0 0 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	background-image: url(../images/icons/pin-white.png);
	background-position: 24px center;
	background-repeat: no-repeat;
	background-size: 35px 35px;
}

.float-contacts-grid a.phone {
	width: 70px;
	height: 70px;
	background-image: url(../images/icons/phone-white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 35px 35px;
}

.float-contacts-grid a.whatsapp {
	width: 70px;
	height: 70px;
	background-image: url(../images/icons/whatsapp-white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 35px 35px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.float-contacts-grid a.email {
	width: 80px;
	height: 70px;

	border-radius: 0px 30px 30px 0px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	background-image: url(../images/icons/email-white.png);
	background-position: left 20px center;
	background-repeat: no-repeat;
	background-size: 35px 35px;
}





.home-news {
 padding: 20px 0;
 background: #fff;
}

.home-news .title{
color: var(--red1);
	font-weight: 900;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
	text-align: center;
	display: block;
}


.special-home-block {
 padding: 20px 0; 
}

.special-home-block .title{
 display: block;
 margin: 20px 20px;
 text-align: center;
 font-size: 25px;
 font-weight: 900;
 text-shadow: 1px 1px 0 #fff;
 color: #005bd0;
}

.special-home-block .title2{
 display: block;
 margin: -10px 20px 20px;
 text-align: center;
 font-size: 18px;
 font-weight: 400;
 text-shadow: 1px 1px 0 #fff;
 color: #666;
}

.home-social {
	margin: 0px 15px;
	background: #eee;
	border-radius: 20px;
	padding: 10px 15px 30px;
}


.home-social  .home-social-icons {
	 display: flex;
	 justify-content: center;
	 gap: 10px;
 }

.home-social  .home-social-icons a {
	 display: block;
	 width: 64px;
	 height: 64px;
	 
 }



.home-news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}


.form-news {
background: var(--red1);
	padding: 30px 20px 20px;
	border-radius: 15px;
 
}


.form-news p{
margin: 0px auto 10px;
font-size: 16px;
color: #fff !important;
font-weight: 700;
text-align: center;
}

.form-news  input[type="text"], .form-news  input[type="email"], .form-news  input[type="numbers"] {
color: #888; 
display: block;
margin: 4px 0;
padding: 0px 10px;
width: 100%;
box-sizing: border-box;
font-size: 18px;
line-height: 26px;
border: none;
border-radius: 6px; 
}

.form-news  input[type="submit"]{
color: #fff;
text-align: center;
font-weight: 600;
width: 100%;
box-sizing: border-box;
display: block;
margin: 4px 0;
padding: 5px 10px;
font-size: 16px;
line-height: 24px;
background: var(--red2);
border: none;
border-radius: 6px; 
}

.form-news  input[type="submit"]:hover {
background: #dd5d00;
}



.agree-confidential {
	margin: 20px auto;
	max-width: 800px;
	color:#333;
	font-size: 12px;
	line-height: 18px;
}



.agree-confidential input[type="checkbox"] {
	height: 18px;
	width: 18px;
	display: block;
	float: left;
	margin: 0 0;
}

.agree-confidential a { 
	color:#003d8e; 
	font-weight: 700;
}

.agree-confidential a:hover { 
	text-decoration: underline;
}



.agree-confidential.white { 
	color:#fff; 
}
 
.agree-confidential.white input[type="checkbox"] { 
}

.agree-confidential.white a { 
	color:#ddd; 
	font-weight: 700;
}



.home-news-item {
	border-radius: 15px;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	border: 1px solid var(--red1);
	min-height: 320px;
}



.home-news-item:hover {
	filter: brightness(80%);
}


.home-news-item .description {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 20px;
	width: 100%;
	text-align: center;
	background: rgba(15,128,128,0.7);
	color: #fff;
	transition: 0.15s;
}


.home-news-item:hover .description {
		padding: 25px 20px;
			background: rgba(15,128,128,0.9);
}


.home-news-item .description .news-title {
	font-weight: 700;
	line-height: 14px;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}


.home-news-item .description .news-date {
		font-weight: 700;
	line-height: 14px;
	font-size: 11px;
	margin-top: 7px;
}



.home-readmore {
	font-weight: 700;
	color: var(--red1);
}

.home-readmore:hover {
	text-decoration: underline;
	color: var(--red2);
}




footer {
	background-color: var(--red1);
	min-height: 300px;
	margin-top: 30px;
	padding: 30px 0 50px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:20px;
}


.footer-grid .info {}

.footer-grid .info p {
	color: #fff;
	font-size: 13px;
	margin: 7px auto;

}

.footer-grid .info p.p1 {
	color: #fff;
		line-height: 22px;
	font-size: 18px;
	margin: 7px auto;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
	font-weight: 700;
	
}


.footer-grid .info p.p2 {
	color: #fff;
	font-size: 16px;
	margin: 7px auto;
			line-height: 18px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.7); 
	font-weight: 700; 

}

.footer-grid .divider {
	text-decoration: underline;
	height: 2px;
	width: 100px;
	background: rgba(0,0,0,0.3);
	margin: 13px 0;
}


.footer-grid .info a {
	display: block;
	margin: 7px auto;
	padding: 0 0 0 0px;
	color: #fff;


}

.footer-grid .info a:hover {
	text-decoration: underline;

}

.footer-grid .info a.phone {
	background: url(../images/icons/phone-white.png) left center no-repeat;
	background-size: 15px auto;
	padding: 0 0 0 20px; 
}


.footer-grid .info a.email {
	background: url(../images/icons/email-white.png) left center no-repeat;
	background-size: 17px auto;
	padding: 0 0 0 20px; 
}


.footer-grid .info a.whatsapp{
	background: url(../images/icons/whatsapp-white.png) left center no-repeat;
	background-size: 17px auto;
}

.footer-grid .center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-grid .center p {
	color: #fff;
	font-size: 15px;
	margin: 7px auto;

}

.footer-grid .center a {
	display: block;
	margin: 7px auto;
	padding: 0 0 0 0px;
	color: #fff;
	text-align: center;
	font-size: 13px;
	line-height: 13px;
	;

}

.footer-grid .center a:hover {
	text-decoration: underline;

}

.footer-grid .getcall .title {
	font-size: 20px;
	text-align: center;
	font-weight: 900;
	color: #fff;
	margin: 0 auto 6px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.footer-grid .getcall .slogan {
	font-size: 13px;
	line-height: 16px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	text-align: center;
	font-weight: 500;
	color: #fff;
	margin: 0 auto 10px;
}

.footer-grid .getcall .footer-getcall-form {
	width: 80%;
	float: right;
}

.footer-grid .getcall .footer-getcall-form input[type="text"] {
	display: block;
	margin: 7px auto;
	font-size: 16px;
	line-height: 16px;
	padding: 5px 8px;
	text-align: center;
	width: 100%;
	border: none;
	border-radius: 8px;
}

.footer-grid .getcall .footer-getcall-form input[type="submit"] {
	display: block;
	margin: 7px auto;
	font-size: 16px;
	line-height: 16px;
	font-weight: 900;
	padding: 15px 8px;
	text-align: center;
	width: 100%;
	border: 1px solid #fff;
	border-radius: 8px;
	background: var(--red2);
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	transition: all 0.15s
}

.footer-grid .getcall .footer-getcall-form input[type="submit"]:hover {
	transform: scale(1.05);
}



.agree-confidential {
	margin: 20px auto;
	max-width: 500px;
	width: 90%;
	color:#333;
	font-size: 12px;
	line-height: 18px;
}



.agree-confidential input[type="checkbox"] {
	height: 18px;
	width: 18px;
	display: block;
	float: left;
	margin: 0 0;
}

.agree-confidential a { 
	color:#003d8e; 
	font-weight: 700;
}

.agree-confidential a:hover { 
	text-decoration: underline;
}



.agree-confidential.white { 
	color:#fff; 
}
 
.agree-confidential.white input[type="checkbox"] { 
}

.agree-confidential.white a { 
	color:#ddd; 
	font-weight: 700;
}

.footer-copiright {
	margin: 20px auto; 
}

.footer-copiright p{
	font-size: 12px;
	color: #fff;
	text-align: center;
	padding: 0;
	margin: 4px auto;
}


.footer-copiright p a:hover{
	text-decoration: underline
}



.home-testimonials {
	margin: 20px auto;
}


.home-testimonials-carousel {
		border-radius: 30px;
	box-shadow: 1px 1px 16px 2px rgba(0,0,0,0.4);
	margin: 0 auto 50px;

}


.home-testimonials .title {
	color: var(--red1);
	font-weight: 900;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
}



.home-testimonials .testimonials-item {
	padding: 30px;
}



.home-testimonials .testimonials-item p{
	font-size: 15px;
	line-height: 16px;
	text-align: center;
}


.home-testimonials .testimonials-item img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 auto 10px;
	border-radius: 50%;
	border: 8px solid #ddd;
}





.home-testimonials .testimonials-item p.author {
	font-size: 18px;
	line-height: 18px;
	margin: 20px auto 0;
	text-align: center;
	color: var(--gray2);
	font-weight: 700;
}



.owl-carousel.home-testimonials-carousel .owl-nav button.owl-prev {
	width: 20px;
	height: 40px;
	background: url(../images/slider-arrow-left.png) center center no-repeat !important;
	background-size: contain !important;
	color: transparent;

	position: absolute;
	left: -40px;
	bottom: calc(50% - 20px);
	filter: grayscale(100%);
	opacity: 0.5;


}



.owl-carousel.home-testimonials-carousel .owl-nav button.owl-next {
	width: 20px;
	height: 40px;
	background: url(../images/slider-arrow-right.png) center center no-repeat !important;
	background-size: contain !important;
	color: transparent;
	position: absolute;
	margin-top: 20px;
	right: -40px;
	bottom: calc(50% - 20px);
	filter: grayscale(100%);
	opacity: 0.5;
}

.owl-carousel.home-testimonials-carousel .owl-nav button.owl-prev:hover,
.owl-carousel.home-testimonials-carousel .owl-nav button.owl-next:hover {
	filter: grayscale(0%);
	opacity: 1;
}


.home-testimonials-carousel.owl-carousel .owl-dots {
	display: flex;
	gap: 6px;
	justify-content: center;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -30px;
}



.home-testimonials-carousel.owl-carousel button.owl-dot {
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #666;
}


.home-testimonials-carousel.owl-carousel button.owl-dot.active {
	transform: scale(1.5);
	background: var(--red2);
}



.page-grid {
	display: grid;
	gap: 15px;
	grid-template-columns: 3fr 1fr;
}



.doctor_sidebar {
	background: var(--red1);
	min-height: 300px;
	display: block;
	margin: 120px 0 20px;
	padding: 20px 20px;
	border-radius: 15px;
}

.doctor_sidebar > img {
	display: block;
	width: 260px;
	margin: -140px auto 10px;
	border-radius: 50%;
	border: 10px solid var(--red1);
	box-sizing: border-box;
 
}

.doctor_sidebar p {
	color: #fff;
	font-size: 15px;
	line-height: 15px;
	margin: 12px 0;
	text-align: center;
	 font-weight: 400;
}


.doctor_sidebar p.p1 {
	font-size: 20px;
		 font-weight: 400;
	 margin: 12px 0 16px;
	  font-weight: 700;
	 text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}



.doctor_sidebar p.p2 {
	font-size: 14px;
 font-weight: 700;
	 margin: 0 0 22px ;
		  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}



.doctor_sidebar input[type="text"], .doctor_sidebar input[type="email"] {
	display: block;
	margin: 4px auto;
	border: none;
	background: #fff;
	color: #333;
	text-align: center;
	padding: 4px 10px;
	width: 100%;
	border-radius: 8px;
}

.doctor_sidebar input[type="submit"] {
 display: block;
	margin: 4px auto;
	border: none;
	background: #333;
	color: #fff;
	font-size: 18px;
	text-align: center;
	width: 100%;
	padding: 7px 10px;
		border-radius: 8px;
}

.doctor_sidebar input[type="submit"]:hover {
	background: var(--red2);
}
.medimage {
	height: 300px;
	background-size: cover;
	background-position: center;
	position: relative;
	display block;
	overflow: hidden;
	cursor: pointer;
}




.breadcrumbs {

	text-align:  center;
	color:  #777;
	font-size:  14px;
	margin-top: 0px;
}

.breadcrumbs a{
		color:  var(--red1);		
}


.breadcrumbs a:hover{
		color:  var(--red2);
		text-decoration:  underline;
}




.page-wrapper   {  
		margin: 0px auto 20px;
		padding: 0 0px;
		width: 100%;
}



.page-wrapper  h1 {
		text-align:  center;
		font-size:  30px;
		font-weight:  700;
		color: var(--red1);
		text-transform:  uppercase;
		margin: 20px auto 20px;
}


.page-wrapper p {
	margin: 12px auto;
	font-size: 16px;
	text-align: justify;
	color:#555;
}

.page-wrapper p a, .page-wrapper ul a, .page-wrapper ol a{
	color: var(--red1);
		font-weight: 700;
}


.page-wrapper p a:hover, .page-wrapper ul a:hover, .page-wrapper ol a:hover{
	color: var(--red2);

	text-decoration: underline ;
} 


.page-wrapper h2{
	font-size: 24px; 
	color: var(--red2);
	font-weight: 700;
}


.page-wrapper h3{
	font-size: 22px; 
	color: var(--red1);
	font-weight: 400; 
}


.page-wrapper h4{
	font-size: 20px; 
	color: var(--red1);
	font-weight: 700; 
}


.page-wrapper h5{
	font-size: 18px; 
	var(--red1)
	font-weight: 400; 
}


.page-wrapper ul {
	list-style-type: square;
	font-size: 15px;
	margin: 20px auto;
}

.page-wrapper ul li , .page-wrapper ol li{
 
	margin: 10px auto;
	color:#555;
}
.page-wrapper ol { 
	font-size: 15px;
	margin: 20px auto;
	color:#555;
}


.page-wrapper img.alignleft {
	float: left;
	display: block;
	margin: 10px 15px 10px 0;
	max-width: 30%;
	border-radius: 20px;
}


.page-wrapper img.alignright {
	float: right;
	display: block;
	margin: 10px 0 10px 15px;
	max-width: 30%;
	border-radius: 20px;
}



.page-wrapper img.aligncenter {
	float: none;
	display: block;
	margin: 15px auto 25px;
	max-width: 100%;
	border-radius: 20px;
}

.page-wrapper img.rounded {
	
	border: 2px solid #fff !important ;
	border-radius: 50%!important ;
}




	.page-contacts-wrapper .address{
		font-size: 20px;
		color: #666;
		line-height: 24px;
		font-weight: 700;
		margin: 20px auto 20px;
	}
	
	.page-contacts-wrapper .schedule-title {
		font-size: 14px;
		text-transform: uppercase;
		
	}
	
	.page-contacts-wrapper .schedule-p {
		font-size: 18px;
		line-height: 18px;
		margin: 0px auto 20px;
		font-weight: 700;
	}
	
	.page-contacts-wrapper .department-title {
		font-size: 16px;
		font-weight: 700;
		color: #444;
		padding: 8px 10px;
		background: #f6f6f6;
		margin: 22px auto 10px;
		text-transform: uppercase;
	}
	
	.page-contacts-wrapper a.contact-icon {
		margin: 1px auto;
		padding: 10px 0 10px 50px;
		font-size: 16px;
		color: var(--red);
		line-height: 16px;
		display: block;
		font-weight: 700;
	}

	.page-contacts-wrapper a.contact-icon:hover {
		text-decoration: underline;
	}
	.page-contacts-wrapper a.contact-icon.phone {
		background: url(/images/icons/contacts-phone.webp) 15px center no-repeat;
		background-size: 26px;
		
	}	
	.page-contacts-wrapper a.contact-icon.whatsapp{
		background: url(/images/icons/footer-whatsapp.webp) 15px center no-repeat;
		background-size: 26px;
		
	}	

	.page-contacts-wrapper a.contact-icon.max{
		background: url(/images/icons/contacts-max.png) 15px center no-repeat;
		background-size: 26px;
		
	}	

	
	.page-contacts-wrapper a.contact-icon.email {
		background: url(/images/icons/contacts-email.webp) 15px center no-repeat;
		background-size: 26px;
		
	}	




.vuz-main-image-wrapper {
	width: 100%;
	display: block;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	padding: 0;
		margin: 20px auto 20px;
}


.vuz-main-image-wrapper img {
	display: block;
	width: 100%;
}

.page-wrapper .vuz-main-image-wrapper h1{
	display: block;
	width: 100%;
	padding: 15px 15px;
	background: var(--red1);
	color:#fff;
margin: 0 auto;
	font-size: 20px;
	line-height: 22px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
	text-transform: none;
	 
	
}

.vuz-specialities {
	width: 100%;
	display: block;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	padding: 20px 15px;
		margin: 20px auto 20px;
		background: #fafafa;
}



.page-wrapper  .vuz-specialities h2 {
color: #777;
}


.vuz-specialities .one-speciality {
	font-weight: 700;
	display: inline-block;
	padding: 5px 10px;
	color: var(--red2);
	white-space: nowrap;
}


.vuz-carousel-wrapper {
		max-width: 100%;
	overflow: hidden;
	width: 100%;
	position: relative;
}
.vuz-carousel { 
	
	
}

.vuz-carousel .item a img {
	height: 200px;
} 



 .gallery-carousel {
	width: 100%;
 }
 .gallery-carousel .owl-dots .owl-dot.active {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background: var(--purple1);
  margin: 0 3px;
 }

 .gallery-carousel .item {
  overflow: hidden;
 }

 .gallery-carousel .item a img {
  transition: all 2s ease-out;
 }

 .gallery-carousel .item a img:hover {
  transform: scale(1.1);
  filter: brightness(1.75);
 }


 .gallery-carousel .item a img {
	height: 200px;
} 


.masonry-container {
	margin: 20px auto;
  column-count: 4; /* Adjust for desired number of columns */
  column-gap: 10px; /* Gutter between columns */
}

.masonry-item {
  display: inline-block; /* Essential for correct flow */
  width: 100%; /* Items take full width of their column */
  margin-bottom: 10px; /* Gutter between items */
  overflow: hidden;
  border-radius: 8px;
}

.masonry-item img{
	display: block;
	width: 100%;
	transition: 0.3s;
}

.masonry-item:hover img{
	filter: brightness(80%);
	transform: scale(1.2);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .masonry-container {
	column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-container {
	column-count: 1;
  }
}


.vuz-price-table {
	font-size: 12px;
}


.search-parameter {
	margin: 10px auto;
	color: var(--red2);
	font-weight: 700;
	text-align: center;
}

.vuzes-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 20px auto;
}


.vuzes-grid .vuz-item {
	display: block;
	overflow: hidden;
	border-radius: 10px;
		background: var(--red1);
		border: 1px solid var(--red1);;
}

.vuzes-grid .vuz-item:hover {
				background: var(--red2);
		border: 1px solid var(--red2);;
}



.vuzes-grid .vuz-item .img-wrapper {
	display: block;
	height: 300px;
	width: 100%;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.vuzes-grid .vuz-item .img-wrapper .vuz-name{
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	background: rgba(0,0,0,0.8);
	font-weight :700;
	font-size: 15px;
	padding: 15px 10px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.4s;
}

.vuzes-grid .vuz-item:hover .img-wrapper .vuz-name{
	padding: 25px 10px;
}

.vuzes-grid .vuz-item .vuz-info{

	padding: 15px 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vuzes-grid .vuz-item .vuz-info .vuz-name{
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	font-weight :700;
}

.vuzes-grid .vuz-item .vuz-info .vuz-country{
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	font-weight :700;
	font-size: 18px;
	line-height: 18px;
	
}

.vuzes-grid .vuz-item .vuz-info .vuz-city{
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	font-weight :700;
	font-size: 14px;
	line-height: 14px;
}

.form-reply {
	
	display: none;
}

.form-reply .title{
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	text-align: center;
	margin: 20px auto 30px;
}



.form-reply .text{
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	text-align: center;
}





/* MODAL */



#overlay1 {
	background: rgba(0,0,0,0.7);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
}



#modal-callback {
	display: none;
}


.modal-window {
display: block;
width: 90%;
position: fixed;
max-width: 500px;
top: 50%;
left: 50%;
	background: var(--red);
z-index: 2000;

}

.modal-window .close-icon {
	width: 20px;
	height: 20px;
	display: block;
	background: url(../images/close.png) center center no-repeat;
	background-size: 20px 20px;
	position: absolute;
	top: 17px;
	right: 10px;
	opacity: 0.5;
}
.modal-window .close-icon:hover {
	opacity: 1;
}

.modal-window p {
display: block;
font-size: 16px;
line-height: 18px;
color: #fff;
text-align: center;
}


.modal-window form {
display: block; 
margin: 20px 20px;
}

.modal-window form input::placeholder,
.modal-window form textarea::placeholder{
color: #ddd;
}


.modal-window form input[type="text"], .modal-window form input[type="phone"]{
	display: block;
	width: 100%;
	border: 1px solid rgba(255,255,255,0.3);
	outline: none;
	background: none;
	font-size: 20px;
	text-align: center;
	color:#fff;
	padding: 5px 10px;
	margin: 10px auto;

}


.modal-window form textarea{
	display: block;
	width: 100%;
	border: 1px solid rgba(255,255,255,0.3);
	outline: none;
	background: none;
	font-size: 20px;
	text-align: center;
	color:#fff;
	padding: 5px 10px;
	margin: 10px auto;

}


.modal-window form input[type="submit"]{
	display: block;
	width: 100%;
	border: 2px solid rgba(255,255,255,0.3);
	outline: none;
	background: var(--red2);
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	color:#fff;
	padding: 15px 10px;
	text-transform: uppercase;
	font-weight: 900;
	
	margin: 10px auto;
	transition: all 0.15s ease-out;

}

.modal-window form input[type="submit"]:hover{
	/*box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.6);*/
	border: 2px solid rgba(255,255,255,1);
}
 

.modal-window form input[type="text"]:focus, .modal-window form input[type="phone"]:focus{
	border: 1px solid rgba(255,255,255,1);
	color:#fff;
}




#modal-order {
	background: var(--red);
	display: none;
}

.modal-window form img {
	display: block;
	border-radius: 50%;
	width: 200px;
	margin: 0px auto 10px;
}


.modal-window form .title {
	color:#fff;
display: block;
font-size: 20px;
margin: 0 auto;
text-align: center;
}


.modal-window form .price{
	color:yellow;
display: block;
font-size: 26px;
margin: 0 auto;
text-align: center;
font-weight: 900;

}


.modal-head {
	background: rgba(0,0,0,0.2);
	text-align: center;
	display: block;
	padding: 15px 0;
	font-size: 24px;
	
	font-weight: 900;

}

#modal-thanx{
	display: none;
}

 



/* END MODAL */


.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr  1fr;
	gap: 15px;
}

.news-grid .news-item {
	display: block;
	border-radius: 10px;
	border:; 1px solid red;
	overflow: hidden;
}

.news-grid .news-item:hover {
	box-shadow: 0 0 12px 2px rgba(0,0,0,0.6);	
}

.news-grid .news-item .news-info {
	padding: 0 15px 20px;
}

.news-grid .news-item .img-wrapper{
	display: block;
	width: 100%;
	height: 200px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.news-grid .news-item .date{
	display: block;
	text-align: center;
	color: #666;
	margin: 15px auto 8px;
	font-size: 13px;
}

.news-grid .news-item .title{
	display: block;
	color: var(--red1);
	font-weight: 700;
		text-align: center;
}


.page-wrapper .date{
	display: block;
	text-align: center;
	color: #666;
	margin: 15px auto 8px;
	font-size: 15px;
}

.countries-list a {
	display: block;
	margin: 8px auto;
	font-size: 18px;
	font-weight: 700;
	color: var(--red1);
	text-align: center;
}





.fw-infoblock-table-wrapper{ 
  width: 100%;
  overflow: auto;
}

.fw-infoblock-table-wrapper::-webkit-scrollbar {
	width: 13px;
}
.fw-infoblock-table-wrapper::-webkit-scrollbar-track {
	background: #ddd; 
		border-radius: 20px; 
}
.fw-infoblock-table-wrapper::-webkit-scrollbar-thumb {
	background: #04aeda; 
	border-radius: 20px;       /* roundness of the scroll thumb */
	   /* creates padding around scroll thumb */
}
.fw-infoblock-table-wrapper::-webkit-scrollbar-thumb:active {
	background: #04aeda; 
}


.fw-infoblock-table-wrapper .table{  
	
}

.fw-infoblock .table *{
	text-align: left;
}

.fw-infoblock a, .page-wrapper p a, .page-content p a {
		color: #04aeda;
	text-decoration: underline;
}

.fw-infoblock a:hover, .page-wrapper p a:hover, .page-content p a:hover {
		color: #049dff;
	text-decoration: underline;
}

.fw-infoblock .title{
	text-align: left;
	/*background-color: black;*/
	display: block;
	padding: 0 0 0 50px;
	margin: 0px auto;
	font-size: 18px;
	line-height: 40px;
}



a.docs-pdf{
	background: url(/images/icons/docs/pdf-icon.png);
	color: #e14045;
}
a.docs-word{
	background: url(/images/icons/docs/word-doc-icon.png);
	color: #2654a9;
}

a.docs-jpg{
	background: url(/images/icons/docs/jpg-icon.png);
	color: #e14045;
}

a.docs-png{
	background: url(/images/icons/docs/png-icon.png);
	color: #e14045;
}
a.docs-excel{
	background: url(/images/icons/docs/excel-xls-icon.png);
	color: #e14045;
}
.docs-icon 	{
	background-position: 0 0 !important;
	background-repeat: no-repeat !important;
	background-size: 40px 40px !important;
	display: block;
	margin: 20px 30px;
	font-size: 20px;
	line-height: 24px;
	padding: 0 0 0 50px;
	min-height: 40px; 
}	

.docs-icon:hover{
 color: #04aeda;
} 


a.country-icon-link1 {
	display: block;
	padding: 5px 20px; 
	font-size: 20px;
	line-height: 24px;
	color: var(--red1) !important;
	text-align: center;
	margin: 10px 0;
	background: #eee;
	text-decoration: none !important;
	border-radius: 100px;
	border: 1px solid var(--red1);
}

a.country-icon-link1 img{
 height: 48px;   
 padding: 0 20px 0 0;
}

a.country-icon-link1:hover {
	background: var(--red1);
	color: #fff !important;
}


h2.red, h3.red, h4.red {
	color: #900000;
}

h2.green, h3.green, h4.green {
	color: #076000;
}


.tab1 {
	
	display: block;
	width: 100%;
	margin: 2px auto;
	border: 1px solid #04aeda;
}

.tab1 title, .tab1 .title{
	background: var(--red1);
	text-align: center;
	padding: 20px 30px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	display: block;
}

.tab1 article{
 padding: 20px 30px;   
 display: none;
}

.page-wrapper h3.inversed {
	background: var(--red1);
	text-align: center;
	padding: 20px 30px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	display: block;
	border-radius: 8px;
}


table.table1 {
	width: 100%;
	margin: 20px auto;
	
	text-align: center;
	border-collapse: collapse;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	overflow: hidden;
}

table.table1 thead td {
	background: #bbb !important;
	font-weight: 700 !important;
}

table.table1 td {
	border-color: #bbb;
	border: 1px solid #bbb;
	padding: 3px 10px;
	 color: #333;
}
table.table1 td p{
	text-align: center;
	color: #333;
}

table.table1 tr:nth-child(odd){
	background: #eee;
	color: #333;
}
	
table.table1 tr:nth-child(even){
	background: #ddd;
   
}

table.table1 tr:nth-child(even) p{
	
}


table.table1 tr.accent td{
	background: #bbb !important;
	font-weight: 700 !important;
}

table.table1 tr.accent2 td{
	color: #006e8a !important;
	font-weight: 700 !important;
}
table.table1 tr.accent2 td p{
	color: #006e8a !important;
	font-weight: 700 !important;
}

.visa-wrapper h2, .visa-wrapper h3 {
	text-align: center !important;
	font-weight: 700;
	margin: 20px auto;
	
}


	.header-contacts-mobile {
		display: none !important; 
	}
	

a.promo-phone {
	margin: 5px auto;
	display: block;
	padding: 10px 25px;
	background: var(--red1);
	color:#fff;
	font-size: 24px;
	line-height: 24px;
	border-radius: 30px;
	font-weight: 700;
	letter-spacing: 2px;
	text-decoration: none;
	overflow:hidden;
	position: relative;
	box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.4);
	border: 1px solid var(--red2);
}

a.promo-phone:hover { 
	background: var(--red2);
	color:#fff; 
		text-shadow: 2px 2px  4px rgba(0,0,0,0.7);
		box-shadow: 1px 1px 7px 2px rgba(0,0,0,0.8);
		 border: 1px solid #fff;
		 text-decoration: none;
}


a.promo-phone:after {
	content: '';
	top: 0;
	transform: translateX(100%);
	width: 100%;
	height: 220px;
	position: absolute;
	z-index: 1;
	animation: slide 4s infinite 0s;

	/* 
 CSS Gradient - complete browser support from http://www.colorzilla.com/gradient-editor/ 
 */
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.6)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* IE10+ */
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
	/* IE6-9 */
}

	
	/* animation */
	
	@keyframes slide {
		0% {
			transform: translateX(-200%);
		}
	
		30% {
			transform: translateX(200%);
		}
	
		100% {
			transform: translateX(200%);
		}
	}
	
.promo-text1 {
	text-align: center;
	margin: 30px auto 10px;
	color: #555;
	font-size: 18px;
	font-weight: 700;
		line-height: 18px;
}
	
	
.promo-text2 {
	text-align: center;
	margin: 10px auto 10px;
	color: var(--red1);
	font-size:  32px;
	line-height: 32px;
	font-weight: 900
}
	
	
	
 .online-zapis-wrapper {
	display: block;
	border-radius: 20px;
	background: var(--green2);

	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#02bf9f+0,047a66+100 */
	background: #02bf9f;
	/* Old browsers */
	background: -moz-linear-gradient(top, #02bf9f 0%, #047a66 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, #02bf9f 0%, #047a66 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #02bf9f 0%, #047a66 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#02bf9f', endColorstr='#047a66', GradientType=0);
	/* IE6-9 */

	background: var(--red1);
	margin: 90px auto 20px;
 }


 .online-zapis-wrapper img.female-doctor {
	display: block;
	margin: -70px auto 0;
	height: 400px;
 }

.cta-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;

}
	
	
.cta-grid 	.info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	padding: 20px 30px;
}

.cta-grid 	.info .text1 {
	text-align: center;
	color:  #fff;
	font-weight: 700;
	font-size: 30px;
	line-height: 34px;
				text-shadow: 2px 2px  4px rgba(0,0,0,0.7);
}
	
.cta-grid 	.info  a.cta-link {
	margin: 15px auto;
	display: block;
	padding: 10px 25px;
	background: #e35220;
	color:#fff;
	font-size: 20px;
	line-height: 24px;
	border-radius: 30px;
	font-weight: 700;
	letter-spacing: 2px;
	text-decoration: none;
	overflow:hidden;
	position: relative;
	box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.4);
			text-shadow: 2px 2px  4px rgba(0,0,0,0.7);
	border: 1px solid #e35220;
			text-align: center;
}

.cta-grid 	.info  a.cta-link:hover { 
	background: var(--red2);
	color:#fff; 
		text-shadow: 2px 2px  4px rgba(0,0,0,0.7);
		box-shadow: 1px 1px 7px 2px rgba(0,0,0,0.8);
		 border: 1px solid #fff;
		 text-decoration: none;
}


.cta-grid 	.info  a.cta-link:after {
	content: '';
	top: 0;
	transform: translateX(100%);
	width: 100%;
	height: 220px;
	position: absolute;
	z-index: 1;
	animation: slide 4s infinite 0s;

	/* 
 CSS Gradient - complete browser support from http://www.colorzilla.com/gradient-editor/ 
 */
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.6)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* IE10+ */
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
	/* IE6-9 */
}
	
	
.page-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 3fr;
	margin: 30px auto;
}
	
	
.page-sidebar {
 
}

.page-sidebar .links-title {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	color: #333;
	margin: 0 auto 10px;
	background: #eee; 
	padding: 10px 15px;
}
		
.page-sidebar .links {
	padding: 0 15px;
}
	
.page-sidebar .links a {
	display: block;
	margin: 10px auto;
	font-size: 16px;
	line-height: 16px;
	color: var(--red1);
}

.page-sidebar .links a:hover {	
	text-decoration: underline;
}
	
.page-sidebar .links a.sublink {
	display: block;
	margin: 8px auto;
	font-size: 13px;
	line-height: 16px;
	color: var(--red1);
	padding-left: 15px;
}	


.page-wrapper {
	margin: 0px auto 0px;
	padding: 0 15px;
}


.page-wrapper h1 {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: #666;
	text-transform: uppercase;
	margin: 10px auto 15px;
}







.page-wrapper p {
	margin: 12px auto;
	font-size: 16px;
	text-align: justify;
	color: #333;
}

.page-wrapper p a,
.page-wrapper ul a,
.page-wrapper ol a {
	color: var(--red1);
	font-weight: 700;
}


.page-wrapper p a:hover,
.page-wrapper ul a:hover,
.page-wrapper ol a:hover {
	color: var(--red2);

	text-decoration: underline;
}

.page-wrapper p a.big-link {
	font-size: 18px;
	display: block;
	margin: 10px auto;
}
.page-wrapper h2 {
	font-size: 24px;
	color: var(--red2);
	font-weight: 700;
	margin: 25px auto 15px;
}

.page-wrapper h2 a:hover{
		color: var(--red2);
		text-decoration: underline;
}

.page-wrapper h3 {
	font-size: 22px;
	color: var(--red1);
	font-weight: 400;
	margin: 25px auto 15px;
}


.page-wrapper h4 {
	font-size: 20px;
	color: var(--red2);
	font-weight: 700;
	margin: 25px auto 15px;
}


.page-wrapper h5 {
	font-size: 18px;
	color: var(--blue);
	font-weight: 400;
	margin: 25px auto 15px;
}


.page-wrapper ul {
	list-style-type: square;
	font-size: 15px;
	margin: 20px auto;
	text-align: left !important;
}

.page-wrapper ul li,
.page-wrapper ol li {
	text-align: left;
	margin: 10px auto;
	color: #555;
}

.page-wrapper ol {
	font-size: 15px;
	margin: 20px auto;
	color: #555;
	text-align: left !important;
}


.page-wrapper img.alignleft {
	float: left;
	display: block;
	margin: 10px 15px 10px 0;
	max-width: 30%;
	height: auto;
}


.page-wrapper img.alignright {
	float: right;
	display: block;
	margin: 10px 0 10px 15px;
	max-width: 30%;
	height: auto;
}

.page-wrapper img.aligncenter,  .page-wrapper img.alignright, .page-wrapper img.alignleft, .page-wrapper img.alignnone{
	border-radius: 15px;
}

.page-wrapper img.aligncenter {
	float: none;
	display: block;
	margin: 15px auto 25px;
	max-width: 600px;
	height: auto;
}

.page-wrapper img.rounded {

	border: 2px solid #fff !important;
	border-radius: 50% !important;
}

.page-wrapper .block-yellow {
	background: var(--red1);
	background: url(/images/textures/yellow-medium.webp);
	border-radius: 10px;
	padding: 20px 15px;
	text-align: center;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
}



.page-wrapper .block-red {
	background: var(--red1);
	background: url(/images/textures/red-medium.webp);
	border-radius: 10px;
	padding: 20px 15px;
	text-align: center;
	color: #eee;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
}


.page-wrapper .block-blue {
	background: var(--red1);
	background: url(/images/textures/blue-medium.webp);
	border-radius: 10px;
	padding: 20px 15px;
	text-align: center;
	color: #eee;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
}	
	
	
.doctor-grid{
	
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr;
}
.doctor-item {
	overflow:hidden;
	border-radius: 20px;
	padding: 0 0;
	background: #ddd;
		margin: 0 auto 20px;
		max-width: 400px;
}
	
.doctor-item img{
	display: block;
	margin: 0 auto;
	width: 100%;
}
		
	
.doctor-item .name{
	display: block;
	margin: 15px auto 5px;
	color: var(--red1);
	text-align: center;
	font-size: 17px;
	padding: 0 15px;
}
		
.doctor-item .position{
	display: block;
	margin: 5px auto 15px;
	color: #333;
	text-align: center;
	font-size: 12px;
	padding: 0 15px;
	font-weight: 700;
	text-transform: uppercase;
}
	
.contact_form label {
	display: block;
	margin: 10px auto;
}
	
	
.contact_form input  {
	border: 1px solid #bbb;
}
		
.contact_form select,  .contact_form textarea {
	border: 1px solid #bbb;
}
			
.contact_form input[type="submit"] {
	border: 1px solid #bbb;
	background: var(--red1);
	color:#fff;
	padding: 15px 20px;
	font-weight: 700;
	font-size: 18px;
	border-radius: 6px;
	display: block;
	margin: 20px auto;
}	
	
				
.contact_form input[type="submit"]:hover {
	border: 1px solid #bbb;
	background: var(--red2);
		color:#fff;
		display: block;
		margin: 20px auto;
}	
	

 



/* MODAL */



#overlay1 {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	width: 200%;
	height: 200%;
	z-index: 9000;
	display: none;
	margin: -100px -100px -100px;
}



#modal-callback {
	display: none;
}


#modal-fast-order {
	display: none;
}

#modal-fast-order .img-wrapper {
	margin: 10px auto;	
	background: #fff;
	border-radius: 8px;
}

#modal-fast-order .img-wrapper img {
	height: 150px;
	width: auto;
}

#modal-fast-order .fast-order-product-name{
	color:#fff;
	font-size: 14px;
	text-align: center;
	font-weight: 700;
	margin: 2px auto 2px;
}


#modal-fast-order .fast-order-product-price{
	color:#fff;
	font-size: 20px;
	text-align: center;
	font-weight: 900;
	margin: 2px auto 10px;
}










.modal-window {
display: block;
width: 90%;
position: fixed;
max-width: 500px;
top: 50%;
left: 50%;
	background: var(--red2);
z-index: 9999;

}

.modal-window .close-icon {
	width: 20px;
	height: 20px;
	display: block;
	background: url(/images/close.webp) center center no-repeat;
	background-size: 20px 20px;
	position: absolute;
	top: 17px;
	right: 10px;
	opacity: 0.5;
	cursor: pointer;
}
.modal-window .close-icon:hover {
	opacity: 1;
}

.modal-window p {
display: block;
font-size: 16px;
line-height: 18px;
color: #fff;
text-align: center;
}


.modal-window form {
display: block; 
margin: 20px 20px;
}

.modal-window form input::placeholder,
.modal-window form textarea::placeholder{
color: #ddd;
}


.modal-window form input[type="text"], .modal-window form input[type="phone"]{
	display: block;
	width: 100%;
	border: 1px solid rgba(255,255,255,0.3);
	outline: none;
	background: none;
	font-size: 20px;
	text-align: center;
	color:#fff;
	padding: 5px 10px;
	margin: 10px auto;
	box-sizing: border-box;
}


.modal-window form textarea{
	display: block;
	width: 100%;
	border: 1px solid rgba(255,255,255,0.3);
	outline: none;
	background: none;
	font-size: 20px;
	text-align: center;
	color:#fff;
	padding: 5px 10px;
	margin: 10px auto;
	box-sizing: border-box;
}


.modal-window form input[type="submit"]{
	display: block;
	width: 100%;
	border: 2px solid rgba(255,255,255,0.3);
	outline: none;
	background: var(--red2);
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	color:#fff;
	padding: 15px 10px;
	text-transform: uppercase;
	font-weight: 900;
	
	margin: 10px auto;
	transition: all 0.15s ease-out;

}

.modal-window form input[type="submit"]:hover{
	/*box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.6);*/
	border: 2px solid rgba(255,255,255,1);
}
 

.modal-window form input[type="text"]:focus, .modal-window form input[type="phone"]:focus{
	border: 1px solid rgba(255,255,255,1);
	color:#fff;
}




#modal-order {
	background: var(--red1);
	display: none;
}

.modal-window form img {
	display: block;
	border-radius: 50%;
	width: 200px;
	margin: 0px auto 10px;
}


.modal-window form .title {
	font-family: "Montserrat", sans-serif;
	color:#fff;
display: block;
font-size: 20px;
margin: 0 auto;
text-align: center;
}


.modal-window form .price{
	color:yellow;
display: block;
font-size: 26px;
margin: 0 auto;
text-align: center;
font-weight: 900;

}


.modal-head {
	background: rgba(0,0,0,0.2);
	text-align: center;
	display: block;
	padding: 15px 0;
	font-size: 24px;
	
	font-weight: 900;
	margin: 0;
}

#modal-thanx{
	display: none;
}





.agree-confidential {
	margin: 20px auto;
	max-width: 800px;
	color:#333;
	font-size: 12px;
	line-height: 18px;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.agree-confidential.white{
		color:#fff;
		font-size: 12px;
}

.agree-confidential input[type="checkbox"] {
	height: 18px;
	width: 18px;
	display: block;
	float: left;
	margin: 0 0;
	accent-color: var(--red);
	flex-shrink: 0;
}

.agree-confidential a { 
	color: var(--red); 
	font-weight: 700;
}

.agree-confidential.white a { 
	color: #ddd; 
	font-weight: 700;
}


.agree-confidential a:hover { 
	text-decoration: underline;
}



/* END MODAL */
	
	
	
	
	
	
	




















	

/* MEDIA QUERIES */



@media (max-width: 992px) {


.doctor-grid{ 
	grid-template-columns: 1fr 1fr ;
}


	.header-contacts-mobile {
		display: block !important;
		margin: 70px 0 -15px;
	}
	
	
	.page-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 2fr;
	margin: 30px auto;
}
	
	
.home-services-grid { 
	grid-template-columns: 1fr ;
	gap: 25px;s
	
}


 
.header-contacts-mobile-wrapper {
	display: flex;
	gap: 0px;
	justify-content: center;
	margin: 0 0px;
}

.header-contacts-mobile-wrapper .address {
	display: block;
	height: 40px;
	line-height: 30px;
	color: #111;
	font-size: 12px;
	padding: 5px 10px 5px 30px;
	background: url(../images/icons/pin-red.png) left 0px center no-repeat;
	background-size: 20px auto;
	font-weight: 700

}

.header-contacts-mobile-wrapper a.address1 {
	display: block;
	height: 40px;
	line-height: 30px;
	color: var(--red1);
	font-size: 12px;
	padding: 5px 5px 5px 10px;
	border-left: 1px solid #bbb;
	font-weight: 700;
}

.header-contacts-mobile-wrapper a.address1:hover {
	text-decoration: underline;
}

.header-contacts-mobile-wrapper .address:hover,
.header-contacts-mobile-wrapper .phone:hover,
.header-contacts-mobile-wrapper .whatsapp:hover,
.header-contacts-mobile-wrapper .email:hover {
	background-color: var(--red2);
	cursor: pointer;
}


.header-contacts-mobile-wrapper .phone {
	display: block;
	height: 40px;
	line-height: 40px;
	color: var(--red1);
	font-size: 16px;
	padding: 0 5px 0 30px; 
	background: url(../images/icons/phone-red.png) left 5px center no-repeat;
	background-size: 20px auto;
	font-weight: 700;
}


 


	.page-grid { 
		grid-template-columns: 4fr 1fr;
	}



	.header-top {
		display: none;
	}

	header {
		margin-top: 0px;
	}
		header .logo {
			display: none !important
		}
	.header-flex {
		display: flex;
		gap: 15px;
		margin: 10px auto;
		flex-direction: column;
	}


	.header-flex .logo {
		text-align: center;
	}

	.header-flex .home-h1 {
		font-size: 18px;
		letter-spacing: 0.1rem;
		text-align: center;
		padding: 0 0;
		margin: 10px auto;
		line-height: 18px;
	}

	.header-flex .home-h1,
	.header-flex .logo {
		margin 10px auto;
	}

	.desktop-menu,
	.desktop-menu.sticky {
		display: none !important;
	}

	.home-why .why-bottom {
		margin-top: -200px;
	}

	.home-why .why-top {
		margin-bottom: -40px;
	}

	.home-our-programs-grid {
		grid-template-columns: 1fr;
	}



	.home-steps-grid {
		grid-template-areas:
			"step1 step2"
			"step3 step4"
			"step5 step6"
			"step7 step8"
		;
		gap: 20px;

	}


	.float-contacts {
		display: block !important;
		position: fixed;
		bottom: 20px;
		width: 302px;
		border-radius: 50px;
		height: 60px;

		left: 50%;
		margin-left: -151px;
		box-shadow: 0 0 13px 2px rgba(0, 0, 0, 0.5);
		z-index: 10;
	}


	footer { 
		padding-bottom: 90px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-grid  .info p, 	.footer-grid  .info a{
		text-align: center;
	}

		
	.footer-grid  .getcall .footer-getcall-form{
		float: none;
		margin: 20px auto;
	}

	.footer-info-flex {
		display: flex;
		flex-direction: column;
		align-items: center;
	}






	.navbar {
		background: #fff;
		backdrop-filter: blur(10px);
		padding: 0 0 0;
		z-index: 100;
		border-bottom: 2px solid #ddd;
		display: flex;
		gap: 15px;
		padding: 0 10px 0;
	}

	.navbar .logo{
		display: block; 
		height: 40px;
	}
	
	/* ЦЕНТРОВКА НА ДЕСКТОПЕ */
	.navbar-nav {
		justify-content: flex-start;
		width: 100%;
		gap: 0;
		max-width: 1200px;
		margin: 0 auto;
	}


	a.nav-link {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		color: #333;
		/*text-transform: uppercase;*/
		font-size: 13px;
		padding: 10px 15px;
		 
		letter-spacing: 0.05em;
		font-weight: 900;
		text-transform: uppercase;
	}


	a.nav-link:hover {
		/*background: var(--yellow);
 color: #444;
text-shadow: none;*/

		/*background: rgba(0, 0, 0, 0.5);*/
		color: var(--red);
		text-decoration: underline; 

		text-shadow: none;
	}

	/* АКТИВНАЯ ССЫЛКА*/
	.navbar-nav .nav-link.active,
	.navbar-nav .nav-link.show {
		color: var(--red);
	}

	/* ОТКРЫТАЯ DROPDOWN ССЫЛКА*/
	.navbar-nav .nav-link.show {
		color: var(--red);
		b 
		box-shadow: none;
	}


	/*
.nav-link,
li.dropdown {
 color: var(--yellow);
 font-size: 16px;
 transition: all 0.15s ease-out;
 position: relative;
 font-weight: 700;
}
*/

	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 13px;
		padding-left: 13px;
	}

	.navbar-expand-lg .navbar-nav .nav-link.show {
		color: red;
	}



	/* КНОПКА ВЫПАДАЮЩЕГО МЕНЮ НА МОБИЛЕ */
	.navbar-toggler {
		margin-top: 10px;
		margin-bottom: 10px;
		border: none;
		padding: 0.25rem 0.4rem;
		color: #fff;
		margin-left: auto;
		opacity:0.6;
	}

	.navbar-toggler img {
		height: 30px;
	}

	.navbar-toggler:focus,
	.navbar-toggler:active,
	.navbar-toggler-icon:focus {
		outline: none;
		box-shadow: none;
		color: var(--red1);
	}


	/* ОТКЛЮЧЕНИЕ ФИГНИ СНИЗУ НА DROPDOWN ССЫЛКАХ */
	.dropdown-toggle::after {
		display: none;
	}

	.navbar-nav .nav-item>.dropdown-menu {
		 
		margin-top: 0;
		border-radius: 0;
		border: 1px solid rgba(0, 0, 0, 0.1);
		padding: 0 0 0 15px;
	}


	.navbar-nav .nav-item>.dropdown-menu li {
		padding: 0 0;
	}


	.navbar-nav .nav-item>.dropdown-menu li a {
		 
		color: #111;
		font-weight: 600;
		padding: 5px 7px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		font-size: 14px;
		white-space: wrap;
	}

	.navbar-nav .nav-item>.dropdown-menu li a:hover {
		background: var(--blue);

	}

	.navbar .menu-search-icon-mobile,
	.navbar .menu-cart-icon-mobile {
		display: none;
	}

	.navbar .menu-search-icon-desktop {
		display: block;
		width: 50px;
		height: 50px;
		background: red;
		margin-left: auto;
		background: url(../images/icons/menu-search.png) center center no-repeat;
	}


	.navbar .menu-cart-icon-desktop {
		display: block;
		width: 50px;
		height: 50px;
		background: url(../images/icons/menu-cart.png) center center no-repeat;

	}

	.navbar .menu-search-icon-desktop:hover {
		background: url(../images/icons/menu-search-yellow.png) center center no-repeat;
	}

	.navbar .menu-search-icon-desktop.active {
		background: url(../images/icons/menu-search-yellow.png) center center no-repeat;
	}


	.navbar .menu-cart-icon-desktop:hover {
		background: url(../images/icons/menu-cart-yellow.png) center center no-repeat;

	}

	.navbar .search-block {
		display: none;
		position: absolute;
		background: #110c3f;
		background: var(--yellow);
		height: 50px;
		width: 100%;
		top: 50px;
		z-index: 10;
	}

	.navbar .search-block .search-wrapper {
		display: block;
		margin: 0 15px;
	}


	.navbar .search-block .search-wrapper .search-form-flex {
		display: flex;
		gap: 10px;
		background: #fff;
		border-radius: 50px;
		height: 30px;
		margin: 10px auto;
		padding: 0 20px;
		border: 1px solid #ccc;
	}

	.navbar .search-block .search-wrapper .search-form input[type="text"] {
		width: auto;
		flex-grow: 10;
		border-radius: 20px;
		font-weight: 600;
	}

	.navbar .search-block .search-wrapper .search-form input[type="submit"] {
		width: 30px;
		height: 30px;
		background: url(../images/icons/menu-search-gray.png) center center no-repeat;
		background-size: 20px 20px;
		opacity: 0.5;
		transition: 0.15s;

	}

	.navbar .search-block .search-wrapper .search-form input[type="submit"]:hover {
		opacity: 0.9;
	}




}












@media (max-width: 768px) {
	
	
	.doctor-grid{ 
	grid-template-columns: 1fr ;
}





		.page-grid {
			display: grid;
			gap: 20px;
			grid-template-columns: 1fr  ;
			margin: 30px auto;
		}
			
	
	
.footer-grid .divider { 
	margin: 13px auto;
}


	.header-flex .links{
	display: flex;
	margin-left: unset;
	margin: 10px auto;
	gap: 0;
	align-items: center;
	justify-content: center;
}

	
	.header-flex .links a{
		font-size: 10px;
	}
.vuzes-grid {
	grid-template-columns: 1fr;
}


	.page-grid { 
		grid-template-columns: 1fr;
	}



	.home-news-grid { 
		grid-template-columns: 1fr; 
		margin: 0 15px;
	}



	.home-carousel-desktop-section {
		/*display: none;*/
	}

	.home-carousel-mobile-section {
		margin: 10px auto;
		display: block;
	}

	.classificator-form {
		display: grid;
		gap: 10px;
		grid-template-columns: 1fr;
	}

	.home-why .why-bottom {
		margin-top: -150px;
	}

	.home-why .why-top {
		margin-bottom: -10px;
	}



	.home-steps-grid {
		grid-template-areas:
			"step1"
			"step2"
			"step3"
			"step4"
			"step5"
			"step6"
			"step7"
			"step8"
		;
		gap: 20px;
	}

	.home-steps-item .text p {}

.home-clinics .clinics-grid { 
	grid-template-columns:   1fr; 
}
	.online-zapis-wrapper {
		display: block;
		border-radius: 20px; 
		margin: 20px auto 20px;
		padding: 20px 15px 0;
	}


	.online-zapis-wrapper img.female-doctor {
		display: block;
		margin: 10px auto 0;
		width: 70%;
		height: auto;
	}

.cta-grid .info {
	padding: 20px 0px;
}
	.cta-grid {
		grid-template-columns: 1fr;
		gap:0
	}
	.cta-grid 	.info .text1 { 
		font-size: 19px;
		line-height: 21px; 
	}
		
	.cta-grid 	.info  a.cta-link { 
		font-size: 15px;
		line-height: 19px; 
		width: 100%;
		letter-spacing: 0.04px;
		margin: 0 auto;

	}

.sidebar-links {display: none; }





}






@media (max-width: 576px) {

	.home-why .why-bottom {
		margin-top: -80px;
	}

	.home-why .why-top {
		margin-bottom: 0px;
	}

	.home-why-choose-flex .home-why-choose-item {
		flex: 1 0 70%;
		max-width: 320px;
	}
	
	.page-wrapper p { 
		font-size: 14px;
		text-align: left; 
	}
}