
.comslider_in_point_1667996{
  width: 50%;
}

#modal {
  background: rgba(0, 0, 0, 0.80);
  position: fixed;
  top: -150vh;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: all .5s;
}

.btn_nav .btn_wc{
  float: right;
   background: darkorange;
  display: table;
    padding: 0 1em;
  line-height: 2.9;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
.btn_nav .btn_wc a{
   
 color: #fff;
  text-decoration: none;

}
.btn_wc:hover{
   
background:#808080;
  

}
#mostrar-modal {
  display: none;
}
#mostrar-modal + label {
  float: left;
  background: darkorange;
  display: table;
  color: #fff;
  line-height: 2.9;
  padding-right: 2px;
  padding: 0 1em;
  text-transform: uppercase;
  cursor: pointer;
}
#mostrar-modal + label:hover {
  background:#808080;
  color: darkorange;
 
}
#mostrar-modal:checked ~ #modal {
  top: 0;
  z-index: 100;
}
#mostrar-modal:checked ~ #cerrar-modal + label {
  display: block;
}

#cerrar-modal {
  display: none;
}
#cerrar-modal + label {
  position: fixed;
  top: 5em;
  right: 10em;
  z-index: 101;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background: tomato;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  display: none;
  transition: all .5s;
}
#cerrar-modal:checked ~ #modal {
  top: -150vh;
}
#cerrar-modal:checked + label {
  display: none;
}
.form_wrap{
  margin: 100px 0px 0px 200px;
   width: 70%;
   height: max-content;
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* Informacion de Contacto*/

.cantact_info::before{
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;

    background: darkorange;
    opacity: 0.9;
}

.cantact_info{
    width: 30%;
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center center;

}

.info_title,
.info_items{
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0px 10px 0px 20px;
}

.info_title{
    margin-bottom: 60px;
}

.info_title span{
    font-size: 100px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.info_title h2{
    font-size: 28px;
    text-align: center;
    color: darkorange;
    background: black;
    padding: 5px;
    text-shadow: 0px 1px 0px white;
}

.info_items p{
    display: flex;
    align-items: center;

    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info_items p:nth-child(1) span{
    font-size: 30px;
    margin-right: 10px;
}

.info_items p:nth-child(2) span{
    font-size: 50px;
    margin-right: 15px;
    margin-left: 4px;
}


/* Formulario de contacto*/
form.form_contact{
    width: 70%;
    height: 400px;
    padding: 20px 20px;
}

form.form_contact h2{
  font-size: 25px;
  font-weight: 600;
  color: #303030;
  margin-bottom: 30px;
}

form.form_contact .user_info{
    display: flex;
    flex-direction: column;
    height: 400px;
    font-weight: bold;
}



form.form_contact input,
form.form_contact textarea{
    width: 100%;
    margin-bottom: 13px;
    border: none;
    border-bottom: 2px solid #D1D1D1;
    font-family: 'Open sans';
  color: #5A5A5A;
  font-size: 14px;
  font-weight: 400;
}

form.form_contact textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 90px;
}


form.form_contact input[type="button"]:hover{
    background: #3371B6;
}
#btnSend{
  background: #696464;
  color: white;
  width: 50%;
  border-radius: 10px;
  padding: 5px;
  font-weight: bold;
}
#btnSend:hover{
  background: rgb(0,0,0,0.7);
  color: black;

}


