@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
  --primary-color: #80a3c3;
  --primary-color-2: #0671B7;
  
  --secondary-color: #ff74a3;
  --secondary-color-2: #f9afc8;
  
  --third-color: #393939;
  
  --whatsapp-color: #25D366;
}


body {
  background:  var(--primary-color) !important;
	font-family: 'Poppins', sans-serif !important;
    padding: 0;
    margin: 0;
}

h1 {
  color: white;
  text-align: center;
    font-size: 2.5em
}

h2{
	color: white;
	text-align: center;
	font-size: 2.5em;
}



h3{
	color:white;
	text-align: center;
}

p {
  color:white;
  text-align:center;
  font-size: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: rgb(0, 0, 0);
}
table, th, td {
  border: 1px solid black;
}
th, td {
  padding: 8px;
  text-align: left;
  background-color: white;
}
th {
  background-color: #f9afc8;
}


::-moz-selection { /* Code for Firefox */
  color: white;
  background: var(--secondary-color-2);
}

::selection {
  color: white;
  background: var(--secondary-color-2);
}

::-webkit-scrollbar {
	width: 5px;
	height: 8px;
	background-color: #fff;
}

.gallery::-webkit-scrollbar {
	width: 5px;
	height: 25px;
	background-color: #fff;
}

/* Track */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #fff;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background-color: var(--secondary-color);	
	background-image: -webkit-linear-gradient(45deg,
	                                          rgba(255, 255, 255, .2) 25%,
											  transparent 25%,
											  transparent 50%,
											  rgba(255, 255, 255, .2) 50%,
											  rgba(255, 255, 255, .2) 75%,
											  transparent 75%,
											  transparent)
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 30;
    background-color: #FFF;
	-webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.15);
}

.margint{
	margin-top:20px;
}

.margint img{
	border-radius:8px;
}

.menu{
	width: 60px;
    height: 60px;
    position: absolute;
    top: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 100%;
    z-index: 10;
	left: 50px;
    border-color: #FFF;
    background-color: var(--primary-color);
}

.menu-label{
	position: absolute;
    left: 140px;
    bottom: 0px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 18px;
    white-space: nowrap;
}

.menu-trigger{
	cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

.stick{
	position: absolute;
    width: 35px;
    height: 3px;
    background-color: #FFF;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 13px;
}

.stick.stick1 {
    top: 21px;
}
.stick.stick2 {
    top: 30px;
}
.stick.stick3 {
    top: 39px;
}

.logo{
	width: fit-content;
    padding: 10px 25px 8px 14px;
    border-radius: 50px;
    background: #fff;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-top: 40px;
    font-size: 35px;
	color:var(--third-color);
	letter-spacing: 2px;
	cursor:default;
	font-family: 'Anton', sans-serif;
	-webkit-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
}

.logo img{
	width:220px;
	vertical-align:middle;
}

.phone{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 30px;
    border: 2px solid #fff;
    border-radius: 100%;
    z-index: 4;
	right: 50px;
    background-color: var(--whatsapp-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

.phone-label{
	position: absolute;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
	left: -10px;
    bottom: 18px;
    color: var(--whatsapp-color);
    cursor: pointer;
	font-size:18px;
	white-space: nowrap;
}

.phone>svg>path{
  fill: #fff;
}

.yt{
	position:fixed;
	height:120px;
	width:30px;
	background:#ff2929;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.yt span{
	transform: rotate(-90deg);
    display: block;
    width: 127px;
    height: 125px;
    color: white;
	text-align: center;
}
.yt a{
	text-decoration: none;
}

.yt a:hover{
	text-decoration:none;
}

.yt-ad{
	width:24vw;
	height: 12vw;
	position: fixed;
    bottom: 30px;
	left:30px;
	z-index: 10;
}

#framecontainer a{
	position: fixed; bottom: 12vw; left: 24vw; padding-left: 20px; padding-bottom:30px; font-weight: bold; text-decoration: none; color: black;z-index: 10;
}

.close-btn {
  font-size: 60px;
  font-weight: bold;
  color: #000;
}

footer{
	width:100%;
	display: flex !important;
	overflow: hidden;
	margin-top:50px;
}

footer p{
	font-size:14px;
	margin:0;
	font-family: 'Poppins', sans-serif;
}

footer p a{
	text-decoration:none;
	color:white;
}

.footer-row1>svg>path, .footer-row2>svg>path, .footer-row3>svg>path{
  fill: var(--secondary-color-2);
}

.footer-left{
	width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--third-color);
    text-align: center;
    flex-flow: column;
}

.footer-right{
	width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--third-color);
    text-align: center;
    flex-flow: column;
}

