@charset "UTF-8";
body {
  font-family: "Circular Std Book";
}

/*override bootstrap*/
:root,
[data-bs-theme=light] {
  --bs-primary: #E31F21;
  --bs-border-width: 3px;
  --bs-info-rgb: 114, 104, 231;
  --bs-link-color: #E31F21;
  --bs-nav-pills-link-active-bg: #E31F21;
  --bs-card-border-width: 1px;
  --bs-heading-color: #2b2b2b;
  --bs-primary-rgb: 136, 22, 24;
  --bs-light-rgb: 218, 218, 218;
  --bs-link-color-rgb: #E31F21;
  --bs-danger: #F85C4E;
  --bs-danger-rgb: 248, 92, 78;
}

.btn-outline-primary {
  --bs-btn-color: #E31F21;
  --bs-btn-border-color: #E31F21;
  --bs-btn-hover-bg: #E31F21;
  --bs-btn-hover-border-color: #E31F21;
  --bs-btn-focus-shadow-rgb: 136, 22, 24;
  --bs-btn-active-bg: #E31F21;
  --bs-btn-active-border-color: #E31F21;
  --bs-btn-disabled-color: #E31F21;
  --bs-btn-disabled-border-color: #E31F21;
}

.btn-primary {
  --bs-btn-bg: #E31F21;
  --bs-btn-border-color: #E31F21;
  --bs-btn-hover-bg: #D6080A;
  --bs-btn-hover-border-color: #D6080A;
  --bs-btn-focus-shadow-rgb: 136, 22, 24;
  --bs-btn-active-bg: #E31F21;
  --bs-btn-active-border-color: #D6080A;
  --bs-btn-disabled-bg: #E31F21;
  --bs-btn-disabled-border-color: #E31F21;
}

.form-control:focus, .form-select:focus {
  border-color: #9898a5;
  box-shadow: 0 0 0 0.25rem rgba(172, 172, 172, 0.25);
}

