@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --white: #ffffff;
    --black: #101010;
    --pink: #D701BF;
    --light-pink: #FFECF4;
    --light-pink1: #FFF4FE;
    --bs-pink-bg-rgb: 215, 1, 191;
    --bs-green-bg-rgb: 26, 171, 145;
    --bs-lightblue-bg-rgb: 30, 85, 184;
    --bg-skyblue: #1E55B8;
    --blue: #001233;
    --text-blue: #6B98FD;
    --text-darkblue: #1E55B8;
    --text-grey: #c4c4c4;
    --grey:#E5E5E5;
    --footer-text: #BFBFBF;
    --light-purple: #E8E8FC;
    --grey2:#D4D4D5;
    --greylight-bg: #FBFBFB;
    --grey-bg: #F7F7F7;
    --blue-gradient: radial-gradient(circle,rgba(99, 154, 255, 1) 0%, rgba(30, 85, 184, 1) 96%);
    --blue-gradient-opposite: radial-gradient(circle,rgba(30, 85, 184, 1) 0%, rgba(99, 154, 255, 1) 96%);
    --light-grey-bg: #FAFAFA;
    --text-grey-2: #888888;
    --text-light-grey: #B3B3B3;
    --fraunces-font: Fraunces;
    --text-line-1: 1;
    --text-line-2: 2;
    --text-line-3: 3;
    --text-line-4: 4;
}

