<style>
/* =========================================================
   ÁO THỂ THAO HERO BANNER
   FLATSOME / UX BUILDER
   ========================================================= */


/* ---------------------------------------------------------
   RESET RIÊNG CHO SECTION
   --------------------------------------------------------- */

.ao-the-thao-hero {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
}


.ao-the-thao-hero .section-content {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


.ao-the-thao-hero-row {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


.ao-the-thao-hero-col {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ---------------------------------------------------------
   BANNER
   --------------------------------------------------------- */

.ao-the-thao-banner {
    position: relative;

    display: block;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    /*
     * Ảnh gốc:
     * 1024 x 226
     *
     * Tỷ lệ:
     * 226 / 1024 = 22.07%
     */
    aspect-ratio: 1024 / 226;

    background: #050505;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.ao-the-thao-banner-image {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;
    object-position: center center;

    border: 0 !important;

    /*
     * Tránh Flatsome áp style image mặc định
     */
    box-shadow: none !important;

    /*
     * Ngăn kéo ảnh
     */
    user-select: none;
    -webkit-user-drag: none;
}


/* ---------------------------------------------------------
   LAYER
   --------------------------------------------------------- */

.ao-the-thao-click-layer {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 20;

    pointer-events: none;
}


/* ---------------------------------------------------------
   HOTSPOT BUTTON
   --------------------------------------------------------- */

.ao-the-thao-button-hotspot {
    position: absolute;

    display: block;

    pointer-events: auto;

    z-index: 30;

    cursor: pointer;

    background: transparent;

    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    transition:
        background-color .25s ease,
        transform .25s ease;
}


/* =========================================================
   DESKTOP
   ========================================================= */


/*
 * Ảnh gốc 1024 x 226
 *
 * Nút báo giá:
 * X ≈ 80px
 * Y ≈ 171px
 * W ≈ 201px
 * H ≈ 36px
 */

.ao-the-thao-button-hotspot--quote {

    left: 7.8%;

    top: 75.7%;

    width: 19.7%;

    height: 16%;

    border-radius: 7px;
}


/*
 * Nút xem mẫu:
 *
 * X ≈ 294px
 * Y ≈ 171px
 * W ≈ 150px
 * H ≈ 36px
 */

.ao-the-thao-button-hotspot--sample {

    left: 28.7%;

    top: 75.7%;

    width: 14.7%;

    height: 16%;

    border-radius: 7px;
}


/* ---------------------------------------------------------
   HOVER
   --------------------------------------------------------- */

.ao-the-thao-button-hotspot--quote:hover {
    background: rgba(255, 255, 255, .07);
}


.ao-the-thao-button-hotspot--sample:hover {
    background: rgba(255, 255, 255, .07);
}


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

@media screen and (max-width: 1024px) {

    .ao-the-thao-banner {
        aspect-ratio: 1024 / 250;
    }

    .ao-the-thao-banner-image {
        object-position: center center;
    }

}


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

@media screen and (max-width: 767px) {

    .ao-the-thao-hero,
    .ao-the-thao-hero .section-content,
    .ao-the-thao-hero-row,
    .ao-the-thao-hero-col {

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    .ao-the-thao-banner {

        /*
         * Mobile cao hơn desktop.
         */
        aspect-ratio: 768 / 390;

        min-height: 300px;

        width: 100%;
    }


    .ao-the-thao-banner-image {

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;

        /*
         * Dịch ảnh một chút sang phải
         * để giữ nhân vật.
         */
        object-position: 62% center;
    }


    /*
     * Nút báo giá
     */

    .ao-the-thao-button-hotspot--quote {

        left: 6%;

        top: 79%;

        width: 43%;

        height: 12%;

        border-radius: 6px;
    }


    /*
     * Nút xem mẫu
     */

    .ao-the-thao-button-hotspot--sample {

        left: 53%;

        top: 79%;

        width: 40%;

        height: 12%;

        border-radius: 6px;
    }

}


/* =========================================================
   MOBILE NHỎ
   ========================================================= */

@media screen and (max-width: 480px) {

    .ao-the-thao-banner {

        aspect-ratio: 1 / .62;

        min-height: 275px;
    }


    .ao-the-thao-banner-image {

        object-position: 61% center;
    }


    .ao-the-thao-button-hotspot--quote {

        left: 6%;

        top: 80%;

        width: 43%;

        height: 11.5%;
    }


    .ao-the-thao-button-hotspot--sample {

        left: 53%;

        top: 80%;

        width: 40%;

        height: 11.5%;
    }

}


/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media screen and (max-width: 360px) {

    .ao-the-thao-banner {

        min-height: 250px;
    }

}
</style>