.footer-overlay{
    width: 100%;
    height: 5px;
    position: absolute;
    margin-top: -5px;
    background-image: linear-gradient(to right, var(--secondary-color-2), var(--secondary-color));
}

.footer-row1, .footer-row3{
	margin:35px;
}


.slider{
	width: 100%;
    height: 85vh;
	position: relative;
}

.slider img{
	object-fit: cover;
    object-position: top center;
    height: 100%;
    width: 100%;
}

.slider span{
	margin: 0;
    position: absolute;
    top: 55%;
    left: 50%;
	transform:translate(-50%,-50%);
	font-size: 6vw;
	line-height: 6vw;
	font-weight: bold;
	cursor:default;
    color: #ffffffe0;
	text-align: center;
	font-family: 'Poppins', sans-serif !important;
	text-shadow: 0px 1px 30px rgb(0 0 0 / 20%);
}


.slider span a{
    font-size:4vw;
}

.banner{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.title{
    width: fit-content;
    height: 150px;
    padding: 0px 50px;
    background: var(--secondary-color-2);
    border-radius: 50vw;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-top: -75px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
	font-style: italic;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor:default;
}

.title span{
  margin-top:-12px;
  opacity: 0;
  animation: fadein 2s normal forwards ease-in-out;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.arrow{
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: -30px;
    border: 2px solid var(--secondary-color-2);
    border-radius: 100%;
    z-index: 10;
    background-color: var(--primary-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
	cursor:default;
}

.arrow>svg>path{
  fill: var(--primary-color-2);
}

.arrow>svg>g{
  stroke: var(--secondary-color-2);
}

.container{
	font-family: 'Poppins', sans-serif!important;
	max-width:1400px;
	text-align:center;
	margin:auto;
	height:fit-content;
    min-height: 900px;
	margin-top: 150px;
	margin-bottom: 120px;
} 
.container h2{
color:white;
text-align: center;
font-size: 2.5em;	
font-weight:bold;
}

.container p{
	max-width:1000px;
	margin:auto;
}


.fadeIn{
	  animation: fadein 2s normal forwards ease-in-out;
}

.container-blog {

}

.list-color{
  color: white;
}

.treatments{
	display:flow-root;
	margin-bottom:50px;
	margin-top:50px;
}


.treatment{
	position:relative;
    height: 150px;
    width: 30%;
    display: block;
    margin-bottom: 40px;
	margin-left:2.5%;
    border-radius: 75px;
    color: #233749;
    text-decoration: none;
    text-align: center;
    line-height: 150px;
	float:left;
	transition: all .2s ease-in-out;
	border: solid 4px transparent;
}


.treatment:hover{
	border: solid 4px var(--secondary-color-2);
	transform: scale(1.02);
	-webkit-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
}

.treatment-title{
    width: fit-content;
    height: 40px;
    padding: 0px 20px;
    position: absolute;
    top: -15px;
    border-radius: 30px;
    z-index: 10;
    background-color: #FFF;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #5d5d5d;
}




.div-blog{
	display:flow-root;
  color: white;
	margin-bottom:50px;
	margin-top:50px;
}


.image-blog{
	position:relative;
    height: 300px;
    width: 30%;
    display: block;
    margin-bottom: 40px;
	margin-left:2.5%;
    border-radius: 37px;
    color: #233749;
    text-decoration: none;
    text-align: center;
    line-height: 150px;
	float:left;
  color: white;
	transition: all .2s ease-in-out;
	border: solid 4px transparent;
  margin-top: 100px;
}


.image-blog:hover{
	border: solid 4px var(--secondary-color-2);
	transform: scale(1.02);
	-webkit-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
}

.blog-title{
    width: fit-content;
    position: absolute;
    top: 310px;
    border-radius: 15px;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}






.ourdoctors{
    background: #00000054;
    height: min-content;
    padding-top: 1px;
	margin-left: 30px;
	margin-right: 30px;
}

.doctor-container{
    overflow-x: auto;
    overflow-y: hidden;
	padding-bottom: 60px;
	padding-top: 10px;
	margin-top: -10px;
}

.ourdoctors img{
	width: 120px;
	border-radius: 50%;
}


.doctor-item{
	width: max-content;
    margin-left: auto;
    margin-right: auto;
	cursor: pointer;
}

.doctor-item a{
	text-decoration:none;
}

.doctor-item span{
	min-width: 200px;
	background:#fff;
	text-align: center;
    font-size: 20px;
    color: #000;
    padding: 30px;
	margin-left:10px;
	margin-right:10px;
    display: inline-block;
	transition: all .5s ease-in-out;
	border: solid 4px transparent;
}

.doctor-item label{
	font-size: 0.8em;
    color: #f9afc8;
}

.doctor-item span:hover{
	font-weight:bold;
	border: solid 4px var(--secondary-color);
	transform: scale(1.03);
	-webkit-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
}


.insta{
	display: block;
    position: relative;
    /* height: 753px; */
    overflow: hidden;
}

.doctor-page img{
	width: 200px;
    border-radius: 50%;
	margin-top:50px;
}

.doctor-page h2{
	margin-bottom:0px;
}

.doctor-page h3{
	margin-top:0px;
	color: var(--secondary-color-2);
}

.doctor-page p{
	margin-top:30px;
}

  
@media only screen and (max-width: 1024px) {
  .insta {
    height:74vw;
  }
}

@media only screen and (max-width: 800px) {
  .insta {
    height:76vw;
  }
}

@media only screen and (max-width: 570px) {
  .insta {
    height:79vw;
  }
}

@media only screen and (max-width: 410px) {
  .insta {
    height:83vw;
  }
}

.section-center{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}
h1{
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
  color: white;
}  

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}



.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 63px;
  left: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  box-sizing: unset !important;
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease, 
              top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 12px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease, 
              left 100ms 1750ms ease,
              margin-top 100ms ease, 
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
  top: 11px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 500ms ease, 
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}


.nav{
  position: fixed;
  top: 33px;
  left: 50px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
  background-color: var(--primary-color);
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              left 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}



.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              left 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1){
  transition-delay: 250ms;
}
.nav ul li:nth-child(2){
  transition-delay: 200ms;
}
.nav ul li:nth-child(3){
  transition-delay: 150ms;
}
.nav ul li:nth-child(4){
  transition-delay: 100ms;
}
.nav ul li:nth-child(5){
  transition-delay: 50ms;
}
.nav ul li a{
  font-family: 'Poppins', sans-serif;
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}
.nav ul li a:hover{
  text-decoration: none;
  color: #ffffff;
}



