/*---------------------------------------- Contacto ------------------------------------------------*/
/*#region*/

.contacto-title {
    background-color: var(--verde-aqua);
    position: relative;
    height: 30vh;
    padding-top: 8rem;
}

    .contacto-title h1 {
        text-transform: uppercase;
        color: var(--gris-claro);
        position: absolute;
        bottom: -2px;
        right: 0;
        font-size: 5rem;
        line-height: 0.8;
        font-family: Arvo-Bold;
    }

.contacto-container {
    width: 100%;
    min-height: calc(100vh - 17vh);
    position: relative;
    display: grid;
    grid-template-columns: 35% 65%;
    padding: 6rem 0;
}

.contacto-info {
    border-right: 1px solid var(--verde-aqua);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 6rem;
}

.contacto-subtitle {
    display: flex;
}

.contacto-subtitle h3 {
    text-transform: uppercase;
    color: var(--azul-marino);
    font-family: Arvo-Bold;
}

.contacto-subtitle-bar {
    height: 5rem;
    background-color: var(--verde-aqua);
    width: 20rem;
    position: absolute;
    left: 0;
    z-index: -1;
    /*transform: translate(-70%, -25%);*/
    transform: translateY(-25%);
    border-radius: 0 5rem 5rem 0;
}

.contacto-data {
    display: grid;
    grid-template-columns: 1fr 9fr;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    color: var(--azul-marino);
    font-weight: 700;
}

.contacto-data a {
    color: var(--azul-marino);
}

.contacto-data a,
.contacto-data span {
    font-family: Aglet-Semi-Bold;
}

.contacto-form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contacto-form-item {
    flex-basis: 80%;
    color: var(--azul-marino);
    font-weight: 700;
}

.contacto-form-item label {
    font-family: Aglet-Regular;
}

.contacto-form-container .contacto-form-item:not(:last-child) {
    margin-bottom: 2rem;
}

.contacto-form-item .form-control {
    border: none;
}

.contacto-submit {
    grid-column: 2 / 3;
    margin-top: 3rem;
}







.contacto-form-item textarea.form-control::-webkit-scrollbar {
    width: 15px;
    height: 10px;
    /* width of the entire scrollbar */
}

.contacto-form-item textarea.form-control::-webkit-scrollbar-track {
    background: var(--verde-aqua);
    /* color of the tracking area */
    border-radius: 15px;
}

.contacto-form-item textarea.form-control::-webkit-scrollbar-thumb {
    background-color: var(--blanco);
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 1px solid var(--verde-aqua-20);
    /* creates padding around scroll thumb */
}





@media (max-width: 1000px) {

    .contacto-info {
        padding-left: 0;
    }

    .contacto-form-item {
        flex-basis: 90%;
    }

}


@media (max-width: 800px) {

    .contacto-title {
        height: auto;
        min-height: 30vh;
        display: grid;
        align-items: end;
        justify-items: end;
    }

    .contacto-title h1 {
        position: relative;
        text-align: right;
        line-height: 1;
    }

    .contacto-container {
        grid-template-columns: 1fr;
    }

    .contacto-data {
        gap: 1rem;
        margin-top: 4rem;
    }

    .contacto-subtitle h3 {
        font-size: 2.5rem;
    }

    .contacto-subtitle-bar {
        transform: translateY(-20%);
    }

    .contacto-form-container {
        margin-top: 4rem;
    }

    .contacto-info {
        border-right: none;
    }

    .contacto-form-item {
        flex-basis: 100%;
    }

    .contacto-submit {
        grid-column: 1 / 2;
    }
}



@media (max-width: 600px) {

    .contacto-title h1 {
        font-size: 4rem;
    }
}
    
/*#endregion*/

