/* ==================================================================
 GENERAL STRUCTURE
================================================================== */
@font-face {
    font-family: 'Galano';
    src: url('../fonts/GalanoGrotesqueAltLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Galano';
    src: url('../fonts/GalanoGrotesqueAltRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Galano';
    src: url('../fonts/GalanoGrotesqueAltSemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
:root{
    --primary-color: #FEE01A;
    --secondary-color: #0171EB;
    --tertiary-color: #222222;
    --container-width: 1200px;
    --gutter: 30px;
    --space-section: 50px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body, ul, h1, h2, h3, h4, h5, p {
    margin: 0;
    padding: 0;
}
body{
    background-color:#000000;
    color:#ffffff;
    font-family: 'Galano', 'Arial', 'sans-serif';
    font-weight: 400;
}
a{
    color: var(--havas-red);
    text-decoration: none;
}
img{
    width: 100%;
    display: block;
}
.page-wrap {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}
.col-gap{
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.spacing-y{
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}
.spacing-tp{
    padding-top: var(--space-section);
}
.spacing-bt{
    padding-bottom: var(--space-section);
}
.centered{
    text-align: center;
}
.right{
    text-align: right;
}
.no-scroll{
    overflow: hidden;
}
.hidden-xs{
    display: none!important;
}
@media (min-width: 992px) {
    :root{
        --space-section: 100px;
    }
    .hidden-xs{
        display: block!important;
    }
    .btn.hidden-xs{
        display: inline-block!important;
    }
    .visible-xs{
        display: none!important;
    }
}

/* ==================================================================
    UI
================================================================== */
h1, h2{
    font-size: 32px;
    line-height: 37px;
    font-weight: 600;
    margin-bottom: 20px;
}
h3{
    font-size: 19px;
    line-height: 25px;
    font-weight: 600;
}
h4{
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
}
p, ul{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
ul{
    padding: 0px 20px 20px 20px;
}
.txt-wrap{
    text-wrap: balance;
}
.btn-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.btn{
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 35px;
    border-radius: 94px;
    margin-top: 20px;
    transition: all 0.3s linear;
    text-align: center;
}
.btn span{
    color: inherit;
    font-weight: 400;
}
.btn-primary{
    background-color: var(--primary-color);
    color: #000000;
}
.btn-secondary{
    background-color:#ffffff;
    color: #000000;
    border-radius: 10px;
}
.btn-tertiary{
    background-color:#000000;
    color: #ffffff;
}
.btn-quaternary{
    background-color: var(--secondary-color);
    color: #ffffff;
}
#btn-copy{
    padding: 15px;
    width: 100%;
    max-width: 170px;
    transition: background-color 0.3s ease-in, color 0.3s ease-in;
}
#btn-copy.active {
    background-color: #ffffff;
}
#btn-copy.ease-out {
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.btn-arrow{
    padding: 0px;
    border: none;
    transition: all 0.3s linear;
    position: relative;
    z-index: 1;
    padding-right: 50px;
    padding-left: 20px;
}
.btn-arrow::after{
    content: '';
    position: absolute;
    z-index: -1;
    width: 40px;
    height: 40px;
    right: 0px;
    background-image: url('../images/chevron-right.svg');
    background-repeat: no-repeat;
    background-position: center right 16px;
    background-size: 6px;
    background-color: var(--primary-color);
    border-radius: 40px;
    transform: translateY(-20%);
    transition: all 0.2s linear;
}
.btn-arrow:hover{
    color: #000000;
}
.btn-arrow:hover::after{
    width: 100%;
}
.cta-primary{
    color: var(--primary-color);
    text-decoration: underline;
}
.btn-tel{
    padding: 5px 35px;
}
.btn-tel span{
    font-size: 11px;
    line-height: 18px;
    display: block;
}
.txt-icon{
    display: inline-block;
    vertical-align: middle;
}
h1 .txt-icon{
    width: 20px;
}
@media (min-width: 768px) {
    h1, h2{
        font-size: 42px;
        line-height: 45px;
    }
    h3{
        font-size: 22px;
        line-height: 25px;
    }
    p, ul{
        font-size: 22px;
        line-height: 30px;
    }
    .btn{
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 992px) {
    h1, h2{
        font-size: 57px;
        line-height: 64px;
    }
    h1 .txt-icon{
        width: 32px;
    }
    .btn-container{
        flex-direction: row;
        justify-content: start;
    }
}

/* ================================================================
HERO
================================================================ */
#hero {
    position: relative;
    overflow: hidden;
    background-image: url('../images/visual.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #000000;
    height: 90vh;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
#hero .hero-content{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 80px 40px;
    text-align: center;
    text-wrap: balance;
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
#hero .hero-content .logo{
    width: 100%;
    max-width: 258px;
    margin-bottom: 40px;
    margin: 0 auto;
}
#hero .hero-content .text-content{
    width: 100%;
    max-width: 1200px;
}
#hero .floating-images {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.1s ease;
}
#hero .floating-images .img-wrapper {
    position: absolute;
    width: 180px;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.1s linear;
}
#hero .floating-images .img-wrapper:nth-child(1),
#hero .floating-images .img-wrapper:nth-child(3) {
    z-index: 3;
}
#hero .floating-images .img-wrapper:nth-child(2) {
    z-index: 4;
}
.scroll-arrow{
    width: 34px;
    position: relative;
    z-index: 2;
    margin: -18px auto;
    animation: jumpInfinite 1.5s infinite linear;
}
@keyframes jumpInfinite {
  0% {
    transform: translateY(-30%);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(-30%);
  }
}
@media (max-width: 991px) {
    #hero .floating-images{
        position: relative;
    }
    #hero .floating-images .img-wrapper {
        top: -130px;
    }
    #hero .floating-images .img-wrapper:nth-child(1){
        transform: rotate(-15deg) translateX(-100px);
    }
    #hero .floating-images .img-wrapper:nth-child(3) {
        transform: rotate(15deg) translateX(100px);
    }
}
@media (min-width: 992px) {
    #hero {
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
    #hero .hero-content{
        padding: 80px;
    }
    #hero .floating-images{
        display: none;
    }
    #hero .floating-images.visible {
        display: flex;
    }
    #hero .floating-images .img-wrapper {
        width: 344px;
    }
    #hero .floating-images .img-wrapper:nth-child(1),
    #hero .floating-images .img-wrapper:nth-child(3) {
        top: -120px;
    }
}

