@import url(https://fonts.googleapis.com/css?family=Lato);
@font-face {
  font-family: "HelveticaNeueLTStdLt";
  src: url("/css/font-family/HelveticaNeueLTStdLt.otf");
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/css/font-family/HelveticaNeueLTStdRoman.otf");
}
@font-face {
  font-family: "Helvetica Neue for text";
  src: url("/css/font-family/HelveticaNeueLTStdTh.otf");
}
@media screen and (min-width: 768px) {
  .pl-md-35 {
    padding-left: 35% !important;
    padding-right: unset !important;
  }
}
.overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(13, 23, 33, 0.6);
}
.slick-prev:before {
  content: url('../Img/whiteArrowPrev.png') !important;
  color: red !important;
  font-size: 30px !important;
}
.slick-next:before {
  content: url('../Img/whiteArrowNext.png') !important;
  color: red !important;
  font-size: 30px !important;
}
#arrowsInside .slick-prev {
  left: 5%;
  top: 50%;
  z-index: 10;
  position: absolute;
}
#arrowsInside .slick-next {
  right: 5%;
  top: 50%;
  z-index: 10;
  position: absolute;
}
p strong {
  font-weight: 700;
}
.header-area {
  position: relative;
  height: auto;
  background: #0d1721;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repear;
  background-size: cover;
}

#main-nav {
  padding: 0% 5%;
}

.banner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.banner h1 {
  font-weight: 800;
}
.banner p {
  font-weight: 700;
}

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  transition: background 0.3s ease-in;
  z-index: 99999;
  font-family: "HelveticaNeueLTStdLt";
  font-size: 1.6rem;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.14);
}
.sahuaroLogo {
  width: 80%;
  align-self: center;
}
.navbar .nav-icons {
  color: #D7AF80;
}
.navbar .navbar-brand {
  font-family: "Lobster", cursive;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
}
.navbar .navbar-toggler {
  position: relative;
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  outline: none;
}
.navbar .navbar-toggler .menu-icon-bar {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-1px);
  transition: all 0.3s ease-in;
}
.navbar .navbar-toggler .menu-icon-bar:first-child {
  opacity: 1;
  -webkit-transform: translateY(-1px) rotate(45deg);
  -ms-sform: translateY(-1px) rotate(45deg);
  transform: translateY(-1px) rotate(45deg);
}
.navbar .navbar-toggler .menu-icon-bar:last-child {
  opacity: 1;
  -webkit-transform: translateY(-1px) rotate(135deg);
  -ms-sform: translateY(-1px) rotate(135deg);
  transform: translateY(-1px) rotate(135deg);
}
.navbar .navbar-toggler.collapsed .menu-icon-bar {
  opacity: 1;
}
.navbar .navbar-toggler.collapsed .menu-icon-bar:first-child {
  -webkit-transform: translateY(-7px) rotate(0);
  -ms-sform: translateY(-7px) rotate(0);
  transform: translateY(-7px) rotate(0);
}
.navbar .navbar-toggler.collapsed .menu-icon-bar:last-child {
  -webkit-transform: translateY(5px) rotate(0);
  -ms-sform: translateY(5px) rotate(0);
  transform: translateY(5px) rotate(0);
}
.navbar .dropdown-menu {
  right: 0;
  left: unset;
  padding: 0;
  background-color: rgba(13, 23, 33, 0.6);
}
.navbar .dropdown-menu .dropdown-item {
  position: relative;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  transition: color 0.2s ease-in;
}
.navbar .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #D7AF80;
}
.navbar .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 5px;
  background-color: #D7AF80;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.navbar .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-size: 1.15rem;
}
.navbar-dark .navbar-nav:focus {
  color: #fff;
}
.navbar-dark .navbar-nav:hover {
  color: #fff;
}

.navbar.fixed-top {
  position: fixed;
  -webkit-animation: navbar-animation 0.6s;
  animation: navbar-animation 0.6s;
  background-color: rgba(13, 23, 33, 0.6);
}

.navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
  color: #D7AF80;
}
.navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
  background-color: #D7AF80;
}

.content {
  padding: 120px 0;
}

