/* =========================================================
   ABLESTAY — HOMEPAGE
   CLEAN RESPONSIVE CSS
   ========================================================= */


/* =========================================================
   GLOBAL BOX SIZING
   ========================================================= */

.as-top-image-slider-section,
.as-top-image-slider-section *,
.as-homepage-intro,
.as-homepage-intro * {
    box-sizing: border-box;
}


/* =========================================================
   HOMEPAGE SLIDER SECTION
   ========================================================= */

.as-top-image-slider-section {
    display: block !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 42px !important;
    margin-left: calc(50% - 50vw) !important;

    padding: 0 !important;

    clear: both !important;

    position: relative !important;

    overflow: hidden !important;
}


/* =========================================================
   MAIN SLIDER
   DESKTOP
   ========================================================= */

.as-top-image-slider {
    position: relative !important;

    width: 100% !important;
    max-width: none !important;

    height: 500px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    background:
        linear-gradient(
            135deg,
            #032B55 0%,
            #064A78 45%,
            #087F9B 75%,
            #19D3E6 100%
        );

    border-radius: 0 0 30px 30px !important;

    box-shadow:
        0 20px 50px rgba(3, 35, 75, 0.18);

    isolation: isolate;
}


/* =========================================================
   SLIDES
   ========================================================= */

.as-top-slide {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    opacity: 0;
    visibility: hidden;

    z-index: 1;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


.as-top-slide.active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================================
   SLIDER IMAGE
   DESKTOP
   ========================================================= */

.as-top-slide img {
    display: block !important;

    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 100% !important;
    min-height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    object-fit: cover !important;

    object-position: center center !important;

    transform: scale(1.01);

    transition:
        transform 6s ease;
}


.as-top-slide.active img {
    transform: scale(1.025);
}


/* =========================================================
   REMOVE IMAGE LINK / PICTURE SPACING
   ========================================================= */

.as-top-slide picture,
.as-top-slide a {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   DARK IMAGE OVERLAY
   ========================================================= */

.as-top-slide::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 25, 58, 0.42) 0%,
            rgba(3, 42, 75, 0.14) 50%,
            rgba(0, 108, 145, 0.06) 100%
        );
}


/* =========================================================
   PREVIOUS / NEXT ARROWS
   DESKTOP
   ========================================================= */

.as-top-slider-prev,
.as-top-slider-next {
    position: absolute !important;

    top: 50% !important;

    z-index: 20 !important;

    width: 48px !important;
    height: 48px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateY(-50%) !important;

    border: 1px solid rgba(255,255,255,0.45) !important;

    border-radius: 50% !important;

    background:
        rgba(3,34,70,0.68) !important;

    color: #FFFFFF !important;

    font-size: 24px !important;

    line-height: 1 !important;

    cursor: pointer;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.as-top-slider-prev {
    left: 24px !important;
}


.as-top-slider-next {
    right: 24px !important;
}


.as-top-slider-prev:hover,
.as-top-slider-next:hover {
    background: #087F9B !important;

    border-color: #5DEAF5 !important;

    transform:
        translateY(-50%) scale(1.06) !important;
}


/* =========================================================
   SLIDER DOTS
   ========================================================= */

.as-top-slider-dots {
    position: absolute !important;

    left: 50% !important;
    bottom: 22px !important;

    z-index: 20 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    transform: translateX(-50%) !important;
}


.as-top-dot {
    flex: 0 0 auto;

    width: 9px !important;
    height: 9px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255,255,255,0.75) !important;

    border-radius: 50% !important;

    background:
        rgba(255,255,255,0.35) !important;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}


.as-top-dot.active {
    width: 30px !important;

    border-radius: 20px !important;

    background: #19D3E6 !important;

    border-color: #19D3E6 !important;
}


/* =========================================================
   KEYBOARD ACCESSIBILITY
   ========================================================= */

.as-top-slider-prev:focus-visible,
.as-top-slider-next:focus-visible,
.as-top-dot:focus-visible {
    outline: 2px solid #5DEAF5 !important;

    outline-offset: 3px;
}


/* =========================================================
   HOMEPAGE INTRODUCTION
   DESKTOP
   ========================================================= */