@media screen and (max-width:390px)  {
 
  form.form_contact input, form.form_contact textarea{
    margin-bottom: 0;
    font-size: 13px;
  }
  .form_wrap{
    margin: 40px 10px 0px 10px;
    width: 90%;
    
  }
  form.form_contact .user_info{
    font-size: 10px;
  }
  .info_title, .info_items{
    padding: 5px;
  }
  .info_title h2 {
    font-size: 10px;
  }
  .info_items p{
    font-size: 10px;
  }
  form.form_contact{
    height: 300px;
      padding: 10px 10px;
  }
  .cantact_info{
    width: 45%;
    height: 300px;
  }
  .info_items p:nth-child(1) span{
    display: none;
  }
  .info_items p:nth-child(2) span{
    display: none;
  }
  .info_title span{
    font-size: 70px;
  }
  #cerrar-modal + label{
    z-index: 101;
        top: 1em;
    right: 1em;

  }
      
      .btn_nav .btn_wc{
          height: auto;
          padding: 5px;
          line-height:1;
          font-weight: bolder;
    
      }
      .btn_nav .btn_wc a{
         
       font-size: 10px;

      } 
      #mostrar-modal + label {
        font-size: 10px;
        padding: 5px;
        line-height:1;
        font-weight: bold;
      }       
}
@media screen and (max-width:480px) and (min-width: 391px){

  form.form_contact input, form.form_contact textarea{
    margin-bottom: 0;
    font-size: 13px;
  }
  .form_wrap{
    margin: 40px 10px 0px 10px;
    width: 90%;
    
  }
  form.form_contact{
    height: 300px;
      padding: 10px 10px;
  }
  form.form_contact .user_info{
    font-size: 10px;
  }
  .info_title, .info_items{
    margin-top: 5px;
  }
  .info_title h2{
    font-size: 20px;
  }
  .info_items p{
    font-size: 13px;
  }
  .cantact_info{
    width: 45%;
    height: 300px;
  }
  .info_items p:nth-child(1) span{
    display: none;
  }
  .info_items p:nth-child(2) span{
   display: none;
  }
 form.form_contact textarea{
  height: auto;
 }
  #cerrar-modal + label{
    z-index: 101;
        top: 1em;
    right: 1em;

  }

       .btn_nav .btn_wc{
          
          padding: 5px;
          line-height:1;
          font-weight: bolder;
    
      }
      .btn_nav .btn_wc a{
         
       font-size: 14px;

      } 
      #mostrar-modal + label {
        font-size: 14px;
        padding: 5px;
        line-height:1;
        font-weight: bold;
      } 
}
@media screen and (max-width:760px) and (min-width: 481px){
  form.form_contact input, form.form_contact textarea{
    margin-bottom: 0;
  }
  .form_wrap{
    margin: 40px 10px 0px 10px;
    width: 90%;
    
  }
  form.form_contact .user_info{
    font-size: 14px;
  }
  .info_title, .info_items{
    padding: 5px;
  }
  
  .info_items p{
    font-size: 14px;
  }
  .cantact_info{
    width: 45%;
    height: 300px;
  }

 form.form_contact textarea{
  height: auto;
 }
  #cerrar-modal + label{
    z-index: 101;
        top: 1em;
    right: 1em;

  }
  form.form_contact{
    height: 300px;
    padding: 10px 10px;
  }
     .btn_nav .btn_wc{
          
          padding: 5px;
          line-height:1;
          font-weight: bolder;
    
      }
      .btn_nav .btn_wc a{
         
       font-size: 17px;

      } 
      #mostrar-modal + label {
        font-size: 17px;
        padding: 5px;
        line-height:1;
        font-weight: bold;
      } 
     .info_title{
      margin: 0;
     }
}
@media screen and (max-width: 1024px) and (min-width: 761px){
  .form_wrap{
    margin: 90px 10px 0px 10px;
    width: 90%;
    
  }
  form.form_contact .user_info{
    font-size: 15px;
  }
  .info_title, .info_items{
    padding: 5px;
  }
  
  
 
 form.form_contact textarea{
  height: auto;
 }
  #cerrar-modal + label{
    z-index: 101;
        top: 4em;
    right: 1em;

  }
  .btn_nav .btn_wc{
          
         
          font-weight: bolder;
    
      }
    
      #mostrar-modal + label {
        
        font-weight: bold;
      } 
}
@media screen and (max-width: 1200px) and (min-width: 1025px){
  #cerrar-modal + label{
    
        top: 5em;
    right: 5em;

  }
}