.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 1640ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(5){
  transition-delay: 1720ms;
}





.card-primary{
	padding:30px;
	border-radius:5px !important;
	font-family: 'Poppins', sans-serif;
}


.suc-but{
	background-color:var(--primary-color-2) !important;
	border-radius: 30px !important;
    padding: 10px 20px 10px 20px !important;
    font-weight: bold !important;
    color: white !important;
}

.card-primary label{
	font-size:0.8em;
}


.card-primary input{
    background: white;
    border-radius: 5px;
	font-family: 'Poppins', sans-serif;
}

.card-primary select{
    background: white;
    border-radius: 5px;
	font-family: 'Poppins', sans-serif;
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
                              
}




.custom-sel a {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
  padding: 5px;
  text-align: right;
  font-family: 'Poppins', sans-serif;
  color: #80a3c3;
  font-size: 15px;
  line-height: 0px;

}

.custom-sel a:hover {
  text-decoration: none;
  background-color: #f9afc8;
  color: #fff;
}

.custom-sel a.selected {
  background-color: transparent;
}

.custom-sel a.selected:hover {
  background-color: transparent;
  color: #546e7a;
}

.hidden {
  display: none!important;
}

.lightblue {
  color: #03a9f4;
  margin-left: -4px;
}

.show-sel {
  background-color: #ffffff;
  box-shadow: -5px 0px 65px 0px rgba(0, 0, 0, 0.18);
}

