@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

section.section {
    padding: 60px 0;
}

.main-heading h2 {
    font-size: 35px;
    font-weight: 600;
    color: #054870;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 5px;
    position: relative;
}

.main-heading-light h2 {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 5px;
    position: relative;
}

.main-heading-light h2 span {
    color: #fccf0a;
}

.main-heading-light h3 {
    color: #fccf0a;
    position: relative;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: inline-block;
}

.main-heading h2 span {
    font-size: 35px;
    color: #111112;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.main-heading h3 {
    position: relative;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #000000;
    display: inline-block;
    margin-bottom: 15px;
}

/* .main-heading h3::before {
    content: '';
    position: absolute;
    background: #333333;
    width: 100%;
    height: 1px;
    top: 100%;
    left: 0;
} */

.sub-heading-light p {
    font-size: 15px;
    line-height: 22px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.sub-heading p {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.main-list ul li strong {
    font-family: "Montserrat", sans-serif;
}

.main-list ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    margin-bottom: 20px;
    list-style: none;
    position: relative;
    font-family: "Montserrat", sans-serif;
    padding: 5px 0 0 30px;
}

.main-list ul li::before {
    content: '';
    position: absolute;
    background: url(../img/cancer-type-li.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    top: 0;
    left: -15px;
    border-radius: 100%;
}

.main-list ul {
    margin-bottom: 10px;
    padding-left: 1rem;
}



/* ================================== */
/* menu link */

.zx-nav-shell {
    position: relative;
}

/* burger */

.zx-burger-trigger {
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.zx-burger-trigger span {
    height: 3px;
    width: 100%;
    background: #2c64af;
    transition: .4s;
    border-radius: 30px;
}

/* burger animation */

.zx-burger-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.zx-burger-trigger.active span:nth-child(2) {
    opacity: 0;
}

.zx-burger-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}


/* panel */

.zx-panel-layer {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 30%;
    height: auto;
    background: #ffffff;
    transition: .6s cubic-bezier(.77, 0, .175, 1);
    border: 2px solid #2b61aa;
    padding: 0;
    overflow: auto;
}

.zx-panel-layer.open {
    right: 0;
}


/* menu */

.menu-items {
    padding: 16px 0 130px 22px;
}

.zx-menu-core {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zx-menu-core li {
    margin: 0 0;
    padding-top: 4px;
    margin-bottom: 4px;
}

.zx-menu-core a {
    color: #2d64af;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
    position: relative;
}

.zx-menu-core a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #2b61aa;
    transition: .5s;
}

.zx-menu-core a:hover {
    letter-spacing: 1px;
}

.zx-menu-core a:hover::before {
    width: 100%;
}


/* dropdown animation */

.zx-drop-layer,
.zx-subdrop-layer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding-left: 20px;
    width: 100% !important;
}

.zx-has-drop.active>.zx-drop-layer {
    max-height: 400px;
    position: unset;
    width: 100%;
    box-shadow: none;
    padding: 0 15px;
    background: #ebf4ff;
}

.zx-has-subdrop.active>.zx-subdrop-layer {
    max-height: 300px;
}


/* arrows */

.zx-has-drop>a::after,
.zx-has-subdrop>a::after {
    content: "+";
    float: right;
    transition: .3s;
    position: absolute;
    top: 0;
    right: -30px;
}

.zx-has-drop.active>a::after,
.zx-has-subdrop.active>a::after {
    transform: rotate(45deg);
}

.zx-menu-core:hover .zx-drop-layer {
    background-color: none;
    box-shadow: inherit;
    border-top: inherit;
    width: inherit;

}

.zx-drop-layer li {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    list-style: none;
}

.zx-menu-core {
    margin: 0 0;
}

.navik-header.sticky .zx-panel-layer {
    position: fixed;
    top: 100%;
}


/* ============ Custom Css Start ============== */
.navik-menu>ul>li>a.navbar-button,
.navbar-button {
    padding: 5px 10px !important;
    background: #fccf0a;
    color: #000000;
    height: 35px !important;
    border: 1px solid #fccf0a;
    transition: .5s;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
}

.navik-menu>ul>li>a.navbar-button:hover,
.navbar-button:hover {
    background: #fff;
}

/* .banner-section {
    background: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
} */

/* @media (min-width: 1180px) and (max-width: 1550px) {
    .banner-section {
        height: 600px;
    }
} */

.banner-left-content {
    max-width: 71%;
}

.banner-left-content h1 {
    color: #fff;
    font-size: 45px;
    margin-bottom: 20px;
    line-height: normal;
    font-weight: 600;
}

.banner-left-content p {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
    line-height: normal;
}

.banner-form .form-control,
.banner-form .form-select {
    border: 1px solid #00a2ff;
    font-size: 16px;
    border-radius: 4px;
    padding: 4px 10px;
}

.banner-form .form-control:focus,
.banner-form .form-select:focus {
    box-shadow: none;
}

.cta-section {
    background: #033858;
}

.cta-card .cta-card-top h4 {
    color: #fccf0a;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
}

.cta-card .cta-card-top h4::before {
    position: absolute;
    content: '';
    bottom: -5px;
    left: 0;
    background: #fff;
    width: 50%;
    height: 2px;
}

.card-ic img {
    width: 40px;
}

.card-ic {
    width: 15%;
}

.card-content p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}

