/*Main*/
main{
    width: 100%;
    height: fit-content;

    font-family: 'Montserrat';
}

/*Formulario*/
form #website{ display:none; }
form{
    margin-top: 150px;

    width: 1024px !important;
    margin-left: calc(50% - 1074px/2);

    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 50px;
    padding-left: 50px;
    background-color: #3E4F6B !important;
}
#wrapperformulario{
    width: 40%;
}
#h2cuentanos{
    font-size: 48px;
    font-weight: 600;

    color: white;
}

#inputnombre{
    width: 100%;
    margin-top: 0px;

    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;

    font-style: normal;

    border: none;
    border-bottom: 2px solid rgb(255, 255, 255);
    background-color: rgba(0, 0, 255, 0);

    padding-bottom: 0px;
    margin-bottom: 10px;

    height: 35px;
    text-decoration: none;
    outline: none;

    color: white;
}
#inputnombre:focus{
    border-bottom: 2px solid #EED5B6 !important;
}
::placeholder { 
    color: white;
}
#inputcorreo{
    width: 100%;
    margin-top: 10px;

    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;

    font-style: normal;

    border: none;
    border-bottom: 2px solid rgb(255, 255, 255);
    background-color: rgba(0, 0, 255, 0);

    padding-bottom: 0px;
    margin-bottom: 10px;

    height: 35px;
    text-decoration: none;
    outline: none;

    color: white;
}
#inputcorreo:focus{
    border-bottom: 2px solid #EED5B6 !important;
}

#inputtelefono{
    width: 100%;
    margin-top: 10px;

    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;

    font-style: normal;

    border: none;
    border-bottom: 2px solid rgb(255, 255, 255);
    background-color: rgba(0, 0, 255, 0);

    padding-bottom: 0px;
    margin-bottom: 10px;

    height: 35px;
    text-decoration: none;
    outline: none;

    color: white;
}
#inputtelefono:focus{
    border-bottom: 2px solid #EED5B6 !important;
}

textarea{
    width: 100%;
    margin-top: 16px;

    height: 30px;
    outline: none;

    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;

    border: none;
    border-bottom: 2px solid rgb(255, 255, 255);
    background-color: rgba(0, 0, 255, 0);

    color: white;
}
textarea:focus{
    outline: none;

    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;

    color: white;
    border-bottom: 2px solid #EED5B6 !important;
}
textarea::-webkit-scrollbar {
    width: 0px;
}
.boton {
    cursor: pointer;
    background-color: transparent;
	border-radius: 20px;

    border: none;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 17px;

    margin-top: 30px;
    margin-left: -10px;

    -webkit-appearance: none !important;
}
.btn__text {
	background-color: #EED5B6 !important;
	border-radius: inherit;
	color: black !important;
	display: inline-block;
	padding: 15px 20px;
	width: 100%;
}
.btn__text:hover{
    background-color: black !important;
	color: #EED5B6 !important;
}
/*Info adicional form*/
#infoadicional{
    position: absolute;
    margin-top: -300px;
    left: 50%;

    width: 20%;
    height: 270px;

    border-left: 1px solid white;

    padding-top: -150px;
    padding-left: 50px;
    padding-right: 0px;
    color: white;
}
#spantitdireccionform{
    font-variant: small-caps;
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
    
	color: #EED5B6 !important;
}
#spantittelefonoform{
    font-variant: small-caps;
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
    
	color: #EED5B6 !important;
}
#spantitcorreosform{
    font-variant: small-caps;
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
    
	color: #EED5B6 !important;
}

/*Oficinas*/
/*Oficinas*/

  
.img-container {
    height: 700px;
    overflow: hidden;
    position: relative;
    width: 1074px;
    margin-left: calc(50% - 1074px/2);
    margin-top: 50px;
  }
  
  .img-container img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    border-radius: 15px;
  }
  
  .img-container img.next {
    opacity: 1;
    z-index: 1;
  }
  
  .img-container img.prev {
    opacity: 1;
    z-index: 2;
  }
  
  .img-container img.fade-out {
    opacity: 0;
    transition: visibility 0s .5s, opacity .5s linear;
    visibility: hidden;
  }
  

#h2oficinas{
    position: absolute;
    top: 20px;
    left: 50px;

    font-size: 48px;
    color: #03142c;
    font-weight: 600;
    z-index: 11;
}





/*Mapa*/
#googleMap{
    margin-top: 50px;

    height: 600px;
    width: 1074px;
    margin-left: calc(50% - 1074px/2);

    border-radius: 15px;
}

/*Footer*/
footer{
    margin-top: 200px;
}