@-webkit-keyframes navbar-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navbar-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes dropdown-animation {
  0% {
    transform: scaleY(0);
  }
  75% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes dropdown-animation {
  0% {
    transform: scaleY(0);
  }
  75% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.webintern-footer {
  position: relative;
  z-index: 2;
  background: #202f3d;
}

.webintern-footer-logo {
  display: inline-block;
}

.webintern-footer .webintern-footer-inner .simple-text p {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 15px;
}

.simple-text p {
  font-size: 15px;
  color: #42435d;
  font-family: "HelveticaNeueLTStdLt";
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.simple-text a:hover {
  color: #D7AF80 !important;
}

.webintern-footer-list {
  padding: 0;
}

.webintern-footer-list li {
  margin-bottom: 17px;
  list-style: none;
}

.webintern-footer-list a {
  position: relative;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  padding-left: 0;
  letter-spacing: 0.2px;
  font-family: "HelveticaNeueLTStdLt";
}

ul.tt-socail {
  padding: 0;
  margin-top: 30px;
}

.tt-socail li {
  display: inline-block;
  margin-right: 10px;
}

.tt-copy {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  background: #0d1721;
  padding: 30px 0;
  font-family: "HelveticaNeueLTStdLt";
}

.tt-copy-right {
  text-align: right;
  text-decoration: underline;
}

.webintern-section {
  margin-top: 20px;
}

.webintern-section p {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 38px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.simple-text img {
  margin-right: 8px;
}

.terminos {
  color: #fff !important;
}

.img-footer {
  width: 100%;
  height: 48vh;
}

.img-footer-main {
  width: 100%;
  height: 48vh;
}

/* modal de recibo */
#reciboModal .modal-content {
  background-color: #FAF7F4;
  background-clip: padding-box;
  border: none;
  border-radius: 5px;
}
#reciboModal .modal-content .modal-header {
  border: none;
}
#reciboModal .modal-content .modal-body img {
  height: 400px;
  width: auto;
  margin: 0 auto;
}
#reciboModal .modal-content .modal-footer {
  border: none;
  text-align: center;
  justify-content: center;
}
#reciboModal .modal-content .modal-footer span {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 171.9%;
  color: #767676;
}

#contact-modal .modal-dialog {
  margin-top: 15%;
}
#contact-modal .modal-content {
  border: none;
  background: #FFFFFF;
  border-radius: 9px;
}
#contact-modal .modal-content .modal-header {
  border: none;
}
#contact-modal .modal-content .modal-body {
  text-align: center;
}
#contact-modal .modal-content .modal-body h1 {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 55px;
  color: #D7AF80 !important;
}
#contact-modal .modal-content .modal-body span {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 171.9%;
  color: #767676;
}
#contact-modal .modal-content .modal-body .btn-ok {
  font-family: "HelveticaNeueLTStdLt";
  background: #FAF7F4;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #383D43;
  padding: 8px 40px;
  border-radius: 0;
}
#contact-modal .modal-content .modal-body .btn-ok:focus {
  box-shadow: none;
}
#contact-modal .modal-content .modal-footer {
  border: none;
}

@media (max-width: 1200px) {
  .img-footer {
    width: 100%;
    height: 53vh;
  }
}
@media (max-width: 767px) {
  .img-footer {
    width: 100%;
    height: auto;
  }
}
html, body, #Inicio {
  height: 100%;
  margin: 0;
}

.item {
  text-align: left;
}

.vertical-carousel-box .container-fluid {
  padding: 3% 5%;
}

.sections-title {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 75px;
  color: #ffffff;
}

.sections-text {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1.2px;
  color: #ffffff;
}

#seccion_uno {
  background: url("/Img/img2/home01.png") no-repeat center;
  background-size: cover;
  height: 100vh;
}
#seccion_uno .section-aling {
  position: relative;
  top: 15%;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  text-align: center;
  color: #ffffff;
}
#seccion_uno .section-aling .bannerHome {
  padding: 0% 20%;
  position: absolute;
  top: 55vh;
}
#seccion_uno .section-aling .bannerHome .col-sm-3 .col-md-12 p {
  font-weight: 300;
  font-size: 15px;
  line-height: 28px;
  color: #FFFFFF;
  text-align: center;
}
#seccion_uno .section-aling .bannerHome .col-sm-3 .col-md-12 img {
  width: 20%;
}
#seccion_uno h1 {
  font-weight: normal;
  font-size: 55px;
  line-height: 94px;
}
#seccion_uno p {
  font-weight: 300;
  font-size: 31px;
}

#seccion_dos {
  background: url("/Img/img2/7.png") no-repeat center center;
  background-size: cover;
  height: 100vh;
}
#seccion_dos .section-dos-aling {
  position: relative;
  top: 15%;
}

