@charset "UTF-8";
/* Links */
a, a:visited {
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}
a:hover i {
  color: inherit;
}

/* Links */
/* Accordieon */
.accordion-item {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}
.accordion-item .accordion-button:focus {
  box-shadow: none !important;
}
.accordion-item .accordion-button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
}
.accordion-item .accordion-body {
  padding-top: 0 !important;
}
.accordion-item .accordion-body .content {
  padding: 15px !important;
  background-color: #f1f1f1 !important;
  border-radius: 10px !important;
}

/* Accordieon */
/* Badge */
.badge > button {
  background: transparent;
  border: none;
  color: inherit;
  padding-right: 0;
}

/* Badge */
/* Btn */
.btn {
  border: 2px solid;
  color: var(--white);
  font-weight: 500;
  padding: 0.25rem 2rem;
}
.btn-link {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.btn:hover {
  background-color: transparent;
  color: inherit;
}
.btn:hover i {
  color: inherit;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn-tertiary {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
}
.btn-white {
  color: var(--black);
  border-color: var(--white);
}

.btn-anim {
  position: relative;
  overflow: hidden;
}
.btn-anim:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  100% {
    left: 100%;
    transition-property: left;
  }
}
/* Btn */
/* Input */
.input-group-sm > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  flex: 0 0 auto !important;
  min-width: 50px !important;
  text-align: center !important;
}
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.input-group-sm > .btn:first-child {
  border-radius: 1rem 0px 0px 1rem;
}
.input-group-sm > .btn:last-child {
  border-radius: 0px 1rem 1rem 0px;
}

/* Input */
/* Select */
.custom-select {
  appearance: button;
  -webkit-appearance: button;
  -moz-appearance: button;
  position: relative;
  cursor: pointer;
}
.custom-select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #333;
}

/* General styles for the select2 container */
.select2-container .select2-selection--single {
  height: 38px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem; /* Borde redondeado */
  background-color: #fff;
  font-size: 1rem;
  color: #495057;
}

/* Adjust the placeholder text color */
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #adb5bd; /* Color similar al placeholder de la imagen */
}

/* Remove the default select2 arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem; /* Ajuste del espacio a la derecha */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Styles for the select2 dropdown */
.select2-container .select2-dropdown {
  border-radius: 0.375rem;
  border: 1px solid var(--border-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Remove default focus outline */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:hover {
  outline: none;
  border-color: var(--border-color); /* Mantener el borde del mismo color en focus/hover */
}

/* Ensure the text is vertically centered */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
  padding-left: 0.5rem;
  color: #495057;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary);
  color: var(--primary-contrast);
}

/* Select */
/* Field to input */
.info-to-field {
  position: relative;
}

.info-to-field > button {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 0.8rem;
}

.info-to-field[aria-editing=true] > button,
.info-to-field[aria-editing=true] > span {
  display: none;
}

/* Field to input */
/* Colored icons */
.fa-whatsapp.colored {
  color: #25D366 !important;
}

/* Colored icons */
/* Tiny Slider */
.tns-slider {
  display: flex;
  align-items: center;
}
.tns-slider .item img {
  display: block;
  margin: auto;
}

.tns-nav {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 12px;
}
.tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--primary);
  padding: 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.tns-nav button.tns-nav-active {
  background-color: var(--primary);
}

/* Tiny Slider */
/* Bgs */
.bg {
  position: relative;
}
.bg-black {
  background-color: var(--black) !important;
}
.bg-primary {
  background-color: var(--primary);
}
.bg-gray {
  background-color: var(--gray);
}
.bg-transparency {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
}

/* Bgs */
.text-white {
  color: var(--white);
}
.text-black {
  color: var(--black);
}

.fw-600 {
  font-weight: 600;
}

.fw-800 {
  font-weight: 800;
}

/* Box */
.box-icon {
  padding-top: 25px;
  padding-bottom: 25px;
}
.box-icon i {
  font-size: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.box-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  margin: 30px auto;
}
.box-icon h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.box-icon p {
  font-size: 0.9rem;
}
.box-image img {
  width: 80%;
  height: 250px;
  object-fit: contain;
  margin: 0 auto;
}

a.box-icon:hover {
  transform: scale(120%);
}

/* Box */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 800;
}