.fs-12{ font-size: 12px; }
.line-clamp{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: var(--text-line-1);
    -webkit-box-orient: vertical;
}
.twoline{   
    -webkit-line-clamp: var(--text-line-2);
}
.threeline{ -webkit-line-clamp: var(--text-line-3); }
.fourline{ -webkit-line-clamp: var(--text-line-4); }
.bgblue{
    background: var(--blue);
}
.blue-text{ color: var(--text-blue); }
.darkblue-text{ color: var(--text-darkblue); }
.blue-gradient{
    background: var(--blue-gradient);
}
.bg-light-purple{ background: var(--light-purple); }
.blue-rgb{ background: rgba(var(--bs-lightblue-bg-rgb), var(--bs-bg-opacity)); }
.bglightblue{ background: var(--bg-skyblue); }
.pink-rgb{
    background-color: rgba(var(--bs-pink-bg-rgb), var(--bs-bg-opacity));
}
.green-rgb{
    background-color: rgba(var(--bs-green-bg-rgb), var(--bs-bg-opacity));
}
.bg-opacity-10 {
    --bs-bg-opacity: 0.10;
}
.bg-opacity-2 {
    --bs-bg-opacity: 0.02;
}
.bg-opacity-5 {
    --bs-bg-opacity: 0.05;
}
.light-grey{ background: var(--light-grey-bg); }
.green{ color: var(--green); }
.fraunces-font { font-family: var(--fraunces-font);}
.fs-13{ font-size: 13px; }
.text-pink{ color: var(--pink); }
.line-clamp{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: var(--text-line-1);
    -webkit-box-orient: vertical;
}
.twoline{
    -webkit-line-clamp: var(--text-line-2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
sup {
    top: -1.5em;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
body {
  font-family: "Poppins", serif;
  font-weight: normal;
    font-size: 14px;
  line-height: 1.3rem;
}
.fs-14{ font-size: 14px; }
.fs-13{ font-size: 13px; }
a {
  text-decoration: none;
}
.form-control:focus{ box-shadow: none; background-color: transparent; border-color: #dedede; }
select.form-control{
    background: url(../images/down-arrow.svg) no-repeat center right 15px;
    background-size: 14px;
}
.line-clamp-title1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.line-clamp-text4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope", sans-serif;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
    -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

button:focus {
  outline: 0;
}

/********** Theme button Start **********/
.themebtn, .white-btn{
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: .2rem .2rem .2rem 1.1rem;
    background: var(--blue-gradient);
    color: var(--white);
    transition: 0.5s ease-in-out;
    z-index: 1;
    border-radius: var(--bs-border-radius-pill);
    font-weight: normal;
    align-items: center;
}
.themebtn:hover{
    background: var(--blue-gradient-opposite);
    color: var(--white);
    transition: 0.5s ease-in-out;
}
.white-btn:hover{ background: transparent; }
.white-btn:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.white-btn:before {
  transform: translateX(-100%);
}
.white-btn:after {
  transform: translateX(100%);
}
.white-btn:hover:before {
  transform: translateX(0%);
}
.white-btn i::before{ transition: 0.5s ease-in-out; }
.white-btn:hover i::before{ transform: rotate(45deg);}

.white-btn:hover{ color: var(--white); }

/********** White Start end **********/
.white-btn{
    color: var(--pink);
    --border-opacity: .3;
    background: transparent;
    border: solid 1px rgba(var(--bs-pink-bg-rgb), var(--border-opacity));
   
}
.white-btn i::before{ margin-top: 5px; }
.white-btn:before, .white-btn:after {
  background-color: var(--pink);
}
.white-btn:hover{ color: var(--white); }

/********** Buttons End **********/

*::-moz-selection {
  background: #C5E3FE;
  color: #000;
  text-shadow: none;
}

*::-webkit-selection {
  background: #C5E3FE;
  color: #000;
  text-shadow: none;
}
*::selection {
  background: #C5E3FE;
  color: #000;
  text-shadow: none;
}
.zoom-img{overflow: hidden;}
.zoom-img img{
    object-fit: cover; transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transition: all 700ms ease;
}
.zoom-img:hover img{
    transform: scale(1.2) rotate(2deg);
    -moz-transform: scale(1.2) rotate(2deg);
    -ms-transform: scale(1.2) rotate(2deg);
    -o-transform: scale(1.2) rotate(2deg);
}
.semirounded{ border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg) var(--bs-border-radius-lg) var(--bs-border-radius-xxl); }

/******Header Start******/
.topbar a:hover{ color: var(--pink); }
header{ 
    position: absolute;
/*    top: 2.4rem;*/
    width: 100%;
    z-index: 9;
    /*background: linear-gradient(179deg, rgb(255 255 255 / 69%) 4%, rgb(255 255 255 / 0%) 100%);*/
    background: linear-gradient(180deg, rgb(255 255 255 / 69%) 44.56%, rgb(255 255 255 / 0%) 100.33%);
}
.headerlogo a{ width: 15rem; display: block; }
.menus {
    position: relative;
    justify-content: center;
}
.menus ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  transition: none;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.menus ul li a {
    display: inline-block;
    padding: 10px 0 10px 0;
    position: relative;
    margin: 0 1.5rem 0 0;
    color: var(--black);
    font-size: .9rem;
}
.icon-small{
    width: 1.7rem;
    height: 1.7rem;   
}
.menus ul li:last-child a{ margin: 0;}
.dropdown-toggle::after{
        width: 6px;
    height: 6px;
    margin-left: 0.6em;
    border: solid var(--black);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 42%;
}
.menus ul li a:hover, .menus ul li a.active{
    color: var(--green);
}
.header-logo{
    width: 9rem;
}
.header-logo img, .footer-logo img{ width: 100%; }
/*Header end*/

/*Slider*/
.slider-area{ position: relative; overflow: hidden; }

/*Doctor Area Start*/
.doctor-img-border {
    border: 6px solid #fdf2fc;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13rem;
}
.stat-box {
    border: 2px solid #edf1f7 !important;
    border-radius: 20rem;
}
/*Doctor Area End*/

/* Features Area start */
.trust-section {
    position: relative;
    background-image: url(../images/why-choose-us.jpg);
    background-size: cover;
    background-position: center;
    padding: 4rem 0 7.5rem;
}
.bg-overlay {
    position: absolute;
    background: rgba(150, 80, 120, 0.45);
}
.boxesoverbox{ position: relative; width: 100%; top: -9rem; }
.featurebox { background: var(--light-pink1); border:solid 1px var(--light-pink); box-shadow: 0px 4px 20.2px rgba(0, 0, 0, 0.25); }
.icon{ width: 4rem; height: 4rem; }
.featurebox .icon{ /*top: 0; transform: translate(0, -60%);*/ padding: 1rem; margin-bottom: 1.5rem; }
.featurebox .icon svg, .featurebox .icon img{ width: 100%; height: 100%; background-size: cover; }
.featurebox, .featurebox .icon, .featurebox .icon svg path { transition: all 0.35s ease-in-out; }

.featurebox:hover{
    transform: scale(1.04);
    background: var(--white);
    border-color: var(--light-pink);
}
.featurebox:hover h6 a, .certifiedbox h6 a:hover{ color: var(--pink); }
.featurebox .icon::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -3px;
}
.featurebox:hover .icon {
  color: var(--light-pink);
  box-shadow: 0 4px 17.2px 0 rgba(0, 0, 0, 0.05);
    
}
.featurebox:hover .icon svg path{ fill: var(--pink);}
.featurebox:nth-child(2):hover .icon svg path{ stroke: var(--pink); fill: none;}
/* Features Area start */

/*Expertise Start*/
.timeline-item {
border-radius: 20px;
overflow: hidden;
background: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.timeline-item:hover {
transform: translateY(-5px);
}
.icon-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--light-pink1);
    color: var(--black);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.5s ease;
}
img.timeline-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.icon-btn:hover{ rotate: 45deg; }
.timelinebox p{ line-height: 18px; font-size: 13px; }

/*Expertise Start*/

/*Video Start*/
.video-section {
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn svg {
    width: 8rem;
    fill: white;
    transition: all 0.5s ease;
    animation: spin 4s linear infinite;
}
.play-btn-inner a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.play-btn-inner a i{
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-size: 2.8rem;
    z-index: 9;
/*    --bg-opacity: .08;*/
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--bs-border-radius-pill);
    padding: .9rem;
    color: var(--white);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.play-btn:hover svg{ transform: scale(1.2); }

/*Video End*/

/******* Blog Start **********/
.textbtnarrow i::before { transition: all 0.5s ease; }
.textbtnarrow:hover i::before{ rotate: 45deg; }
.w-60{ width: 60%; }
.w-40{ width: 40%; }


/******* Blog CSS Close **********/


/******* Faq's CSS Start **********/
.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
    color: var(--pink);
}
.faqsaccordian .accordion-button::after {
  transition: all 0.5s;
  position: absolute;
  right: 0;
    border-radius: 50%;
    height: 1.7rem;
    width: 1.7rem;
}
.faqsaccordian .accordion-button.collapsed{ border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; color: var(--footer-text); }
.faqsaccordian .accordion-item{
    border: none;
    margin-bottom: 0;
    background: transparent;
    border-bottom: solid 1px var(--bs-black);
    padding-block: 1.5rem;
}
.faqsaccordian .accordion-item:last-child{ border: none !important; }
.faqsaccordian p{ line-height: 24px; color: var(--footer-text); }
.faqsaccordian .accordion-button, .faqsaccordian .accordion-body{ padding: 0 4rem 0 0; background-color: transparent; }
.accordion-button span{
    font-size: 2.2rem;
    position: absolute;
    left: 0;   
}
.faqsaccordian .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2392969C' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after{ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23D701BF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e"); }
/******* Faq's CSS Close **********/

#achievement-carousel .owl-item{
    opacity: 0.5;
    width: 50%;
    transition: all 0.3s ease-out;
    filter: grayscale(100%);
    transform: scale(1);
}
#achievement-carousel .owl-item.active.highlighted{
    width: 100%;