/* ================================================================
DESTINATION
================================================================ */
#destination {
    padding: 100px 20px;
    min-height: 100vh;
}
#destination .final-text{
    transition: opacity 0.3s ease;
}
#destination .final-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    transition: opacity 0.3s ease;
    opacity: 1;
}
#destination .final-images > div{
    flex: 1;
    text-align: right;
}
#destination .final-images img{
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    #destination .final-images > div{
        max-width: 360px;
    }
}
@media (min-width: 992px) {
    #destination .final-images {
        flex-direction: row;
    }
    #destination .final-images.hidden {
        opacity: 0;
        pointer-events: none;
        height: 0;
        overflow: hidden;
    }
}

/* ================================================================
BENEFICTS BOX
================================================================ */
.beneficts{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: var(--tertiary-color);
    border-radius: 30px;
    padding: 30px 30px 0px 30px;
}
.beneficts-txt .logo{
    width: 100%;
    max-width: 180px;
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .beneficts{
        flex-direction: row;
        align-items: flex-end;
        gap: 20px;
        padding: 0px 60px;
    }
    .beneficts-txt{
        width: 55%;
        padding: 30px 0px;
    }
    .beneficts-img{
        width: 45%;
    }
}

/* ================================================================
STICKY MENU
================================================================ */
#sticky-menu {
    display: none;
    position: relative;
    top: 0;
    z-index: 1000;
}

