/*==============================================
    Banner One
===============================================*/
.banner-one {
    --banner-logo-navy: #81450A;
    --banner-logo-teal: #E5AF2F;
    --banner-logo-grey: #B66B12;
    --banner-logo-navy-rgb: 129, 69, 10;
    --banner-logo-teal-rgb: 229, 175, 47;

    position: relative;
    display: block;
    background:
        linear-gradient(145deg, var(--banner-logo-navy) 0%, #9a5510 35%, #B66B12 62%, var(--banner-logo-teal) 100%);
    overflow: hidden;
    padding: 18px 0 0;
    min-height: auto;
}

.banner-one--enhanced {
    padding: 50px 0 0;
}

.banner-one__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--banner-logo-teal-rgb), .22) 0%, transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(var(--banner-logo-teal-rgb), .16) 0%, transparent 40%);
    pointer-events: none;
}

.banner-one__shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.banner-one__shape {
    position: absolute;
    display: block;
    pointer-events: none;
}

.banner-one__shape--blob-1 {
    top: -80px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--banner-logo-teal-rgb), .35) 0%, rgba(var(--banner-logo-teal-rgb), 0) 70%);
    animation: bannerBlobDrift 14s ease-in-out infinite;
}

.banner-one__shape--blob-2 {
    bottom: -100px;
    right: -40px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 68%);
    animation: bannerBlobDrift 18s ease-in-out infinite reverse;
}

.banner-one__shape--ring-1 {
    top: 18%;
    right: 12%;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    animation: bannerRingSpin 22s linear infinite;
}

.banner-one__shape--ring-2 {
    bottom: 22%;
    left: 8%;
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(var(--banner-logo-teal-rgb), .55);
    border-radius: 50%;
    animation: bannerRingSpin 16s linear infinite reverse;
}

.banner-one__shape--dot-grid {
    top: 12%;
    left: 42%;
    width: 120px;
    height: 120px;
    opacity: .35;
    background-image: radial-gradient(rgba(255, 255, 255, .9) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    animation: bannerDotFloat 10s ease-in-out infinite;
}

.banner-one__shape--cross {
    top: 55%;
    right: 28%;
    width: 48px;
    height: 48px;
    opacity: .25;
}

.banner-one__shape--cross::before,
.banner-one__shape--cross::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .85);
    border-radius: 2px;
}

.banner-one__shape--cross::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.banner-one__shape--cross::after {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

.banner-one__shape--cross {
    animation: bannerCrossSpin 20s linear infinite;
}

.banner-one__shape--plus {
    bottom: 35%;
    right: 6%;
    width: 24px;
    height: 24px;
    opacity: .4;
    animation: bannerPlusBob 6s ease-in-out infinite;
}

.banner-one__shape--plus::before,
.banner-one__shape--plus::after {
    content: "";
    position: absolute;
    background: var(--banner-logo-teal);
    border-radius: 2px;
}

.banner-one__shape--plus::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
}

.banner-one__shape--plus::after {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

.banner-one__shape--line {
    top: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-left: 2px solid rgba(255, 255, 255, .15);
    border-bottom: 2px solid rgba(255, 255, 255, .15);
    border-radius: 0 0 0 12px;
    animation: bannerLineSway 8s ease-in-out infinite;
}

@keyframes bannerBlobDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, 20px) scale(1.06);
    }
    66% {
        transform: translate(-20px, 35px) scale(.96);
    }
}

@keyframes bannerRingSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.08);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes bannerDotFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: .25;
    }
    50% {
        transform: translateY(-18px) translateX(12px);
        opacity: .45;
    }
}

@keyframes bannerCrossSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bannerPlusBob {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: .35;
    }
    50% {
        transform: translateY(-14px) scale(1.15);
        opacity: .55;
    }
}

@keyframes bannerLineSway {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(8deg) translateY(-10px);
    }
}

.banner-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url("../../images/backgrounds/cirugia-refractiva-oftalmologa-en-cdmx-y-puebla.webp") no-repeat center center;
    background-size: cover;
    opacity: .12;
}

.banner-one::after {
    display: none;
}

.banner-one__wave {
    position: relative;
    z-index: 4;
    display: block;
    line-height: 0;
    margin-top: 50px;
}

.banner-one__wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.banner-one .container {
    position: relative;
    z-index: 3;
    padding-bottom: 10px;
}

