@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400");

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    scroll-behavior: smooth;
}


footer .float-right,
footer .float-right .text-footer {
    font-weight: 500;
}

@include media-breakpoint-up(sm) {
    html {
        font-size: 1.2rem;
    }
}

@include media-breakpoint-up(md) {
    html {
        font-size: 1.4rem;
    }
}

@include media-breakpoint-up(lg) {
    html {
        font-size: 1.6rem;
    }
}


/* ================= VARIABLE ================ */

:root {
    --primary-color: #FFFFFF;
    --primary-color-alt: hsl(28, 72%, 83%);
    /* --second-color: #3e537c;
    --second-color-alt: hsla(220, 33%, 36%, 65%);
    --third-color: hsl(220, 36%, 28%); */
    --Neutral: rgba(255, 255, 255, 1) --white-color: #fbfbfb;
    --white-color-alt: hsl(12, 14%, 93%);
    --dark-color: hsl(300, 100%, 0%);
    --background: #050505;
    --size-title: 60px;
    --Gradient-triangle: linear-gradient(#7948CD 100%, #D946A1 100%, #FB5343 100%);
    --dark: rgba(14, 14, 16, 1);
}


/* -- BODY -- */

body {
    font-family: "Inter", sans-serif;
    /*font-size: 1rem;*/
    /* background-color: var(--white-color); */
    color: #fbfbfb;
    margin: 0;

    background: var(--background);
    width: 100%;
    padding-top: 70px;
}

a {
    text-decoration: none !important;
    color: #FFFFFF;
}


/* HEADER */

header {

    width: 100%;
    position: relative;
}

header .navbar {
    position: fixed;
    width: 100%;
    /* Set the navbar to fixed position */
    top: 0;
    z-index: 3;
    background-color: var(--background);
}

.nav-item:active {
    /* margin-right: 37px;
    /* width: 150px; */
    /* font-size: 24px;  */
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-present {
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-item {
    text-align: center;

    font-feature-settings: 'clig' off, 'liga' off;
    font-family: 'Inter';
    font-size: 20px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    display: flex;
}


.nav-custom {
    padding-left: 99px;
    padding-top: 23px;
    padding-bottom: 15px;
    padding-right: 69px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    gap: 63px;

}

.nav-link {
    color: var(--primary-color) !important;
    /*font-size: larger;*/
}

.nav-link:hover {
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .nav-link a.nav-link {
    width: 60%;
} */

ul {
    list-style-type: none;
}

ul li {
    color: var(--primary-color);
}

navbar-brand {
    padding-left: 153px;
}

.btn-header {
    border-radius: 24px;
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Inter';
    color: #fbfbfb;
    border: none;
    width: 147px;
    height: 40px;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-header-white {
    border-radius: 60px;
    background: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Inter';
    color: #EF126F;
    padding: 5px 20px 5px 20px;
    border: none;
    width: 147px;
    height: 40px;
}

.navbar-brand {
    /* padding-left: 65px; */
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.navbar-brand.logo-centered {
    display: flex;
    align-items: center;
    gap: 32px;
}

.active {
    color: #EF126F !important;
}

.mt-top-header {
    margin-top: 100px !important;
}

@media (max-width: 990px) {

    /* change the breakpoint as needed */
    .navbar-brand.logo-centered {
        position: absolute;
        left: 50%;
        transform: translateX(-40%);
    }

    .navbar-brand.logo-centered img {
        width: 95px;
    }

    .nav-custom {
        padding-left: 25px;
        padding-top: 15px;
        padding-right: 5px;
        height: fit-content;
        padding-bottom: 20px;
    }

    .navbar-nav {
        width: 100%;
        height: 100%;
    }

    .btn-nav {
        display: flex;
        justify-content: end;
        margin-top: 45px;
    }

    .btn-nav {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .nav-item {
        /*width: 100% !important;*/
        border-bottom: 0.2px solid #7A7A7A;
    }

    .btn-header {
        display: flex;
        width: 95px !important;
        height: 24px !important;
        padding: 17px 25px !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0;
        font-size: 12px !important;
    }

    .btn-header-white {
        display: flex;
        width: 89px !important;
        height: 24px !important;
        padding: 15px 25px !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0;
        font-size: 12px !important;
    }

    .nav-link {
        font-size: small;
    }

    .mt-top-header {
        margin-top: 35px !important;
    }

    .why-hfm {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .item-info-hfm {
        padding: 24px 16.5px !important;
        border-radius: 5px !important;
    }

    .item-info-meta {
        padding: 14px 16.5px !important;
        border-radius: 5px !important;
    }

    .number-info {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .detail-info {
        font-size: 9px !important;
        line-height: 13.376px !important;
    }

    .icon-detail {
        width: 16px !important;
        height: 16px !important;
        padding: 2px !important;

        border-radius: 2px !important;

    }

    .info-why-hfm {
        gap: 18px !important;
        margin-top: 25px !important;
    }

    .begin-footer {
        height: 21.667px !important;
        padding: 5.417px !important;
    }

    .title-section {
        text-align: center !important;
        font-size: 24px !important;
        font-style: normal;
        line-height: 36px !important;
    }
}

@media (min-width: 992px) and (max-width: 1390px) {

    .nav-custom {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mt-top-header {
        margin-top: 80px !important;
    }

}

@media (min-width: 576px) and (max-width: 976px) {

    /* change the breakpoint as needed */
    .btn-nav {
        display: flex;
        justify-content: center;
    }

    /*  */
    .navbar-brand.logo-centered {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-brand.logo-centered img {
        width: 95px;
    }

    .nav-custom {

        padding-right: 10px;

    }

}

@media (min-width: 576px) and (max-width: 770px) {

    /* change the breakpoint as needed */
    .nav-custom {
        padding-left: 50px;
    }


}

@media (min-width: 576px) and (max-width: 1120px) {

    /* change the breakpoint as needed */
    .nav-link {
        font-size: medium;
    }


}



/* FOOTER */

footer {
    margin: 0;
    padding: 0;
}

.begin-footer {
    display: flex;
    height: 80px;
    padding: 20px;
    align-items: center;
    gap: 20px;
    align-self: stretch;

    border-top: 1px solid #1C1C21;
    border-bottom: 1px solid #1C1C21;
    background: #0E0E10;
}

.footer {
    background: #050505;
    padding: 84px 106.5px;
    font-family: "Inter";
}

.content-footer {
    display: flex;
    align-items: center;
    gap: 109px;
}


.footer .text-footer {
    display: flex;
    align-items: center;
    gap: 151px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    font-feature-settings: 'clig' off, 'liga' off;
}

.footer .text-footer .home {
    color: #999;
}

.footer .text-footer .element {
    display: flex;
    align-items: center;
    width: fit-content;

}

.footer .text-footer .element a {
    text-decoration: solid !important;
    text-decoration-line: underline !important;
}

.logo-footer {
    display: flex;
    padding: 36px 30px;
    align-items: center;
    gap: 43px;

    border-radius: 19px;
    background: #1A1A1A;
}

@media only screen and (max-width: 485px) {
    .footer {
        padding: 30px;
        font-size: 6px !important;
    }

    .text-footer {
        font-weight: 300;
        font-size: 8px !important;
        line-height: 22px;
        line-height: 10px !important;
    }

    .logo-footer {
        /* width: 60px !important;
        height: 25px !important; */
        gap: 20px;
        justify-content: center;
    }

    .btn-header {
        font-size: 16px;
    }

    .btn-header-white {
        font-size: 16px;
    }
}

@media only screen and (min-width: 485px) and (max-width: 580px) {
    .footer {
        padding: 30px;
        font-size: 10px !important;
    }
}

@media only screen and (max-width: 1280px) {
    .footer {
        padding: 30px;
        font-size: medium;
    }

    .footer .text-footer {
        font-size: 18px;
    }

    .vector {
        display: none;
    }

    .img-banner {
        width: 349px;
        /* height: 374px; */
        left: 814px;
        top: 253px;
    }

    .nav-item {
        margin-right: 0px;
        /*width: 135px;*/
        font-size: 16px !important;
    }

    .btn-header {
        font-size: 16px;
        width: 125px;
        height: 40px;
    }

    .btn-header-white {
        font-size: 16px;
        width: 125px;
        height: 40px;
    }

    .logo-footer {
        /* width: 150px;
        height: 65px; */
    }
}

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

    .nav-item {
        margin-right: 6px;
        /*width: 120px;*/
        font-size: 16px;
    }

    .btn-header {
        font-size: 16px;
        width: 120px;
        height: 40px;
    }

    .btn-header-white {
        font-size: 16px;
        width: 120px;
        height: 40px;
    }
}

@media only screen and (min-width: 1281px) {
    .footer {
        padding-left: 80px;
        padding-right: 80px;
        font-size: larger;
    }

    .footer .text-footer {
        font-size: 25px;
    }

    .nav-item {
        /*margin-right: 37px;*/
        width: fit-content;
        font-size: 20px;
    }

    .img-banner {
        width: 549px;
        height: 374px;
        left: 814px;
        top: 253px;
    }
}


/* Secction banner */

.banner {
    padding-left: 85px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 85px;
}

.title-banner {
    text-align: center;

    font-feature-settings: 'clig' off, 'liga' off;
    font-family: "Inter";
    font-size: 60px;
    font-style: normal;
    line-height: 90px;

}


.section-img {
    position: relative;
}


.vector {
    width: 720px;
    height: 720px;
    flex-shrink: 0;
    border-radius: 720px;
    background: linear-gradient(270deg, rgba(121, 72, 205, 0.53) 0%, rgba(162, 71, 186, 0.53) 100%);
    left: -307px;
    top: -112px;
    position: absolute;
    filter: blur(300px);
    z-index: 2;
}

#hfm .vector {
    width: 720px;
    height: 720px;
    flex-shrink: 0;
    border-radius: 720px;
    background: linear-gradient(270deg, rgba(121, 72, 205, 0.53) 0%, rgba(162, 71, 186, 0.53) 100%);
    left: -307px;
    top: -112px;
    /* position: absolute; */
    filter: blur(300px);
    z-index: 0;
}


.vector-1 {
    width: 720px;
    height: 720px;
    flex-shrink: 0;
    border-radius: 720px;
    background: linear-gradient(270deg, rgba(121, 72, 205, 0.53) 0%, rgba(162, 71, 186, 0.53) 100%);
    right: -1px;
    top: 308px;
    position: absolute;
    filter: blur(300px);
    z-index: 2;
}




.img-banner {
    width: 100%;
    left: 814px;
    top: 253px;
    /* position: absolute;  */
}




.bg-linear {
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
}



.text-2xl {
    font-size: 30px;
}

.btn-slogan {
    display: flex;
    width: 100%;
    height: 100%;
    /* padding: 43px 94px; */
    justify-content: center;
    align-items: center;
    gap: 10px;

    /* border: 1px solid; */
    background: #1A1A1A;
    border-image-slice: 1;
    /* border-image-source: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%); */
    background-image: linear-gradient(#1A1A1A, #1A1A1A), linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    background-origin: padding-box, border-box;
    background-clip: content-box, border-box;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-intro {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 32px;
    display: inline-flex
}

.text-intro {
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    /* Heading 30 Bold */
    font-family: "Inter";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
}

.title-slogan {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    /* Heading 60 Regular */
    font-family: "Inter";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 90px;
    word-wrap: break-word
        /* 150% */
}

.btn-part-intro {
    /*display: flex;*/
    width: 100%;
    height: 100%;
    padding: 50px;
    justify-content: center;
    align-items: center;
    background: #0D0D0D;
    border-radius: 12px;
    overflow: hidden;
    border: 1px #333333 solid;
}

.intro-hfm {
    width: 100%;
    display: flex;
    padding: 50px;
    background: linear-gradient(180deg, #19161C 0%, #000 100%);
    flex-shrink: 0;
}

.about-hfm {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 53px;
}

.content-banner-1 {
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
}

.content-banner-2 {
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.timeline {
    /* padding: 30px; */
    justify-content: center;
    align-items: center;
}

.intro-timeline {
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 54px;
    width: 100%;
    justify-items: center;
    text-align: center;
}

.vector-timeline {
    /*text-align: center;*/
    /*width: fit-content;*/
    flex-shrink: 0;
    stroke-width: 1px;
    stroke: #FFF;

}


.btn-image {
    background-image: url('/images/background/bg-image.png');
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: column;
    isolation: isolate;
    flex: none;
    order: 0;
    flex-grow: 0;
    max-height: 167px;
}

.vector-timeline svg {
    max-width: 100%;

}

@media only screen and (min-width: 560px) and (max-width: 1110px) {

    .vector-timeline svg {
        width: 700px !important;
        height: 700px !important;
    }

    .intro-hfm {

        padding: 20px !important;

    }

    .content-banner-1 {

        font-size: 24px !important;
        line-height: 34px;
    }

    .content-banner-2 {

        font-size: 16px;
        font-style: normal;
        line-height: 19px;
    }

    .btn-slogan {
        display: flex;
        width: 100%;
        height: 100%;
        /* padding: 23px 64px; */
        justify-content: center;
        align-items: center;
        gap: 10px;

        /* border-radius: 15px;
        border: 1px solid;
        background: #1A1A1A;
        border-image-slice: 1;
        border-image-source: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%); */
    }

    .title-slogan {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'clig' off, 'liga' off;
        /* Heading 60 Regular */
        font-family: "Inter";
        font-size: 30px;
        font-style: normal;
        font-weight: 300;
        line-height: 30px;
        word-wrap: break-word
            /* 150% */
    }

    .img-banners {
        width: 330px;
        height: 330px;
    }


    .title-banner {

        font-size: 30px;
        font-style: normal;
        line-height: 32px;

    }

    .text-intro {
        font-size: 20px;
        line-height: 24px;
    }

    .img-footer {
        max-width: 70px !important;
        max-height: 70px !important;
    }

    p {
        font-size: 12px !important;
    }

    .title-sm-center {
        text-align: center !important;
    }

}

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


    .img-banners {
        width: 190px;
        height: 190px;
    }

    .btn-slogan {
        display: flex;
        width: 100%;
        height: 100%;
        /* padding: 23px 2px; */
        justify-content: center;
        align-items: center;
        gap: 10px;

        /* border-radius: 15px; */
        /* border: 1px solid;
        background: #1A1A1A;
        border-image-slice: 1;
        border-image-source: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%); */
    }

    .title-banner {

        font-size: 24px;
        font-style: normal;
        line-height: 24px;

    }

    .content-banner-2 {
        font-family: "Inter";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 27px;
    }

    .about-hfm {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 43px;
    }


    .title-slogan {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'clig' off, 'liga' off;
        /* Heading 60 Regular */
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 30px;
        word-wrap: break-word
            /* 150% */
    }

    .footer .text-footer .element a {
        font-size: 12px !important;
        line-height: 15px;
    }

    .img-footer {
        max-width: 50px !important;
        max-height: 40px !important;
    }


    .input-register {
        font-size: 8px !important;
        border-radius: 5px;
        min-width: 80px;
        height: 22px !important;
        font-size: 14px;
    }

    .btn-footer {

        font-size: 8px !important;
        border-radius: 5px !important;
        padding: 4px !important;
        margin-left: 5px;
    }

    .icon-social {
        width: 24px !important;
    }

    .text-intro {


        font-size: 14px;
        font-style: normal;
        line-height: 17px;

    }

    .btn-part-intro {
        /*display: flex;*/

        padding: 20px;

    }

    .timeline {
        padding: 20px;
        justify-content: center;
        align-items: center;
    }

    .vector-timeline {
        margin-top: 0;
    }

    .vector-timeline svg {
        width: 500px !important;
        height: 500px !important;
    }

    p {
        font-size: 8px !important;
    }

    .item-child-social {

        padding: 16px 16px !important;
        max-width: 170px;
        max-height: 160px;
        gap: 10px;

    }

    .title-sm-center {
        text-align: center !important;
    }

    .content-banner-1 {

        font-size: 16px !important;
        line-height: 18px;
        text-align: center;
    }
}

.input-register {
    font-size: 14px;
    border-radius: 5px;
    width: 95%;
    max-width: 420px;

}

.btn-footer {
    font-weight: 300;
    font-style: normal;
    font-family: 'Inter';
    color: white;
    font-size: 14px;
    border-radius: 10px;
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    padding: 7px;
    border: none;

}

.btn-register {
    font-weight: 600;
    font-style: normal;
    font-family: 'Inter';
    color: white;
    font-size: 30px;
    border-radius: 50px;
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    padding: 20px 40px;
    border: none;

}

.img-footer {
    max-width: 260px;
    max-height: 240px;
}

.icon-social {
    width: 43px;
}


.item-child-social {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 33px 34px;
    display: flex;
    max-width: 170px;
    max-height: 190px;
    width: 100%;
    height: 100%;
    padding: 33px 34px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.item-child-social-gradient {
    border-radius: 10px !important;
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
}


.title-sm-center {
    text-align: left;
}

@media only screen and (min-width:560px) and (max-width: 760px) {
    .about-hfm {
        align-items: center;
    }
    .w-set {
        width: 100% !important;
    }
}


/*  */

.btn-bd-white {
    border-radius: 6px;
    border: 2px solid var(--Neutral, #FFF);
    background-color: var(--dark);
    color: white;
    border-width: 2px;
    border-style: solid;
    font-size: 30px;
    padding: 36px;
}

.w-set {
    width: 90%;
}

@media only screen and (max-width: 560px) {
    .btn-bd-white {
        font-size: 16px;
        padding: 15px;
    }

    .btn-register {
        font-size: 16px;
        padding: 20px;
    }

    .w-set {
        width: 100% !important;
    }
}

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


    .btn-register {
        font-size: 14px;
        padding: 15px;
    }
}

@media only screen and (min-width: 560px) and (max-width: 1150px) {
    .btn-bd-white {
        font-size: 24px;
        padding: 20px;
    }

    .btn-register {
        font-size: 24px;
        padding: 20px;
    }
}


/* info hfm */

.desc-hfm {
    background-color: rgba(26, 26, 26, 1);
    border-top-right-radius: 115px;
}

.desc-hfm p {
    /* max-width: 90%; */
}

#commission-policy {
    background: none !important;
}

/* hfm_metawork */

.info-why-hfm {
    display: inline-flex;
    flex-direction: column;
    gap: 41px;
}

.list-info-hfm {
    display: flex;
    align-items: flex-end;
}

.item-info-hfm {
    padding: 54px 37px;
    align-items: center;

    border-radius: 11px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(102, 102, 102, 0.30) 65%);
}

.item-info-meta {
    display: flex;
    padding: 32px 37px;
    /*justify-content: center;*/
    align-items: center;

    border-radius: 11px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(102, 102, 102, 0.30) 65%);
}

.why-hfm {
    padding-right: 65px;
    padding-left: 69px;
}

.number-info {
    font-family: "Inter";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
}

.detail-info {
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.icon-detail {
    width: 36px;
    height: 36px;
    padding: 5px;
    justify-content: center;
    align-items: center;

    border-radius: 5px;
    background: linear-gradient(270deg, #7948CD 0%, #D946A1 47.5%, #FB5343 100%);
}


.btn-condition {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 21px;
}

#refusal,
#affiliate-flow {
    padding: 100px !important;
    background: linear-gradient(180deg, #19161C 0%, #000 100%);
}

.btn-condition-child {
    width: 80%;
}

#refusal .title-banner,
#affiliate-flow .title-banner {
    text-align: left;
}

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

    #refusal,
    #affiliate-flow {
        padding: 40px !important;
    }

    .btn-condition-child {
        width: 100%;
    }

    #refusal .title-banner {
        text-align: center;
        line-height: normal;
    }

    .card-img-top {
        width: 170px;

    }

    .step {
        width: 100% !important;
        font-size: 12px;
    }
}

@media only screen and (min-width: 560px) and (max-width: 1150px) {

    #refusal,
    #affiliate-flow {
        padding: 60px !important;
    }

    .btn-condition-child {
        width: 100%;
    }

    .card-img-top {
        width: 140px;
        height: 142px;
    }

    .step {
        width: 95%;
    }

    #refusal .title-banner {
        text-align: center;
    }
}

.card-img-top {
    max-width: 450px;
}

.step {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 30px; */
    border-style: solid;
    border-width: 1px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #1A1A1A;
    width: 82%;
}

.title-section {
    text-align: start;

    font-feature-settings: 'clig' off, 'liga' off;
    font-family: "Inter";
    font-size: 60px;
    font-style: normal;
    line-height: 90px;
    padding-top: 24px;
}

@media (min-width: 992px) and (max-width: 1390px) {
    .why-hfm {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .item-info-hfm {
        padding: 24px 16.5px !important;
        border-radius: 5px !important;
    }

    .item-info-meta {
        padding: 14px 16.5px !important;
        border-radius: 5px !important;
    }

    .number-info {
        font-size: 34px !important;
        line-height: 42px !important;
    }

    .detail-info {
        font-size: 17px !important;
        line-height: 25px !important;
    }

    .icon-detail {
        width: 16px !important;
        height: 16px !important;
        padding: 2px !important;

        border-radius: 2px !important;

    }

    .info-why-hfm {
        gap: 22px !important;
        margin-top: 25px !important;
    }

    .begin-footer {
        height: 30px !important;
        padding: 7px !important;
    }

    .title-section {
        font-size: 36px !important;
        font-style: normal;
        line-height: 48px !important;
        padding-top: 34px !important;
    }
}

@media (min-width: 561px) and (max-width: 765px) {
    .step {
        width: 95%;
    }

    .popup {
      
        width: 400px !important;
        height: 300px !important;
        padding: 20px;
      }
}

.card-img {
    padding: 100px 100px;
}
.card-img-child {
    width: 100%;
    max-width: 240px;
}

@media (min-width: 765px) and (max-width: 1165px) {
    .card-img {
        padding: 50px 50px;
    }
    .card-img-child {
        width: 110%;
    }
}

@media (min-width: 561px) and (max-width: 765px) {
    .card-img {
        padding: 50px 50px;
    }
    .card-img-child {
        width: 110%;
    }
}

@media screen and (max-width: 560px) {
    .card-img {
        padding: 30px 20px;
    }
    .card-img-child {
        width: 110%;
    }
}


.card-info {
    width: 90%;
    background-color: black;
}


@media  (max-width: 561px) {
  
    .popup {
      
        width: 300px !important;
        height: 300px !important;
        padding: 20px;
      }
}




.popup {
    display: none;
    visibility: hidden;
  }
  
  /* Show the popup when the class "show" is added */
  .popup.show {
    display: block;
    visibility: visible;
  }
  
  /* Position the popup in the center of the screen */
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  /* Add some background color and border to the popup */
  .popup {
    background-color: white;
    border-radius: 8px ;
    width: 500px;
    height: 400px;
    padding: 30px;
  }
  
  /* Style the close button */
  #closeBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
  }


  .noscroll {
    overflow: hidden;
  }