.card-content {
    width: 75%;
}

.cancer-type-section {
    background: url(../img/cancer-type-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.second-opinion-section {
    background: linear-gradient(90deg, rgba(5, 72, 112, 1) 61.5%, rgba(226, 242, 255, 1) 56%);
}

@media (min-width: 1180px) and (max-width: 1550px) {
    .second-opinion-section {
        background: linear-gradient(90deg, rgba(5, 72, 112, 1) 64.5%, rgba(226, 242, 255, 1) 56%);
    }
}

.second-opinion-card {
    border: 1px dashed #fff;
    border-radius: 5px;
    padding: 10px 15px;
    min-height: 165px;
}


.banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner-form {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 6px;
    padding: 15px 20px;
    position: relative;
    width: 400px;
    margin-left: auto;
}

.banner-form h2 {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    color: #2c67b2;
    margin-bottom: 5px;
}

.banner-form p {
    font-size: 15px;
    margin-top: 6px;
    margin-bottom: 16px;
    color: #464646;
    font-weight: 400;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.second-opinion-card h3 {
    color: #fccf0a;
    font-size: 18px;
}

.second-opinion-card p {
    font-size: 15px;
    color: #fff;
}

.numbering h5 {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0;
    padding: 4px 11px;
    background: #fccf0a;
    color: #054870;
    position: relative;
}

.bottom-card::before {
    background: #6991a9;
    content: '';
    position: absolute;
    top: 47%;
    right: 0;
    width: 68%;
    height: 2px;
}

.second-opinion-section .banner-form .form-control,
.banner-form .form-select {
    border: 1px solid #054870;
}

.doctor-card {
    background: #e2f2ff;
    padding: 20px;
    border-radius: 5px;
}

.doctor-card .doctor-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}

.doctor-content h3 {
    font-size: 20px;
    color: #054870;
    margin-bottom: 4px;
}

.doctor-content h5 {
    font-size: 15px;
    font-weight: 600;
}

.owl-carousel .doctor-content li img {
    width: 25px;
    height: 25px;
}

.doctor-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.doctor-content li {
    font-size: 15px;
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
}

.main-button {
    display: inline-block;
    background: #fccf0a;
    color: #054870;
    font-size: 15px;
    font-weight: 500;
    padding: 9px 30px;
    width: 265px;
    border-radius: 30px;
    text-align: left;
    position: relative;
}

.main-button i {
    color: #fff;
    font-size: 18px;
    position: absolute;
    background: #054870;
    width: 39px;
    height: 39px;
    border-radius: 30px;
    top: 1px;
    right: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section {
    background: url('../img/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.secondary-btn {
    background: #fccf0a;
    color: #054870;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.secondary-btn i {
    padding-left: 10px;
    border-left: 1px solid #fff;
    color: #054870;
    font-size: 20px;
}

.testimonial-right-part {
    position: relative;
    margin-bottom: -125px;
}

.owl-carousel.testi-slider .owl-nav button.owl-next,
.owl-carousel.testi-slider .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: #fff !important;
    color: #054870 !important;
    padding: 6px 14px !important;
    position: absolute;
    left: -20%;
    transition: .5s;
}

.owl-carousel.testi-slider .owl-nav button.owl-next:hover,
.owl-carousel.testi-slider .owl-nav button.owl-prev:hover {
    background: #fccf0a !important;
    color: #054870 !important;
}

.testi-slider .owl-prev {
    top: 38%;
}

.testi-slider .owl-next {
    top: 50%;
}

section.section.why-choose-section {
    background: url('../img/why-moc-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 0px;
}

.why-choose-card .card-content {
    width: 100%;
}

.why-choose-card .card-content h3 {
    color: #054870;
    font-size: 18px;
}

.why-choose-card .card-content p {
    font-size: 15px;
    color: #000000;
}

.why-choose-card .card-img img {
    width: 125px;
    margin-bottom: 15px;
}

.center-section {
    background: url('../img/center-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.center-section .doctor-card {
    background: #fff;
}

.doctor-card .doctor-img img {
    height: 300px;
}

.center-section .doctor-card .doctor-img img {
    height: 245px;
}

.center-section .doctor-content p img {
    width: 15px;
}

.footer {
    background: #054870;
    padding: 50px 0;
}

.row.gap-2 .navbar-button {
    width: 45%;
}

.bottom-footer {
    background: #054870;
    border-top: 1px solid #fccf0a;
}

.border-left-custom {
    border-left: 1px solid #fff;
}

.banner-button-bottom object {
    width: 50px;
    height: 50px;
}

.banner-button-bottom .anchor-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 2px;
}

.banner-button-bottom .anchor-content h3 {
    font-size: 20px;
    color: #fccf0a;
    margin-bottom: 2px;
}

.main-list ul.cancer-box li::before {
    display: none;
}

.main-list ul.cancer-box {
    column-count: 2;
    column-gap: 40px;
    padding-left: 0px;
}

.main-list ul.cancer-box li {
    margin-bottom: 19px;
    border: 1px solid #054870;
    padding: 10px 10px;
    border-radius: 5px;
}

.main-list ul.cancer-box li img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.main-list ul.cancer-box li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.profile-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100%;
    margin-left: -20px;
    border: 1px solid #ffffff;
}

.book-consultaion-cta {
    background: #054870;
    border-radius: 7px;
    padding: 20px 40px;
    margin-bottom: 60px;
}

.book-cta-new {
    background: #fccf0a;
    padding: 5px 20px;
    display: inline-block;
    font-size: 30px;
    color: #054870;
    font-weight: 600;
    border: 1px solid #fccf0a;
    border-radius: 5px;
    transition: .5s ease-out;
}

.book-cta-new:hover {
    background: transparent;
    color: #fccf0a;
}

p.call-now-text {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 400;
    color: #fff;
}

p.call-now-text a {
    color: #fff;
    border-bottom: 1px dashed #fff;
}

.border-middle-custom {
    width: 1px;
    height: 90px;
    background: #fff;
}

.profile-image-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-image-text p {
    font-size: 25px;
    color: #fff;
    margin-bottom: 0;
}

.button-cta-box {
    width: 45%;
}

.profile-image-text {
    width: 40%;
}

.profile-image {
    width: 70%;
}

.why-point-box {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    background: #054870;
    padding: 7px;
    border-radius: 7px;
    margin-bottom: 15px;
    gap: 10px;
}

.why-point-box .why-point {
    position: relative;
    background: #fccf0a;
    font-size: 40px;
    text-align: center;
    color: #054870;
    width: 50px;
    height: 85px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-point-box .why-point::before {
    content: '';
    position: absolute;
    top: 35px;
    right: -2px;
    width: 15px;
    height: 15px;
    background: #fccf0a;
    transform: rotate(45deg);
}


.why-content {
    width: 90%;
}

.why-content h3 {
    font-size: 20px;
    color: #fccf0a;
    margin-bottom: 5px;
}

.why-content p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}

.cancer-type-section .main-list ul li {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cancer-type-section .main-list ul li::before {
    display: none;
}

.cancer-type-section .main-list ul {
    padding-left: 0;
}

.cancer-type-section .main-list ul li span {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border: 1px solid #054870;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.cancer-type-section .main-list ul li span img {
    width: 50px;
}

.owl-carousel.media-coverage-slider button.owl-dot,
.owl-carousel.doctor-slider button.owl-dot {
    position: inherit;
    padding: 0 !important;
}

.doctor-slider.owl-theme .owl-dots .owl-dot.active span,
.doctor-slider.owl-theme .owl-dots .owl-dot:hover span,
.media-coverage-slider.owl-theme .owl-dots .owl-dot.active span,
.media-coverage-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #054870;
    width: 25px;
    height: 9px;
}

.doctor-slider.owl-theme .owl-dots .owl-dot span,
.media-coverage-slider.owl-theme .owl-dots .owl-dot span {
    background: #fccf0a;
    width: 9px;
    height: 9px;
    transition: .5s;
    margin: 4px;
}

.fixed-footer {
    display: none;
}

.fixed-footer a {
    color: #fff;
    font-size: 16px;
}

.fixed-footer-img img {
    width: 20px;
}

.owl-carousel .slider-item img {
    width: 100%;
    height: 355px;
    border-radius: 6px;
    object-fit: cover;
}