.banner-one .row {
    position: relative;
    z-index: 3;
}

.banner-one [class^="banner-one__"]:not(.banner-one__overlay):not(.banner-one__shapes):not(.banner-one__shape) {
    position: relative;
}

.banner-one__left {
    position: relative;
    display: block;
    margin-top: 0;
    max-width: 600px;
}

.banner-one__content {
    position: relative;
    border-radius: 24px;
}

.banner-one__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    border-radius: 0 0 4px 4px;
}

.banner-one__doctor-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin: 0 0 10px;
}

.banner-one__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--careon-white);
    background: rgba(var(--banner-logo-teal-rgb), .25);
    border: 1px solid rgba(var(--banner-logo-teal-rgb), .45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.banner-one__badge i {
    color: var(--banner-logo-teal);
    font-size: 16px;
}

.banner-one__sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--careon-white);
    border: 1px solid var(--careon-white);
    padding: 3px 12px 2px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.banner-one__title {
    font-size: clamp(32px, 4.5vw, 65px);
    font-weight: 800;
    line-height: 1.12;
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--careon-white);
    letter-spacing: -.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .2);
}

.banner-one__accent-line {
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--banner-logo-teal), rgba(255, 255, 255, .85));
}

.banner-one__title span {
    color: rgba(var(--careon-white-rgb), .75);
}

.banner-one__title .split-line {
    text-transform: none;
}

.banner-one__text {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(var(--careon-white-rgb), .9);
    max-width: 100%;
}

.banner-one__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.banner-one__tags li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--careon-white);
    background: rgba(var(--banner-logo-navy-rgb), .35);
    border: 1px solid rgba(var(--banner-logo-teal-rgb), .4);
    padding: 6px 13px;
    border-radius: 50px;
}

.banner-one__tags li i {
    color: var(--banner-logo-teal);
    font-size: 11px;
}

.banner-one__calls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.banner-one__call {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    color: var(--banner-logo-navy);
    font-size: 24px;
    border: 1px solid var(--careon-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--careon-white);
}
.banner-one__call-icon2{
    background-color: var(--color1);
    color: var(--careon-white);
}

.banner-one__call-icon:hover {
    background-color: var(--banner-logo-teal);
    color: var(--banner-logo-navy);
    border: 1px solid var(--banner-logo-teal);
}

.banner-one__call-content {
    position: relative;
    display: block;
    margin-left: 15px;
}

.banner-one__call-sub-title {
    font-size: 16px;
    color: var(--careon-white);
    line-height: 16px;
    text-transform: capitalize;
}

.banner-one__call-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-top: 10px;
}

.banner-one__call-number a {
    color: var(--careon-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.banner-one__call-number{
    color: var(--careon-white) !important;
}

.banner-one__call-number a:hover {
    color: var(--banner-logo-teal);
}

.banner-one__right {
    position: relative;
    display: block;
    margin-left: 20px;
}

.banner-one__img-box {
    position: relative;
    display: block;
    z-index: 2;
    isolation: isolate;
    max-width: 460px;
    margin: 0 auto;
    padding: 12px 12px 56px 12px;
}

.banner-one__img-box--portrait {
    max-width: 420px;
}

.banner-one__img-corner {
    position: absolute;
    width: 42px;
    height: 42px;
    z-index: 4;
    pointer-events: none;
    border-color: rgba(255, 255, 255, .85);
    border-style: solid;
}

.banner-one__img-corner--tl {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
    border-radius: 18px 0 0 0;
}

.banner-one__img-corner--br {
    bottom: 44px;
    right: 0;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 18px 0;
}

.banner-one__img-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    border: 2px solid rgba(var(--banner-logo-teal-rgb), .35);
    border-radius: 28px;
    z-index: 0;
    animation: bannerRingPulse 6s ease-in-out infinite;
}

@keyframes bannerRingPulse {
    0%, 100% { transform: translate(-50%, -52%) scale(1); opacity: .6; }
    50% { transform: translate(-50%, -52%) scale(1.03); opacity: 1; }
}

.banner-one__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    width: 88%;
    height: 88%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--banner-logo-teal-rgb), .45) 0%, rgba(var(--banner-logo-teal-rgb), .15) 55%, transparent 72%);
    z-index: 0;
    filter: blur(2px);
}

