/* =========================================================
   AXXO HERO SLIDER
========================================================= */

.axxo-hero-slider {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    background: #DADEE1;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.axxo-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 74%;
    height: 100%;
    z-index: 30;
    display: flex;
    align-items: center;
    background: #f3f3f300;
    overflow: visible;
}

/*
|--------------------------------------------------------------------------
| DIAGONAL DIVISION
|--------------------------------------------------------------------------
*/

.axxo-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 370px;
    width: 1000px;
    height: 100%;
    background: #DADEE1;
    transform: skewX(-30deg);
    z-index: 27;
    box-shadow: 30px 0 60px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   CONTENT CONTAINER
========================================================= */

.axxo-left-container {
    position: relative;
    z-index: 28;
    width: 50%;
    max-width: 680px;
    padding-left: clamp(40px, 15vw, 140px);
    padding-right: clamp(20px, 4vw, 130px);
}

/* =========================================================
   TITLE
========================================================= */

.axxo-main-title {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 86px);
    line-height: 0.95;
    font-weight: 700;
    color: #2136c4;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.axxo-main-description {
    max-width: 540px;

    font-size: clamp(16px, 1.1vw, 22px);
    line-height: 1.7;

    color: #070169;
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.axxo-right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    right: 0px;
    z-index: 28;
}

/* =========================================================
   SLIDES
========================================================= */

.axxo-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* =========================================================
   SINGLE SLIDE
========================================================= */

./*axxo-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.08);

    transition:
        opacity 1s ease,
        transform 1.4s ease,
        visibility 1s ease;

    z-index: 1;
}*/

.axxo-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform:
    translateX(80px)
    scale(1.08);
    transition:
    opacity 1s ease,
    transform 1.8s cubic-bezier(.22,.61,.36,1),
    visibility 1s ease;
    z-index: 1;
    overflow: hidden;
}


.axxo-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform:
    translateX(0)
    scale(1);
    z-index: 5;
}

/* =========================================================
   IMAGE
========================================================= */

.axxo-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================================
   SHAPE CENTER
========================================================= */

.axxo-shape {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 60;
    width: clamp(180px, 16vw, 340px);
    pointer-events: none;
    animation: axxoFloat 6s ease-in-out infinite;
}

/* =========================================================
   NAVIGATION
========================================================= */

.axxo-navigation {
    position: absolute;
    bottom: 0px;
    right: 1px;
    z-index: 50;
    display: flex;
    height: auto;
    gap: 1px;
}

.axxo-navigation button {
    appearance: none;
    border: none;
    width: 56px;
    height: 56px;
    cursor: pointer;
    background: rgba(255,255,255,0.9);
    transition: all .3s ease;
}

.axxo-navigation button:hover {
    transform: translateY(-3px);
}

/* =========================================================
   CAPTION
========================================================= */

/* =========================================================
   FIXED INFO CARD
========================================================= */

.axxo-info-card {
   position: absolute;
   right: 216px;
   bottom: 50px;
   z-index: 80;
   width: min(600px, 100%);
   background: #2136c4;
   color: #ffffff;
   width: 450px;
}

/* =========================================================
   CONTENT
========================================================= */

.axxo-info-content {
    padding: 20px 55px;
}

/* =========================================================
   TITLE
========================================================= */

.axxo-slide-title {
    font-size: clamp(28px, 2vw, 42px);
    line-height: 1.15;
    font-weight: 400;
    font-size: 24px;
    font-family: 'Geologica';
    text-align: center;
}

/* =========================================================
   SUBTITLE
========================================================= */

.axxo-slide-subtitle {
    margin-top: 10px;

    font-size: 16px;

    opacity: .9;
}

/* =========================================================
   NAVIGATION
========================================================= */

.axxo-navigation {

}

/* =========================================================
   BUTTON
========================================================= */

