@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", serif;
}

body {
  margin: 0;
  background: white;
  position: relative;
}

img {
  display: block;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins-Bold", serif;
}

.container {
  width: 95%;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    width: 1100px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1300px;
  }
}
.container--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-whast {
  color: white;
  background: #2DB742;
  width: 70px;
  height: 70px;
  font-size: 2.7em;
  padding: 10px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 65px;
  text-decoration: none;
  z-index: 9999999999;
}

.banner-text {
  background: #1E1C1D;
  color: white;
  padding: 40px 0;
  font-size: 1.7em;
}

.main-header {
  background: #1E1C1D;
  color: white;
  height: 100px;
  padding: 20px 0;
  padding-top: 10px;
}
@media screen and (min-width: 1024px) {
  .main-header .container--flex {
    height: 100%;
  }
}
.main-header .icon-facebook {
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  text-decoration: none;
}

.logo__img {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .logo__img {
    width: 180px;
  }
}

.main-header--right {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media screen and (min-width: 1024px) {
  .main-header--right {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.container-top_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-top_txt [class^=icon-]:before {
  position: relative;
  right: 10px;
  font-size: 1.5em;
}

.top__txt {
  font-size: 0.9em;
}

.icon-menu {
  font-size: 1.5em;
  cursor: pointer;
  color: white;
}
@media screen and (min-width: 1024px) {
  .icon-menu {
    display: none;
  }
}

.main-nav {
  background: #1E1C1D;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .main-nav {
    background: #8B0C0C;
  }
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1E1C1D;
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999999;
}
@media screen and (min-width: 1024px) {
  .menu {
    position: static;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: auto;
    background: #8B0C0C;
    color: white;
    opacity: 1;
    visibility: visible;
  }
}

.icon-home:before {
  position: relative;
  margin-right: 5px;
  top: 2px;
}

.menu__item {
  position: relative;
  margin: 0 10px;
}
@media screen and (min-width: 1024px) {
  .menu__item {
    border-bottom: none;
  }
  .menu__item:before {
    content: "";
    width: 0;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
  }
  .menu__item:hover:before {
    width: 100%;
    left: 0;
  }
  .menu__item--select:before {
    content: "";
    width: 100%;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
  }
}

.menu__link {
  text-decoration: none;
  color: white;
  display: block;
  padding: 15px;
  background: #1E1C1D;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 1024px) {
  .menu__link {
    background: transparent;
    padding: 20px;
    color: white;
    font-size: 1.2em;
  }
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1E1C1D; /* Cambia esto al color que desees */
  font-size: 0.9em;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 450px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
    padding: 10px;
    padding-left: 40px;
    height: auto;
  }
}

.menu__item:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.menu__subitem {
  position: relative;
  width: 100%;
  padding-left: 40px;
}
@media screen and (min-width: 1024px) {
  .menu__subitem {
    padding: 0;
  }
  .menu__subitem:before {
    content: "";
    width: 0;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
    z-index: 9;
  }
  .menu__subitem:hover:before {
    width: 100%;
    left: 0;
  }
}

.menu__subitem .menu__link {
  text-decoration: none;
  width: 100%;
  color: white;
  display: block;
  padding: 15px;
  padding-left: 0;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  background: #1E1C1D;
}

.menu__img {
  padding: 10px;
  width: 120px;
}
@media screen and (min-width: 1024px) {
  .menu__img {
    display: none;
  }
}

.menu-bar {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .menu-bar {
    display: none;
  }
}

.icon-down {
  position: relative;
  top: 3px;
}

.mostrar {
  opacity: 1;
  visibility: visible;
}

.uno, .dos, .tres {
  width: 30px;
  background: white;
  height: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.dos {
  margin: 5px 0;
}

/*animacion*/
.mostrar .uno {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.mostrar .dos {
  opacity: 0;
}

.mostrar .tres {
  -webkit-transform: rotate(-45deg) translate(6px, -7px);
          transform: rotate(-45deg) translate(6px, -7px);
}

.slider__section {
  width: 100%;
  position: relative;
}
.slider__section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(30, 28, 29, 0)), to(#1e1c1d));
  background: linear-gradient(90deg, rgba(30, 28, 29, 0) 0%, #1e1c1d 100%);
  width: 100%;
  height: 100%;
  z-index: 99;
}

.slider__txt {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  width: 70%;
  font-size: 2em;
  z-index: 99999;
  margin: 0;
  text-align: center;
  font-weight: bold;
  font-family: "Poppins-Bold", serif;
}
@media screen and (min-width: 768px) {
  .slider__txt {
    font-size: 2.5em;
  }
}
@media screen and (min-width: 1024px) {
  .slider__txt {
    width: 40%;
    font-size: 3.5em;
  }
}

.slider__img {
  height: 85vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .slider__img {
    height: 90vh;
  }
}

.slider__logo {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 300px !important;
}

.main-slider .owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
}
.main-slider .owl-carousel .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
}
.main-slider .owl-carousel .owl-prev span, .main-slider .owl-carousel .owl-next span {
  font-size: 5em;
  color: white;
}
@media screen and (min-width: 1024px) {
  .main-slider .owl-carousel .owl-prev span, .main-slider .owl-carousel .owl-next span {
    font-size: 8em;
  }
}

.slider--servicios {
  width: 100%;
}
.slider--servicios .items-info__title {
  font-size: 1.4em;
}
.slider--servicios .items-info__txt {
  font-size: 0.9em;
}
.slider--servicios .owl-carousel {
  padding: 30px 60px;
}
.slider--servicios .slider__item {
  border: 1px solid #aaa;
  padding: 30px 10px;
  height: 100%;
  width: 95%;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .slider--servicios .slider__item {
    width: 90%;
    padding: 40px 10px;
  }
}
.slider--servicios .owl-next {
  top: 45%;
  right: 0;
  position: absolute;
}
@media screen and (min-width: 1280px) {
  .slider--servicios .owl-next {
    right: -20px;
  }
}
.slider--servicios .owl-prev {
  position: absolute;
  left: 0;
  top: 45%;
}
@media screen and (min-width: 1280px) {
  .slider--servicios .owl-prev {
    left: -20px;
  }
}
.slider--servicios .owl-prev span, .slider--servicios .owl-next span {
  border-radius: 50%;
  border: 1px solid white;
  font-size: 2.5em;
  color: white;
  width: 50px;
  height: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider--servicios [class^=icon-]:before {
  font-size: 3em;
}

.main-footer {
  background: #1E1C1D;
  color: white;
  padding: 30px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-footer {
    text-align: left;
  }
  .main-footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 1.3em;
}

.main-footer__logo {
  width: 300px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .main-footer__logo {
    width: 200px;
    margin: 0;
  }
}

.footer__column {
  width: 100%;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .footer__column {
    width: 24%;
  }
}

@media screen and (min-width: 768px) {
  .footer__item {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 1024px) {
  .footer__item {
    font-size: 0.95em;
  }
}

.footer__link {
  color: white;
  text-decoration: none;
}

.main-footer [class^=icon-]:before {
  font-size: 1.5em;
  text-decoration: none;
  color: white;
}

.copy {
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  margin: 20px 0;
}

.main {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .main {
    margin-bottom: 70px;
  }
}

.container-items-info .container {
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .container-items-info .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
            box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
    padding: 0px;
    top: -40px;
    position: relative;
    z-index: 9999999;
    background: white;
  }
}
.container-items-info .container .items-info {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .container-items-info .container .items-info {
    padding: 30px;
    width: 48%;
    border-right: 2px solid #eaeaea;
  }
}
@media screen and (min-width: 1024px) {
  .container-items-info .container .items-info {
    width: 19%;
    padding: 40px 30px;
  }
}
.container-items-info .container .items-info [class^=icon-]:before {
  color: #8B0C0C;
  font-size: 3em;
}
.container-items-info .container .items-info .items-info__txt, .container-items-info .container .items-info .items-info__title {
  margin: 7px 0;
}
@media screen and (min-width: 768px) {
  .container-items-info .container .items-info .items-info__txt, .container-items-info .container .items-info .items-info__title {
    margin: 15px 0;
  }
}
@media screen and (min-width: 1024px) {
  .container-items-info .container .items-info .items-info__txt, .container-items-info .container .items-info .items-info__title {
    margin: 20px 0;
  }
}
.container-items-info .container .items-info .items-info__title {
  font-size: 1.2em;
}
.container-items-info .container .items-info .items-info__txt {
  font-size: 0.9em;
}
.container-items-info .container .items-info--3 {
  border-right: none;
  -webkit-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.07);
          box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.07);
  padding: 30px;
  padding-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .container-items-info .container .items-info--3 {
    width: 49%;
  }
}
@media screen and (min-width: 1024px) {
  .container-items-info .container .items-info--3 {
    width: 32.5%;
  }
}
.container-items-info .container .items-info--3 .items-info__title, .container-items-info .container .items-info--3 .items-info__txt {
  margin: 30px 0;
}