.custom-sel {
  position:absolute;
  top:7px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

.custom-sel img{
	height:13px;
	margin-right:3px;
}

.tre-container{
    margin-top: 30px;
    margin-bottom: 100px;
    width: 70%;
    margin-left: 5%;
    margin-right: 5%;
	min-height:700px;
}

.tre{
	color:white;
	margin-top:10px;
}
.tre-title{
	background: var(--secondary-color-2);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	padding:10px 10px 10px 25px;
	font-weight:bold;
	position: relative;
	cursor: pointer;
}
.tre-title span{
    font-size: 20px;
    position: absolute;
    left: 8px;
    top: 8px;
}
.tre-body{
	background:#ffffff;
	color:#292929;
    border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	border-color: var(--secondary-color-2);
	border-style: solid;
    border-width: 2px;
	padding:0px 20px 20px 20px;
	white-space: pre-line;
	text-align: left;
	-webkit-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.1);
}

.radius{
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.treatments-side{
    width: 20%;
	right: 0px;
    position: absolute;
    top:170px;
}

.treatment-side{
    position: relative;
    height: 65px;
    width: 100%;
    display: block;
    padding-left: 20px;
    margin-bottom: 6px;
    margin-left: 15%;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    text-align: left;
    line-height: 65px;
	font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    float: left;
    transition: all .2s ease-in-out;
}

.treatment-side::before{
  background-color: rgba(0, 0, 0, 0.37);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  left:0;
  border-radius:20px;
}

.treatment-side span{
	position:relative;
}

.treatment-side:hover{
	margin-left:0px;
	-webkit-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.2);
}

.side-selected{
	margin-left:0;
}

.gallery-button{
    display:inline-block;
	width: fit-content;
    height: 40px;
    padding: 0px 12px;
    margin: 5px 2px;
    border-radius: 30px;
    z-index: 10;
    background-color: #ff75a4;
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;.margint
	cursor:pointer;
	transition: all .2s ease-in-out;
}

.gallery-button:hover{
    transform: scale(1.1);
}

.gb-selected{
    background: white;
    color: #ff75a4;
}

.ba-button {
    display:inline-block;
	width: fit-content;
    height: 40px;
    padding: 0px 20px;
    margin: 5px 5px;
    border-radius: 30px;
    z-index: 10;
    background-color: #ff75a4;
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;.margint
	cursor:pointer;
	transition: all .2s ease-in-out;
    
}

.ba-button-light {
    display: inline-block;
    width: fit-content;
    height: 40px;
    padding: 0px 20px;
    margin: 5px 5px;
    border-radius: 30px;
    z-index: 10;
    background-color: #ffffff;
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    color: #ff75a4;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 2px solid #ff75a4; 
}


