@import url(base.css);
body{
  background-color: var(--negro);
  height: 911px;
}
.aux{
  height: 100px;
}
.contactoBox{
  position: relative;
}
.contactanos{
  margin: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  gap: 15px;
  padding: 40px 0px;
}
.contLeft{
  max-width: 606px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-weight: 300;
}
.contLeft h1{
  font-size: 48px;
  font-family: var(--kadwa);
  font-weight: 400;
  margin-bottom: -40px;
}
.contLeft p:nth-child(2){
  line-height: 18px;
}
.contLeft p:nth-child(5){
  line-height: 18px;
}
.contLeft p:nth-child(3){
  font-weight: bold;
}
.contLeft form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  gap: 20px;
}
.contRight{
  width: 500px;
  border: 3px var(--arena) solid;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(src/fondoCuadrados.svg);
  background-position: top 0px left 0px;
}
.contRight p{
  text-align: center;
}
.contRightImg{
  width: 250px;
}
.contRightImg img{
  height: 100%;
  width: 100%;
}
.contRight .educa{
  font-family: var(--kadwa);
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 15px;
}
.contRight .homes{
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 15px;
  margin-top: -40px;
}
.contPhoneMail{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.contPhoneMail i{
  font-size: 25px;
  color: var(--dorado_claro);
}
.contPhone{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.contPhone span{
  font-weight: bold;
}
.contMail{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}
.form-group:nth-child(6){
  text-align: center;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0px 0px 5px 0px;
  border-bottom: var(--arena) 3px solid;
  font-size: 16px;
  box-sizing: border-box;
  background-color: transparent;
  color: var(--arena);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007BFF;
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
  .contRight{
    display: none;
  }
  .contactanos{
    max-width: 100%;
    margin-top: 10px;
    padding: 20px;
  }
  .contLeft{
    gap: 20px;
  }
  .contLeft h1{
    font-size: 24px;
    margin-bottom: -20px;
  }
  .contLeft h2{
    text-align: center;
  }
  .contLeft p{
    font-size: 16px;
  }
  .contPhoneMail{
    flex-wrap: wrap;
    gap: 20px;
  }
  .contPhoneMail p{
    width: 100%;
    text-align: center;
  }
  .contLeft p:nth-child(2){
    font-size: 14px;
  }
  .aux{
    height: 30px;
  }
}