@font-face {
  font-family: "Gotham";
  src: url(../fonts/gotham-bold.otf);
}
@font-face {
  font-family: "Helvetica";
  src: url(../fonts/helvetica.ttf);
}
body {
  margin: 0;
}

.header {
  width: 100%;
  height: 100vh;
  background-image: url(../assets/header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header h1 {
  color: white;
  width: 40%;
  text-align: center;
  line-height: 3rem;
  font-family: "Gotham", sans-serif;
}

nav {
  width: 70%;
  left: 15%;
  top: 2rem;
  position: fixed;
  padding: 0 1.5rem;
  box-sizing: border-box;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}
nav.scrolled {
  animation: scrolled 0.2s ease forwards;
}
nav.normal {
  animation: notscrolled 0.2s ease forwards;
}
nav .logo {
  width: 6rem;
}
nav .nav-items {
  display: flex;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: flex-end;
  list-style-type: none;
  align-items: center;
  height: 4.5rem;
}
nav .nav-items a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Gotham", sans-serif;
  padding: 1.5rem;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  cursor: pointer;
  border-bottom: 4px solid rgba(254, 0, 0, 0);
  transition: 0.5s;
}
nav .nav-items a:hover {
  opacity: 0.7;
}
nav .nav-items a.active {
  border-bottom: 4px solid #fe0000;
  transition: 0.5s;
}

.content {
  padding: 0 15%;
  background-color: #464646;
}

#servicios-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#servicios-container .servicios_item {
  background-color: #e1e1e1;
  color: black;
  border-bottom: 6px solid white;
  width: 28%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  margin-top: -9rem;
}
#servicios-container .servicios_item:last-of-type {
  background-color: black;
  color: white;
}
#servicios-container .servicios_item:first-of-type {
  background-color: #fe0000;
  color: white;
}
#servicios-container .servicios_item_content {
  padding: 1.5rem;
  height: 6rem;
}
#servicios-container .servicios_item_content_title {
  text-transform: uppercase;
  font-family: "Gotham", sans-serif;
  margin-bottom: 1rem;
}
#servicios-container .servicios_item_content_text {
  font-size: 14px;
  font-family: "Helvetica", sans-serif;
}
#servicios-container .servicios_item_image {
  position: relative;
  width: 100%;
}

#nosotros {
  padding: 10rem 0;
}
#nosotros .nosotros-text {
  color: white;
  font-family: "Helvetica", sans-serif;
  text-align: center;
  width: 80%;
  margin-left: 10%;
}
#nosotros .nosotros-tags {
  margin: 2rem 0;
  width: 80%;
  margin-left: 10%;
}
#nosotros .nosotros-tags ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
#nosotros .nosotros-tags ul li {
  background-color: white;
  color: black;
  font-family: "Gotham", sans-serif;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
  font-size: 14px;
  margin: 1rem;
}

@keyframes scrolled {
  0% {
    width: 70%;
    left: 15%;
    top: 2rem;
  }
  100% {
    width: 100%;
    left: 0;
    top: 0;
  }
}
@keyframes notscrolled {
  0% {
    width: 100%;
    left: 0;
    top: 0;
  }
  100% {
    width: 70%;
    left: 15%;
    top: 2rem;
  }
}
#productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 0 0;
}
#productos .productos-item {
  background-color: #e1e1e1;
  position: relative;
  width: 40%;
}
#productos .productos-item .productos-item-title {
  width: 100%;
}
#productos .productos-item .productos-item-content {
  padding: 1rem 2rem 2.5rem;
}
#productos .productos-item .productos-item-subtitle {
  font-family: "Helvetica", sans-serif;
}
#productos .productos-item .productos-item-list {
  padding: 0;
  list-style-type: none;
  margin: 2rem 0;
}
#productos .productos-item .productos-item-list li {
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
}
#productos .productos-item .productos-item-list li span {
  text-transform: unset;
}
#productos .productos-item .productos-item-text {
  font-family: "Helvetica", sans-serif;
}

#contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: black;
  padding: 10rem 15%;
  border-top: 4px solid white;
  margin-top: -5rem;
}
#contacto .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#contacto .contact-info .contact-info-item {
  margin: 2rem 0;
}
#contacto .contact-info .contact-info-item .contact-info-item-title {
  color: #fe0000;
  font-family: "Gotham", sans-serif;
  margin: 0;
}
#contacto .contact-info .contact-info-item .contact-info-item-text {
  font-family: "Helvetica", sans-serif;
  color: white;
  margin: 0;
}
#contacto .contact-map {
  width: 50%;
}

.nav-responsive-button {
  display: none;
  border: none;
  background-color: transparent;
}

.nav-items-responsive {
  display: none;
}