#seccion_tres {
  background: url("/Img/img2/home03.png") no-repeat center center;
  background-size: cover;
  height: 100vh;
}
#seccion_tres .section-tres-aling {
  position: relative;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

#seccion_cuatro {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
#seccion_cuatro video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
#seccion_cuatro .section-cuatro-aling {
  position: relative;
  top: 30%;
  display: flex;
  flex-direction: column;
}
#seccion_cuatro .section-cuatro-aling .row .col-md-4 p {
  padding: 0% 10%;
}

#seccion_cinco {
  background: url("/Img/img2/home05.png") no-repeat center center;
  background-size: cover;
  height: 100vh;
}

#seccion_seis {
  background: url("/Img/home06_top.png") no-repeat center center;
  background-size: cover;
}
#seccion_seis .section-seis-aling {
  position: relative;
  top: 30%;
}

#seccion_siete {
  background: url("/Img/home06_bottom.png") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  background-position: top;
}
#section-three {
  background: url("/Img/img2/2bottom.png") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  background-position: top;
}
#seccion_siete footer,
#section-three footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.link-items {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  margin-top: 10vh;
  color: #ffffff;
}
.link-items .link-items-img {
  width: 30%;
}
.link-items .link-items-text {
  padding-top: 10%;
}

.arrow-section-img {
  width: 2vw;
}

.mobile-item {
  position: relative;
  margin: 0;
}

.mobile-aling {
  display: none;
  position: relative;
  overflow: hidden;
}

.btn-home-link {
  width: 15vw;
  font-size: 12px;
  background: none;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid #D7AF80;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 5% 20%;
  margin-top: 15%;
  transition: 0.3s;
}
.btn-home-link:hover {
  color: #202F3D;
  background: #D7AE7F;
  font-weight: bold;
  transition: 0.5s all;
}
.btn-home-link:focus {
  box-shadow: none;
}

.btn-cotizar-link {
  font-size: 12px;
  background: none;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 5% 9%;
  transition: 0.3s;
}
.btn-cotizar-link:hover {
  color: #202F3D;
  background: #D7AE7F;
  font-weight: bold;
  border: 2px solid #202F3D;
  transition: 0.5s all;
}
.btn-cotizar-link:focus {
  box-shadow: none;
}