@media (min-width: 992px) {
    #sticky-menu {
        display: block;
    }
    .sticky-menu_content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
        border-radius: 30px;
        background-color: var(--primary-color);
        padding: 30px;
    }
    .sticky-menu_content a {
        color: #000000;
        font-weight: 600;
    }
    .sticky-menu_content a.active {
        text-decoration: underline;
    }
    #sticky-menu.is-sticky {
        position: sticky;
        top: 10px;
    }
}

/* ================================================================
STICKY MENU
================================================================ */
.editorial-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: stretch;
    gap: 40px;
}
.editorial-box .editorial-box_img{
    width: 100%;
    max-width: 460px;
    border-radius: 30px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    aspect-ratio: 3/4;
}
.editorial-box.rtl .editorial-box_img > .offer{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.editorial-box .editorial-box_img h3{
    padding: 30px 20px 0px 20px;
    font-size: 30px;
    line-height: 40px;
}
.editorial-box .editorial-box_img img{
    height: 80px;
    width: auto;
}
.editorial-box .editorial-box_img p{
    padding: 20px 20px 30px 20px
}
.editorial-box .editorial-box_content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    background-color: #222222;
    padding: 30px;
    border-radius: 30px;
}
.editorial-box p{
    font-size: 20px;
    line-height: 25px;
}
.editorial-box_content .list{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.editorial-box_content .list img{
    width: 36px;
}
.code-box{
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.code-box .btn{
    margin: 0px;
}
.editorial-box_content .btn-container .btn{
    margin: 0px;
}
.editorial-box_content .btn-container .btn-tel.hidden-xs{
    cursor: auto;
}
@media (min-width: 768px) {
    .editorial-box .editorial-box_img img{
        height: 100px;
    }
}
@media (min-width: 992px) {
    .editorial-box{
        flex-direction: row;
    }
    .editorial-box.rtl{
        flex-direction: row-reverse;
    }
    .editorial-box .editorial-box_img{
        width: 40%;
        max-width: none;
    }
    .editorial-box .editorial-box_img h3{
        font-size: 42px;
        line-height: 50px;
    }
    .editorial-box .editorial-box_content{
        background-color: #222222;
        padding: 50px 60px;
        width: 60%;
    }
    .editorial-box_content .btn-container .btn{
        width: 50%;
        margin: 0px;
    }
    .code-box{
        flex-direction: row;
    }
}

/* ==================================================================
FOOTER
================================================================== */
footer{
    background-color: #002752;
    color: #ffffff;
    border-radius: 24px 24px 0px 0px;
    margin-top: -30px;
}
.footer_content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 40px;
}
.footer_content .logo_footer img{
    max-width: 144px;
}
.footer_content .accordion_content a{
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}
.footer_content .download img{
    max-width: 48px;
}
.footer_legals{
    margin-top: 10px;
}
@media (max-width: 991px) {
    .footer_content .download{
        order: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    .footer_content .accordion{
        order: 1;
        border-bottom: 2px solid rgba(255,255,255,.2);
    }
    .footer_content .accordion .accordion_title{
        position: relative;
        padding: 18px 45px 18px 16px;
        cursor: pointer;
    }
    .footer_content .accordion .accordion_title::after{
        position: absolute;
        content: '';
        width: 16px;
        height: 16px;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        background-image: url('../images/arrow.svg');
        background-size: 16px 16px;
        background-repeat: no-repeat;
        transition: all 0.3s linear;
    }
    .footer_content .accordion .accordion_title.accordion-active::after{
        top: 50%;
        transform: translateY(-50%) rotate(-180deg);
        transform-origin: center;
    }
    .footer_content .accordion .accordion_content{
        padding: 18px 16px;
        display: none;
    }
    .footer_content .logo_footer{
        order: 5;
        margin-top: 30px;
    }
    .footer_content .logo_footer img{
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .footer_content{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }
    .footer_content > div{
        flex: 1;
    }
    .footer_content h4{
        margin-bottom: 15px;
    }
}