.t-img{
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.t-img-blog{
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.t-content-img{
	border-radius: 15px;	
    max-width: 450px;
	width: 90%;
    margin: 5%;
}

.t-content{
	width: 100%;
    text-align: center;
}

.nopad{
	margin-bottom: 40px;
}

.testimonial{
	width: 100%;
    height: 60vh;
    border: none;
	border-radius:30px;
}

.testimonial-text a{
	color:white !important;
}

.locContainer{
	width:24vw;
    display: inline-block;
    line-height: 0px;
    border-radius: 15px;
    padding: 5px 20px 20px 20px;
    background: white;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
}

.locContainer a{
    font-size: 1.5vw !important;
    background: #932db7;
    background: linear-gradient(to right, #932db7 0%, #1f2ade 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	cursor: default;
}


.locContainer img{
	padding-right: 10px;
    height: 1.5vw;
    width: 1.5vw;
}

.instagram-media{
	width:45% !important;
	margin: auto !important;
}

.gallery{
	display: flex;
    overflow: auto;
    padding-top:30px;
}

@media screen and (max-width: 700px) {
  .instagram-media {
      width: 75% !important;
      margin-right: 5% !important;
      position: relative;
      height: 300px;
      width: 30%;
      display: block;
      margin-bottom: 40px;
      margin-left: 2.5%;
      border-radius: 37px;
      color: #233749;
      text-decoration: none;
      text-align: center;
      line-height: 150px;
      float: left;
      color: white;
      transition: all .2s ease-in-out;
      border: solid 4px transparent;
      margin-top: 100px;
  }
  .locContainer {
      width: 50vw;
      border-radius: 10px;
  }
  .locContainer a {
      font-size: 3.5vw !important;
      background: #932db7;
      background: linear-gradient(to right, #932db7 0%, #1f2ade 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .locContainer img {
      padding-right: 10px;
      height: 3.5vw;
      width: 3.5vw;
  }
  .nopad {
      padding: 0px !important;
  }
  .yt-ad {
      width: 80vw;
      height: 40vw;
      position: fixed;
      left: 0vw;
      top: 120px;
  }
  #framecontainer a {
      position: fixed;
      bottom: 40vw;
      left: 77vw;
      top: 100px;
      font-weight: bold;
      text-decoration: none;
      color: black;
      padding-left: 0;
      z-index: 10;
  }
  .testimonial {
      border-radius: 0px;
  }
  .t-img {
      height: 80px;
  }
  .slider {
      width: 100%;
      height: 70vh;
      position: relative;
  }
  .slider span {
      font-size: 12vw;
      line-height: 11vw;
  }
  .slider span a {
      font-size: 6vw;
  }
  .ba-button {
      height: 40px;
      padding: 5px;
      z-index: 10;
      background-color: #ff75a4;
      line-height: 40px;
      font-size: 15px;
      font-weight: bold;
      color: #ffffff;
      cursor: pointer;
      position: fixed;
      bottom: 0;
      margin-bottom: 0;
      width: 100%;
      left: 0;
      margin: 0;
      border-radius: 0;
  }

  footer {
      display: block !important;
  }
  .footer-left {
      width: 100%;
  }
  .footer-right {
      width: 100%;
      height: 220px;
  }
  .logo img {
      width: 140px;
  }
  .nav {
      left: 10px;
      width: 60px;
      height: 60px;
  }
  .nav ul li a {
      font-size: 9vw;
  }
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label {
      position: fixed;
      top: 53px;
      left: 25px;
      display: block;
      width: 30px;
      height: 30px;
      padding: 0;
      margin: 0;
      cursor: pointer;
      z-index: 10;
  }
  .menu-label {
      left: 23px;
      top: 11px;
      font-size: 13px;
  }
  .phone {
      width: 55px;
      height: 55px;
      right: 10px;
  }
  .phone-label {
      transform: none;
      -webkit-transform: none;
      left: -7px;
      top: -23px;
      font-size: 13px;
  }
  .treatment {
      width: 80%;
      height: 150px;
      margin-left: 10%;
  }
  .treatments-side {
      display: none;
  }
  .title {
      width: 85%;
      font-size: 5vw;
      height: 120px;
      padding: 0px 15px;
  }
  .container p {
      max-width: 80%;
  }
  .ourdoctors {
      margin-left: 0px;
      margin-right: 0px;
  }
  .doctor-item label {
      font-size: 0.6em;
  }
  .tre-container {
      width: 90%;
  }
  .image-blog {
      width: 80%;
      margin: 10px auto;
      justify-content: center;
      position: relative;
      height: 150px;
      display: block;
      margin-bottom: 120px;
      border-radius: 15px;
      padding: 20px;
      margin-left: 27px;
  }

  .blog-title {
      width: fit-content;
      position: absolute;
      border-radius: 15px;
      z-index: 10;
      margin-left: auto;
      margin-right: auto;
      left: 0;
      top: 195px;
      right: 0;
      line-height: 40px;
      font-size: 20px;
      font-weight: bold;
      color: #000000;
  }
 .container-blog {
    width: 76%;
    border-radius: 15px;
    background-color: #fafbfb;
    margin-top: 120px;
    margin-left: 27px;
    margin-right: 27px;

 }
  .div-blog {
      display: flow-root;
      color: white;
      margin-bottom: 50px;
      margin-top: 50px;
  }
  

  .instagram-media {
      max-width: unset !important;
      min-width: unset !important;
  }
  .EmbedFrame {
      padding-bottom: 100% !important;
  }
}