a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .text-lg {
    font-size: 18px;
  }
  .text-xl {
    font-size: 22px;
  }
}
@font-face {
  font-family: "Circular Std Bold";
  src: url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Book";
  src: url("../fonts/CircularStd-BookItalic.woff2") format("woff2"), url("../fonts/CircularStd-BookItalic.woff") format("woff"), url("../fonts/CircularStd-BookItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Medium";
  src: url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Bold";
  src: url("../fonts/CircularStd-BoldItalic.woff2") format("woff2"), url("../fonts/CircularStd-BoldItalic.woff") format("woff"), url("../fonts/CircularStd-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Medium";
  src: url("../fonts/CircularStd-MediumItalic.woff2") format("woff2"), url("../fonts/CircularStd-MediumItalic.woff") format("woff"), url("../fonts/CircularStd-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Black";
  src: url("../fonts/CircularStd-BlackItalic.woff2") format("woff2"), url("../fonts/CircularStd-BlackItalic.woff") format("woff"), url("../fonts/CircularStd-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Black";
  src: url("../fonts/CircularStd-Black.woff2") format("woff2"), url("../fonts/CircularStd-Black.woff") format("woff"), url("../fonts/CircularStd-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std Book";
  src: url("../fonts/CircularStd-Book.woff2") format("woff2"), url("../fonts/CircularStd-Book.woff") format("woff"), url("../fonts/CircularStd-Book.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.site-navbar {
  display: flex;
  align-items: center;
  background: #E31F21;
  height: 90px;
  margin-top: calc(var(--bs-gutter-x) * 0.5);
  border-radius: 10px;
}

.navbar-grid {
  display: grid;
  grid-template-columns: 185px 1fr;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 575px) {
  .navbar-grid {
    padding: 0 20px;
  }
}

.logo img {
  max-width: 100%;
  height: 50px;
  width: fit-content;
}

/* menu desktop */
@media (min-width: 992px) {
  .navbar-menu {
    position: relative;
    display: flex;
  }
  .navbar-menu ul {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
  }
  .navbar-menu ul li {
    float: left;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar-menu > ul > li:before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    height: 2px;
    width: 0px;
    background: white;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar-menu > ul > li:hover:before {
    width: 100%;
  }
  .navbar-menu > ul > li:hover:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    height: 20px;
    width: 100%;
  }
  .navbar-menu ul li:hover > ul {
    display: block;
  }
  .navbar-menu ul li {
    float: left;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar-menu ul li a {
    display: block;
    padding: 20px 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
  }
  .navbar-menu ul li.dropdown a {
    padding-right: 22px;
  }
  .navbar-menu ul li.dropdown a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 30px;
    background: url(../images/ico-chevron.svg) no-repeat;
    height: 8px;
    width: 12px;
    background-size: contain;
    transform: rotate(180deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar-menu > ul > li.dropdown:hover a:after {
    transform: rotate(0);
  }
  .navbar-menu ul ul {
    display: none;
    background: #fff;
    position: absolute;
    z-index: 1;
    padding: 20px 15px 30px 15px;
    margin: 0;
    top: 79px;
    left: -10px;
    box-shadow: -3px 3px 10px -2px rgba(0, 0, 0, 0.1);
    width: 270px;
  }
  .navbar-menu > ul > li > ul:before {
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid white;
    position: absolute;
    left: 45px;
    top: -10px;
  }
  .navbar-menu ul ul li {
    float: none;
    position: relative;
  }
  .navbar-menu ul ul li a {
    padding: 10px 12px;
    color: #2D2D2D;
    font-family: "Circular Std Book";
    font-size: 16px;
    white-space: nowrap;
    font-weight: 700;
    line-height: normal;
  }
  .navbar-menu ul ul li a:hover {
    color: #E31F21;
  }
  .navbar-menu ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
  }
  /* selector de idioma */
  .toogle-language {
    display: flex;
    list-style: none;
    margin: 0 0 0 30px;
    padding: 0 0 0 30px;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
  .toogle-language a {
    color: white;
    text-align: center;
    font-family: "Circular Std Book";
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    padding: 8px;
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
  }
  .toogle-language a.active {
    color: #E31F21;
    background: white;
  }
  .navbar-grid .btn {
    display: none;
  }
}
@media (min-width: 1600px) {
  .site-navbar {
    height: 125px;
  }
  .logo img {
    height: 77px;
  }
  .navbar-menu ul li a {
    padding: 30px 0;
    font-size: 22px;
  }
  .navbar-menu ul li.dropdown a::after {
    top: 42px;
  }
  .navbar-menu ul ul {
    top: 109px;
    width: 320px;
  }
  .navbar-menu ul ul li a {
    padding: 15px 30px;
    font-size: 18px;
  }
}
/* menu mobile */
@media (max-width: 991px) {
  .navbar-menu,
  .toogle-language {
    display: none;
  }
  /* offcanvasMenu */
  #offcanvasMenu {
    background: #E31F21;
  }
  #offcanvasMenu .btn-close {
    --bs-btn-close-color: white;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  }
  #accordionMenu {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  }
  #accordionMenu .accordion-item {
    border: none;
    box-shadow: none;
    background: transparent;
  }
  #accordionMenu .accordion-button {
    background: transparent;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    line-height: normal;
  }
  #accordionMenu .accordion-button.accordion-button-single::after {
    display: none;
  }
  #accordionMenu .accordion-button:not(.collapsed) {
    color: white;
    background: transparent;
    box-shadow: none;
  }
  #accordionMenu .accordion-button:not(.collapsed)::after {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  }
  #accordionMenu .accordion-sub {
    margin: 0;
    padding: 0 30px 20px;
    list-style: none;
  }
  #accordionMenu .accordion-sub a {
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
  }
}
/*site footer*/
.site-footer {
  background: #2D2D2D;
  color: white;
  font-size: 16px;
  line-height: normal;
  padding-block: 60px 0;
  min-height: 350px;
}
.site-footer .grid-footer {
  display: grid;
  grid-template-columns: minmax(16%, 210px) auto 27%;
  gap: 50px;
}
@media (max-width: 1250px) {
  .site-footer .grid-footer {
    gap: 20px;
  }
}
@media (max-width: 1144px) {
  .site-footer .grid-footer {
    grid-template-columns: 126px auto 28%;
  }
}
@media (max-width: 992px) {
  .site-footer .grid-footer {
    grid-template-columns: auto;
    padding: 0 12px;
  }
}
.site-footer .grid-footer .footer-logo {
  padding: 21px 13px;
  width: 100%;
  max-width: 185px;
}
@media (max-width: 1144px) {
  .site-footer .grid-footer .footer-logo img {
    width: 100px;
  }
}
@media (max-width: 992px) {
  .site-footer .grid-footer .footer-logo {
    display: none;
  }
}
.site-footer .grid-footer .footer-about {
  border-right: 1px solid white;
  padding-right: 30px;
}
.site-footer .grid-footer .footer-about br {
  display: none;
}
@media (min-width: 1380px) {
  .site-footer .grid-footer .footer-about br {
    display: block;
  }
}
@media (max-width: 1144px) {
  .site-footer .grid-footer .footer-about {
    padding-right: 18px;
  }
}
@media (max-width: 992px) {
  .site-footer .grid-footer .footer-about {
    padding-right: 0;
    border-right: none;
  }
}
.site-footer .grid-footer .footer-about > p {
  margin-bottom: 1.2rem;
}
.site-footer .grid-footer .footer-about .text-yellow {
  font-size: 18px;
  color: #F0C808;
  text-decoration: none;
}
@media (max-width: 1250px) {
  .site-footer .grid-footer .footer-about .text-yellow {
    font-size: 16px;
  }
}
@media (max-width: 1144px) {
  .site-footer .grid-footer .footer-about .text-yellow {
    font-size: 14px;
  }
}
.site-footer .grid-footer .footer-about .footer-social {
  display: flex;
  align-items: center;
  padding-top: 11px;
  flex-wrap: wrap;
  gap: 30px;
}
.site-footer .grid-footer .footer-about .footer-social .text-yellow {
  margin-bottom: 0;
}
.site-footer .grid-footer .footer-about .footer-social ul {
  list-style: none;
  margin: 0 22px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1290px) {
  .site-footer .grid-footer .footer-about .footer-social ul {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .site-footer .grid-footer .footer-about .footer-social ul {
    margin: 0;
  }
}
.site-footer .grid-footer .footer-info {
  display: flex;
  justify-content: space-between;
  padding-right: 36px;
  font-size: 18px;
}
@media (max-width: 1250px) {
  .site-footer .grid-footer .footer-info {
    font-size: 16px;
  }
}
@media (max-width: 1144px) {
  .site-footer .grid-footer .footer-info {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .site-footer .grid-footer .footer-info {
    font-size: 14px;
    padding-top: 30px;
  }
}
.site-footer .grid-footer .footer-info p {
  margin-bottom: 1.5rem;
}
.site-footer .grid-footer .footer-info .text-yellow {
  text-decoration: none;
  color: #F0C808;
}
.site-footer .grid-footer .footer-legal {
  grid-column: 1/4;
  padding-top: 25px;
  padding-left: 146px;
}
@media (min-width: 1144px) {
  .site-footer .grid-footer .footer-legal {
    text-align: center;
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .site-footer .grid-footer .footer-legal {
    grid-column: 1/2;
    padding-left: 0;
    padding-bottom: 30px;
  }
}
.site-footer .grid-footer .footer-legal small {
  font-weight: 300;
}

.powered-by-squad {
  height: 30px;
  width: 87px;
  display: block;
  background: url(../images/powered-by-squad.svg) no-repeat;
  text-indent: -9999px;
}

.slider-item-ratio-26x9 {
  --swiffy-slider-item-ratio: 26/9;
}

.slider-item-ratio-29x9 {
  --swiffy-slider-item-ratio: 29/9;
}

.slider-indicators {
  display: none;
}

@media (min-width: 768px) {
  .homepage-cards .container-fluid > div {
    background-color: rgba(var(--bs-light-rgb));
  }
}
.homepage-cards .card {
  text-decoration: none;
}
.homepage-cards .card img {
  transform: scale(1.05);
  width: 100%;
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  max-height: 310px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .homepage-cards .card img {
    max-height: 220px;
  }
}
.homepage-cards .card:hover img {
  transform: scale(1.2);
}
.homepage-cards .card .card-footer {
  background: #E31F21;
  text-align: center;
  position: relative;
}
.homepage-cards .card .card-footer p {
  margin-bottom: 0;
  color: #FFF;
  text-align: center;
  font-family: "Circular Std Book";
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .homepage-cards .card .card-footer p {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .homepage-cards .card .card-footer p {
    font-size: 22px;
  }
}

.overlay-cards .card .card-img-overlay {
  position: absolute;
  overflow: hidden;
}

.overlay-cards .card .card-img-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(227, 31, 33, 0.74) 0%, rgba(227, 31, 33, 0.74) 100%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}

.overlay-cards .card:hover .card-img-overlay::before {
  opacity: 1;
}

.overlay-cards .card .card-title {
  color: #FFF;
  text-align: center;
  font-size: clamp(18px, 3vw, 38px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 100%;
  -webkit-transition: margin 0.3s ease-in-out;
  -moz-transition: margin 0.3s ease-in-out;
  transition: margin 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.overlay-cards .card:hover .card-title {
  margin-top: 60%;
}

.overlay-cards .card .card-img {
  transform: scale(1);
  -webkit-transition: transform 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
}

.overlay-cards .card:hover .card-img {
  transform: scale(1.1);
}

/* site main */
.site-main .accordion {
  gap: 20px;
  display: grid;
}
.site-main .accordion-item {
  border: 1px solid #dcd9f9 !important;
  border-radius: 20px !important;
}
.site-main .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  color: #1e1688;
  font-family: "Basic Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.44px;
}
.site-main .accordion-button:focus {
  box-shadow: none !important;
}

.pagination {
  gap: 15px;
  justify-content: center;
}
.pagination .page-link {
  color: #4f42e1;
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.pagination .page-link.active {
  background-color: #1e1688;
  border-color: #1e1688;
  color: white;
}
.pagination .page-link.disabled {
  color: #aaa;
}
.pagination .page-item:not(:first-child):not(:last-child) .page-link {
  width: 50px;
}

@media (max-width: 767px) {
  .pagination {
    justify-content: space-between;
  }
  .pagination .page-item:not(:first-child):not(:last-child) .page-link {
    display: none;
  }
}
/*homepage desktop*/
.homepage-produccion .rounded {
  background: #E31F21;
}
.homepage-produccion .rounded .title {
  color: #FFF;
  font-family: "Circular Std Book";
  font-size: clamp(14px, 3vw, 42px);
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.homepage-produccion .rounded img {
  object-fit: cover;
  max-height: 478px;
  width: 100%;
  object-position: right bottom;
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
  aspect-ratio: 33/15;
}

.homepage-certificaciones .rounded {
  background: #E31F21;
}
.homepage-certificaciones .rounded .title {
  color: #FFF;
  font-family: "Circular Std Book";
  font-size: clamp(14px, 3vw, 42px);
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.homepage-certificaciones .rounded img {
  object-fit: cover;
  max-height: 478px;
  width: 100%;
  object-position: left top;
  border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
  aspect-ratio: 33/15;
}

.homepage-distribucion .rounded {
  background: #E31F21;
}
.homepage-distribucion .rounded .title {
  color: #FFF;
  font-family: "Circular Std Book";
  font-size: clamp(14px, 3vw, 42px);
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.homepage-distribucion .rounded img {
  object-fit: cover;
  max-height: 478px;
  width: 100%;
  object-position: right bottom;
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
  aspect-ratio: 33/15;
}

@media (max-width: 767px) {
  .homepage-produccion .rounded img,
  .homepage-certificaciones .rounded img,
  .homepage-distribucion .rounded img {
    max-height: 175px;
  }
}
.internal-page {
  text-align: justify;
}
.internal-page .lead {
  font-family: "Circular Std Book";
}
.internal-page .lead strong {
  font-family: "Circular Std Black";
}
.internal-page video {
  border-radius: 10px;
}
@media (min-width: 1360px) {
  .internal-page p {
    font-size: clamp(16px, 3vw, 20px);
  }
  .internal-page .lead {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .internal-page {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.internal-page .title {
  color: #2D2D2D;
  font-family: "Circular Std Medium";
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (min-width: 1360px) {
  .internal-page .title {
    margin-bottom: 25px;
    font-size: clamp(30px, 3vw, 54px);
  }
}
.internal-page img {
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .internal-page img img:isnot(.card-img) {
    margin-top: 50px;
  }
}
.internal-page .deco-001 {
  position: relative;
  display: flex;
  gap: 40px;
}
@media (max-width: 1199px) {
  .internal-page .deco-001 {
    gap: 10px;
  }
}
.internal-page .deco-001:before {
  background: url(../images/deco-001.svg) no-repeat center;
  display: block;
  content: "";
  width: 66px;
  flex: 0 0 66px;
  height: 49px;
  background-size: contain;
}
@media (max-width: 767px) {
  .internal-page .deco-001:before {
    margin-left: -50px;
  }
}
@media (max-width: 575px) {
  .internal-page .deco-001:before {
    display: none;
  }
}
@media (min-width: 1600px) {
  .internal-page .deco-001:before {
    width: 96px;
    flex: 0 0 96px;
    height: 69px;
  }
}
.internal-page .fill-caption {
  position: relative;
  overflow: hidden;
}
.internal-page .fill-caption .fill-caption-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #E31F21 100%) rgba(255, 255, 255, 0) 50%/cover no-repeat;
  color: #FFF;
  font-size: clamp(14px, 3vw, 28px);
  width: 100%;
  font-weight: 700;
  line-height: normal;
  padding: clamp(20px, 4vw, 50px);
  text-align: left;
  border-radius: 10px;
}
.internal-page .deco-002 {
  position: relative;
  display: flex;
  gap: 40px;
}
@media (max-width: 1199px) {
  .internal-page .deco-002 {
    gap: 10px;
  }
}
.internal-page .deco-002:before {
  background: url(../images/deco-002.svg) no-repeat center;
  display: block;
  content: "";
  width: 66px;
  flex: 0 0 66px;
  height: 59px;
  background-size: contain;
}
@media (max-width: 767px) {
  .internal-page .deco-002:before {
    margin-left: -50px;
  }
}
@media (max-width: 575px) {
  .internal-page .deco-002:before {
    display: none;
  }
}
@media (min-width: 1600px) {
  .internal-page .deco-002:before {
    width: 96px;
    flex: 0 0 96px;
    height: 79px;
  }
}
.internal-page .deco-003 {
  position: relative;
  display: flex;
  gap: 40px;
}
@media (max-width: 1199px) {
  .internal-page .deco-003 {
    gap: 10px;
  }
}
.internal-page .deco-003:before {
  background: url(../images/deco-002.svg) no-repeat center;
  display: block;
  content: "";
  width: 66px;
  flex: 0 0 66px;
  height: 59px;
  background-size: contain;
}
@media (max-width: 767px) {
  .internal-page .deco-003:before {
    margin-left: -50px;
  }
}
@media (max-width: 575px) {
  .internal-page .deco-003:before {
    display: none;
  }
}
@media (min-width: 1600px) {
  .internal-page .deco-003:before {
    width: 96px;
    flex: 0 0 96px;
    height: 79px;
  }
}
@media (min-width: 576px) {
  .internal-page .px-sm-3 {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}

.contacto-ventas .internal-page img {
  height: 100px;
}

.box__input {
  margin: 15px;
  border: 2px dashed #ddd;
  width: 100%;
  padding: 0 0 30px;
  text-align: center;
  background: #fff url(../images/bg-add-curriculum.png) center 80px no-repeat;
}

input.box__file {
  display: block;
  text-align: center;
  margin: 174px auto 0;
}

.line-trought .title {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #2D2D2D;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  gap: 20px;
}
.line-trought .title::before, .line-trought .title::after {
  content: "";
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  width: 100%;
  display: flex;
}

.menu-product .card {
  background: #DADADA;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.menu-product .card .card-body {
  height: 100%;
  display: flex;
  align-items: center;
}
.menu-product .card .card-body .card-title {
  margin: 0;
  color: #2D2D2D;
  white-space: nowrap;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 700;
  line-height: normal;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.menu-product .card img {
  border-radius: 0;
}
.menu-product .card:hover, .menu-product .card.active {
  background: #E31F21;
}
.menu-product .card:hover .card-title, .menu-product .card.active .card-title {
  color: white;
}

.menu-product .slider-nav {
  display: none;
}

@media (max-width: 1199px) {
  .menu-product {
    position: relative;
  }
  .menu-product::after {
    content: "";
    height: 100%;
    width: 70px;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
  }
  .menu-product::before {
    content: "";
    height: 100%;
    width: 70px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
  }
  .menu-product .slider-container > li {
    width: 210px;
  }
  .menu-product .slider-container {
    grid-auto-columns: auto;
  }
}
@media (max-width: 757px) {
  .line-trought .title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .menu-product .slider-container {
    justify-content: center;
  }
}
/*centro distribucion desktop*/
.grid-centro-distribucion {
  border-radius: 10px;
  background: #2D2D2D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(40px, 5vw, 160px);
  margin-top: 80px;
}
@media (max-width: 767px) {
  .grid-centro-distribucion {
    flex-direction: column;
    margin-top: 0;
  }
}
.grid-centro-distribucion .box {
  position: relative;
  display: grid;
  grid-template-areas: "center";
  justify-content: center;
  align-items: center;
  margin-top: -62px;
  padding-bottom: 30px;
}
@media (max-width: 979px) {
  .grid-centro-distribucion .box {
    margin-top: -42px;
  }
}
@media (max-width: 767px) {
  .grid-centro-distribucion .box {
    margin-top: 50px;
  }
  .grid-centro-distribucion .box br {
    display: none;
  }
}
.grid-centro-distribucion .box > div {
  color: #E31F21;
  text-align: center;
  font-family: "Circular Std Book";
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  grid-area: center;
  width: 126px;
  height: 126px;
  margin: 0 auto;
}
@media (max-width: 979px) {
  .grid-centro-distribucion .box > div {
    width: 86px;
    height: 86px;
  }
}
.grid-centro-distribucion .box > div:before {
  border-radius: 10px;
  border: 1px solid #E31F21;
  background: #FFF;
  width: 126px;
  height: 126px;
  transform: rotate(45deg);
  content: "";
  display: flex;
}
@media (max-width: 979px) {
  .grid-centro-distribucion .box > div:before {
    width: 86px;
    height: 86px;
  }
}
.grid-centro-distribucion .box > div p {
  position: relative;
  margin-top: -100px;
  display: grid;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
@media (max-width: 979px) {
  .grid-centro-distribucion .box > div p {
    font-size: 14px;
    margin-top: -65px;
  }
}
.grid-centro-distribucion .box > div p span {
  font-size: 30px;
}
@media (max-width: 979px) {
  .grid-centro-distribucion .box > div p span {
    font-size: 20px;
  }
}
.grid-centro-distribucion .box > p {
  margin-top: 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1199px) {
  .grid-centro-distribucion .box > p {
    font-size: 14px;
  }
}
@media (max-width: 979px) {
  .grid-centro-distribucion .box > p {
    margin-top: 30px;
  }
}

@media (min-width: 1600px) {
  .container-fluid {
    max-width: 1600px;
  }
}
.site-main {
  padding-top: 110px;
}
@media (min-width: 1600px) {
  .site-main {
    padding-top: 136px;
  }
}

.site-header .site-navbar {
  position: fixed;
  top: 0;
  z-index: 9;
  width: calc(100% - 24px);
  left: 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.site-header.hidden .site-navbar {
  top: 0;
  width: 100%;
  left: 0;
  margin: 0;
  border-radius: 0;
}

/* whatsapp */
.burbuja-whatsapp {
  display: grid;
  position: fixed;
  color: #25D366;
  right: 20px;
  bottom: 20px;
  align-items: center;
}

.bur-text-content {
  background: white;
  padding: 0 40px 0 12px;
  border-radius: 20px;
  height: 45px;
  display: grid;
  align-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(207, 216, 220, 0.3);
  width: 180px;
  box-sizing: border-box;
  position: absolute;
  right: 20px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.bur-txt-1 {
  font-size: 16px;
  line-height: 16px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.bur-txt-2 {
  font-weight: bold;
  font-size: 11px;
  white-space: nowrap;
}

.burbuja-whatsapp:hover .bur-txt-1 {
  margin-left: -339px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.bur-txt-1::after {
  content: "Click Aquí";
  white-space: nowrap;
  position: absolute;
  text-align: center;
  width: 209px;
  color: #fff;
}

.burbuja-whatsapp:hover .bur-txt-2 {
  color: #fff;
}

.burbuja-whatsapp:hover .bur-text-content {
  background: #25D366;
}

.bur-icon-content {
  width: 55px;
  height: 55px;
}

.bur-icon-img {
  position: relative;
  z-index: 9;
}

.pulsar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.pulsar-1,
.pulsar-2,
.pulsar-3 {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  animation: radial-pulsar 2.3s infinite;
}

.pulsar-1 {
  background: rgb(37, 211, 102);
}

.pulsar-2 {
  animation-delay: 1.3333s;
}

.pulsar-3 {
  animation-delay: 2.6666s;
}

.bur-space-brdr {
  height: 100%;
  width: 100%;
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

@keyframes radial-pulsar {
  0% {
    box-shadow: 0 0 0 0em rgba(37, 211, 102, 0.8);
  }
  50% {
    box-shadow: 0 0 0 1em rgba(255, 100, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 100, 100, 0);
  }
}
.hiddenChatLabel .bur-text-content {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  transform: scale(0.1);
}

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