.content-about-us-section1 {
  background: url("/Img/12.jpg") no-repeat center ;
  background-size: cover;
  height: 100vh !important;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
}
.content-hogar-section1 {
  height: 100vh !important;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
}
.content-comercio-section1 {
  height: 100vh !important;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
}
.content-industrial-section1 {
  height: 100vh !important;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
}
#background2.content-about-us-section1 {
  background: url("/Img/aboutUs2.png") no-repeat center;
  background-size: cover;
}
#background3.content-about-us-section1 {
  background: url("/Img/aboutUs3.png") no-repeat center;
  background-size: cover;
}
#background4.content-about-us-section1 {
  background: url("/Img/aboutUs4.png") no-repeat center;
  background-size: cover;
}
#background5.content-about-us-section1 {
  background: url("/Img/aboutUs5.png") no-repeat center;
  background-size: cover;
}
#background6.content-about-us-section1 {
  background: url("/Img/aboutUs6.png") no-repeat center;
  background-size: cover;
}
#background7.content-about-us-section1 {
  background: url("/Img/aboutUs7.png") no-repeat center;
  background-size: cover;
}
#background8.content-about-us-section1 {
  background: url("/Img/aboutUs8.png") no-repeat center;
  background-size: cover;
  background-position-y: 40%;
}
#hogar1.content-hogar-section1 {
  background: url("/Img/hogar-slider01.png") repeat center;
  background-size: cover;
}
#hogar2.content-hogar-section1 {
  background: url("/Img/hogar-slider02.png") no-repeat center;
  background-size: cover;
}
#hogar3.content-hogar-section1 {
  background: url("/Img/hogar-slider03.png") no-repeat center;
  background-size: cover;
}
#hogar4.content-hogar-section1 {
  background: url("/Img/hogar-slider04.png") no-repeat center;
  background-size: cover;
}
#hogar5.content-hogar-section1 {
  background: url("/Img/hogar-slider05.png") no-repeat center;
  background-size: cover;
}
#hogar6.content-hogar-section1 {
  background: url("/Img/hogar-slider06.png") no-repeat center;
  background-size: cover;
}
#hogar7.content-hogar-section1 {
  background: url("/Img/hogar-slider07.png") no-repeat center;
  background-size: cover;
}
#hogar8.content-hogar-section1 {
  background: url("/Img/hogar-slider08.png") no-repeat center;
  background-size: cover;
}
#hogar9.content-hogar-section1 {
  background: url("/Img/hogar-slider09.png") no-repeat center;
  background-size: cover;
}
#hogar10.content-hogar-section1 {
  background: url("/Img/hogar-slider10.png") no-repeat top center;
  background-size: cover;
}
#hogar11.content-hogar-section1 {
  background: url("/Img/hogar-slider11.png") no-repeat center;
  background-size: cover;
}
#hogar12.content-hogar-section1 {
  background: url("/Img/hogar-slider12.png") no-repeat center;
  background-size: cover;
}
#hogar13.content-hogar-section1 {
  background: url("/Img/hogar-slider13.png") no-repeat center;
  background-size: cover;
}
#hogar14.content-hogar-section1 {
  background: url("/Img/hogar-slider14.png") no-repeat center;
  background-size: cover;
}
#hogar15.content-hogar-section1 {
  background: url("/Img/hogar-slider15.png") no-repeat center;
  background-size: cover;
}
#hogar16.content-hogar-section1 {
  background: url("/Img/hogar-slider16.png") no-repeat center;
  background-size: cover;
}
#hogar17.content-hogar-section1 {
  background: url("/Img/hogar-slider17.png") no-repeat center;
  background-size: cover;
}
#hogar18.content-hogar-section1 {
  background: url("/Img/hogar-slider18.png") no-repeat center;
  background-size: cover;
}
#hogar19.content-hogar-section1 {
  background: url("/Img/hogar-slider19.png") no-repeat center;
  background-size: cover;
}
#hogar20.content-hogar-section1 {
  background: url("/Img/hogar-slider20.png") no-repeat center;
  background-size: cover;
}
#hogar21.content-hogar-section1 {
  background: url("/Img/hogar-slider21.png") no-repeat center;
  background-size: cover;
}
#hogar22.content-hogar-section1 {
  background: url("/Img/hogar-slider22.png") no-repeat center;
  background-size: cover;
}
#comercio1.content-comercio-section1 {
  background: url("/Img/comercio-slider01.png") center center fixed;
  background-size: cover;
}
#comercio2.content-comercio-section1 {
  background: url("/Img/comercio-slider02.png") center center fixed;
  background-size: cover;
}
#comercio3.content-comercio-section1 {
  background: url("/Img/comercio-slider03.png") center center fixed;
  background-size: cover;
}
#comercio4.content-comercio-section1 {
  background: url("/Img/comercio-slider04.png") center center fixed;
  background-size: cover;
}
#comercio5.content-comercio-section1 {
  background: url("/Img/comercio-slider05.png") center center fixed;
  background-size: cover;
}
#comercio6.content-comercio-section1 {
  background: url("/Img/comercio-slider06.png") center center fixed;
  background-size: cover;
}
#comercio7.content-comercio-section1 {
  background: url("/Img/comercio-slider07.png") center center fixed;
  background-size: cover;
}
#comercio8.content-comercio-section1 {
  background: url("/Img/comercio-slider08.png") center center fixed;
  background-size: cover;
}
#comercio9.content-comercio-section1 {
  background: url("/Img/comercio-slider09.png") center center fixed;
  background-size: cover;
}
#comercio10.content-comercio-section1 {
  background: url("/Img/comercio-slider10.png") center center fixed;
  background-size: cover;
}
#industrial0.content-industrial-section1 {
  background: url("/Img/industrial-slider00.png") center center fixed;
  background-size: cover;
}
#industrial1.content-industrial-section1 {
  background: url("/Img/industrial-slider01.png") center center fixed;
  background-size: cover;
}
#industrial2.content-industrial-section1 {
  background: url("/Img/industrial-slider02.png") center center fixed;
  background-size: fixed;
}
#industrial3.content-industrial-section1 {
  background: url("/Img/industrial-slider03.png") center center fixed;
  background-size: fixed;
}
#industrial4.content-industrial-section1 {
  background: url("/Img/industrial-slider04.png") center center fixed;
  background-size: cover;
}
#industrial5.content-industrial-section1 {
  background: url("/Img/industrial-slider05.png") center center fixed;
  background-size: cover;
}
#industrial6.content-industrial-section1 {
  background: url("/Img/industrial-slider06.png") center center fixed;
  background-size: cover;
}
.content-about-us-section1 .container-fluid {
  padding: 2% 5%;
}
.content-about-us-section1 .container-fluid .row .sections-text p {
  text-align: justify;
  padding: 0% 5%;
}

