/* ==================================================================
 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: #002752;
    --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;
}
body, ul, h1, h2, h3, h4, h5, p {
    margin: 0;
    padding: 0;
}
body{
    color: var(--tertiary-color);
    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;
}
.no-scroll{
    overflow: hidden;
}
.hidden-xs{
    display: none!important;
}
.light-section{
    background-color: #F2F5F6;
}
@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{
    font-size: 32px;
    line-height: 37px;
    font-weight: 600;
    margin-bottom: 20px;
    text-wrap: balance;
}
h2{
    font-size: 26px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-wrap: balance;
}
h3{
    font-size: 19px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    text-wrap: balance;
}
h4{
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
}
p{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}
.btn-container{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.btn{
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    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(--secondary-color);
    color: #ffffff;
}
.btn-secondary{
    background-color:#ffffff;
    color: var(--tertiary-color);
}
.btn-tertiary{
    background-color: var(--primary-color);
    color: #000000;
}
.btn-quaternary{
    background-color: #ffffff;
    color: var(--secondary-color);
}
.btn-inverse{
    color: #ffffff;
    background-color: var(--secondary-color);
    border: solid 1px #ffffff;
}
.cta-primary{
    color: var(--primary-color);
    text-decoration: underline;
}
.btn-tel{
    padding: 5px 60px;
    cursor: auto;
    font-size: 18px;
    line-height: 22px;
}
.btn-tel span{
    font-size: 13px;
    line-height: 18px;
    display: block;
}
@media (min-width: 768px) {
    h1{
        font-size: 42px;
        line-height: 45px;
    }
    h2{
        font-size: 32px;
        line-height: 35px;
    }
    h3{
        font-size: 22px;
        line-height: 25px;
    }
    p{
        font-size: 16px;
        line-height: 19px;
    }
}
@media (min-width: 992px) {
    h1{
        font-size: 57px;
        line-height: 64px;
    }
    h2{
        font-size: 48px;
        line-height: 64px;
    }
    h3{
        font-size: 32px;
        line-height: 35px;
    }
    p{
        font-size: 22px;
        line-height: 26px;
    }
    .btn-container{
        flex-direction: row;
        gap: 20px;
    }
}
/* ================================================================
HERO
================================================================ */
#hero {
    position: relative;
    overflow: hidden;
    background-image: url('../images/visual.png');
    background-size: cover;
    background-position: top 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: 150px;
    margin-bottom: 40px;
    margin: 0 auto;
}
#hero .hero-content .text-content{
    width: 100%;
    max-width: 1200px;
    color: #ffffff;
}
#hero .hero-content h1 span{
    color: var(--primary-color);
    font-size: 0.85em;
}
#hero .hero-content p{
    font-weight: 600;
}
@media (min-width: 992px) {
    #hero {
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
    #hero .hero-content{
        padding: 80px;
    }
}

/* ==================================================================
EDITORIAL SECTION
================================================================== */
.editorial-section{
    background-color: #000000;
    color: #ffffff;
}
.editorial-section p{
    font-size: 19px;
    line-height: 25px;
}
.editorial-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.editorial-content_text{
    padding-top: var(--gutter);
    padding-bottom: var(--gutter);
    flex: 2;
}
.editorial-content_img{
    flex: 1;
}

@media (max-width: 991px) {
    .editorial-content img{
        max-width: 500px;
    }
}
@media (min-width: 992px) {
    .editorial-section p{
        font-size: 22px;
        line-height: 25px;
    }
    .editorial-content{
        flex-direction: row;
        gap: 50px;
    }
}

/* ==================================================================
CARDS SECTION
================================================================== */
.cards-section{
    background-color: #E1EEFD;
}
.cards-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #ffffff;
}
.cards-container > div {
    position: relative;
    background-position: center!important;
    background-size: cover!important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 0.7;
}
.cards-container > div::after{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 50%, rgba(0,0,0,1) 100%);
    z-index: 0;
}
.cards-section .card1{
    background: url('../images/card1.jpg');
}
.cards-section .card2{
    background: url('../images/card2.jpg');
}
.cards-section .card3{
    background: url('../images/card3.jpg');
}
.card-content{
    position: relative;
    text-align: center;
    padding: 20px;
    z-index: 1;
}
.cards-section .title{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 26px;
}
.cards-section .text{
    font-size: 16px;
    line-height: 20px;
}
@media (max-width: 991px) {
    .cards-container{
        align-items: center;
    }
    .cards-container > div {
        max-width: 400px;
    }
}
@media (min-width: 992px) {
    .cards-container{
        flex-direction: row;
        gap: 40px;
    }
    .cards-container > div {
        background-position: center!important;
    }
    .cards-container .small{
        flex: 1;
        aspect-ratio: 1;
    }
    .cards-container .large{
        flex: 2;
    }
    .card-content{
        position: absolute;
        padding: 20px;
        top: 40%;
        z-index: 1;
    }
    .cards-section .title{
        font-size: 18px;
        line-height: 22px;
    }
    .cards-section .text{
        font-size: 14px;
        line-height: 18px;
    }
}
@media (min-width: 1100px) {
    .card-content{
        top: 50%;
    }
}
@media (min-width: 1200px) {
    .card-content{
        top: 55%;
    }
    .cards-section .title{
        font-size: 22px;
        line-height: 26px;
    }
    .cards-section .text{
        font-size: 16px;
        line-height: 20px;
    }
}


/* ==================================================================
BOXES SECTION
================================================================== */
.boxes-section{
    text-wrap: balance;
}
.boxes-section h2{
    color: var(--secondary-color);
}
.boxes-section .boxes{
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #ffffff;
}

.box{
    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: 6/7;
    padding: 40px 0px;
    overflow: hidden;
    position: relative;
}
.box::after{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(50.9deg, rgba(0, 0, 0, 0) 48.65%, rgba(0, 0, 0, 0.6) 90.61%);
    z-index: 0;
}
.box h3{
    font-size: 30px;
    line-height: 40px;
    position: relative;
    z-index: 1;
}
.box.right .offer{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
    z-index: 1;
}
.box .offer img{
    height: 50px;
    width: auto;
}
.box .offer p{
    font-size: 12px;
    line-height: 14px;
    padding: 10px 20px;
}
@media (min-width: 768px) {
    .box .offer img{
        height: 60px;
    }
}
@media (min-width: 992px) {
    .boxes-section .boxes{
        flex-direction: row;
    }
}

/* ==================================================================
FIXED BAR
================================================================== */
.fixed-bar{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 20px 0px;
    z-index: 50;
}
.fixed-bar_content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed-bar_content .btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.fixed-bar_content .btns .btn{
    margin-top: 0px;
    color: var(--secondary-color);
}
@media (min-width: 992px) {
    .fixed-bar_content{
        justify-content: space-between;
    }
}

/* ==================================================================
FOOTER
================================================================== */
footer{
    background-color: var(--tertiary-color);
    color: #ffffff;
    border-radius: 24px 24px 0px 0px;
}
.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;
}
footer .notes{
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    margin-top: 30px;
}
@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;
    }
}