@font-face {
  font-family: "ProximaNovRegular";
  src: url(../fonts/proximanova-regular.ttf);
}
@font-face {
  font-family: "ProximaNovaBold";
  src: url(../fonts/Proxima-Nova-Bold.otf);
}
@font-face {
  font-family: "ProximaNovaMedium";
  src: url(../fonts/Proxima-Nova-Medium.otf);
}
:root{
    --primary-color:#2263AC;
    --secondary-color:#E73A51;
    --blue-dark:#002856;
    --text-color:#000;
    --text-font-size:16px;
    --text-line-height:24px;
    --text-dark:#000;
}
*{
    box-sizing: border-box;
    word-wrap: break-word;
}
html{
    overflow-x: hidden;
}
body{
    margin: 0;
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
    color: var(--text-color);
    font-family: 'ProximaNovRegular', sans-serif;
    overflow-x: hidden;
}
img{
    max-width: 100%;
}
h1 {
    font-size: 50px;
    line-height: 54px;
    font-weight: 700;
    font-family: "ProximaNovaBold";
}
h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #2263ac;
    font-family: "ProximaNovaBold";
}
h3{
    font-size:24px;
    line-height: 30px;
    font-family: "ProximaNovaBold";
}
h6{
    font-size: 18px;
    line-height: 100%;
    font-family: "ProximaNovaBold";
}
section {
    padding: 40px 0;
}
a{
    text-decoration: none;
    display: inline-block;
    color: var(--primary-color);
}
b, strong, .fw-bold{
    color: #2263ac;
    font-family: "ProximaNovaBold";
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.text-secondary{
    color: var(--secondary-color) !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-secondary{
    background-color: var(--secondary-color) !important;
}
.bg-light{
    background-color: #F4F8F9 !important;
}
.text-color{
    color: var(--text-color);
}
.bg-blue-dark{
    background-color: var(--blue-dark);
}
.radius-10{
    border-radius: 20px;
}
.f-10{
    font-size: 10px;
}
.f-12{
    font-size: 12px;
}
.f-16{
    font-size: 16px;
}
.f-14{
    font-size: 14px;
}
.f-24{
    font-size: 20px;
}
.f-24{
    font-size: 24px;
}
.f-18{
    font-size: 18px;
}
.lh-120{
    line-height: 120%;
}
.f-22{
    font-size: 22px;
}
.f-20 {
    font-size: 20px;
}
.lh-32{
    line-height: 32px;
}
.lh-height{
    line-height: 24px;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-500 {
    font-family: ProximaNovaMedium !important;
}
.fw-700{
    font-family: ProximaNovaBold;
}
.text-italic{
    font-style: italic;
}
.btn {
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    border-color: #2263ac;
    padding: 8px 40px;
    font-family: ProximaNovaBold;
    font-size: 20px;
}
.form-control {
    padding: 10px 15px;
    border: 1px solid #AFAFAF;
    box-shadow: none !important;
}
.btn:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    color: #fff !important;
}
.logo {
    width: 250px;
    padding: 0 10px;
    transition: .3s;
}
.sticky .logo {
    margin-bottom: 0;
    width: 185px;
}
.sticky header {
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 99999;
    width: 100%;
    box-shadow: 0 0 20px #0000001f;
}
.sticky-whats-app {
    position: fixed;
    bottom: 25px;
    right: 25px;
}
.no-overflow header {
    z-index: 999;
}
body.sticky {
    padding-top: 60px;
    transition: .3s;
}
.banner {
    padding: 50px 0;
    background-image: url(../img/banner-bg.webp);
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
}
.z-index-2 {
    z-index: 2;
}
.call-to-action{
    background-image: url(../img/call-to-action-bg.jpg);
    background-size: cover;
    min-height: 600px;
}
.why-choose-sec{
    background-image: url(../img/bg-pattern.jpg);
    background-size: cover;
    padding-bottom: 70px;
}
.why-choose-box{
    background-image: url(../img/green-vector-bg.jpg);
    background-size: 100% 100%;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    min-height: 150px;
}
.topic-pills > div {
    border: 1px solid rgba(0, 143, 197, 0.4);
    border-radius: 13px;
    padding: 4px 10px 4px;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    color: #848484;
    white-space: nowrap;
    margin-bottom: 8px;
    margin-left: 3px;
    margin-right: 3px;
    font-weight: 300;
}
.side-rules {
    left: 0;
    right: 0;
    margin: 0;
    top: 50%;
    border-top: 1px solid #008fc5;
}
.side-rules-txt {
    background-color: #fff;
    z-index: 1;
    padding: 0 20px;
}
.why-choose-red-bg{
    background-image: url(../img/why-choose-red-bg.jpg);
}
.banner-form-box {
    position: relative;
    z-index: 9999;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
}
.why-choose-box-sec {
    position: relative;
    margin-top: -50px;
}
.faq-box {
    background-image: url(../img/faq-bg.png);
    background-size: cover;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    background-position: top;
    padding-top: 120px;
}
.form-close {
    background-color: #fff;
    z-index: 1000000000000000;
    border-radius: 50%;
    width: 31px;
    height: 31px;
    cursor: pointer;
    color: black;
    position: absolute;
    top: -40px;
    font-size: 18px;
    right: 50%;
    text-align: center;
    align-items: center;
    display: inline-block;
    left: 50%;
    line-height: 35px;
    transform: translateX(-50%);
    min-width: 31px;
}
.btn-fixed {
    position: fixed;
    right: 15px;
    bottom: 30px;
    box-shadow: 0 1px 3px #fff;
    padding: 8px 20px;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}
.btn-active {
    opacity: 1;
    visibility: visible;
}
.footer-top {
    background: linear-gradient(360deg, #E9EBF8 -364.21%, #2263AC 100%);
    padding: 40px 0;
}
.call-icon {
    width: 70px;
    height: 70px;
    background-color: #2263ac;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 2px 4px #ffffff40;
    color: #fff !important;
    font-size: 28px;
}
.text-danger {
    color: var(--secondary-color) !important;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: var(--secondary-color);
}
.faq-icon {
    min-width: 75px;
    background-color: #2263ac1c;
    border-radius: 20px;
    height: 75px;
}
/*==*/
.lh-100 {
    line-height: 100%;
}
.doctor-box {
    border-radius: 20px;
    background-color: #F5F9FA;
}
.bg-primary.p-2.text-center.doctor-info {
    border-radius: 0 0 15px 15px;
}
.radius-20{
    border-radius: 20px;
}
.bg-light-orange{
    background-color: #FDF8F5;
}
.list-50 li {
    width: 50%;
}
.bg-float-columm {
    padding-right: 120px !important;
    padding-bottom: 135px !important;
}
.f-72 {
    font-size: 72px;
}
.about-float-img {
    margin-top: -80px;
    margin-left: -100px;
}
.icon-box {
    min-width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.social-link i {
    min-width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    font-size: 18px;
    transition: .3s;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}
.social-link i:hover {
    background: #fff;
    color: #2263ac;
}
.banner img {
    margin-bottom: -5px;
}
.doctor-box img {
    height: 175px;
    object-fit: cover;
}
/*p, li{
    text-align: justify;
}*/
.sticky-call {
    position: fixed;
    right: 25px;
    bottom: 25px;
}
.profile-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}

.header {
  display: flex;
  align-items: center;
  padding: 20px;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
}
.info h3{
    margin-bottom: 0px;
    line-height: 100%;
}
.profile-image {
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 10px #00000030;
    padding: 0;
    object-fit: cover;
    object-position: top;
}
.info h3 {
  margin: 0;
  font-size: 18px;
}

.info p {
  margin: 5px 0;
}

.location {
  color: #007bff;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #dee2e6;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #ff5722;
  border-bottom: 2px solid #ff5722;
}

.tab-content {
  padding: 20px;
}

.tab-panel {
  display: none;
}

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

.list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.list li {
    margin-bottom: 10px;
    color: #495057;
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 120%;
}

.list li::before {
  content: "✔";
  color: #ff5722;
  margin-right: 10px;
}
body .slick-track {
    display: flex;
}
.slick-slide {
    padding: 10px 10px;
}
body .slick-slide {
    height: auto;
}
.slick-slide > div {
    height: 100%;
}
.profile-card .tab-content {
    padding: 20px 15px 0;
}
.doctor-slider {
    margin: 0 -15px;
}
body .slick-dots li button {
    width: 10px;
    height: 10px;
    background: #2263ac;
    border-radius: 50%;
    opacity: 0.5;
}
body .slick-dots .slick-active button {
    opacity: 1;
}
body .slick-dots li button:before {
    font-size: 0;
}
body .slick-dots li {
    width: 10px;
    height: 10px;
}
.contact-faq-box {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #DEDEDE;
    /*box-shadow: 0 8px 19px #e8e8e882;*/
}
.contact-faq-box .collapsed i.fa-angle-down.show-contact-cta {
    display: block;
}
.contact-faq-box  i.fa-angle-down.show-contact-cta {
    display: none;
}
.contact-faq-box i {
    position: relative;
    top: 3px;
}
.contact-faq-box i.fa-angle-up {
    display: block;
}
.collapse-heading {
    font-weight: 500;
    font-size: 20px;
}
.toggle-content-body {
    padding-top: 10px;
}
.contact-faq-box .collapsed i.fa-angle-up {
    display: none;
}
.card-img-box iframe{
    border-radius: 0.375rem 0.375rem 0 0; 
}
.swiper-slide {
    height: 100%;
}
/*Responsive css*/
@media screen and (min-width:992px){
    .f-lg-33{
        font-size: 33px;
    }
    .f-lg-22{
        font-size: 22px;
    }
    .f-lg-40 {
        font-size: 40px;
    }
    .f-lg-35 {
        font-size: 35px;
    }
    .lh-lh-45{
        line-height: 45px;
    }
    .lh-lh-50{
        line-height: 50px;
    }
    .header-call-icon {
        width: 330px;
    }
    .f-lg-20{
        font-size: 20px;
    }
    .f-lg-28{
        font-size: 28px;
    }
    .profile-card {
      min-height: 380px;
    }
    .f-lg-24 {
        font-size: 24px;
    }
}
@media screen and (max-width:991.98px){
    .tab-pane{
        display: block !important;
        opacity: 1 !important;
    }
    .tab-content {
        display: flex;
        overflow-x: scroll;
    }
    .tab-content .tab-pane{
        min-width: 80%;
    }
    .tab-content::-webkit-scrollbar  {
        opacity: 0;
    }
    .about-float-img {
        margin-top: 0;
        margin-left: 0;
    }
    .bg-float-columm {
        padding-right: 20px !important;
        padding-bottom: 20px !important;
    }
}
@media screen and (min-width:768px) and (max-width:1023px){
    h1 {
        font-size: 50px;
        line-height: 50px;
    }
    .logo {
        width: 120px;
    }
}
@media screen and (max-width:767px){
    :root{
        --text-font-size:18px;
        --text-line-height:28px;
    }
    body{
        font-size: var(--text-font-size);
        line-height: var(--text-line-height);
    }
    section {
        padding: 20px 0;
    }
    h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .f-sm-22 {
        font-size: 22px;
    }
    .f-sm-20{
        font-size: 20px;
    }
    .banner {
        padding-top: 80px;
        padding-bottom: 0px !important;
        min-height: auto;
    }
    h1 {
        font-size: 32px;
        line-height: 36px;
        margin-top: 0px;
    }
    .btn {
        padding: 8px 20px;
        font-size: 16px;
    }
    iframe{
        height: 200px;
    }
    .bg-red-gradient img, .bg-blue-gradient img {
        width: 30px;
    }
    .bg-red-gradient p, .bg-blue-gradient p{
        font-size: 16px;
        line-height: 120%;
    }
    td {
        padding: 5px 15px !important;
    }
    .logo {
        width: 155px;
        margin-bottom: 0;
    }
    .f-sm-15 {
        font-size: 15px;
    }
    .lh-sm-2{
        line-height: 120%;
    }
    .sticky-whats-app {
        bottom: 15px;
        right: 15px;
        width: 60px;
    }
    i.fa-brands.fa-facebook-f, .google-review{
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    .sticky .logo {
        width: 155px;
    }
    h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .call-to-action {
        min-height: auto;
        padding: 30px  0;
        background-position: right;
    }
    .f-sm-30{
        font-size: 30px;
    }
    .banner-form-box {
        margin-top: -80px;
        margin-bottom: 20px;
        box-shadow: 0 0 10px #00000029;
    }
    .header-blue-col::before{
        height: 60px;
    }
    h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .why-choose-box {
        padding: 15px;
        min-height: auto;
    }
    .faq-box {
        padding: 20px;
        height: 100%;
        padding-top: 20px;
        background-image: none;
    }
    .call-icon {
        width: 55px;
        height: 54px;
        font-size: 20px;
    }
    .doctor-row .col{
        width: 50%;
        flex:0 0 80%;
    }
    .doctor-row {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
    .list-50 li {
        width: 100%;
    }
    .about-float-img {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .bg-float-columm {
        padding-right: 10px !important;
        padding-bottom: 10px !important;
    }
    .icon-box {
        min-width: 45px;
        height: 45px;
    }
    .icon-box img {
        width: 25px;
    }
    .radius-20, .radius-10 {
        border-radius: 10px;
    }
    .sticky-call {
        position: fixed;
        bottom: 15px;
    }
    hr {
        margin: 4px 0 0;
    }
    .list li {
        font-size: 14px;
    }
    .info p {
        line-height: 100%;
        font-size: 14px;
    }
    .foter-bottom {
        padding-bottom: 100px !important;
    }
    .social-link i {
        min-width: 35px;
        height: 35px;
    }
}