@import url("./imports/general.css");
@import url("./imports/navbar.css");
@import url("./imports/footer.css");
.overflow{
    overflow: hidden;
}
.bg_contacto{
    background-color: #010941;
    width: 100%;
    height: 150px;
}
.contact__title{
    text-align: center;
    margin: 2rem 0;
    font-size: 5rem;
    color: #fff;
    text-shadow: -2px -2px 1px #000,
                    2px -2px 1px #000,
                    -2px 2px 1px #000,
                    2px 2px 1px #000;
}
.contact__form{
    max-width: 650px;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: solid 1px #c2c2c2;
    border-radius: 25px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.5);
}
.contact__content{
    display: flex;
}
.content__inputs{
    width: 100%;
    margin: 1rem 0;
}
.contact__content .content__inputs{
    width: 50%;
}
.content__input{
    width: 100%;
    height: 30px;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    padding-left: 2rem;
    outline: none;
    border: solid 1px #c2c2c2;
    border-radius: 25px;
}
.content__textarea{
    width: 100%;
    height: 200px;
    resize: none;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: solid 1px #c2c2c2;
    border-radius: 25px;
}
.btn__send{
    display: block;
    width: 150px;
    height: 40px;
    margin: 0 auto;
    border: solid 1px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    background-color: #E36700;
    color: #fff;
    transition: all 300ms ease-in-out;
}
.btn__send:hover{
    background-color: #fff;
    color: #E36700;
}
.content__btn__whatsapp{
    margin: 6rem 0;
}
.btn__whatsapp{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    max-width: 350px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 100px;
    border: solid 1px;
    border-radius: 15px;
    background-color: #25D366;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.btn__whatsapp:hover{
    background-color: #fff;
    color: #25D366;
}
.btn__what__ico{
    font-size: 5rem;
    padding-left: 1rem;
}
.content__map{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    height: 550px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.loader{
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 5px solid #c2c2c2;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
#send .loader{
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-top: 3px;
    border: 5px solid #fff;
    border-bottom-color: #FF3D00;
    transition: all 300ms ease-in-out;
}
#send:hover .loader{
    border: 5px solid #FF3D00;
    border-bottom-color: #c2c2c2;
}
.map__iframe{
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes rotation{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
} 

.error__form_contact{
    position: relative;
    color: #ff0000;
    font-size: 1.5rem;
    padding-left: 3.5rem;
}
.fa-circle-exclamation{
    position: absolute;
    top: 4px;
    left: 15px;
}
.content__modal{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content__modal_close{
    display: none;
}
.modal__close{
    position: absolute;
    top: 25px;
    right: 50px;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
}
.modal__info{
    max-width: 300px;
    display: flex;
    flex-direction: column;
}
.send__correct{
    color: #27B24A;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}
@media screen and (max-width:1023px){
    .bg_contacto{
        height: 100px;
    }
}
@media screen and (max-width:700px){
    .modal__info{
        max-width: 200px;
    }
    .send__correct{
        font-size: 1.5rem;
    }
    .error__form_contact{
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    .fa-circle-exclamation{
        top: 3px;
        left: 0px;
    }
    .content__input{
        padding-left: 1rem;
    }
}
@media screen and (max-width:600px){
    .bg_contacto{
        height: 80px;
    }
}
@media screen and (max-width:400px){
    .contact__title{
        font-size: 4rem;
    }
    .btn__whatsapp{
        width: 250px;
        height: 75px;
        font-size: 2rem;
    }
    .btn__what__ico{
        font-size: 3rem;
    }
}