@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f7f7f7;
  font-family: "Montserrat", sans-serif;
  padding: 15px 0 30px;
}

.banner-video {
  width: 100%;
  height: 275px;
}

.container {
  background-color: #fff;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: 6px 6px 27px -4px rgb(171, 171, 171);
}

.logo {
  text-align: center;
  padding: 15px;
}
.logo img {
  height: 70px;
}

header img {
  max-width: 100%;
}

.attributes {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 30px;
  margin-bottom: 2rem;
}
.attributes li {
  display: flex;
  align-items: center;
}
.attributes li img {
  width: 70px;
}
.attributes li p {
  padding: 15px;
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .title-section {
  flex: 2;
  padding: 0 30px;
}
.about-us .title-section .line {
  width: 60%;
  height: 2px;
  background-color: #9d1f36;
}
.about-us .title-section p {
  padding: 25px 0;
  line-height: 25px;
  text-align: justify;
}
.about-us .title-img {
  flex: 1.6;
  padding: 20px;
  background-color: #ececec;
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-us .title-img img {
  max-width: 100%;
}

.products {
  position: relative;
  margin-top: 5rem;
  text-align: center;
}
.products h2 {
  position: relative;
  font-size: 2.2rem;
  font-weight: 400;
  z-index: 3;
}
.products .square {
  position: absolute;
  top: -20px;
  left: 0;
  width: 850px;
  height: 470px;
  z-index: 2;
  background-color: #ececec;
}
.products .gerlach-lines {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  z-index: 3;
}
.products .gerlach-lines a {
  position: relative;
  padding: 0;
  margin: 2px;
  font-size: 0;
}
.products .gerlach-lines a img {
  position: relative;
  max-width: 600px;
  z-index: 2;
}
.products .gerlach-lines a::after {
  content: attr(data-text);
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: #9d1f36;
  color: white;
  padding: 10px 25px;
  font-size: 18px;
  z-index: 3;
  text-transform: uppercase;
}

.about-us-pt2 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0 25px;
  height: 100%;
}
.about-us-pt2 .elite-movie {
  width: 100%;
  height: 530px;
  z-index: 4;
  pointer-events: none;
}
.about-us-pt2 .about-destription {
  height: 100%;
}
.about-us-pt2 .about-destription p {
  display: inline-block;
  height: 100%;
  background-color: #ececec;
  padding: 50px 15px 50px 30px;
  text-align: justify;
  line-height: 30px;
}
.about-us-pt2 .about-destription a {
  display: inline-block;
  margin-left: 10px;
}
.about-us-pt2 .line-bottom {
  position: absolute;
  bottom: 5px;
  right: 30px;
  width: 400px;
  height: 2px;
  background-color: #9d1f36;
}

.gerlach-elite {
  max-width: 100%;
  margin-top: 2rem;
}

.supervisors {
  margin: 0 auto;
  padding: 0 30px;
}
.supervisors h2 {
  padding: 2rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
}
.supervisors img {
  width: 100%;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 30px;
  background-color: #ececec;
}
.contact .supervisor1,
.contact .supervisor2 {
  text-align: center;
}
.contact .supervisor1 h2,
.contact .supervisor2 h2 {
  font-size: 1.7rem;
}
.contact .supervisor1 a,
.contact .supervisor2 a {
  color: #000;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 50px;
}
.contact .supervisor1 p,
.contact .supervisor2 p {
  font-size: 1.6rem;
}
.contact .mapa-desktop {
  max-width: 400px;
}
.contact .mapa-mobile {
  display: none;
  max-width: 400px;
}

.numbers {
  padding: 30px 30px;
  display: flex;
  justify-content: space-around;
  list-style: none;
}
.numbers li {
  display: flex;
  align-items: center;
}
.numbers li h2 {
  text-align: center;
  font-size: 54px;
  font-weight: 400;
  margin-right: 10px;
  color: #9d1f36;
}

.logo-bar {
  background-color: #9d1f36;
  text-align: center;
}
.logo-bar img {
  width: 150px;
  padding: 20px;
}

@media screen and (max-width: 1200px) {
  .banner-video {
    width: 100%;
    height: 197px;
  }
  .logo img {
    height: 50px;
  }
  .attributes {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
  }
  .attributes li img {
    width: 30px;
  }
  .attributes li p {
    font-size: 12px;
  }
  .about-us {
    flex-direction: column;
  }
  .products h2 {
    font-size: 1.5rem;
  }
  .square {
    width: 100% !important;
  }
  .gerlach-lines a img {
    width: 100%;
  }
  .about-us-pt2 {
    flex-direction: column;
    padding: 0;
    margin-bottom: 1rem;
  }
  .about-us-pt2 img {
    width: 100%;
  }
  .about-us-pt2 .about-destription {
    padding: 15px 15px !important;
  }
  .about-us-pt2 .line-bottom {
    bottom: -20px !important;
  }
  .supervisors {
    padding: 0 10px;
  }
  .supervisors h2 {
    font-size: 1.5rem;
  }
  .contact {
    flex-direction: column;
  }
  .contact .supervisor1 {
    order: 3;
  }
  .contact .supervisor1 h2 {
    font-size: 20px;
  }
  .contact .supervisor1 a {
    font-size: 16px;
  }
  .contact .supervisor1 p {
    font-size: 16px;
  }
  .contact .supervisor2 {
    order: 1;
  }
  .contact .supervisor2 h2 {
    font-size: 20px;
  }
  .contact .supervisor2 a {
    font-size: 16px;
  }
  .contact .supervisor2 p {
    font-size: 16px;
  }
  .contact .mapa-mobile {
    display: inline-block;
    order: 2;
    padding: 10px;
    width: 100%;
  }
  .contact .mapa-desktop {
    display: none;
  }
  .numbers {
    flex-direction: column;
  }
  .numbers li {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=style.css.map */