* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
}
body main {
  margin-top: 14vh;
  align-self: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}
body main .states {
  width: 100%;
}
body main .states img {
  width: 100%;
  margin-top: 25px;
  border-bottom: 1px solid #222831;
}
body main .states span {
  color: #00ADB5;
}
body main .states p {
  font-weight: bold;
  font-size: 24px;
}
body main .desc {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 20px 0 20px;
}
body main .grid {
  font-size: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}
body main .grid div {
  width: 100%;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #393E46;
  padding-bottom: 25px;
  font-weight: bold;
  box-shadow: 7px 4px 5px #EEEEEE;
  margin-bottom: 20px;
  max-width: 800px;
}
body main .grid div .icon {
  width: 80px;
  padding-bottom: 10px;
}
body main .stitle {
  margin-bottom: 0;
  margin-top: 40px;
  font-size: 40px;
  color: #222831;
}
body main .stitle span {
  color: #00ADB5;
}
body main h1 {
  color: #00ADB5;
  text-shadow: 1px 1px 3px;
  font-family: Verdana;
  font-size: 40px;
  grid-column: span 2;
}
body main container {
  background-color: #393E46;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
body main container .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main container .info .phone {
  display: flex;
  padding-top: 25px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
body main container .info .phone img {
  max-width: 60px;
  max-height: 60px;
}
body main container .info .phone p {
  font-size: 30px;
  color: #EEEEEE;
  padding-left: 15px;
}
body main container .info .whatsapp {
  margin-bottom: 35px;
  display: flex;
  background-color: orange;
  align-items: center;
  width: 90%;
  border-radius: 10px;
  text-decoration: none;
  color: #EEEEEE;
  box-shadow: 3px 4px 2px;
  justify-content: center;
  font-size: 26px;
}
body main container .info .whatsapp img {
  height: 100px;
  padding: 15px;
}
body main container .info .mail {
  margin-top: 30px;
  text-decoration: none;
  color: #EEEEEE;
  display: flex;
  font-size: 20px;
  padding-bottom: 30px;
  align-items: center;
  font-weight: bold;
}
body main container .info .mail img {
  max-width: 50px;
  max-height: 50px;
  margin-right: 10px;
}
body main container .banner {
  width: 100%;
  max-width: 500px;
}
body main box {
  background-color: #EEEEEE;
  border-radius: 10px;
  margin: 15px;
  padding: 15px;
  font-size: 24px;
}
body main .span2 {
  color: #EEEEEE;
  font-size: 34px;
}
body main .video {
  background-color: #393E46;
  width: 100%;
  padding: 10px 0 10px 0;
}
body main .video-desk {
  display: none;
}
body main .video-4k {
  display: none;
}
body main .video p {
  font-size: 22px;
  color: #EEEEEE;
  text-align: justify;
  padding: 0 20px 0 20px;
}
body .desktop {
  display: none;
}

@media (min-width: 900px) {
  #video {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 0 5vw 0 5vw;
  }
  #video .video-cel {
    display: none;
  }
  #video-desk {
    display: block;
  }
  #video p {
    margin-bottom: 35px;
    font-size: 22px;
  }
  .states {
    max-width: 700px;
  }
  .states img {
    border: 1px solid #222831;
  }
  #grid {
    padding: 0 10vw 0 10vw;
    font-size: 36px !important;
    width: 900px;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    justify-items: center;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #00ADB5;
    border-radius: 10px;
  }
  #grid div {
    margin: 0 15px 0 15px;
    text-shadow: 1px 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #00ADB5 !important;
    width: 350px;
    padding-bottom: 25px;
    font-weight: bold;
    box-shadow: none;
    margin-bottom: 20px;
    align-self: center;
  }
  #grid div .icon {
    padding: 5px;
    background-color: #00ADB5;
    border-radius: 15%;
    width: 120px !important;
    padding-bottom: 10px;
    animation-name: example;
    animation-duration: 15s;
    animation-iteration-count: infinite;
  }
  @keyframes example {
    0% {
      background-color: #222831;
    }
    25% {
      background-color: #393E46;
    }
    50% {
      background-color: #00ADB5;
    }
    75% {
      background-color: #EEEEEE;
    }
    100% {
      background-color: #222831;
    }
  }
  #data {
    display: grid;
    grid-template-columns: 50% 50%;
    max-width: 1500px;
    width: 85%;
  }
  #data .banner {
    max-width: fit-content;
    height: 100%;
    border-radius: 0;
  }
  #data .info {
    justify-content: space-around;
  }
  #data .info .phone p {
    font-size: 28px;
  }
  #data .info .whatsapp {
    font-size: 24px;
  }
  .mobile {
    display: none !important;
  }
  .desktop {
    display: block !important;
  }
}
@media (min-width: 1500px) {
  #video .video-cel {
    display: none;
  }
  #video .video-desk {
    display: none;
  }
  #video .video-4k {
    display: block;
  }
  .grid {
    width: 50% !important;
  }
  .states {
    max-width: 1200px;
  }
  .states p {
    font-size: 28px !important;
  }
  .states img {
    border: 1px solid #222831;
  }
  h1 {
    font-size: 44px !important;
  }
  #data .info .phone p {
    font-size: 38px !important;
  }
  #data .info .whatsapp {
    font-size: 30px !important;
  }
  #data .info .mail {
    font-size: 30px !important;
  }
}

/*# sourceMappingURL=contacto.css.map */
