.contactanos{
   height: 85vh;
   display: flex;
   justify-content: center;
}

.contactanos > div:nth-child(1){
   width: 50%;
	background-image: url(../assets/fondo2-contactanos.png);
   background-position: center;
   background-size: cover;
}

.contactanos > div:nth-child(2){
   width: 50%;
   height: 400px;
   padding: 50px;
	align-self:center;
}

.contactanos__titulos h3{
   font-size: 35px;
   text-transform: uppercase;
   margin-bottom: 10px;
   
}

.contactanos__formulario{
   margin-top: 35px;
}

.contactanos__formulario form{
   text-align: center;
}

.contactanos__formulario form input,
.contactanos__formulario form select{
   display: block;
   width: 50%;
   margin: 0 auto;
   margin-bottom: 10px;
   border: 2px solid var(--azul);
   color: var(--azul);
   border-radius: 5px;
   padding: 5px 10px;
   background-color: transparent;
}

.contactanos__formulario form input::placeholder{
   color: var(--azul);
   
}

.contactanos__formulario form button{
   margin-top: 20px;
   background-color: var(--amarillo);
   color: #fff;
   border: none;
   font-weight: bold;
   letter-spacing: 4px;
   padding: 7px 40px;
   border-radius: 7px;
}

@media (max-width:1100px){
   .contactanos__formulario form input, .contactanos__formulario form select{
      width: 70%;
   }
}

@media (max-width:767px){
   .contactanos{
      background-image: url(../assets/fondo-contactanos.png);
      background-color: #F2F2F2;
   }

   .contactanos__parte1{
      display: none;
   }

   .contactanos > div:nth-child(2){
      height: auto;
      width: 90%;
   }

   .contactanos__formulario form input, .contactanos__formulario form select{
      width: 100%;
      margin-left: 0 ;
      margin-right: 0 ;
      
   }

   .contactanos__formulario form button{
      width: 100%;
   }
}

@media (max-width:450px){
   .contactanos > div:nth-child(2){
      padding: 0;
   }
}