/* Common Style starts */
:root {
    --page-primary-bg: #4285F4;
    --page-secondary-bg: #08224D;
    --page-fade: #4285F4;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey: #768288;
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.text-grey {
    color: var(--text-grey) !important;
}

html body {
    color: var(--text-theme) !important;
}

.object-cover {
    object-fit: cover;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    background: #111451 !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.text-highlight {
    color: var(--page-primary-bg) !important;
}

@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 */

.intro-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.intro-list li {
    font-size: 19px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.intro-list li img {
    width: 24px;
}

/* Counter Intro */

.sep-1 img {
    height: 250px;
}

.sep-2 img {
    margin: -20px 0 0;
}

.counter-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--white-color);
}


/* Management Intro */

.management-intro {
    background-image: url(../images/adwards-images/management-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sticky-column {
    position: sticky;
    top: 180px;
}

.management-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.management-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #FFFFFF14;
    border: 2px solid #FFFFFF40;
    backdrop-filter: blur(10px);
    padding: 30px 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.management-icon {
    width: 100%;
    max-width: 80px;
}

.count-text {
    position: absolute;
    right: 20px;
    top: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
}

.management-block::before,
.service-block::before,
.choose-block::before {
    content: "";
    position: absolute;
    inset: -3px;
    padding: 4px;
    background: linear-gradient(270deg, #34A853, #FBBC04, #4285F4);
    border-radius: 30px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.management-block:hover::before,
.service-block:hover::before,
.choose-block:hover::before {
    opacity: 1;
}

/* Service */

.service-slider {
    background-color: #4285F41A;
}

.service-slider-wrap .swiper-slide {
    height: auto !important;
}

.service-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--white-color);
    border: 2px solid #4285F44D;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    padding: 30px 30px 80px;
}

.service--icon {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--page-fade);
    border-radius: 50px;
}

.serv-slide-btn {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-block .count-text {
    position: absolute;
    right: 20px;
    top: 10px;
    background: linear-gradient(180deg, #EAEAEA 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
}

/* Process Block */

.process-sec {
    padding-bottom: clamp(4.375rem, -15.4943rem + 55.2885vw, 15rem) !important;
}

.process-slider .swiper-slide:not(:last-child)::after {
    content: '';
    width: 60%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 75%;
    top: 75px;
    background: rgba(255, 255, 255, .3);
}

.process-sec > span {
    opacity: 10%;
    color: var(--white-color);
    font-size: 12vw;
    text-align: center;
    display: block;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.process-block h4 {
    margin-bottom: 90px;
}

.process-block::before {
    content: '';
    width: 38px;
    height: 38px;
    background: var(--white-color);
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.process-block::after {
    content: '';
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    height: 18px;
    width: 18px;
    border-radius: 50px;
    background: var(--page-fade);
}

.process-slider .swiper-slide:nth-child(2) .process-block::after {
    background: #DB4437;
}

.process-slider .swiper-slide:nth-child(3) .process-block::after {
    background: #F4B400;
}

.process-slider .swiper-slide:nth-child(4) .process-block::after {
    background: #0F9D58;
}

/* Choose Intro */

.choose-intro {
    background-image: url(../images/adwards-images/choose-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.choose-block {
    width: 100%;
    backdrop-filter: blur(100px);
    border: 2px solid #FFFFFF40;
    background: #FFFFFF14;
    padding: 30px 30px;
    border-radius: 30px;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 32px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

.cta-wrapper {
    padding: 50px 100px;
    background-color: var(--page-primary-bg);
    border-radius: 30px;
    text-align: center;
}

/* Responsive */

@media only screen and (max-width: 1599px) {
    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .intro-list {
        width: fit-content;
        margin-inline: auto;
    }

    .sep-1 img {
        height: auto;
    }

    .management-block {
        flex-direction: column;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 767px) {

    .count-text {
        font-size: 70px;
    }

    .service-block,
    .management-block,
    .choose-block {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .management-block::before, .service-block::before, .choose-block::before {
        border-radius: 20px;
    }

    .new-faq .accordion-item {
        padding: 20px 0px !important;
    }
}