.content-about-us-title {
  font-weight: 300;
  font-size: 50px;
}

.content-about-us-text {
  font-weight: 300;
  font-size: 23px;
  line-height: 150.9%;
}

.arrow-section {
  text-align: center;
  position: relative;
  top: 90vh;
}
#about-us.arrow-section {
  text-align: center;
  position: absolute;
  top: 90vh;
  left: 50%;
  z-index: 1000;
}

.arrow-section-TOP {
  text-align: center;
  position: relative;
  top: 8vh;
  z-index: 9;
}
#about-us.arrow-section-TOP {
  text-align: center;
  position: absolute;
  top: 8vh;
  left: 50%;
  z-index: 1000;
}
.arrow-section-about-us {
  text-align: center;
  position: relative;
  top: 85vh;
}

.content-about-us-section2 {
  background: url("/Img/img2/8.png") no-repeat center;
  background-size: cover;
  height: 100vh;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
}
.content-about-us-section2 .container-fluid {
  background: #FFFFFF;
  padding: 2% 10%;
}
.content-about-us-section2 .container-fluid .row .sections-title p {
  color: #C29D71;
}
.content-about-us-section2 .container-fluid .row .sections-text p {
  color: #0D1721;
  text-align: justify;
  padding: 0% 5%;
}

.background-section {
  background: url("/Img/16.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
  padding-top: 5%;
}

.img-background-01 {
  background: url("/Img/13.jpg") no-repeat center center;
  background-size: cover;
  height: 50vh;
}

.img-background-02 {
  background: url("/Img/14.jpg") no-repeat center center;
  background-size: cover;
  height: 50vh;
}

.img-background-03 {
  background: url("/Img/15.jpg") no-repeat center center;
  background-size: cover;
  height: 50vh;
}

.img-background-04 {
  background: url("/Img/img2/2top.png") no-repeat center center;
  background-size: cover;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: 100vh;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  color: #FFFFFF;
  padding-top: 5%;
}

.about-us-cart {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 171.9%;
  color: #202F3D;
}

.about-us-card {
  background-color: transparent;
  background-clip: border-box;
  text-align: center;
  padding: 10%;
  height: 100%;
}

.card-icon {
  float: left;
  padding: 5%;
}

.card-title-about-us {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 35px;
  color: #FFFFFF;
  text-align: left;
}

@media (max-width: 991.98px) {
  .card-title-about-us {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .img-background-04 .col-md-4 {
    margin-top: 3%;
  }
}
.content-residential {
  background: url("/Img/img2/home09.png") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  padding-top: 5%;
}

.content-comertial {
  background: url("/Img/img2/home09.png") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  padding-top: 5%;
}

.content-industrial {
  background: url("/Img/img2/home09.png") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  padding-top: 5%;
}

.sections-subtitle {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-size: 47px;
  line-height: 57px;
  color: #D7AF80;
}

.card-title-solar-energy {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 500;
  font-size: 37px;
  line-height: 45px;
  color: #D7AE7F;
}

.card-solar-energy {
  border: none !important;
}

.title-solar-energy {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 45px;
  line-height: 75px;
  text-align: center;
}

.acordeon-menu {
  color: #4A5C6F !important;
  text-transform: uppercase;
}

.acordeon-active {
  border: 2px solid #D7AF80 !important;
  box-sizing: border-box !important;
  border-radius: 2px !important;
  color: #0D1721 !important;
  text-transform: uppercase;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: bold !important;
  font-size: 18px !important;
  line-height: 152.9%;
  background: #F1EAE3 !important;
  letter-spacing: 0.205em;
}

.menu-solar-energy {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 25px;
  line-height: 152.9%;
  text-align: center;
  letter-spacing: 0.205em;
  width: 100%;
  border-bottom: 2px solid #D7AF80;
}

.payment-plans-text {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 34px;
  text-align: center;
  color: #4A5C6F;
}
.payment-plans-text .payment-plans-box {
  background: #FFFFFF;
  border-radius: 10px;
  height: 100%;
  position: relative;
  box-shadow: 0px 0px 0px black;
}
.payment-plans-text .payment-plans-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  left: 0px;
  background: black;
  top: 100%;
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 80%);
}
.payment-plans-text .payment-plans-box img {
  padding-top: 20%;
}
.payment-plans-text .payment-plans-box p {
  padding-top: 10%;
}
.payment-plans-text .payment-plans-box a:hover {
  color: #D7AF80 !important;
}