.banner-one .banner-one__img-box .banner-one__img {
    position: relative;
    display: block;
    z-index: 2;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.banner-one__img-inner {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    background: #ffffff;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .92);
    border-radius: 22px;
}

.banner-one__img-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.banner-one__img img {
    width: 100%;
    height: 100%;
    margin-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform .5s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    object-fit: contain;
    object-position: center;
    animation: none;
    padding: 28px;
}

.banner-one__img-box--portrait .banner-one__img img {
    object-fit: contain;
    object-position: center;
    padding: 32px;
}

.banner-one__img-badge {
    position: absolute;
    bottom: 18px;
    left: 8px;
    right: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(var(--banner-logo-teal-rgb), .3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    animation: bannerFloat 5s ease-in-out infinite;
    animation-delay: .5s;
}

.banner-one__img-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.banner-one__img-badge-text span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(var(--banner-logo-navy-rgb), .72);
}

.banner-one__img-badge strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--banner-logo-navy);
}

.banner-one__img-badge i {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--banner-logo-teal);
}

.banner-one__img:hover img {
    transform: scale(1.04);
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.banner-one .banner-one__img-box .banner-one__img-shape-1 {
    position: absolute;
    bottom: 12%;
    right: -8%;
    z-index: 1;
    opacity: .9;
}

.banner-one__img-shape-1 img {
    width: auto;
    max-width: 160px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .2));
}

@media (min-width: 992px) {
    .banner-one__calls {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {

    .banner-one__badge{
        font-size: 12px;
             padding: 1px 3px; 
    }
    .banner-one {
        padding: 12px 0 0;
        min-height: auto;
    }

    .banner-one--enhanced {
        padding: 20px 0 0;
    }

    .banner-one__content {
        padding: 22px 0px 24px;
        border-radius: 18px;
    }

    .banner-one__accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-one__wave {
        margin-top: 35px;
    }

    .banner-one__wave svg {
        height: 50px;
    }

    .banner-one__shape--blob-1,
    .banner-one__shape--blob-2 {
        width: 220px;
        height: 220px;
    }

    .banner-one__shape--ring-1,
    .banner-one__shape--cross,
    .banner-one__shape--line {
        opacity: .15;
    }

    .banner-one__shape--dot-grid {
        display: none;
    }

    .banner-one__left {
        max-width: 100%;
        text-align: center;
    }

    .banner-one__text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .banner-one__tags {
        justify-content: center;
        display: none;
    }

    .banner-one__right {
        margin-left: 0;
        margin-top: 40px;
    }

    .banner-one__img-box--portrait,
    .banner-one__img-box {
        padding: 0;
        max-width: 320px;
    }

    .banner-one__img-inner {
        aspect-ratio: 4 / 5;
    }

    .banner-one__img img {
        width: 100%;
        height: 100%;
    }

    .banner-one__img-badge {
        left: 8px;
        right: 8px;
    }

    .banner-one__img-badge-text span {
        font-size: 11px;
    }

    .banner-one__img-corner {
        width: 32px;
        height: 32px;
    }

    .banner-one__calls {
        align-items: stretch;
        width: 100%;
        gap: 10px;
        padding-top: 16px;
        margin-top: 6px;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .banner-one__call {
        width: 100%;
        align-items: center;
        text-align: left;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .09);
        border: 1px solid rgba(255, 255, 255, .14);
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    }

    .banner-one__call-icon {
        flex-shrink: 0;
        height: 52px;
        width: 52px;
        font-size: 22px;
    }

    .banner-one__call-content {
        margin-left: 14px;
        flex: 1;
        min-width: 0;
        text-align: left;
    }

    .banner-one__call-sub-title {
        font-size: 13px;
        line-height: 1.3;
        margin: 0;
        opacity: .9;
    }

    .banner-one__call-number {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.4;
        margin-top: 4px;
    }

    .banner-one__call-number a {
        display: block;
        line-height: 1.4;
        text-align: left;
    }
}

.banner-one__find-doctor {
    position: absolute;
    bottom: 35px;
    left: -240px;
    background-color: var(--careon-white);
    padding: 36px 30px 30px;
    border-radius: var(--careon-bdr-radius);
    border: 1px solid var(--careon-bdr-color);
    max-width: 292px;
    width: 100%;
    z-index: 2;
}

.banner-one__find-doctor-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 35px;
}

.banner-one__find-doctor-list {
    position: relative;
    display: block;
}

.banner-one__find-doctor-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.banner-one__find-doctor-list li+li {
    margin-top: 20px;
}

.banner-one__find-doctor-img {
    position: relative;
    display: block;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.banner-one__find-doctor-img img {
    width: 100%;
    border-radius: 50%;
}

.banner-one__find-doctor-name {
    position: relative;
    display: block;
    flex: 1;
}

.banner-one__find-doctor-name h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.banner-one__find-doctor-name h4 a {
    color: var(--careon-black);
}

.banner-one__find-doctor-name h4 a:hover {
    color: var(--careon-base);
}


/*==============================================
    Banner Two
===============================================*/
.banner-two {
    position: relative;
    display: block;
    background-color: var(--color3);
    padding: 210px 0 90px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
}

.banner-two__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 58.5%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .20;
    z-index: -1;
}

.banner-two__left {
    position: relative;
    display: block;
    margin-right: 60px;
    margin-top: 35px;
}

.banner-two__review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-two__review-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.banner-two__review-img-box li {
    position: relative;
    display: block;
}

.banner-two__review-img-box li+li {
    margin-left: -25px;
}

.banner-two__review-img-box li:last-child {
    z-index: 1;
}

.banner-two__review-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50px;
    border-radius: 50%;
    z-index: 1;
}