/* Modal */
.modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal .modal-content .modal-header {
  background-color: var(--primary);
  color: var(--primary-contrast);
}
.modal .modal-content .modal-header .btn-close {
  color: var(--primary-contrast);
}
.modal .modal-content .modal-body .btn-close {
  position: absolute;
  top: -2px;
  right: 12px;
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal .modal-content img.logo {
  max-height: 75px;
  margin-bottom: 30px !important;
}
.modal-left .modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(-100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-left#modalMobileMenu .modal-dialog {
  max-width: 300px;
}
.modal-left .modal-content {
  height: 100%;
  border-radius: 0px 15px 15px 0px;
}
.modal-left .modal-header {
  border-top-left-radius: 0px;
}
.modal-left.show .modal-dialog {
  transform: translateX(0) !important;
}
.modal-right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-right .modal-content {
  height: 100%;
  border-radius: 15px 0px 0px 15px;
}
.modal-right .modal-header {
  border-top-right-radius: 0px;
}
.modal-right.show .modal-dialog {
  transform: translateX(0) !important;
}
.modal .title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .modal .title {
    font-size: 1.5rem;
  }
}
.modal .title:before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  height: 100%;
  width: 3px;
}
.modal .title.left {
  text-align: left;
  padding-left: 1rem;
}
.modal .title.left:before {
  left: 0;
}
.modal .title.right {
  text-align: right;
  padding-right: 1rem;
}
.modal .title.right:before {
  right: 0;
}
.modal .title span {
  font-weight: 600;
}

/* Modal */
/* Orders */
.order-6 {
  order: 6;
}

/* Orders */
.bg-overlay {
  display: flex;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bg-overlay .overlay {
  background-color: var(--primary);
  mix-blend-mode: multiply;
  transition: 0.3s all ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
}
.bg-overlay:hover .overlay, .bg-overlay:hover .centered-content {
  opacity: 1;
  visibility: visible;
}
.bg-overlay .centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  opacity: 0;
  transition: 0.3s all ease;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Card */
.card {
  border-radius: 0;
  height: 100%;
  overflow: hidden;
}
.card .content-img img {
  height: 325px;
  width: 100%;
  object-fit: cover;
}
.card .card-body {
  line-height: 1.7;
  padding: 2rem 1.5rem;
}
.card.card-colored {
  border-color: var(--primary);
}

/* Card */
/* Steps */
.steps .step-progress-bar .step-bar {
  --gap: 5px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.steps .step-progress-bar .step-bar > li {
  font-size: 0.8rem;
  color: #6C757E;
}
.steps .step-progress-bar .step-bar > li.active {
  color: #222;
  font-weight: 500;
}
.steps .step-progress-bar .step-bar > li:after {
  content: "·";
  display: inline-block;
  color: var(--primary);
  margin-left: var(--gap);
}
.steps .step-progress-bar .step-bar > li:last-child:after {
  content: "";
}
.steps .step {
  display: none;
}
.steps .step.active {
  display: block;
}

/* Steps */
/* Check inputs */
.no-grow {
  flex-grow: 0;
  flex-shrink: 0; /* Esto asegura que el elemento tampoco se reduzca si hay poco espacio */
  flex-basis: auto; /* Mantiene el tamaño automático del contenido */
}

.btn-input > input {
  display: none;
}
.btn-input > input + label {
  border: var(--primary) 1px solid;
  border-radius: 8px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--primary);
  transition: ease-in-out 0.3s all;
}
.btn-input > input + label.light {
  border-color: var(--bs-border-color);
  color: var(--bs-gray);
}
.btn-input > input + label.light.dark {
  color: #222;
}
.btn-input > input + label:before, .btn-input > input + label:after {
  display: none;
}
.btn-input > input:hover + label, .btn-input > input:checked + label {
  background: var(--primary);
  color: var(--primary-contrast);
}
.btn-input > input:hover + label:before, .btn-input > input:hover + label:after, .btn-input > input:checked + label:before, .btn-input > input:checked + label:after {
  display: none;
}
.btn-input > label {
  display: flex;
}

.grid-buttons {
  --gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--gap);
}
.grid-buttons-c2 > .btn-input {
  width: calc(50% - var(--gap));
  max-width: calc(50% - var(--gap));
}
.grid-buttons-c3 > .btn-input {
  width: calc(33.3% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c3 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
.grid-buttons-c4 > .btn-input {
  width: calc(25% - (var(--gap)));
}
@media (max-width: 767px) {
  .grid-buttons-c4 > .btn-input {
    width: calc(50% - (var(--gap)));
  }
}
.grid-buttons-c5 > .btn-input {
  width: calc(20% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c5 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
/* Check inputs */
/* Form loader */
form .loader.full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  gap: 10px;
}
form .loader.full > i {
  color: var(--primary);
  font-size: 1.3rem;
}
form .loader.show {
  display: flex;
}
form button i {
  color: inherit !important;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.form-control {
  border-radius: 0;
}
.form-step h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Form loader */
/* Empty */
.empty-msg:empty:after {
  content: attr(data-empty);
  text-align: center;
  width: 100%;
  display: block;
  color: #99abb4 !important;
  font-style: italic;
}

/* Empty */
.img-thumbnail {
  border-radius: 0.75rem;
  border: 2px solid var(--gray);
}

.img-full {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Search */
.fsticky {
  position: sticky;
  top: 85px;
}

.search > .filters-applied {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search > .filters-applied:empty {
  display: none;
}
/* Search */
/* Product Card */
.product-card {
  position: relative;
  display: block;
  border-radius: 10px;
  /* HTML:  clip-path: polygon(0 45%, 45% 0, 100% 0, 0 100%); */
}
.product-card:hover {
  color: #222;
}
.product-card img.brand {
  height: 50px;
  margin: 0px auto;
  margin-bottom: 8px;
  max-width: 100%;
  object-fit: contain;
}
.product-card img.img-fluid,
.product-card img.img-thumbnail {
  object-fit: contain;
}
.product-card .img-thumbnail {
  height: 350px;
  width: 100%;
}
.product-card .info {
  display: flex;
  flex-direction: column;
}
.product-card .info .name {
  flex: 1;
}
.product-card .info .desc {
  font-size: 1.02rem;
  font-weight: bold;
}
.product-card .info .price {
  font-weight: 800;
  font-size: 1.2rem;
}
.product-card .info .price > small {
  text-decoration: line-through;
}
.product-card .ribbon {
  background-color: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) translate(-25%, -35%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

/* Product Card */
/* Product view */
#product .descrip {
  font-size: 0.9rem;
  margin: 2rem 0;
}
#product .category {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}
#product .sku {
  color: var(--grayDark);
  font-weight: 800;
}
#product .price {
  color: var(--secondary);
}
#product form .vProductCounter [data-action=sub] {
  border-right: 0;
}
#product form .vProductCounter [data-action=add] {
  border-left: 0;
}
#product form .vProductCounter input {
  border-top: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  border-left: 0;
  border-right: 0;
}
#product .gallery {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
#product .gallery .item {
  flex: 0 0 34%;
  scroll-snap-align: start;
}
#product .gallery .item img {
  object-fit: cover;
  width: 200px;
}