.container-items-info--nomargin {
  margin-top: 80px;
}
.container-items-info .container {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (min-width: 1024px) {
  .container-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.info {
  padding: 0 10px;
}
@media screen and (min-width: 1024px) {
  .info {
    width: 49%;
    padding: 0;
  }
}

.info__title {
  color: #1E1C1D;
  font-size: 2em;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .info__title {
    font-size: 2.2em;
  }
}

.info__subtitle {
  color: #8B0C0C;
  font-size: 0.9em;
}

.info__txt {
  line-height: 30px;
  font-size: 1em;
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  .info__txt {
    margin-right: 50px;
  }
}

.info__btn {
  background: #1E1C1D;
  display: block;
  color: white;
  width: 120px;
  padding: 15px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}
.info__btn:hover {
  background: rgba(30, 28, 29, 0.8);
}

.container-servicios {
  background: #1E1C1D;
  color: white;
  text-align: center;
  padding: 50px 0;
  padding-bottom: 120px;
}
.container-servicios .container--flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.container-servicios .info__title {
  color: white;
}
.container-servicios .info {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .container-form .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.container-form .form {
  -webkit-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.09);
          box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.09);
  margin-top: -100px;
  background: white;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .container-form .form {
    width: 70%;
  }
}
.container-form .form__title {
  font-size: 1em;
  margin: 0;
  color: white;
  padding: 30px;
  background: #1E1C1D;
  position: relative;
}
.container-form .form__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 150px;
  height: 5px;
  background: #8B0C0C;
}
.container-form .form__subtitle {
  font-size: 1.7em;
}
.container-form .form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
}
.container-form .form__label {
  width: 100%;
  color: #1E1C1D;
  font-weight: bold;
  margin: 20px 0;
  padding-top: 20px;
}
.container-form .form__input-txt, .container-form .form__select {
  width: 100%;
  padding: 15px;
  font-size: 0.9em;
  border: 1px solid #EAEAEA;
  margin-bottom: 20px;
}
.container-form .form__input-txt:focus, .container-form .form__select:focus {
  outline: 1px solid #8B0C0C;
}
@media screen and (min-width: 768px) {
  .container-form .form__input-txt, .container-form .form__select {
    width: 32%;
  }
}
.container-form .form__input-txt--last {
  border: none;
}
.container-form .form__submit {
  background: #8B0C0C;
  color: white;
  width: 100%;
  border: none;
  padding: 20px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 10px;
}
.container-form .form__info {
  background: #8B0C0C;
  color: white;
  padding: 40px 60px;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}