@media (max-width: 1124px){
    /*Formulario*/
    form{
        margin-top: 150px;
    
        width: calc(545px - 50px) !important;
        margin-left: calc(50% - 545px/2);
    
        border-radius: 15px;
        padding-top: 10px;
        padding-bottom: 50px;
        padding-left: 50px;
        background-color: rgb(123, 121, 255);
    }
    #wrapperformulario{
        width: 83%;
    }
    #h2cuentanos{
        font-size: clamp(27px, 4vw, 4vw);
        font-weight: 600;
    
        color: white;
    }
    
  
    /*Info adicional form*/
    #infoadicional{
        position: relative;
        margin-top: 50px;
        left: 0%;
    
        width: 83%;
        height: 270px;
    
        border-top: 1px solid white;
        border-left: 0px;
    
        padding-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
        color: white;

    }
    #spantitdireccionform{
        font-variant: small-caps;
        font-weight: 700;
        font-size: 18px;
        line-height: 40px;
        
        color: rgb(0, 0, 0);
    }
    #spantittelefonoform{
        font-variant: small-caps;
        font-weight: 700;
        font-size: 18px;
        line-height: 40px;
        
        color: rgb(0, 0, 0);
    }
    #spantitcorreosform{
        font-variant: small-caps;
        font-weight: 700;
        font-size: 18px;
        line-height: 40px;
        
        color: rgb(0, 0, 0);
    }
    
    /*Oficinas*/
    .img-container {
        height: 700px;
        overflow: hidden;
        position: relative;
        width: 95vw;
        margin-left: 2.5vw;
        margin-top: 50px;
    }
    #imgoficinas{
        width: 100%;
        height: 600px;
    
        object-fit: cover;
    
        border-radius: 15px;
    
        opacity: 0.8;
    }
    #h2oficinas{
        position: absolute;
        top: 20px;
        left: 50px;
    
        font-size: clamp(27px, 4vw, 4vw);
        color: #03142c;
        font-weight: 600;
    }
    
    /*Mapa*/
    #googleMap{
        margin-top: 50px;
    
        height: 600px;
        width: 95vw;
        margin-left: 2.5vw;
    
        border-radius: 15px;
    }
    
    /*Footer*/
    footer{
        margin-top: 200px;
    }
}
@media (max-width: 575px){
    /*Formulario*/
    form{
        margin-top: 100px;
    
        width: calc(95vw - 50px) !important;
        margin-left: 2.5vw;
    
        border-radius: 15px;
        padding-top: 10px;
        padding-bottom: 50px;
        padding-left: 50px;
        background-color: rgb(123, 121, 255);
    }
    #wrapperformulario{
        width: 83%;
    }
    #h2cuentanos{
        font-size: clamp(27px, 4vw, 4vw);
        font-weight: 600;
    
        color: white;
    }
    
  
    /*Info adicional form*/
    #infoadicional{
        position: relative;
        margin-top: 50px;
        left: 0%;
    
        width: 83%;
        height: 270px;
    
        border-top: 1px solid white;
        border-left: 0px;
    
        padding-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
        color: white;

    }
    #spantitdireccionform{
        font-variant: small-caps;
        font-weight: 700;
        font-size: 18px;
        line-height: 40px;
        
        color: rgb(0, 0, 0);
    }
    #spantittelefonoform{
        font-variant: small-caps;
        font-weight: 700;
        font-size: 18px;
        line-height: 40px;
        
        color: rgb(0, 0, 0);
    }
    #spantitcorreosform{
        font-variant: small-caps;
        font-weight: 700;
        font-size: 18px;
        line-height: 40px;
        
        color: rgb(0, 0, 0);
    }
    
    /*Oficinas*/
    #imgoficinas{
        width: 100%;
        height: 600px;
    
        object-fit: cover;
    
        border-radius: 15px;
    
        opacity: 0.8;
    }
    #h2oficinas{
        position: absolute;
        top: 20px;
        left: 50px;
    
        font-size: clamp(27px, 4vw, 4vw);
        color: #03142c;
        font-weight: 600;
    }
    
    /*Mapa*/
    #googleMap{
        margin-top: 50px;
    
        height: 600px;
        width: 95vw;
        margin-left: 2.5vw;
    
        border-radius: 15px;
    }
    
    /*Footer*/
    footer{
        margin-top: 200px;
    }
}
@media (max-width: 400px){
    /*Formulario*/
    form{
        margin-top: 100px;
    
        width: calc(95vw - 30px) !important;
        margin-left: 2.5vw;
    
        border-radius: 15px;
        padding-top: 10px;
        padding-bottom: 50px;
        padding-left: 30px;
        background-color: rgb(123, 121, 255);
    }
    #wrapperformulario{
        width: 83%;
    }
    #h2cuentanos{
        font-size: clamp(27px, 4vw, 4vw);
        font-weight: 600;
    
        color: white;
    }
}