.banner-two__review-img img {
    width: 100%;
    border: 2px solid var(--careon-white);
    border-radius: 50%;
}

.banner-two__review-count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--careon-black);
    border: 2px solid var(--careon-white);
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.banner-two__review-count {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-two__review-count h3 {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px !important;
    font-family: var(--title-font) !important;
}

.banner-two__review-count span {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px;
    font-family: var(--careon-font);
}

.banner-two__review-content-box {
    position: relative;
    display: block;
}

.banner-two__review-content-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 23px;
}

.banner-two__review-rating-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.banner-two__review-rating-box p {
    font-size: 18px;
    color: var(--careon-black);
    font-weight: 700;
    line-height: 18px;
}

.banner-two__review-start {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.banner-two__review-start span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-primary);
}

.banner-two__title {
    font-size: 75px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.1em;
    margin-top: 30px;
    margin-bottom: 23px;
}

.banner-two__title span {
    font-weight: 300;
}

.banner-two__title .split-line {
    text-transform: none;
}

.banner-two__text {
    margin-bottom: 31px;
}

.banner-two__btn-box {
    position: relative;
    display: block;
}

.banner-two__btn-box .thm-btn {
    background-color: var(--careon-base);
}

.banner-two__btn-box .thm-btn::before,
.banner-two__btn-box .thm-btn:after {
    background-color: var(--careon-black);
}

.banner-two__counter-box {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--careon-black-rgb), .20);
    padding-top: 20px;
    margin-top: 25px;
}

.banner-two__counter {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-two__counter li {
    position: relative;
    display: block;
}

.banner-two__counter-single {
    position: relative;
    display: block;
}

.banner-two__counter-count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1px;
}

.banner-two__counter-count h3 {
    font-size: 32px;
    color: var(--careon-black);
    font-weight: 800;
    line-height: 32px !important;
    font-family: var(--title-font) !important;
}

.banner-two__counter-count span {
    font-size: 32px;
    color: var(--careon-black);
    font-weight: 800;
    line-height: 32px;
    font-family: var(--careon-font);
}

.banner-two__counter-text {
    font-size: 15px;
    color: var(--careon-gray);
    font-weight: 400;
}

.banner-two__right {
    position: relative;
    display: block;
    margin-left: 4px;
}

.banner-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    animation: topBottom 3s ease-in-out infinite;
    z-index: 1;
}

.banner-two__img::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.banner-two__img:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.banner-two__img>img {
    width: 100%;
   
    border-radius: 10px;
}

.banner-two__call {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 15px 22px 15px;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    bottom: 10px;
    right: 10px;
}

.banner-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-two__call-icon img {
    width: auto;
}

.banner-two__call-number {
    margin-left: 20px;
}

.banner-two__call-number p {
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    color: var(--careon-gray);
    font-weight: 400;
    margin-bottom: 11px;
}

.banner-two__call-number h5 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.banner-two__call-number h5 a {
    color: var(--careon-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-two__call-number a:hover {
    color: var(--careon-base);
}

























/*==============================================
    End
===============================================*/