.container-form .form__info .icon-world {
  font-size: 15em;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: -150px;
  right: -80px;
}
@media screen and (min-width: 768px) {
  .container-form .form__info {
    width: 30%;
  }
}

.banner-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .banner-text {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .banner-text .banner-text__title {
    display: block;
    font-size: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .banner-text .banner-text__title {
    font-size: 1.4em;
  }
}

.container-info__nosotros {
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .container-info__nosotros {
    padding: 70px 0;
  }
}
.container-info__nosotros .info__nosotros--soluciones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-info__nosotros .info__nosotros--soluciones .info-column {
  width: 40%;
}
.container-info__nosotros .info__nosotros .banner-text__title {
  font-size: 2.2em;
}
.container-info__nosotros .info__nosotros .info__subtitle {
  font-weight: bold;
  margin-top: 0;
}
.container-info__nosotros .info__nosotros .info__listitem {
  list-style: none;
  margin: 10px 0;
}
.container-info__nosotros .info__nosotros .info__listitem:before {
  content: "✓";
  position: relative;
  right: 8px;
  color: #8B0C0C;
  font-weight: bold;
}
.container-info__nosotros .infoImgAnimate {
  width: 49%;
  position: relative;
}
.container-info__nosotros .infoImgAnimate .info__imgAnimate {
  -webkit-animation: fadeInImage 3s ease;
          animation: fadeInImage 3s ease;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-info__nosotros .infoImgAnimate:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  border-radius: 5px;
  background: #8B0C0C;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation: slideOutBackground 1.7s ease;
          animation: slideOutBackground 1.7s ease;
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-name: slideOutBackground;
          animation-name: slideOutBackground;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}
@-webkit-keyframes slideOutBackground {
  0% {
    width: 0;
    right: 100%;
  }
  50% {
    width: 100%;
    right: 0;
    opacity: 1;
  }
  100% {
    width: 0;
    right: 0;
    opacity: 1;
  }
}
@keyframes slideOutBackground {
  0% {
    width: 0;
    right: 100%;
  }
  50% {
    width: 100%;
    right: 0;
    opacity: 1;
  }
  100% {
    width: 0;
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
@keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

.banner-info {
  height: 350px;
  background: url(../img/slider1.jpg);
  position: relative;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .banner-info {
    height: 420px;
  }
}
@media screen and (min-width: 1024px) {
  .banner-info {
    height: 580px;
  }
}
.banner-info .owl-nav {
  position: absolute;
  right: 0;
  bottom: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100px;
}
.banner-info .owl-nav .owl-next span, .banner-info .owl-nav .owl-prev span {
  color: #8B0C0C;
  font-size: 3em;
  border: 1px solid #8B0C0C;
  height: 40px;
  width: 40px;
  display: block;
  line-height: 30px;
}

.banner-slider {
  border-radius: 5px;
  background: white;
  padding: 40px;
  height: 260px;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
}
@media screen and (min-width: 480px) {
  .banner-slider {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .banner-slider {
    width: 70%;
    padding: 60px;
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .banner-slider {
    width: 450px;
    padding: 50px;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}
.banner-slider .banner__title {
  font-size: 1.7em;
  margin: 0;
  color: #8B0C0C;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .banner-slider .banner__txt {
    margin: 30px 0;
  }
}

.slider--marcas {
  margin: 30px auto;
}
.slider--marcas .slider__btn {
  width: 30px;
  height: 30px;
  font-size: 1.1em;
}
.slider--marcas .slider__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider--marcas .slider__btn--left {
  left: 0px;
}
.slider--marcas .slider__btn--right {
  right: 0px;
}
.slider--marcas .slider__img {
  width: 25%;
  height: auto;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.gallery .gallery__item {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .gallery .gallery__item {
    width: 32%;
  }
}
.gallery .gallery__item .gallery__img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery .gallery__item .gallery__img:hover {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}