.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 117px;
    padding-right: 117px;
}


@media only screen and (max-width: 1200px) {
    .wrapper {
        padding-left: 36px;
        padding-right: 36px;
    }
}

@media only screen and (max-width: 992px) {
    .wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }
}



.shadow_text {
    /* Shadow text */
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.shadow_xs {
    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}




.object_fit_cover_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.object_fit_cover_center>img {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}



/*=========================================== button ===========================================*/

.button_cta {
    display: inline-block;
    background: var(--Gradient-Gay,linear-gradient(to right, #D97427, #F69101, #DFD902, #14AA5F, #2D56C5, #4C2E7B));
    padding: 1px;
    border-radius: 8px;

    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;

    /* Background-text-CTA */
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.85);

    /* Inner-CTA+shadow */
    box-shadow:
        0px 1px 2px 0px rgba(16, 24, 40, 0.05),
        0px 10px 6px 0px rgba(255, 255, 255, 0.45) inset,
        0px 0px 11px 0px rgba(16, 107, 242, 0.70),
        0px 0px 18px 0px rgba(219, 70, 37, 0.50);
}

.button_cta>span {
    display: inline-block;
    border-radius: inherit;
    font-weight: 600;

    color: var(--Base-White,#FFF);
    background-color: var(--Colors-01,#106BF2);

    /* Background-text-CTA */
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.85);
}


.button_cta_xs {
    border-radius: 40px;
}

.button_cta_xs>span {
    font-size: 12px;
    line-height: 34px;
    padding: 0px 14px;
}


.button_cta_sm>span {
    font-size: 14px;
    line-height: 38px;
    padding: 0px 14px;
}

@media only screen and (max-width: 992px) {
    .button_cta_sm>span {
        line-height: 28px;
    }
}


.button_cta_xl>span {
    font-size: 16px;
    line-height: 46px;
    padding: 0 20px;
}

.button_cta_2xl>span {
    font-size: 18px;
    line-height: 58px;
    padding: 0 28px;
}







.button_cta_transparent {
    height: 40px;
    padding: 8px 16px;
    border-radius: 8px;

    color: var(--Gray-25,#FCFCFD);
    background-color: transparent;

    border: 1px solid var(--Gray-300,#D0D5DD);

    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}



.input_select {
    border-radius: 8px;
    padding: 1px;
    background: var(--Gradient-Gay,linear-gradient(to right, #D97427, #F69101, #DFD902, #14AA5F, #2D56C5, #4C2E7B));

    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.input_select>select {
    color: var(--Gray-100,#F2F4F7);
    background-color: var(--gray-800,#16191E);

    display: inline-block;
    border-radius: inherit;
    height: 38px;
    padding: 0 12px;
}


.arrow_up_right_after_20 {
    display: flex !important;
    align-items: center;
}


.arrow_up_right_after_20::after {
    content: '';
    background-image: url('/img/icons/icon_arrow-up-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}


.arrow_up_right_after_24 {
    display: flex !important;
    align-items: center;
}


.arrow_up_right_after_24::after {
    content: '';
    background-image: url('/img/icons/icon_arrow-up-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 12px;
}





.no_scrollbar {
    scrollbar-width: none;
}


.no_scrollbar::-webkit-scrollbar {
    display: none;
}

.noscroll,
.noscroll_background {
    overflow-y: hidden;
}