/* Hero -------------------------- */
.hero-sider.hero-div{
    background-image: url('../images/banner-contacto.webp');
    background-size: cover;
}
.txt-mask-hero{
    flex-direction: column;
    color: white;
    background-color: rgb(9, 43, 109, 0.7);
}
.intro-contacto{
    font-size: 22px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.contacto_sec{
    padding: 7rem 2rem;
}
.form-format{
    padding: 7px 10px;
    width: 100%;
    margin-top: 5px;
    border: solid 1px var(--azulO);
    background-color: #ebeef6;
    color: var(--azulO);
}
textarea.form-format{
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}
.btn-envio-form{
    border: none;
    background-color: var(--azulO);
    color: white;
    font-weight: bold;
    padding: 10px 1rem;
    width: 40%;
    min-width: 170px;
    cursor: pointer;
    margin: auto;
    margin-top: 10px;
    transition: 300ms;
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
}
.btn-envio-form:hover{
    transform: scale(1.05);
}
.container-contact-info{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
    overflow: hidden;
}
.formulario-contacto{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}
.contact-ico{
    width: 35%;
}
.label-form{
    width: 80%;
    margin: auto;
}
.dato-contacto{
    text-align: center;
    margin-bottom: 3rem;
    color: var(--azulO);
}
.dato-contacto h3{
    margin: 1rem 0 0.5rem;
}
.dato-contacto img{
    margin: auto;
    width: 40px;
    height: 40px;
}
.marca-contacto{
    position: absolute;
    opacity: 0.2;
    z-index: -10;
    width: clamp(min(360px, 100%), 80%, 950px);
    right: 0;
    bottom: 0;
    transform: translate(30%, 30%);
    animation: rotateRightMarca 100s ease-in-out infinite alternate;
}
@keyframes rotateRightMarca {
    from {
        transform: translate(10%,30%) rotate(0deg);
    }
    to {
        transform: translate(30%,30%) rotate(360deg);
    }
}

.block-wrapper{
    position: relative;
    overflow: hidden;
}


.g-recaptcha{
    width: fit-content;
    margin: 20px auto 0;
}



@media (max-device-width:600px){
    .contacto_sec{
        padding: 4rem 1rem;
    }
    .container-contact-info{
        display: block;
    }
    .formulario-contacto{
        width: 100%;
    }
    .contact-ico{
        width: 100%;
        margin-top: 4rem;
    }
    .marca-contacto{
        transform: translateX(50%);
        top: 0;
        bottom: 0;
        margin: auto;
        width: 150%;
        max-width: none;
    }
}