.payment-plans-button {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  color: #4A5C6F;
  background: transparent;
}

.background-img-form {
  background: url("/Img/21.jpg") no-repeat center center fixed;
  background-size: cover;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-top: 5%;
}

.calculator-form-buttom {
  background: #D7AF80;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 171.9%;
  padding: 1% 5%;
  margin-top: 5%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0D1721;
}

.form-select {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

.form-input {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

.row-border {
  border-bottom: 4px solid #E1C39F;
  padding: 2% 0%;
}

.col-title {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 152.9%;
  color: #FFFFFF;
}

.col-text {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 159.4%;
  text-align: justify;
  color: #FFFFFF;
  text-align: justify;
}

option {
  color: black;
}

*, *:after, *:before {
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

*:focus {
  outline: none;
}

details div {
  padding: 1.5em;
}

details div > * + * {
  margin-top: 1.5em;
}

details + details {
  margin-top: 0.5rem;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  border: 1px solid #D7AE7F;
  padding: 0.75em 1em;
  cursor: pointer;
  position: relative;
  padding-left: 3.25rem;
}

summary:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0rem;
  content: "+";
  width: 4%;
  height: 100%;
  background-color: #FAF6F2;
  color: #D7AE7F;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-right: 1px solid #D7AE7F;
  font-size: 30px;
}

details[open] summary {
  background-color: rgba(249, 245, 241, 0.9);
}

details[open] summary:before {
  content: "-";
  background-color: rgba(215, 175, 128, 0.15);
  color: black;
  font-size: 40px;
}

summary:hover {
  background-color: rgba(249, 245, 241, 0.9);
}

code {
  font-family: monospace;
  font-weight: 600;
}

@media (max-width: 992px) {
  .content-residential {
    padding-top: 10%;
  }

  .content-comertial {
    padding-top: 10%;
  }

  .content-industrial {
    padding-top: 10%;
  }

  .card {
    margin-top: 5%;
    text-align: center;
  }

  .sections-title {
    font-size: 50px;
  }

  .sections-subtitle {
    font-size: 20px;
  }

  .sections-text {
    font-size: 14px;
  }

  .payment-plans-box {
    height: 92% !important;
  }

  .bimensual {
    font-size: small !important;
    margin-bottom: 2% !important;
  }

  .col-text {
    font-size: 13px;
  }

  .col-title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .content-residential {
    padding-top: 15%;
  }

  .content-comertial {
    padding-top: 15%;
  }

  .content-industrial {
    padding-top: 15%;
  }

  .payment-plans-box {
    height: 92% !important;
  }

  .bimensual {
    font-size: 15px !important;
  }
  .content-residential,
  .content-comertial,
  .content-industrial {
    height: max-content;
  }
}
@media (max-width: 434px) {
  .content-residential {
    padding-top: 5%;
  }

  .content-comertial {
    padding-top: 5%;
  }

  .content-industrial {
    padding-top: 5%;
  }

  .acordeon-active {
    font-size: 12px !important;
  }

  .acordeon-menu {
    font-size: 12px !important;
  }
}
@media (max-width: 434px) {
  .acordeon-active {
    font-size: 10px !important;
  }

  .acordeon-menu {
    font-size: 10px !important;
  }

  .card-title-solar-energy {
    font-size: 30px;
  }

  .title-solar-energy {
    font-size: 30px;
    line-height: 45px;
  }

  .payment-plans-box img {
    width: 25%;
  }
}
.content-frequently-questions {
  background: url("/Img/home25.png") no-repeat center center;
  background-size: cover;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-top: 15%;
}

.menu-frequently-questions {
  margin-top: 10vh;
  width: 100%;
}

.frequently-questions-active {
  border: 2px solid #D7AF80 !important;
  box-sizing: border-box !important;
  border-radius: 2px !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 152.9%;
  background: #F1EAE329 !important;
  letter-spacing: 0.205em;
}

.frequently-questions-option {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 152.9%;
  text-align: center;
  letter-spacing: 0.205em;
  text-transform: uppercase;
  color: #FFFFFF !important;
}

.FAQoption {
  background: #2E3944;
}
.container .mt-5.mb-5 {
  background: #2E3944;
}
@media (max-width: 991px) {
  .content-frequently-questions .sections-title {
    padding-top: 10%;
  }
}
@media (max-width: 768px) {
  .content-frequently-questions .frequently-questions-active {
    font-size: 12px !important;
  }
  .content-frequently-questions .frequently-questions-option {
    font-size: 12px !important;
  }
}
@media (max-width: 398px) {
  .content-frequently-questions .sections-title {
    padding-top: 15%;
    font-size: 40px;
    line-height: 50px;
  }
  .content-frequently-questions .frequently-questions-active {
    font-size: 10px !important;
  }
  .content-frequently-questions .frequently-questions-option {
    font-size: 10px !important;
  }
  .content-frequently-questions .btn-group {
    background: rgba(92, 116, 138, 0.3);
    display: grid;
  }
}
.content-quote-now {
  background: url("/Img/home27.png") no-repeat center center;
  background-size: cover;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;
  padding-top: 5%;
}
.container.form::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 23, 33, 0.7);
}
.error {
  color: red;
}
.text-golden {
  color: #D7AF80;
}
.text-fom-quote-now {
  line-height: normal;
}
@media (max-width: 991px) {
  .content-quote-now .sections-title {
    font-size: 40px;
    line-height: 50px;
  }

  .text-fom-quote-now {
    font-size: 30px;
    line-height: 50px;
  }
}
@media (max-width: 425px) {
  .content-quote-now .sections-title {
    padding-top: 10%;
    font-size: 30px;
    line-height: 50px;
  }

  .text-fom-quote-now {
    font-size: 20px;
    line-height: 30px;
  }
}
body {
  background: rgba(208, 179, 145, 0.1) !important;
}