.axxo-navigation button {
    appearance: none;
    border: none;
    height: 50px;
    background: #070169;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: background .35s ease, transform .35s ease;
    width: 225px;
    padding: 0px;
}
.axxo-navigation button::focus, .axxo-navigation button::hover, [type=button]::focus {
    background: #1D7FFF;
}

/* divider */

.axxo-prev {
    border-right:
    1px solid rgba(255,255,255,0.14);
}

/* hover */

.axxo-navigation button:hover {
    background: #0d0d96;
}

/* =========================================================
   ARROWS
========================================================= */

.axxo-arrow {
    font-size: 22px;

    line-height: 1;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .axxo-info-card {
        width: 100%;
    }

    .axxo-info-content {
        padding:
        26px
        24px;
    }

    .axxo-navigation button {
        height: 64px;

        font-size: 15px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .axxo-hero-slider {
        grid-template-columns: 100%;
        min-height: auto;
    }

    .axxo-left {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .axxo-left::after {
        content: '';
        position: absolute;
        top: 0;
        right: -160px;
        width: 320px;
        height: 100%;
        background: #ffffff;
        transform: skewX(-16deg);
        z-index: 25;
        box-shadow:
        20px 0 60px rgba(0,0,0,0.08);
    }

    .axxo-right {
        min-height: 600px;
    }

    .axxo-shape {
        left: 50%;
        top: auto;
        bottom: -40px;
        width: 160px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .axxo-hero-slider {
        display: flex;
        flex-direction: column;
    }

    .axxo-left-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .axxo-main-title {
        font-size: 42px;
    }

    .axxo-main-description {
        font-size: 16px;
    }

}

/* =========================================================
   OVERLAY
========================================================= */

.axxo-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.2) 100%
    );
}

/* =========================================================
   CAPTION ANIMATION
========================================================= */

.axxo-caption {
    position: absolute;
    bottom: 51px;
    z-index: 50;
    color: #ffffff;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform 1s cubic-bezier(.22, .61, .36, 1);
    transition-delay: .45s;
    background: #2136c5;
    padding: 10px 55px;
    text-align: center;
    right: 0px;
    width: 450px;
}

.axxo-slide.active .axxo-caption {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CTA BUTTON
========================================================= */

.axxo-cta-wrapper {
    margin-top: 42px;
}

.axxo-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 58px;
    padding: 0 34px;
    background: #2136c4;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .04em;
    overflow: hidden;
    transition:
    transform .35s ease,
    background .35s ease;
}

.axxo-cta-button:hover {
    transform: translateY(-3px);
    background: #10269d;
}

/* =========================================================
   SHAPE FLOAT
========================================================= */

.axxo-shape {
    animation:
    axxoFloat 6s ease-in-out infinite;
}

@keyframes axxoFloat {

    0% {
        transform:
        translate(-50%, -50%)
        translateY(0);
    }

    50% {
        transform:
        translate(-50%, -50%)
        translateY(-14px);
    }

    100% {
        transform:
        translate(-50%, -50%)
        translateY(0);
    }
}

.axxo-slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.axxo-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: 100%;
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
    .axxo-left {
        order: 1;
        padding: 30px 20px;
        background-color: #DADEE1;
        height: 350px;
        width: 100%;
        text-align: center;
    }
    .axxo-left::after {
        display: none;
    }
    .axxo-left-container {
        width: 100%;
    }
    .axxo-right {
        margin-top: 300px;
        min-height: 400px;
    }
    .axxo-navigation {
        right: 0px;
        bottom: 0px;
        width: 100%;
    }
    .axxo-caption {
        bottom: 50px;
        width: 100%;
    }
    .axxo-navigation button {
        height: 50px;
        font-size: 15px;
        padding: 5px;
    }
    .axxo-shape {
        transform: translate(0%, -95%) rotatez(57deg) !important;
        left: 27%;
        top: auto;
        bottom: 186px;
        width: 160px;
    }
}