main{
    background: rgb(54,153,220);
background: linear-gradient(0deg, rgba(54,153,220,1) 0%, rgba(0,26,48,1) 96%);
    box-sizing: border-box;
}

/* VIDEO*/


/* .video-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
   */
  .header-content-video {
    max-width: 40rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: auto;
    text-align: center;
  }
  
  /* .video-container__inner {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  } */
  
  .video-container__inner video {
    margin-top: 4vh;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .content {
    box-sizing: border-box;
    width: 65%;
    /* position: absolute;
    z-index: 1;
    top: 15%;
    left: 17%; */
    margin: 90px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    backdrop-filter: blur(5px);
    border: 1px solid white;
    border-radius: 15px;
    overflow: hidden;
  }
.data-info{
    width: 50%;
    border-right: 1px solid white;
}
.data-info__elements{
    color: white;
    font-size: 17px;
    padding: 10px;
    display: flex;
    align-items: center;
    
}
.contact__title{
    margin-top: 20px;
    font-size: 30px;
}
.data-info__elements-icon{
    display: flex;
    width: 60px;
    height: 60px;
}
.data-info__elements-icon svg{
    width: 50%;
    fill: white;
    margin: 0 auto;
}

.map__inner{
    height: 300px;
    width: 90%;
    max-width: 100%;
}


/*//////////////////FORM//////////////// */
.contact__extern{
    width: 45%;
}
.contact-form{
    background-color: #001a30bd;
    backdrop-filter: blur(5px);
    padding: 25px 50px 25px 30px;
    border-radius: 5px;
    height: 100%;
    overflow: hidden;
}
.contact-form .form-title{
    font-size: 25px;
    color: white;
    font-weight: 500px;
    position: relative;
    margin-bottom: 20px;
}
.contact-form .form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;

}
.contact-form .form .user_data{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
}
.contact-form .form .box{
    margin: 5px 0 12px 0;
    width: calc(100% / 2 -20px);
}

.contact-form .form .box span{
    font-weight: 650;
    margin-bottom: 15px;
}
.form .box input{
    margin-top: 5px;
    height: 45px;
    width: 100%;
    outline: none;
    border-bottom:1px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-top: none;
    border-left: none;
    border-right:none ;
    background-color: transparent;
    color: white;
}
.form .box textarea{
    color: white;
    border:1px solid #ccc;
    border-top: none;
    border-left: none;
    border-right:none ;
    background-color: transparent;
}
.form .box input:focus{
    border-color: rgba(54,192,254,1);
}


/* BOTON ENVIAR */
.form .box_submit{
    height: 45px;
    margin: 45px 0 0 0;
}
.form .box_submit input{
    cursor: pointer;
    height: 100%;
    width: 100%;
    outline: none;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: 1px;
    border-radius: 5px;
    background: rgba(54,192,254,1);
    transition: all 0.5s;
}
.form .box_submit input:hover{
    transition: all 0.5s;
    background: #001a30;
}

/* ZONA DE TEXTO */
.form .box_message{
    display: flex;
    flex-direction: column;
}
.form .box_message textarea{
    padding-left: 15px;
    padding-top: 10px;
    width: 100%;
    font-size: 18px;
    outline: none;
}
.form .box_message textarea:focus{
    border-color: rgba(54,192,254,1);
}


/* MENSAJES DE ERROR */
.error_text{
    padding-top: 10px;
    padding-left: 5px;
    font-weight: bold;
    color: red;
}

/* BOTON ENVIAR FUTURO*/

.new_button{
    position: relative;
    padding: 10px 30px;
    margin: 45px 0;
    color: #001a30;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.5s;
    color: white;
}
.new_button::before{
    content: " ";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top:2px solid red;
    border-left:2px solid red;
    transition: 0.5s;
    transition-delay: 0.5s;
}
.new_button::after{
    content: " ";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top:2px solid rgba(54,153,220,1);
    border-left:2px solid rgba(54,153,220,1);
    transition: 0.5s;
    transition-delay: 0.5s;
}
.new_button:hover::before, .new_button:hover::after {
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}
.new_button:hover{
    background: #001a30bd;
    color: rgba(54,153,220,1);
    box-shadow: 0 0 50px rgba(54,153,220,1);
    transition-delay: 0.5s;
}




@media screen and (max-device-width: 768px) {
    .content{
        flex-direction: column-reverse;
    }
    .contact__extern{
        width: 100%;
    }
    .data-info{
        width: 100%;
    }
    .data-info__elements{
        justify-content: center;
    }
}