/* Common Style starts */
:root {
    --page-primary-bg: linear-gradient(90deg, #2196F3 0%, #75BCF4 50.48%, #2295F1 100%);
    --page-secondary-bg: #F4F7FF;
    --theme-gradient: linear-gradient(90deg, #07205C 0%, #0F43C2 100.13%);
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey : #3F4751;
    --tick-icon: url(../images/aeo-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.theme-gradient {
    background: var(--theme-gradient);
}

.page-theme {
    background-color: var(--page-theme);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.theme-wrapper {
    background-color: #072261;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

html body {
    color: var(--text-theme) !important;
}

.sections-wrapper h1,.sections-wrapper .h1,
.sections-wrapper h2,.sections-wrapper .h2,
.sections-wrapper h3,.sections-wrapper .h3,
.sections-wrapper h4,.sections-wrapper .h4,
.sections-wrapper h5,.sections-wrapper .h5,
.sections-wrapper h6,.sections-wrapper .h6 {
    color: var(--text-theme) !important;
}

.sections-wrapper .page-text {
    color: var(--page-primary-bg) !important;
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background: var(--page-primary-bg) !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.z-1 {
    position: relative;
    z-index: 1;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */

.hero-section {
    background-color: var(--text-theme);
    padding: 90px 0;
    background-image: url(../images/aeo-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.check-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    color: var(--black-color);
}

.check-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.check-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 26px;
    height: 26px;
    background-size: 26px;
    background-repeat: no-repeat;
}

/* Counter */

.counter {
    background-image: url(../images/aeo-images/counter-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--white-color);
}

.counter-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    border: 2px solid var(--white-color);
    background: #2698F34D;
    backdrop-filter: blur(12px);
    padding: 20px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--white-color);
    text-align: left;
}

/* Service Block */

.service--intro {
    background-image: url(../images/aeo-images/service-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.service--block {
    border: 4px solid var(--white-color);
    background: #FFFFFF73;
    backdrop-filter: blur(12px);
    padding: 24px 24px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.service--block::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 0%;
    background: var(--theme-gradient);
    border-radius: 15px;
    z-index: -1;
    transition: all 0.3s;
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

.service--block:hover::before {
    height: 100%;
}

/* Search Block */

.search--block {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.search---img {
    width: 100%;
    height: 100%;
}

.search---img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-content {
    border: 2px solid var(--white-color);
    backdrop-filter: blur(12px);
    background: #FFFFFFC2;
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    inset: auto 0 0 0;
    margin: 20px 20px;
    height: 90px;
    overflow: hidden;
    transition: all 0.3s;
}

.search--block:hover {
    transform: translateY(-10px);
    box-shadow: 0px 7px 33px 0px #00000040;
}

.search--block:hover .search-content {
    height: calc(100% - 220px);
}

/* Process Block */

.sticky-column {
    position: sticky;
    top: 180px;
}

.process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-block {
    background: #0E41BA;
    border: 2px solid transparent;
    padding: 30px 30px 30px 50px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
}

.process-point {
    background: linear-gradient(180deg, #2899F3 0%, #72BAF4 100%);
    outline: 2px solid transparent;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 28px;
    color: var(--white-color);
    transition: all 0.3s;
    position: absolute;
    inset: 0 auto 0 -40px;
    margin: auto;
}

.process-block:hover {
    border-color: var(--white-color);
    transform: translateY(-5px);
}

.process-block:hover .process-point {
    outline-color: var(--white-color);
}

/* Choose Slider */

.choose-intro {
    background-image: url(../images/aeo-images/choose-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.choose-slider .swiper-slide {
    height: auto !important;
}

.choose-block {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: all 0.3s;
    color: var(--text-theme);
    border: 4px solid var(--white-color);
    background: #FFFFFF73;
    backdrop-filter: blur(12px);
    border-radius: 10px;
}

.choose-block:hover {
    cursor: grab;
    border-color: var(--white-color);
}

.choose-slider .swiper-pagination {
    top: unset !important;
    bottom: 14px !important;
    max-width: 80%;
    background: #00000030;
    border-radius: 10px;
    height: 6px !important;
}

.choose-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 10px;
    background: #072261 !important;
}

.slider-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40px 0 0;
}

.slider-arrow {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.slider-button .swiper-button-next,
.slider-button .swiper-button-prev {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: unset;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    background-color: var(--page-primary-bg);
    color: var(--black-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
    border: 1px solid var(--black-color);
}

.slider-button .swiper-button-next:hover,
.slider-button .swiper-button-prev:hover {
    background: #072261;
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:after,
.slider-button .swiper-button-prev:after {
    font-size: 20px;
}

/* CTA Wrapper */

.cta-wrapper {
    background: var(--page-primary-bg);
    padding: 40px 60px;
    border-radius: 30px;
}

.cta-intro {
    background-color: var(--text-theme);
    background-image: url(../images/gemini-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 28px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1399px) {

    .search-content {
        padding: 20px;
        height: 68px;
    }

    .search--block:hover .search-content {
        height: calc(100% - 180px);
    }

    .counter-block {
        padding: 20px 10px;
        gap: 10px;
    }
}

@media only screen and (max-width: 991px) {

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .search--block {
        height: 460px;
    }

    .check-list {
        width: fit-content;
        margin-inline: auto;
    }
}

@media only screen and (max-width: 767px) {

    .choose-slider .swiper-pagination {
        max-width: 60%;
    }

    .slider-arrow {
        gap: 12px;
    }

    .slider-button .swiper-button-next, .slider-button .swiper-button-prev {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .slider-button .swiper-button-next:after, .slider-button .swiper-button-prev:after {
        font-size: 14px;
    }

    .counter-block {
        flex-direction: column;
        text-align: center;
    }

    .process-block {
        padding: 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .process-point {
        position: static;
        margin: unset;
    }

}