:root {
    --page-primary-bg: #001334;
    --page-secondary-bg: #DBEDFA;
    --text-theme: #000000;
    --text-grey: #3F4751;
    --tick-icon: url(../images/outsource-mobile-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Hero Section */

.hero-section {
    background-image: url('../images/outsource-mobile-images/banner-intro.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 30px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 8px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
}

/* Counter */

.page-counter {
    padding: 80px 60px;
    background-color: var(--page-primary-bg);
}

.counter-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    display: grid;
    gap: 20px;
}

.counter-theme {
    border-right: 1.5px solid #ffffff40;
    padding: 0 24px;
    text-align: center;
    color: var(--white-color);
}

.highlight__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    margin: auto;
}

.highlight__link::after {
    content: '';
    background-image: url(../images/outsource-mobile-images/highlight-underline.webp);
    height: 30px;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.highlight__link svg {
    transition: all 0.3s;
}

.highlight__link:hover svg {
    transition: all 0.3s;
    transform: translateX(10px);
}

/* Business Block */

.business-block {
    padding: 50px 50px;
    width: 100%;
    background: var(--page-secondary-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 280ms ease-in;
}

.business-block::before {
    content: "";
    width: 35px;
    height: 35px;
    background: #BFE1FA;
    display: block;
    position: absolute;
    bottom: -40px;
    right: -40px;
    z-index: -1;
    border-radius: 100%;
    transform: translate(-31px, -37px) scale(1);
    transition: 300ms all;
    opacity: 0;
}

.business-block:hover::before {
    transition: 600ms all;
    opacity: 1;
    transform: translate(-41px, -47px) scale(15);
}

/* Development Block */

.develop-block {
    background-color: var(--page-secondary-bg);
    padding: 30px 30px;
    transition: all 0.2s;
}

.develop-block:hover {
    background: var(--page-primary-bg) !important;
    color: var(--white-color) !important;
}

/* Benefit Block */

.benefit-block {
    border: 1px solid #00000033;
    background: var(--white-color);
    padding: 30px 30px;
    transition: all 0.3s;
}

.benefit-block:hover {
    box-shadow: 0px 0px 33px 0px #BFE1FAA6;
    border-color: var(--page-primary-bg);
}

/* Process Block */

.sticky-column {
    position: sticky;
    top: 150px;
}

.process-list {
    padding-bottom: 80px;
}

.process-list .process-block:last-child {
    border-bottom: 1px solid #FFFFFF33;
}

.process-block {
    display: flex;
    color: var(--white-color);
    gap: 20px;
    background-color: transparent;
    border-top: 1px solid #FFFFFF33;
    border-bottom: 1px solid #FFFFFF33;
    padding: 35px 30px;
    transition: all 0.3s;
}

.process-block:hover {
    background-color: #DBEDFA33;
}

.process-block span {
    opacity: .2;
    position: relative;
    top: -8px;
}

/* Model Block */

.model--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.model--block {
    display: grid;
    grid-template-columns: auto 450px;
    gap: 30px;
    transition: all 0.3s;
}

.model--block.reverse--block{
    grid-template-columns: 450px auto;
}

.model-content {
    background: var(--page-secondary-bg);
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
}

.model--block:hover .model-content {
    background-color: #021E4E;
    color: var(--white-color) !important;
}

/* Industry Block */

.industry-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
    padding: 30px 20px;
    background-color: transparent;
}

.industry-block:hover {
    background-color: var(--page-secondary-bg);
}

/* Choose Block */

.choose-slider .swiper-slide {
    height: auto !important;
}

.choose-block {
    padding: 30px 30px;
    background-color: var(--white-color);
    border: 1px solid #00000033;
    transition: all 0.3s;
    height: 100%;
}

.choose-img {
    width: 100%;
}

.choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-block:hover {
    transform: translateY(-5px);
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--white-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover {
    background: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
    color: var(--page-primary-bg);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--white-color);
    font-size: 20px;
    font-weight: 600;
    background:var(--page-primary-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* CTA */

.cta-wrapper {
    background-color: var(--page-secondary-bg);
    padding: 50px 90px;
}

/* FAQ lock */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 24px;
}

/* 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) {

}

@media only screen and (max-width: 991px) {

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid .counter-theme:nth-child(2) {
        border: none;
    }

}

@media only screen   and (max-width: 767px) {

    .tick-list,
    .listing-wrapper {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li {
        font-size: 18px;
    }

    .button {
        width: auto !important;
    }

    .tick-list li::before {
        inset: 7px auto 0 0;
        width: 20px;
        height: 20px;
        background-size: 20px;
    }

    .page-counter {
        padding: 40px 20px;
    }

    .counter-grid {
        gap: 20px 0px;
    }

    .counter-theme {
        padding: 0 10px;
    }

    .highlight__link {
        font-size: 16px !important;
    }

    .model--block {
        display: flex;
        flex-direction: column-reverse;
    }

    .model--block.reverse--block {
        flex-direction: column;
    }

    .model-img img {
        width: 100%;
    }

    .model-content,
    .develop-block,
    .business-block,
    .benefit-block,
    .choose-block {
        padding: 20px 20px;
    }

}