/* Product view */
/* Cart */
.cartIcon {
  position: relative;
}
.cartIcon > span {
  position: absolute;
  top: 0;
  right: 6px;
  background-color: #222;
  color: var(--primary-contrast);
  padding: 1px 4px;
  border-radius: 7.5px;
  font-size: 10px;
  min-width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-view, .cart-checkout {
  position: relative;
}
.cart-view .cart-loader, .cart-checkout .cart-loader {
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  gap: 10px;
  transition: ease-in-out 0.2s all;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
}
.cart-view .cart-loader.show, .cart-checkout .cart-loader.show {
  opacity: 1;
  display: flex;
}
.cart-view .cart-content .header, .cart-checkout .cart-content .header {
  font-size: 0.8rem;
}
.cart-view .cart-content .item, .cart-checkout .cart-content .item {
  gap: 5px;
  border-bottom: 1px solid var(--bs-border-color);
}
.cart-view .cart-content .item:last-child, .cart-checkout .cart-content .item:last-child {
  border-bottom: none;
}
.cart-view .cart-content .item .image, .cart-checkout .cart-content .item .image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cart-view .cart-content .item .name, .cart-checkout .cart-content .item .name {
  font-size: 0.9rem;
}
.cart-view .cart-content .item .price, .cart-checkout .cart-content .item .price {
  font-size: 0.8rem;
}
.cart-view .cart-resume, .cart-checkout .cart-resume {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--bs-border-color);
}
.cart-view .cart-resume > div:last-child, .cart-checkout .cart-resume > div:last-child {
  font-weight: bold;
}
.cart-view .cart-actions, .cart-checkout .cart-actions {
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
}