/*  transform: scale(1.5);*/
    filter: grayscale(0);
    opacity: 1;
}

/******* Ads CSS Close **********/
.ads-area::before{
    background: linear-gradient(90deg, rgb(165 153 193) 25.85%, rgb(165 153 193 / 26%) 55.91%, rgb(255 255 255 / 0%) 80.12%);
}
/******* Ads CSS Close **********/

/*********** Footer start ***********/
footer, footer a{ color: var(--footer-text); }
ul.sociallist li{ 
    border-radius: 50%;
    display: inline-flex;
    margin-right: 5px;
}
ul.sociallist li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: color 0.15s ease-in;
}
.contactsocail li a{ background-color: var(--footer-text); box-shadow: none; }

ul.sociallist li a:hover {
    color: var(--pink);
}
.contactsocail li a:hover{ box-shadow: none; }
ul.sociallist li a:hover i {
  transform: scale(1.25);
}

.footer-logo a{ display: inline-block; }

.footerli li a{ position: relative; color: var(--footer-text); font-weight: 300; }
.footerli li a:hover{ color: var(--pink); }
.newsletterbox { border: 1px solid rgba(255, 255, 255, 0.2); }
.newsletterbox input::placeholder{ color: var(--white); font-size: 13px; }
.newsletterbox input{ padding-left: 2rem; }
.newsletterbox::before{ 
    content: '@';
    position: absolute;
    color: var(--white);
    font-size: 1rem;
    transform: translate(50%, 32%);
}
.newsletterbox button.btn:hover{
    background: var(--pink) !important;
    color: var(--white);
}

/*********** Footer Close ***********/

/* Modal Popup */

.modalpopform .modal-content .modal-header{ padding: 1.5rem; align-items: baseline; border-bottom: 0; }
.modalpopform .modal-content .modal-body{ padding: 1.5rem; }
.modalpopform .modal-content .modal-body input, .modalpopform .modal-content .modal-body textarea, .modalpopform .modal-content .modal-body select{ 
    border-radius: var(--bs-border-radius-sm);
    --bs-border-opacity: .1;
    border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
    --bs-bg-opacity: .1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
 }
 .modalpopform .modal-content .modal-body input, .modalpopform .modal-content .modal-body select{
    height: 2.4rem;  
 }
.modalpopform .modal-content .modal-body select option{ color: var(--black); }
.modalpopform .modal-content .modal-body input::placeholder, .modalpopform .modal-content .modal-body textarea::placeholder{ color: var(--black); opacity: .7;}
.form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
.modalpopform .modal-content .btn-close{ 
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e"); }
.countrycode{ width: 40%; }

