body {
    font-family: gabarito !important;
    background: url(./res/Pixtor-24-Contacto-BannerPrincipal.webp) no-repeat center right;
    background-size: cover;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0px !important;
    display: flex;
    flex-direction: column;
}

.uno {
    font-size: 29px;
    color: white;
    font-weight: normal;
}

.dos {
    font-size: 18px;
    font-weight: normal;
}

.tres {
    font-size: 15px;
    font-weight: normal;
}

.hero section {
    text-align: center;
    margin-bottom: 20px;
    line-height: 8px;
    padding-top: 40px;
}

.form-container {
    display: flex;
    padding: 20px;
    width: 100%;
    justify-content: center;
}

form {
    width: 30%;
    margin-right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container input,
.form-container textarea {
    width: 100%;
    margin: 5px 0;
    padding: 13px;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
}

.checkbox-container {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    width: 30px;
    height: 30px;
}

.btnform {
    background: #d7b41c;
    color: #002164;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    width: 40%;
    margin-top: 20px;
}

.alternative-container {
    text-align: center;
    color: white;
    border: 1px solid white;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 33%;
    flex-wrap: wrap;
    justify-content: center;
}

.alternative-container img {
    width: 25px;
    margin-right: 5px;
}

.titalt {
    width: 100%;
}

.btnwpp,
.btnbook {
    background: #dcdcdc;
    color: black;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
    padding: 8px 20px;
    margin: 5px;
    cursor: pointer;
    width: 45%;
}

/* Responsive */

@media(max-width:1200px) {

    .btnwpp,
    .btnbook {
        width: 45%;
    }

    form {
        width: 40%;
    }

    .alternative-container {
        width: 44%;
    }
}

@media(max-width:1023px) {
    form {
        width: 50%;
    }

    .alternative-container {
        width: 50%;
    }
}

@media(max-width:991px) {

    .btnwpp,
    .btnbook {
        width: 100%;
    }
}

@media(max-width: 767px) {
    body {
        padding: 10px;
        background: url(./res/fondomovilAzul.webp) no-repeat center right;
        background-size: cover;
    }

    .form-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    form {
        width: 100%;
        margin-right: 0px;
    }

    .alternative-container {
        width: 90%;
    }
}