.industrial {
  position: relative;
  overflow: hidden;
  background-image: url("/Img/home26.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: initial !important;
  background-position: top !important;
  padding: 175px 0 60px;
}
.industrial .container-industrial .container {
  position: relative;
  top: -85px;
}
.industrial .container-industrial .container .col-text {
  padding-top: 10px;
  padding-bottom: 10px;
}
.industrial .container-industrial .container .col-text h1 {
  font-size: 50px;
  font-weight: 400;
  font-family: "HelveticaNeueLTStdLt";
  z-index: 1;
}
.industrial .container-industrial .container .col-text p {
  font-size: 20px;
  font-weight: 300;
  font-family: "HelveticaNeueLTStdLt";
}
.industrial .container-industrial .container .col-flecha img {
  width: 40px;
  margin: 0 auto;
}
.industrial .container-formulario {
  height: calc(100vh - 225px);
}
.industrial .container-formulario .container form input {
  border: 2px solid #E9E5DF;
  border-radius: 2px;
}
.industrial .container-formulario .container form input:focus {
  box-shadow: none;
}
.industrial .container-formulario .container form .form-label {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 400;
  font-family: "HelveticaNeueLTStdLt";
}
.industrial .container-formulario .container form .label-gold {
  color: #FFFFFF;
  float: right;
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .industrial .container-formulario .container form .label-gold {
    float: left;
  }
}
@media (max-width: 428px) {
  .industrial .container-formulario .container form .label-gold {
    float: left;
  }
}
.industrial .container-formulario .container form .div-recibo #recibo {
  opacity: 0;
  z-index: 2;
  height: 100%;
}
.industrial .container-formulario .container form .div-recibo #reciboBill {
  opacity: 0;
  z-index: 2;
  height: 100%;
}
.industrial .container-formulario .container form .div-recibo #label-recibo {
  background-color: #F7F0E7;
  display: flex;
  transition: all 0.5s;
  cursor: pointer;
  text-align: center;
  border: 2px dashed #E3CAAD;
  border-radius: 2px;
  width: 100%;
  height: 130px;
  justify-content: center;
  align-items: center;
}
.industrial .container-formulario .container form .div-recibo #label-recibo span {
  font-style: normal;
  font-size: 17px;
  line-height: 171.9%;
  text-align: center;
  color: #474747;
  font-family: "HelveticaNeueLTStdLt";
  position: absolute;
}
.industrial .container-formulario .container form .div-recibo #label-recibo span b {
  font-weight: bold;
  font-family: "HelveticaNeueLTStdLt";
  text-decoration: underline;
}
.industrial .container-formulario .container form .btn-enviar {
  background: #D7AF80;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0D1721;
  border-radius: 0;
  width: 100%;
  margin-top: 23px;
}
.industrial .container-formulario .container form .btn-enviar:hover {
  background: #B48D5F;
  transition: 0.5s all;
}
.industrial .container-formulario .container form .btn-enviar:focus {
  box-shadow: none;
}
@media (max-width: 767.9px) {
  .industrial .container-formulario {
    height: auto;
  }
}
@media (min-width: 100em) {
  .industrial .container-formulario {
    height: calc(100vh - 450px) !important;
  }
}

