*{
    padding: 0;
    margin: 0;
}
#banner-hero{
    background-image: url("../img/contacto-bg.png");
    min-height: 340px;
}
#banner-hero h1{
    color: #FAFCFF;
    padding-top: 150px;
    text-align: center;
}
#contact-form{
    width: 80%;
    margin: 0 10% 80px 10%;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 30px;
    align-items: center;
}
body h2{
    margin: 80px auto 30px;
    color: #000E29;
    text-align: center;
}
#company-name{
    font-family: Roboto;
    font-style: normal;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}
#contact-form a{
    color: #002E82;
    text-decoration: none;
}
.contacto{
    width: 100%;
    display: grid;
    grid-template-columns: 10% 90%;
    align-items: center;
}
.contacto label{
    display: inline;
    padding-right: 10px;
    text-align: right;
}
.contacto input{
    width: 50%;
    height: 35px;
    padding-left: 2%;
    margin-bottom: 2%;
    font-family: Roboto;
    border: thin solid #5a5a5a;
    border-radius: 4px;
    align-self: center;
}
#label-mensaje{
    align-self: flex-start;
    padding-top: 20px;
}
.contacto #mensaje{
    grid-column: 2;
    grid-row: 4;
    width: 95%;
    height: 150px;
    margin-top: 2%;
    border: thin solid #5a5a5a;
    font-family: Roboto;
    font-size: medium;
    border-radius: 4px;
    padding: 2%;
}
.contacto #boton{
    width: 30%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    margin-top: 20px;
    justify-self: flex-end;
}
iframe{
    height: 300px;
    width: auto;
}
/*Responsive adjustments for tablet version*/
@media screen and (min-width: 1146px) and (max-width: 1291px) {
    .contacto{
        grid-template-columns: 15% 80%;
        align-items: center;
    }
}
/*Responsive adjustments for tablet version*/
@media screen and (min-width: 1000px) and (max-width: 1146px) {
    .contacto{
        grid-template-columns: 30% 60%;
        align-items: center;
    }
    .contacto input{
        width: 100%;
    }
    .contacto #mensaje{
        width: 100%;
    }
}
/*Responsive adjustments for tablet version*/
@media screen and (min-width: 767px) and (max-width: 1000px) {
    #contact-form{
        display: flex;
        flex-direction: column-reverse;
        align-items: unset;
    }
    .contacto{
        grid-template-columns: 20% 70%;
        align-items: center;
    }
    .contacto input{
        width: 100%;
    }
    .contacto #mensaje{
        width: 100%;
    }
    iframe{
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        justify-self: center;
    }
}
/*Responsive adjustments for mobile version*/
@media screen and (max-width: 767px) {
    #banner-hero{
        background-position: center;
    }
    #contact-form{
        display: flex;
        flex-direction: column-reverse;
        align-items: unset;
    }
    .contacto{
        grid-template-columns: 20% 70%;
        align-items: center;
    }
    .contacto input{
        width: 100%;
    }
    .contacto #mensaje{
        width: 100%;
    }
    iframe{
        width: 100%;
    }
}