header {
    background-image: none;
    background-size: contain;
    background-position: center;    
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 5rem 5rem 5rem !important;
}

#vsl_video {width: 80%; margin-top: 4rem; border-radius: 2rem;}

/* -------------------- Arguments ------------- */
.arguments {background-color: var(--blue--20);}
.argument--title {text-align: center;}
.argument--title p {color: var(--gris--60);}
.argument--flex {display: flex;flex-direction: column;gap: 1.25rem;align-self: stretch;width: clamp(800px, 100%, 1280px); margin: auto;}

.argument-block {
    display: flex;
    flex-direction: row;
    padding: 5rem 2.5rem 2.5rem;
    border-radius: 1.25rem;
    background: #FFF;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.argument-content {display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; width: 60%;}

.argument-number {
    min-width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background-color: var(--blue--20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noir, #121624);
    font-size: 1.5rem;
    font-weight: 500;
    font-family: Poppins;
}

.argument-content p {color: var(--gris--60);}
.argument-image img {position: absolute; top: 0; right: 0; height: 100%; max-width: 40%;}
.argument--button {display: flex; gap: 1.25rem;}

/* Cta */
.cta--content {
    background: var(--gradient-B20);
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 3.75rem;
    border-radius: 1.25rem;
    color: var(--white);
    width: clamp(calc(800px - 80px), calc(100% - 80px), calc(1280px - 80px));
    position: relative;
    overflow: hidden;
}

.cta--content p {width: 60%;}
.cta--content img {position: absolute; top: 0; right: 0; width: 40%;}

/* Responsive ----------------------------------------*/
/* For-big-desktop-up */
@media (min-width: 1801px) {
}
/* For-desktop-up */
@media (max-width: 1800px) {
}
/* For-tablet-landscape-up */
@media (max-width: 1200px) {
}
/* For-tablet-portrait-up */
@media (max-width: 900px) {
    #vsl_video {width: 100%;}
    header {padding: 2.5rem 2.5rem 5rem 2.5rem !important;}
}
/* For-phone-only  */
@media (max-width: 600px) {
    .argument--flex {width: auto;}
    .argument-content {width: 100%;}
    .argument-block {flex-direction: column;}
    .argument-image img {position:relative; width: 100%; height: auto; max-width: none;}

    .cta--content {width: auto; padding: 3.75rem; align-items: center; text-align: center;}
    .cta--content p {width: 100%;}
    .cta--content img {display: none;}
}