.content-payment-methods {
  background: url("/Img/img2/12.png") no-repeat center center;
  background-size: cover;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-top: 5%;
  padding-bottom: 5%;
}

.card-options {
  list-style: none;
  margin-top: 5%;
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: bold;
  font-size: 19px;
}

.payment-methods-card {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  text-align: center;
}

.card-title-payment-methods {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 500;
  font-size: 34px;
  line-height: 42px;
  color: #2E3944;
}

.card-text-payment-methods {
  font-family: "HelveticaNeueLTStdLt";
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 152.9%;
  text-align: center;
  color: #0D1721;
}

.card-footer-payment-methods {
  padding: 0.75rem 1.25rem;
  background: #202F3D;
}

.card-button-payment-methods {
  font-family: Helvetica Neue;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D7AF80;
  background: transparent;
  border: 2px solid #D7AF80;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 2% 10%;
}
.card-button-payment-methods:hover {
  color: #202F3D;
  background: #D7AE7F;
  transition: 0.5s all;
}
.card-button-payment-methods:focus {
  box-shadow: none;
}

.btn-flotante {
  position: fixed;
  bottom: 85px;
  right: 15px;
  transition: all 300ms ease 0ms;
  z-index: 99;
}

.btn-flotante:hover {
  transform: translateY(-7px);
}

@media (max-width: 991.98px) {
  .vertical-carousel-indicators {
    display: none;
  }

  .vertical-carousel {
    display: none;
  }

  .section-three-aling {
    top: 45%;
  }

  #section-seven {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .mobile-aling {
    display: block;
  }
  .img-background-04 {
    height: max-content;
    padding-top: 15%;
    padding-bottom: 15%;
  }
  .content-about-us-section1,
  .content-comercio-section1,
  .content-industrial-section1,
  .content-hogar-section1 {
    height: 60vw !important;
    position: relative !important;
    background-position: 0 !important;
  }
  #arrowsInside .slick-prev,
  #arrowsInside .slick-next {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .navbar-brand {
    margin-left: 20px;
  }

  .navbar-nav {
    padding: 0 20px;
  }

  .navbar.fixed-top .navbar-nav {
    background: transparent;
  }
  .sections-title {
    line-height: 65px;
  }
  .section-five-aling {
    top: 40%;
  }

  .btn-home-link {
    width: auto;
  }
}
@media screen and (min-width: 767px) {
  .banner {
    padding: 0 150px;
  }
  .banner h1 {
    font-size: 5rem;
  }
  .banner p {
    font-size: 2rem;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 23px 15px;
  }
  .navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 30%;
    right: 30%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.1s ease-in;
  }
  .navbar-dark .navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
  }

  .dropdown-menu {
    min-width: 200px;
    -webkit-animation: dropdown-animation 0.3s;
    animation: dropdown-animation 0.3s;
    transform-origin: top;
  }
}
@media only screen and (max-width: 600px) {
  .btn-flotante {
    font-size: 14px;
    padding: 12px 20px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 576px) {
  .link-items-img {
    width: 15%;
  }
}
@media (max-width: 494px) {
  .section-five-aling {
    top: 0%;
    padding-top: 10%;
  }

  .section-three-aling {
    top: 0%;
    padding-top: 10%;
  }

  .section-aling p {
    font-size: 20px;
  }
}
@media (max-width: 376px) {
  .sections-title {
    font-size: 40px;
  }

  .sections-text {
    font-size: 15px;
  }

  .aling-section-four {
    padding-top: 5%;
  }

  .section-aling h1 {
    font-size: 35px;
  }
  .section-aling p {
    font-size: 20px;
  }

  .arrow-section-img {
    width: 7vw;
  }
}