@media screen and (max-width: 1440px) {
  nav {
    width: 80%;
    left: 10%;
  }

  .content {
    padding: 0 10%;
  }

  @keyframes scrolled {
    0% {
      width: 80%;
      left: 10%;
      top: 2rem;
    }
    100% {
      width: 100%;
      left: 0;
      top: 0;
    }
  }
  @keyframes notscrolled {
    0% {
      width: 100%;
      left: 0;
      top: 0;
    }
    100% {
      width: 80%;
      left: 10%;
      top: 2rem;
    }
  }
}
@media screen and (max-width: 1260px) {
  #servicios-container .servicios_item {
    width: 32%;
  }
}
@media screen and (max-width: 1110px) {
  nav {
    width: 90%;
    left: 5%;
  }

  .content {
    padding: 0 5%;
  }

  @keyframes scrolled {
    0% {
      width: 90%;
      left: 5%;
      top: 2rem;
    }
    100% {
      width: 100%;
      left: 0;
      top: 0;
    }
  }
  @keyframes notscrolled {
    0% {
      width: 100%;
      left: 0;
      top: 0;
    }
    100% {
      width: 90%;
      left: 5%;
      top: 2rem;
    }
  }
  .header h1 {
    color: white;
    width: 80%;
    text-align: center;
    line-height: 3rem;
    font-family: "Gotham", sans-serif;
  }

  #productos .productos-item {
    width: 47%;
  }
}
@media screen and (max-width: 960px) {
  #servicios-container .servicios_item {
    width: 52%;
    margin: 0 auto 2rem;
  }
  #servicios-container .servicios_item:first-of-type {
    margin-top: -9rem;
  }

  #nosotros {
    padding: 3rem 0;
  }

  nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
  nav.normal {
    animation: none;
  }
  nav.scrolled {
    animation: none;
  }
  nav .nav-items {
    display: none;
  }
  nav .nav-responsive-button {
    display: block;
    cursor: pointer;
  }
  nav .nav-responsive-button .bar {
    width: 1rem;
    height: 2px;
    background-color: #fe0000;
    margin: 3px 0;
    transition: 0.2s;
  }
  nav .nav-responsive-button.show .bar {
    display: none;
  }
  nav .nav-responsive-button.show .bar:first-of-type {
    display: block;
    transform: rotate(45deg);
    transform-origin: 25% 0;
    transition: 0.2s;
  }
  nav .nav-responsive-button.show .bar:last-of-type {
    display: block;
    transform: rotate(-45deg);
    transition: 0.2s;
    transform-origin: 25% 100%;
  }
  nav .nav-items-responsive {
    display: none;
    opacity: 0;
  }
  nav .nav-items-responsive.show {
    transition: 0.5s;
    opacity: 1;
    display: block;
    position: fixed;
    width: 100%;
    top: 55px;
    left: 0;
    height: calc(100vh - 55px);
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style-type: none;
    align-items: left;
    padding-left: 0;
  }
  nav .nav-items-responsive.show a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Gotham", sans-serif;
    padding: 1.5rem;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    cursor: pointer;
    border-bottom: 4px solid rgba(254, 0, 0, 0);
    transition: 0.5s;
  }
  nav .nav-items-responsive.show a:hover {
    opacity: 0.7;
  }
  nav .nav-items-responsive.show a.active {
    border-bottom: 4px solid #fe0000;
    transition: 0.5s;
  }
  nav .logo {
    padding: 0.5rem 0;
  }
}
.display-760 {
  display: none;
}

@media screen and (max-width: 760px) {
  #servicios-container .servicios_item {
    width: 70%;
  }

  #nosotros .nosotros-tags {
    display: none;
  }
  #nosotros .hidden-760 {
    display: none;
  }
  #nosotros .display-760 {
    display: inline-block;
  }

  #productos {
    justify-content: center;
  }
  #productos .productos-item {
    width: 60%;
    margin: 1rem;
  }

  #contacto .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #contacto .contact-info .contact-info-item {
    margin: 2rem 0;
  }
  #contacto .contact-info .contact-info-item .contact-info-item-title {
    color: #fe0000;
    font-family: "Gotham", sans-serif;
    margin: 0;
  }
  #contacto .contact-info .contact-info-item .contact-info-item-text {
    font-family: "Helvetica", sans-serif;
    color: white;
    margin: 0;
  }
  #contacto .contact-map {
    width: 100%;
    margin-top: 1rem;
  }
  #contacto .contact-map iframe {
    height: 300px !important;
  }
}
@media screen and (max-width: 480px) {
  #servicios-container .servicios_item {
    width: 100%;
  }

  #productos {
    justify-content: center;
  }
  #productos .productos-item {
    width: 100%;
    margin: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