.as-homepage-intro {
    display: block !important;

    position: relative !important;

    width: calc(100% - 40px) !important;
    max-width: 1180px !important;

    margin:
        0 auto 55px !important;

    padding:
        65px 40px 60px !important;

    clear: both !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(0,190,255,0.22) 0,
            rgba(0,190,255,0.08) 22%,
            transparent 42%
        ),
        radial-gradient(
            circle at 5% 95%,
            rgba(0,221,255,0.16) 0,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #032B55 0%,
            #064A78 45%,
            #075A8F 75%,
            #087F9B 100%
        );

    border-radius: 28px !important;

    box-shadow:
        0 20px 50px rgba(3,35,75,0.18);
}


/* =========================================================
   INTRO INNER
   ========================================================= */

.as-homepage-intro-inner {
    display: block !important;

    position: relative !important;

    z-index: 2 !important;

    width: 100% !important;
    max-width: 1100px !important;

    margin: 0 auto !important;

    padding: 0 !important;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.as-homepage-intro .as-homepage-eyebrow {
    display: inline-flex !important;

    align-items: center !important;

    gap: 8px !important;

    max-width: 100%;

    margin:
        0 0 22px !important;

    padding:
        8px 16px !important;

    color: #5DEAF5 !important;

    background:
        rgba(0,202,255,0.08) !important;

    border:
        1px solid rgba(65,222,255,0.35) !important;

    border-radius: 50px !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    letter-spacing: 1.3px !important;

    line-height: 1.4 !important;

    white-space: normal;
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.as-homepage-intro .as-homepage-title {
    display: block !important;

    width: 100% !important;
    max-width: 950px !important;

    margin:
        0 0 28px !important;

    padding: 0 !important;

    color: #FFFFFF !important;

    font-size:
        clamp(30px, 4vw, 50px) !important;

    line-height: 1.14 !important;

    font-weight: 800 !important;

    letter-spacing: -1px !important;

    overflow-wrap: normal;
    word-break: normal;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.as-homepage-intro .as-homepage-summary {
    display: block !important;

    width: 100% !important;

    max-width: 1050px !important;

    margin:
        0 0 42px !important;
}


.as-homepage-intro .as-homepage-summary p {
    display: block !important;

    width: 100% !important;

    margin:
        0 0 18px !important;

    padding: 0 !important;

    color:
        rgba(239,250,255,0.88) !important;

    font-size: 16px !important;

    line-height: 1.8 !important;

    overflow-wrap: break-word;
}


/* =========================================================
   THREE PILLARS
   ========================================================= */

.as-homepage-intro .as-homepage-pillars {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 24px !important;

    width: 100% !important;

    margin:
        40px 0 0 !important;

    padding: 0 !important;

    clear: both !important;
}


/* =========================================================
   PILLAR CARD
   ========================================================= */

.as-homepage-intro .as-homepage-pillar {
    display: block !important;

    position: relative !important;

    width: auto !important;

    min-width: 0 !important;

    min-height: 255px !important;

    margin: 0 !important;

    padding:
        32px 28px 30px !important;

    float: none !important;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F3FBFF 100%
        ) !important;

    border:
        1px solid rgba(0,160,220,0.20) !important;

    border-radius: 20px !important;

    box-shadow:
        0 14px 35px rgba(0,24,60,0.20) !important;

    overflow: hidden !important;
}


/* =========================================================
   CARD TOP LINE
   ========================================================= */

.as-homepage-intro
.as-homepage-pillar::before {
    content: "";

    position: absolute;

    top: 0;

    left: 28px;
    right: 28px;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #075A8F,
            #19D3E6
        );

    border-radius:
        0 0 10px 10px;
}


/* =========================================================
   PILLAR ICON
   ========================================================= */

.as-homepage-intro .as-pillar-icon {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 62px !important;
    height: 62px !important;

    margin:
        0 0 22px !important;

    background:
        linear-gradient(
            145deg,
            #E9FBFE,
            #D7F4F9
        ) !important;

    border:
        1px solid #8DDDF3 !important;

    border-radius: 17px !important;

    font-size: 28px !important;
}


/* =========================================================
   PILLAR TITLE
   ========================================================= */

.as-homepage-intro
.as-homepage-pillar h2 {
    display: block !important;

    width: 100% !important;

    margin:
        0 0 12px !important;

    color: #063B68 !important;

    font-size: 20px !important;

    line-height: 1.3 !important;

    font-weight: 750 !important;

    overflow-wrap: break-word;
}


/* =========================================================
   PILLAR TEXT
   ========================================================= */

.as-homepage-intro
.as-homepage-pillar p {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    color: #52758C !important;

    font-size: 14px !important;

    line-height: 1.75 !important;

    overflow-wrap: break-word;
}


/* =========================================================
   CLEAR
   ========================================================= */

.as-homepage-intro::after {
    content: "";

    display: block;

    clear: both;
}


/* =========================================================
   LARGE TABLET
   901px – 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .as-top-slider-prev,
    .as-top-slider-next {
        width: 44px !important;
        height: 44px !important;

        font-size: 21px !important;
    }

    .as-top-slider-prev {
        left: 20px !important;
    }

    .as-top-slider-next {
        right: 20px !important;
    }

    .as-homepage-intro {
        width:
            calc(100% - 36px) !important;

        padding:
            55px 32px 50px !important;
    }

    .as-homepage-intro
    .as-homepage-pillars {
        gap: 18px !important;
    }

    .as-homepage-intro
    .as-homepage-pillar {
        padding:
            28px 22px !important;
    }
}


/* =========================================================
   TABLET
   768px – 900px
   ========================================================= */

@media (max-width: 900px) {

    .as-top-image-slider-section {
        margin-bottom: 34px !important;
    }

    .as-top-image-slider {
        height: 400px !important;

        border-radius:
            0 0 24px 24px !important;
    }

    .as-top-slider-prev,
    .as-top-slider-next {
        width: 42px !important;
        height: 42px !important;

        font-size: 20px !important;
    }

    .as-top-slider-prev {
        left: 16px !important;
    }

    .as-top-slider-next {
        right: 16px !important;
    }

    .as-homepage-intro {
        width:
            calc(100% - 30px) !important;

        padding:
            50px 26px !important;

        border-radius:
            24px !important;
    }

    .as-homepage-intro
    .as-homepage-title {
        font-size:
            clamp(30px, 5vw, 42px) !important;
    }

    .as-homepage-intro
    .as-homepage-summary p {
        font-size: 15px !important;

        line-height: 1.7 !important;
    }

    .as-homepage-intro
    .as-homepage-pillars {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 18px !important;
    }

    .as-homepage-intro
    .as-homepage-pillar {
        min-height: auto !important;
    }
}


/* =========================================================
   MOBILE
   MAX 767px

   IMPORTANT:
   - Uses the full available viewport width
   - True 16:9 slider
   - No left/right gap
   - Image fills slider
   - Complete image remains visible when source is 16:9
   - Small arrows
   ========================================================= */

@media only screen and (max-width: 767px) {

    /* -----------------------------------------------------
       RESET PAGE CONTENT CONSTRAINT AROUND SLIDER
       ----------------------------------------------------- */

    .as-top-image-slider-section {
        position: relative !important;

        width: 100vw !important;
        max-width: 100vw !important;

        /*
         * Escape any centered/max-width WordPress wrapper.
         */
        left: 50% !important;

        margin-left: -50vw !important;

        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 28px !important;

        padding: 0 !important;

        clear: both !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       TRUE 16:9 MOBILE SLIDER
       ----------------------------------------------------- */

    .as-top-image-slider {
        position: relative !important;

        width: 100% !important;
        max-width: none !important;

        height: auto !important;

        aspect-ratio: 16 / 9 !important;

        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        border-radius:
            0 0 24px 24px !important;
    }


    /* -----------------------------------------------------
       SLIDES
       ----------------------------------------------------- */

    .as-top-slide {
        position: absolute !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        aspect-ratio: auto !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       IMAGE
       -----------------------------------------------------

       IMPORTANT:
       If your source images are 16:9, this displays the
       entire image without cropping and without blank
       top/bottom areas.

       We use COVER because the container itself is 16:9.
       ----------------------------------------------------- */

    .as-top-slide img {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        display: block !important;

        width: 100% !important;
        height: 100% !important;

        min-width: 100% !important;
        min-height: 100% !important;

        max-width: none !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;

        object-fit: cover !important;

        object-position: center center !important;

        aspect-ratio: 16 / 9 !important;

        transform: none !important;
    }


    .as-top-slide.active img {
        transform: none !important;
    }


    /* -----------------------------------------------------
       PICTURE / LINK
       ----------------------------------------------------- */

    .as-top-slide picture,
    .as-top-slide a {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* -----------------------------------------------------
       MOBILE ARROWS
       ----------------------------------------------------- */

    .as-top-slider-prev,
    .as-top-slider-next {
        position: absolute !important;

        top: 50% !important;

        width: 36px !important;
        height: 36px !important;

        min-width: 36px !important;
        min-height: 36px !important;

        max-width: 36px !important;
        max-height: 36px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        transform:
            translateY(-50%) !important;

        font-size: 20px !important;

        line-height: 1 !important;

        border-width: 1px !important;

        background:
            rgba(3,34,70,0.72) !important;

        z-index: 20 !important;

        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }


    .as-top-slider-prev {
        left: 10px !important;
    }


    .as-top-slider-next {
        right: 10px !important;
    }


    /* No enlargement on touch devices */

    .as-top-slider-prev:hover,
    .as-top-slider-next:hover {
        transform:
            translateY(-50%) !important;
    }


    /* -----------------------------------------------------
       MOBILE DOTS
       ----------------------------------------------------- */

    .as-top-slider-dots {
        left: 50% !important;

        bottom: 12px !important;

        gap: 7px !important;

        transform:
            translateX(-50%) !important;
    }


    .as-top-dot {
        width: 7px !important;
        height: 7px !important;
    }


    .as-top-dot.active {
        width: 24px !important;
    }


    /* -----------------------------------------------------
       HOMEPAGE CONTENT
       MATCH MAIN CONTENT WIDTH
       ----------------------------------------------------- */

    .as-homepage-intro {
        display: block !important;

        width:
            calc(100% - 24px) !important;

        max-width: none !important;

        margin:
            0 auto 35px !important;

        padding:
            42px 22px 40px !important;

        border-radius:
            20px !important;

        box-sizing: border-box !important;
    }


    .as-homepage-intro-inner {
        width: 100% !important;
        max-width: none !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }


    /* -----------------------------------------------------
       EYEBROW
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-eyebrow {
        display: flex !important;

        width: fit-content !important;
        max-width: 100% !important;

        margin-bottom:
            18px !important;

        padding:
            8px 13px !important;

        font-size:
            10px !important;

        letter-spacing:
            1px !important;

        line-height:
            1.4 !important;
    }


    /* -----------------------------------------------------
       MOBILE TITLE
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-title {
        width: 100% !important;

        max-width: 100% !important;

        margin-bottom:
            22px !important;

        font-size:
            clamp(28px, 8vw, 36px) !important;

        line-height:
            1.16 !important;

        letter-spacing:
            -0.6px !important;
    }


    /* -----------------------------------------------------
       MOBILE SUMMARY
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-summary {
        width: 100% !important;

        max-width: 100% !important;

        margin-bottom:
            30px !important;
    }


    .as-homepage-intro
    .as-homepage-summary p {
        width: 100% !important;

        margin-bottom:
            15px !important;

        font-size:
            14px !important;

        line-height:
            1.7 !important;
    }


    /* -----------------------------------------------------
       MOBILE PILLARS
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-pillars {
        width: 100% !important;

        grid-template-columns:
            1fr !important;

        gap:
            16px !important;

        margin-top:
            30px !important;
    }


    .as-homepage-intro
    .as-homepage-pillar {
        width: 100% !important;

        min-height:
            auto !important;

        padding:
            27px 22px 26px !important;

        border-radius:
            18px !important;
    }


    .as-homepage-intro
    .as-homepage-pillar::before {
        left: 22px !important;
        right: 22px !important;
    }


    /* -----------------------------------------------------
       MOBILE PILLAR ICON
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-pillar-icon {
        width:
            54px !important;

        height:
            54px !important;

        margin-bottom:
            17px !important;

        border-radius:
            15px !important;

        font-size:
            24px !important;
    }


    /* -----------------------------------------------------
       MOBILE PILLAR TITLE
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-pillar h2 {
        margin-bottom:
            9px !important;

        font-size:
            19px !important;

        line-height:
            1.3 !important;
    }


    /* -----------------------------------------------------
       MOBILE PILLAR TEXT
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-pillar p {
        font-size:
            14px !important;

        line-height:
            1.65 !important;
    }
}


/* =========================================================
   SMALL PHONES
   MAX 480px
   ========================================================= */

@media only screen and (max-width: 480px) {

    /* -----------------------------------------------------
       FULL WIDTH SLIDER
       ----------------------------------------------------- */

    .as-top-image-slider-section {
        position: relative !important;

        width: 100vw !important;
        max-width: 100vw !important;

        left: 50% !important;

        margin-left:
            -50vw !important;

        margin-right: 0 !important;

        margin-top: 0 !important;

        margin-bottom:
            24px !important;

        padding: 0 !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       TRUE 16:9
       ----------------------------------------------------- */

    .as-top-image-slider {
        width: 100% !important;
        max-width: none !important;

        height: auto !important;

        aspect-ratio:
            16 / 9 !important;

        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        border-radius:
            0 0 20px 20px !important;
    }


    .as-top-slide {
        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        aspect-ratio: auto !important;
    }


    /* -----------------------------------------------------
       IMAGE — FULL 16:9 FIT
       ----------------------------------------------------- */

    .as-top-slide img {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        min-width: 100% !important;
        min-height: 100% !important;

        max-width: none !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit:
            cover !important;

        object-position:
            center center !important;

        aspect-ratio:
            16 / 9 !important;

        transform: none !important;
    }


    /* -----------------------------------------------------
       SMALL ARROWS
       ----------------------------------------------------- */

    .as-top-slider-prev,
    .as-top-slider-next {
        width:
            32px !important;

        height:
            32px !important;

        min-width:
            32px !important;

        min-height:
            32px !important;

        max-width:
            32px !important;

        max-height:
            32px !important;

        font-size:
            17px !important;

        border-width:
            1px !important;
    }


    .as-top-slider-prev {
        left:
            8px !important;
    }


    .as-top-slider-next {
        right:
            8px !important;
    }


    /* -----------------------------------------------------
       SMALL DOTS
       ----------------------------------------------------- */

    .as-top-slider-dots {
        bottom:
            9px !important;

        gap:
            6px !important;
    }


    .as-top-dot {
        width:
            6px !important;

        height:
            6px !important;
    }


    .as-top-dot.active {
        width:
            21px !important;
    }


    /* -----------------------------------------------------
       HOMEPAGE CONTENT
       SAME WIDTH / LESS SIDE SPACE
       ----------------------------------------------------- */

    .as-homepage-intro {
        width:
            calc(100% - 16px) !important;

        max-width:
            none !important;

        margin:
            0 auto 30px !important;

        padding:
            32px 17px 30px !important;

        border-radius:
            18px !important;
    }


    .as-homepage-intro-inner {
        width:
            100% !important;

        max-width:
            none !important;

        margin:
            0 !important;

        padding:
            0 !important;
    }


    /* -----------------------------------------------------
       EYEBROW
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-eyebrow {
        font-size:
            9px !important;

        letter-spacing:
            0.8px !important;

        padding:
            7px 10px !important;
    }


    /* -----------------------------------------------------
       TITLE
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-title {
        font-size:
            26px !important;

        line-height:
            1.17 !important;

        letter-spacing:
            -0.4px !important;
    }


    /* -----------------------------------------------------
       SUMMARY
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-summary p {
        font-size:
            13.5px !important;

        line-height:
            1.65 !important;
    }


    /* -----------------------------------------------------
       PILLAR
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-pillar {
        padding:
            24px 18px !important;

        border-radius:
            16px !important;
    }


    .as-homepage-intro
    .as-homepage-pillar::before {
        left:
            18px !important;

        right:
            18px !important;
    }


    /* -----------------------------------------------------
       PILLAR ICON
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-pillar-icon {
        width:
            50px !important;

        height:
            50px !important;

        font-size:
            22px !important;
    }


    /* -----------------------------------------------------
       PILLAR TITLE
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-pillar h2 {
        font-size:
            18px !important;
    }


    /* -----------------------------------------------------
       PILLAR TEXT
       ----------------------------------------------------- */

    .as-homepage-intro
    .as-homepage-pillar p {
        font-size:
            13.5px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
   MAX 360px
   ========================================================= */

@media only screen and (max-width: 360px) {

    .as-top-slider-prev,
    .as-top-slider-next {
        width:
            30px !important;

        height:
            30px !important;

        min-width:
            30px !important;

        min-height:
            30px !important;

        max-width:
            30px !important;

        max-height:
            30px !important;

        font-size:
            16px !important;
    }


    .as-top-slider-prev {
        left:
            7px !important;
    }


    .as-top-slider-next {
        right:
            7px !important;
    }


    .as-homepage-intro {
        width:
            calc(100% - 12px) !important;

        padding:
            28px 15px 28px !important;
    }


    .as-homepage-intro
    .as-homepage-title {
        font-size:
            24px !important;
    }
}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
   ========================================================= */

html,
body {
    overflow-x: hidden !important;
}


.as-top-image-slider-section {
    overflow-x: hidden !important;
}


.as-top-image-slider {
    overflow: hidden !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .as-top-slide,
    .as-top-slide img,
    .as-top-slider-prev,
    .as-top-slider-next,
    .as-top-dot {
        transition:
            none !important;
    }
}