/* Cart */
/* Header */
header {
  background-color: rgba(255, 255, 255, 0.5) !important;
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding-top: env(safe-area-inset-top);
  margin-top: env(safe-area-inset-top);
}
header.scrolled {
  top: 0;
  background-color: var(--white) !important;
  /* @include respond-to("phone") {
      margin-top: 25px;
  } */
}
header.scrolled .navbar-brand > img {
  height: 50px !important;
}
header a, header a:visited, header .nav-link {
  color: var(--black);
  font-weight: 500;
}
header a:hover, header a:visited:hover, header .nav-link:hover {
  color: var(--primary);
}
header a i, header a:visited i, header .nav-link i {
  color: var(--primary);
}
header .main {
  display: none;
}
header .main .navbar-brand > img {
  height: 60px;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  header .main {
    display: flex;
  }
}
header .mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .mobile i {
  font-size: 1.3rem;
}
header .mobile .btn-menu {
  background: transparent;
  border: none;
  position: absolute;
  right: 10px;
  top: auto;
}
header .mobile .navbar-brand > img {
  height: 60px;
  transition: 0.3s all ease-in-out;
}
header .mobile .nav-link {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1024px) {
  header .mobile {
    display: none;
  }
}

#modalMobileMenu .modal-content {
  background-color: var(--white);
}
#modalMobileMenu .modal-content .btn-close {
  font-size: 1.5rem;
  opacity: 1;
}
#modalMobileMenu .modal-content .nav-item .nav-link {
  color: var(--black);
}
#modalMobileMenu .modal-content .nav-item .nav-link:hover, #modalMobileMenu .modal-content .nav-item .nav-link i {
  color: var(--primary);
}
#modalMobileMenu .modal-content .nav-item img {
  max-width: 25px;
}

/* Header */
/* Footer */
footer {
  font-size: 0.9rem;
  color: var(--white);
}
footer a, footer a:visited {
  color: var(--white);
}
footer p {
  margin-bottom: 0;
}
footer .logo {
  height: auto;
  width: auto;
  max-height: 90px;
  max-width: 100%;
  display: block;
}
footer .socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
footer .socials img {
  max-width: 25px;
}

/* Footer */
/* Body */
html, body {
  min-height: 100dvh;
}
html main, body main {
  min-height: 100dvh;
}

* {
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  line-height: 2;
}

.xx-small {
  font-size: 0.7rem;
}

