.section-first {
    position: relative;
    width: 100%;
    height: 30vw !important;
    /* background: url('https://source.unsplash.com/1600x900/?ocean,waves') center/cover no-repeat; */
    background: url('../images/banner.jpeg?ocean,waves') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.section-first.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000052;
}

.section-first.banner h1 {
    font-size: 3em;
    font-weight: bold;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Forme vague en SVG */
.section-first.banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 14vw;
    /* background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M0,288L48,272C96,256,192,224,288,213.3C384,203,480,213,576,197.3C672,181,768,139,864,117.3C960,96,1056,96,1152,106.7C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom; */
    background: url('../images/ocean.svg') no-repeat bottom;
    background-size: contain;
}

/* ========= SECTION LIST ROOMS ========= */

.section-contact {
    background: white;
    padding: 4vw 5.1562vw;
    gap: 2vw;
}

.section-contact .content-left {
    /* background: var(--color-secundary); */
    background: #a1896359;
}
.section-contact .content-left input,
.section-contact .content-left textarea {
    outline: none;
    border: none;
}
.section-contact .btn-action {
    background: var(--color-primary);
    color: #ffffff;
    width: fit-content;
    height: fit-content;
    transition: all .5s ease-in-out;
    border: none;
    outline: none;
}
.section-contact .btn-action:hover {
    background: var(--color-secundary);
    transition: all .5s ease-in-out;
}

.section-contact .content-right .content-row {
    gap: 1vw 2vw;
    transition: all .5s ease-in-out;
}
.section-contact .content-right iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;

}
.section-contact .content-right .content-row .phone {
    width: 100%;
    gap: .5vw;
    background: #e2ddd459;
    padding: 1.5vw;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.section-contact .content-right .content-row .phone:hover .icon  {
    color: var(--color-secundary);
    transition: all .5s ease-in-out;
}

/*===================== RESPONSIVE OF HEADER__WEBSITE ===========================*/

@media (max-width:768px) {

    .section-first.banner {
        height: 100%;
        min-height: 98.80vw !important;
    }
    
    .section-contact {
        padding: 7vw 0vw;
        gap: 7vw;
    }
    .section-contact .content-right .content-row .phone {
        width: 100%;
        gap: 1.5vw;
        padding: 4vw 4.5vw;
    }
    .section-contact .content-left input, .section-contact .content-left textarea {
        font-size: 4vw;
    }

}