section {
  /* &:first-child {
      margin-top: 70px + 16px;

      @include respond-to("phone") {
          margin-top: 56.3px;
      }
  } */
  width: 100%;
  padding: 50px 0;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* Error */
  /* Error */
}
@media (max-width: 767px) {
  section {
    background-position: center;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 8rem 0;
  }
}
section.fullheight {
  height: 100dvh;
  min-height: 100dvh;
}
section .title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  section .title {
    font-size: 2rem;
  }
}
section .title:before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  height: 100%;
  width: 3px;
}
section .title.left {
  text-align: left;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  section .title.left {
    padding-left: 1.5rem;
  }
}
section .title.left:before {
  left: 0;
}
section .title.right {
  text-align: right;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  section .title.right {
    padding-right: 1.5rem;
  }
}
section .title.right:before {
  right: 0;
}
section .title span {
  font-weight: 600;
}
section.error {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.error.error404 {
  background-color: #f7f7f7;
  background-image: url(/assets/img/error404.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Body */
/* Home */
.index section#main, .proyecto section#main, .proyectos section#main, .nosotros section#main, .blog section#main {
  background-image: url("/assets/img/home/header3.webp");
}
.index section#main h1, .proyecto section#main h1, .proyectos section#main h1, .nosotros section#main h1, .blog section#main h1 {
  color: var(--white);
}
.index section#main .img-award, .proyecto section#main .img-award, .proyectos section#main .img-award, .nosotros section#main .img-award, .blog section#main .img-award {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 170px;
  height: auto;
}
.index section#servicios, .proyecto section#servicios, .proyectos section#servicios, .nosotros section#servicios, .blog section#servicios {
  background-image: url("/assets/img/home/services/bg-services.webp");
}
.index section#proyectos, .proyecto section#proyectos, .proyectos section#proyectos, .nosotros section#proyectos, .blog section#proyectos {
  background-image: url("/assets/img/texture.webp");
}
.index section#proyectos .img-award, .proyecto section#proyectos .img-award, .proyectos section#proyectos .img-award, .nosotros section#proyectos .img-award, .blog section#proyectos .img-award {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .index section.banner, .proyecto section.banner, .proyectos section.banner, .nosotros section.banner, .blog section.banner {
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .index section.banner, .proyecto section.banner, .proyectos section.banner, .nosotros section.banner, .blog section.banner {
    height: 400px;
  }
}
.index section#banner1, .proyecto section#banner1, .proyectos section#banner1, .nosotros section#banner1, .blog section#banner1 {
  background-image: url("/assets/img/home/banner01.webp");
}
.index section#banner2, .proyecto section#banner2, .proyectos section#banner2, .nosotros section#banner2, .blog section#banner2 {
  background-image: url("/assets/img/home/banner02.webp");
}
.index section#clientes .client-slider, .proyecto section#clientes .client-slider, .proyectos section#clientes .client-slider, .nosotros section#clientes .client-slider, .blog section#clientes .client-slider {
  padding: 3rem 0;
}
.index section#clientes .client-slider .swiper-slide, .proyecto section#clientes .client-slider .swiper-slide, .proyectos section#clientes .client-slider .swiper-slide, .nosotros section#clientes .client-slider .swiper-slide, .blog section#clientes .client-slider .swiper-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.index section#clientes .client-slider .swiper-slide.animate-in, .proyecto section#clientes .client-slider .swiper-slide.animate-in, .proyectos section#clientes .client-slider .swiper-slide.animate-in, .nosotros section#clientes .client-slider .swiper-slide.animate-in, .blog section#clientes .client-slider .swiper-slide.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.index section#clientes .client-slider .swiper-pagination-bullet, .proyecto section#clientes .client-slider .swiper-pagination-bullet, .proyectos section#clientes .client-slider .swiper-pagination-bullet, .nosotros section#clientes .client-slider .swiper-pagination-bullet, .blog section#clientes .client-slider .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #ccc;
  opacity: 1;
}
.index section#clientes .client-slider .swiper-pagination-bullet-active, .proyecto section#clientes .client-slider .swiper-pagination-bullet-active, .proyectos section#clientes .client-slider .swiper-pagination-bullet-active, .nosotros section#clientes .client-slider .swiper-pagination-bullet-active, .blog section#clientes .client-slider .swiper-pagination-bullet-active {
  background: var(--primary);
}
.index section#contacto i, .proyecto section#contacto i, .proyectos section#contacto i, .nosotros section#contacto i, .blog section#contacto i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}
.index section#contacto a, .index section#contacto p, .proyecto section#contacto a, .proyecto section#contacto p, .proyectos section#contacto a, .proyectos section#contacto p, .nosotros section#contacto a, .nosotros section#contacto p, .blog section#contacto a, .blog section#contacto p {
  display: flex;
  align-items: center;
  color: var(--black);
  padding: 1rem 0;
}
.index #serviceSlider img, .proyecto #serviceSlider img, .proyectos #serviceSlider img, .nosotros #serviceSlider img, .blog #serviceSlider img {
  height: 600px;
}
@media (max-width: 767px) {
  .index #serviceSlider img, .proyecto #serviceSlider img, .proyectos #serviceSlider img, .nosotros #serviceSlider img, .blog #serviceSlider img {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .index #serviceSlider img.canceleria, .proyecto #serviceSlider img.canceleria, .proyectos #serviceSlider img.canceleria, .nosotros #serviceSlider img.canceleria, .blog #serviceSlider img.canceleria {
    height: 850px;
  }
}

/* Home */
/* Proyectos */
.proyectos section#main h1, .proyectos section#main a, .proyectos section#main span {
  color: var(--white);
}
.proyectos section#main a:hover {
  color: var(--primary);
}
.proyectos section#main a i {
  color: inherit;
}
.proyectos section#main span {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 4px;
}
.proyectos section#principalProjects {
  background-size: auto;
  background-position-x: -40%;
}
@media (min-width: 768px) {
  .proyectos section#principalProjects {
    background-position-x: 33em;
  }
}
@media (min-width: 1024px) {
  .proyectos section#principalProjects {
    background-position-x: 45em;
  }
}
@media (min-width: 1200px) {
  .proyectos section#principalProjects {
    background-position-x: 60em;
  }
}
.proyectos section#projectsList .bg-overlay {
  max-height: 220px;
}
.proyectos footer {
  background-color: var(--black) !important;
}

/* Proyectos */
/* Proyecto */
.proyecto section img {
  max-height: 350px;
}
.proyecto section#banner .container {
  position: relative;
  z-index: 1;
}
.proyecto section#banner .bg-overlay-university {
  position: absolute;
  top: 0;
  left: 30%;
  width: 70%;
  height: 100%;
  background-color: var(--primary);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .proyecto section#banner .bg-overlay-university {
    left: 0;
    width: 100%;
  }
}

/* Proyecto */
/* Account profile */
.account_profile .rounded-circle {
  width: 150px;
  height: 150px;
}

/* Account profile */
/* Specials */
.crossedout {
  display: inline-block;
  position: relative;
  text-decoration: line-through;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2.5px;
}

/* Specials */
/* Project link */
.project-link {
  letter-spacing: 4px;
}

/* Project link */

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