:root {
  --blanco: #eeeeee;
  --amarillo: #ffbd00;
  --negro: #101010;
  --gris: #373737;
  --gris-claro: #EEEEEE;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
html, body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--negro);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.fit-content-width {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 20px;
}

.w-100 {
  width: 100%;
}

.fs-50 {
  font-size: 50px;
}

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

.fs-15 {
  font-size: 15px;
}

.d-pad {
  padding: 80px 9%;
}

.text-white {
  color: var(--blanco);
}

.text-negro {
  color: var(--negro);
}

.text-amarillo {
  color: var(--amarillo);
}

.bg-gris {
  background-color: var(--gris);
}

a {
  color: unset;
  text-decoration: none;
}
a:hover {
  color: unset;
}

.line {
  height: 3px;
  background-color: var(--amarillo);
  margin: 1% 0% 2%;
}

.btn-cta {
  padding: 10px 45px;
  display: inline-block;
  background-color: var(--amarillo);
  color: var(--negro);
  border-radius: 7px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-cta:hover {
  background-color: var(--negro);
  color: var(--blanco);
}

.header {
  padding: 0px 9%;
}
.header .logo {
  width: 180px;
}
.header .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 16px;
  margin: 0 10px;
}
.header .navbar-nav .btn-warning {
  background-color: #ffbd00;
  color: #101010;
  font-weight: 700;
}
.header .navbar-nav .btn-warning:hover {
  background-color: #101010;
  color: #eeeeee;
}
@media (max-width: 760px) and (min-width: 579px) {
  .header {
    padding: 3% 9%;
  }
  .header .col-md-6 {
    text-align: center;
  }
  .header .justify-content-end {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
}
@media (max-width: 579px) and (min-width: 375px) {
  .header {
    padding: 3% 0% 1%;
  }
  .header .navbar-nav {
    padding-bottom: 14px;
  }
  .header .navbar-nav .nav-item {
    border-bottom: 1px solid var(--gris-claro);
  }
  .header .logo {
    width: 120px;
  }
  .header .btn-cta {
    padding: 4% 5%;
    font-size: 16px;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .header {
    padding: 3% 0% 1%;
  }
  .header .logo {
    width: 35%;
  }
  .header .navbar-nav {
    padding-bottom: 14px;
  }
  .header .navbar-nav .nav-item {
    border-bottom: 1px solid var(--gris-claro);
  }
  .header .btn-cta {
    padding: 8% 22%;
    font-size: 12px;
  }
}

.home .sec1 {
  padding: 150px 9%;
  background-image: url("../img/prodesa-home-header.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.home .sec1 .btn-cta {
  width: 25%;
  padding: 10px 20px;
}
.home .sec1 .line {
  width: 10%;
}
.home .sec1 p {
  font-size: 20px;
}
@media (max-width: 579px) and (min-width: 375px) {
  .home .sec1 h1 {
    font-size: 50px;
  }
  .home .sec1 p {
    font-size: 18px;
  }
  .home .sec1 .btn-cta {
    width: 40%;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .home .sec1 h1 {
    font-size: 30px;
  }
  .home .sec1 .btn-cta {
    width: 100%;
  }
}
.home .sec2 {
  background-color: var(--negro);
  border-top: 1px solid var(--blanco);
  border-bottom: 1px solid var(--blanco);
}
.home .sec2 .line {
  width: 3%;
  background-color: var(--blanco);
}
@media (max-width: 579px) and (min-width: 375px) {
  .home .sec2 .line {
    width: 10%;
    margin-top: 1rem;
  }
  .home .sec2 .d-flex {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
  }
}
.home .sec3 .line {
  width: 5%;
}
.home .sec3 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1.5rem;
}
.home .sec3 .grid .item {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.home .sec3 .grid .item img {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.home .sec3 .grid .item .up-text {
  background-color: var(--negro);
  width: 83%;
  padding: 1.5% 5%;
  font-size: 20px;
  color: var(--blanco);
  position: absolute;
  bottom: 7%;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.home .sec3 .grid .item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.home .sec3 .grid .item:hover .up-text {
  background-color: var(--amarillo);
  color: var(--negro);
}
.home .sec3 .grid .item:hover img {
  -webkit-box-shadow: 0px 0px 15px -4px var(--negro);
          box-shadow: 0px 0px 15px -4px var(--negro);
}
.home .sec3 .glide .glide__slide {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.home .sec3 .glide .glide__slide img {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.home .sec3 .glide .glide__slide .up-text {
  background-color: var(--negro);
  width: 83%;
  padding: 1.5% 5%;
  font-size: 20px;
  color: var(--blanco);
  position: absolute;
  bottom: 7%;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.home .sec3 .glide .glide__slide.glide__slide--active {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.home .sec3 .glide .glide__slide.glide__slide--active img {
  -webkit-box-shadow: 0px 0px 15px -4px var(--negro);
          box-shadow: 0px 0px 15px -4px var(--negro);
}
.home .sec3 .glide .glide__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-radius: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.home .sec3 .glide .glide__arrow img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0px 0px 10px black;
          box-shadow: 0px 0px 10px black;
}
.home .sec3 .glide .glide__arrow--left {
  left: 0.9em;
}
.home .sec3 .glide .glide__arrow--right {
  right: 0.9em;
}
@media (max-width: 579px) and (min-width: 375px) {
  .home .sec3 {
    padding: 80px 0%;
  }
  .home .sec3 h2 {
    margin: 0px 9%;
  }
  .home .sec3 .line {
    margin: 1% 9% 2%;
    width: 10%;
  }
}
@media (max-width: 375px) and (min-width: 0) {
  .home .sec3 {
    padding: 60px 0px 0px;
  }
  .home .sec3 h2 {
    margin: 0px 9%;
  }
  .home .sec3 .line {
    margin: 1% 9% 2%;
    width: 10%;
  }
  .home .sec3 .glide .glide__slide .up-text {
    font-size: 14px;
  }
}
.home .sec4 .line {
  width: 5%;
}
.home .sec4 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 20px;
}
@media (max-width: 579px) and (min-width: 375px) {
  .home .sec4 {
    padding: 0px 9% 80px;
  }
  .home .sec4 .line {
    width: 10%;
  }
  .home .sec4 .grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .home .sec4 .line {
    width: 10%;
  }
  .home .sec4 .grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.home .sec5 {
  background-image: url("../img/prodesa-home-img-07.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 9% 55px;
}
.home .sec5 .line {
  width: 3%;
  margin-top: 1.05rem;
  background-color: var(--amarillo);
}
@media (max-width: 579px) and (min-width: 375px) {
  .home .sec5 {
    padding: 80px 9%;
  }
  .home .sec5 .line {
    width: 18%;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .home .sec5 {
    padding: 80px 9%;
  }
  .home .sec5 .line {
    width: 25%;
  }
}
.home .sec6 .line {
  width: 10%;
}
.home .sec6 a {
  font-size: 20px;
}
.home .sec6 .form {
  padding: 5%;
}
.home .sec6 .form .form-control {
  border-radius: 0px;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 20px;
  background-color: #EFEFEF;
}
.home .sec6 .form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #666;
  background-color: #EFEFEF;
}
.home .sec6 .form #mensaje {
  resize: none;
}
.home .sec6 .btn-cta {
  padding: 13px 45px;
  width: 35%;
  border: none;
}
@media (max-width: 579px) and (min-width: 375px) {
  .home .sec6 a {
    font-size: 16px;
  }
  .home .sec6 .form {
    padding: 0%;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .home .sec6 a {
    font-size: 14px;
  }
}

.contacto .sec1 {
  background-image: url("../img/contacto/prodesa-contacto-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--negro);
  padding: 50px 9%;
}
.contacto .sec1 h1 {
  font-size: 40px;
  color: var(--blanco);
}
.contacto .sec1 .line {
  width: 3%;
  background-color: var(--amarillo);
}
@media (max-width: 579px) and (min-width: 375px) {
  .contacto .sec1 {
    background-image: url("../img/contacto/prodesa-contacto-banner-res.webp");
  }
  .contacto .sec1 .line {
    width: 10%;
    margin-top: 1rem;
  }
  .contacto .sec1 .d-flex {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
  }
}
.contacto .sec2 .line {
  width: 10%;
}
.contacto .sec2 a {
  font-size: 20px;
}
.contacto .sec2 .form {
  padding: 5%;
}
.contacto .sec2 .form .form-control {
  border-radius: 0px;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 20px;
  background-color: #EFEFEF;
}
.contacto .sec2 .form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #666;
  background-color: #EFEFEF;
}
.contacto .sec2 .form #mensaje {
  resize: none;
}
.contacto .sec2 .btn-cta {
  padding: 13px 45px;
  width: 35%;
  border: none;
}
@media (max-width: 579px) and (min-width: 375px) {
  .contacto .sec2 a {
    font-size: 16px;
  }
  .contacto .sec2 .form {
    padding: 0%;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .contacto .sec2 a {
    font-size: 14px;
  }
}
.contacto .sec3 {
  background-image: url("../img/contacto/prodesa-contacto-img-01.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 9% 55px;
}
.contacto .sec3 .line {
  width: 3%;
  margin-top: 1.05rem;
  background-color: var(--amarillo);
}
@media (max-width: 579px) and (min-width: 375px) {
  .contacto .sec3 {
    background-image: url("../img/contacto/prodesa-contacto-img-01-res.webp");
    padding: 80px 9%;
  }
  .contacto .sec3 .line {
    width: 18%;
  }
}

.acerca-de .sec1 {
  background-image: url("../img/acerca-de/prodesa-acerca-banner.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--negro);
  padding: 50px 9%;
}
.acerca-de .sec1 h1 {
  font-size: 40px;
  color: var(--blanco);
}
.acerca-de .sec1 .line {
  width: 3%;
  background-color: var(--amarillo);
}
@media (max-width: 579px) and (min-width: 375px) {
  .acerca-de .sec1 {
    background-image: url("../img/acerca-de/prodesa-acerca-banner-res.webp");
  }
  .acerca-de .sec1 h1 {
    font-size: 30px;
  }
  .acerca-de .sec1 .line {
    width: 10%;
    margin-top: 1rem;
  }
  .acerca-de .sec1 .d-flex {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
  }
}
.acerca-de .sec2 .line {
  width: 10%;
  margin: 3% 0%;
}
.acerca-de .sec2 h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 4%;
}
.acerca-de .sec2 .valores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
}
.acerca-de .sec2 .valores .custom-margin {
  margin-left: 2%;
}
.acerca-de .sec2 .valores .barra {
  position: relative;
  padding: 0 15px;
}
.acerca-de .sec2 .valores .barra::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 60%;
  background-color: #ffc107;
}
.acerca-de .sec2 .valores .custom-left {
  padding-left: 0px;
}
.acerca-de .sec2 .valores .barra:last-of-type::after {
  display: none;
}
@media (max-width: 579px) and (min-width: 375px) {
  .acerca-de .sec2 .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .acerca-de .sec2 .valores .barra {
    padding: 0 12px;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .acerca-de .sec2 .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .acerca-de .sec2 .valores .barra {
    padding: 0 10px;
  }
}
.acerca-de .sec3 {
  background-color: #EEEEEE;
}
.acerca-de .sec3 .line {
  margin: 5% 0% 8%;
  background-color: white;
}
.acerca-de .sec3 .texto h4 {
  font-size: 22px;
}
.acerca-de .sec3 .texto p {
  font-size: 16px;
}
@media (max-width: 579px) and (min-width: 375px) {
  .acerca-de .sec3 {
    padding: 80px 0 0px;
  }
  .acerca-de .sec3 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0;
  }
  .acerca-de .sec3 .row .col-md-6 {
    width: 100%;
    padding: 40px 0px 0px !important;
  }
  .acerca-de .sec3 .row .col-md-6 .items {
    padding: 0 6%;
  }
  .acerca-de .sec3 .row .col-md-6 .line {
    width: 88%;
    margin: 4% auto 7%;
  }
  .acerca-de .sec3 .row .col-md-6 .imgBanner {
    padding: 0 !important;
  }
  .acerca-de .sec3 .row .col-md-6 .texto {
    padding: 1rem;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .acerca-de .sec3 {
    padding: 80px 0 0px;
  }
  .acerca-de .sec3 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0;
  }
  .acerca-de .sec3 .row .col-md-6 {
    width: 100%;
    padding: 40px 0% 0px !important;
  }
  .acerca-de .sec3 .row .col-md-6 .items {
    padding: 0 6%;
  }
  .acerca-de .sec3 .row .col-md-6 .items .iconos {
    width: 30px;
  }
  .acerca-de .sec3 .row .col-md-6 .items .texto {
    padding: 0rem;
  }
  .acerca-de .sec3 .row .col-md-6 .items .texto h4, .acerca-de .sec3 .row .col-md-6 .items .texto p {
    font-size: 14px;
  }
  .acerca-de .sec3 .row .col-md-6 .line {
    width: 88%;
    margin: 4% auto 7%;
  }
  .acerca-de .sec3 .row .col-md-6 .imgBanner {
    padding: 0px !important;
    width: 100%;
  }
}
.servicios .sec1 {
  padding: 50px 9%;
  background-image: url("../img/servicios/prodesa-servicios-banner.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--negro);
}
.servicios .sec1 h1 {
  font-size: 40px;
  color: var(--blanco);
}
.servicios .sec1 .line {
  width: 3%;
  background-color: var(--amarillo);
}
@media (max-width: 579px) and (min-width: 375px) {
  .servicios .sec1 {
    background-image: url("../img/servicios/prodesa-servicios-banner-res.webp");
  }
  .servicios .sec1 h1 {
    font-size: 30px;
  }
  .servicios .sec1 .line {
    width: 10%;
    margin-top: 1rem;
  }
  .servicios .sec1 .d-flex {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
  }
}
.servicios .sec2 h2 {
  margin: 80px 9% 0px 9%;
}
.servicios .sec2 .line {
  margin: 1% 9%;
  width: 4.5%;
}
.servicios .sec2 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1.5rem;
}
.servicios .sec2 .grid .item {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.servicios .sec2 .grid .item img {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.servicios .sec2 .grid .item .up-text {
  background-color: var(--negro);
  width: 83%;
  padding: 1.5% 5%;
  font-size: 20px;
  color: var(--blanco);
  position: absolute;
  bottom: 7%;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.servicios .sec2 .grid .item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.servicios .sec2 .grid .item:hover .up-text {
  background-color: var(--amarillo);
  color: var(--negro);
}
.servicios .sec2 .grid .item:hover img {
  -webkit-box-shadow: 0px 0px 15px -4px var(--negro);
          box-shadow: 0px 0px 15px -4px var(--negro);
}
.servicios .sec2 .glide .glide__slide {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.servicios .sec2 .glide .glide__slide img {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.servicios .sec2 .glide .glide__slide .up-text {
  background-color: var(--negro);
  width: 83%;
  padding: 1.5% 5%;
  font-size: 20px;
  color: var(--blanco);
  position: absolute;
  bottom: 7%;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.servicios .sec2 .glide .glide__slide.glide__slide--active {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.servicios .sec2 .glide .glide__slide.glide__slide--active .up-text {
  background-color: var(--amarillo);
  color: var(--negro);
}
.servicios .sec2 .glide .glide__slide.glide__slide--active img {
  -webkit-box-shadow: 0px 0px 15px -4px var(--negro);
          box-shadow: 0px 0px 15px -4px var(--negro);
}
.servicios .sec2 .glide .glide__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-radius: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.servicios .sec2 .glide .glide__arrow img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0px 0px 10px black;
          box-shadow: 0px 0px 10px black;
}
.servicios .sec2 .glide .glide__arrow--left {
  left: 0.9em;
}
.servicios .sec2 .glide .glide__arrow--right {
  right: 0.9em;
}
.servicios .sec2 .glide2 {
  position: relative;
}
.servicios .sec2 .glide2 .glide__track {
  overflow: hidden;
  padding-bottom: 60px;
}
.servicios .sec2 .glide2 .glide__slide {
  padding: 30px 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.servicios .sec2 .glide2 .glide__slide img {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.servicios .sec2 .glide2 .glide__slide .up-text {
  background-color: var(--negro);
  width: 83%;
  padding: 1.5% 5%;
  font-size: 20px;
  color: var(--blanco);
  position: absolute;
  bottom: 15%;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.servicios .sec2 .glide2 .glide__slide.glide__slide--active {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.servicios .sec2 .glide2 .glide__slide.glide__slide--active .up-text {
  background-color: var(--amarillo);
  color: var(--negro);
}
.servicios .sec2 .glide2 .glide__slide.glide__slide--active img {
  -webkit-box-shadow: 0px 0px 15px -4px var(--negro);
          box-shadow: 0px 0px 15px -4px var(--negro);
}
.servicios .sec2 .glide2 .glide__bullets {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  z-index: 20;
}
.servicios .sec2 .glide2 .glide__bullets .glide__bullet {
  width: 35px;
  height: 4px;
  background-color: var(--gris) !important;
  border-radius: 0px;
  border: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.servicios .sec2 .glide2 .glide__bullets .glide__bullet.glide__bullet--active {
  background-color: var(--amarillo) !important;
}
@media (max-width: 579px) and (min-width: 375px) {
  .servicios .sec2 {
    padding: 80px 0%;
  }
  .servicios .sec2 h2 {
    margin: 0px 9%;
  }
  .servicios .sec2 .line {
    margin: 1% 9% 2%;
    width: 10%;
  }
}
@media (max-width: 375px) and (min-width: 0) {
  .servicios .sec2 {
    padding: 60px 0px 0px;
  }
  .servicios .sec2 h2 {
    margin: 0px 9%;
  }
  .servicios .sec2 .line {
    margin: 1% 9% 2%;
    width: 10%;
  }
  .servicios .sec2 .glide .glide__slide .up-text {
    font-size: 14px;
  }
}
.servicios .sec3 {
  background-image: url("../img/servicios/prodesa-servicios-img-01.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 9% 55px;
}
.servicios .sec3 h2 {
  font-size: 30px;
}
.servicios .sec3 .line {
  width: 3%;
  margin-top: 1.05rem;
  background-color: var(--amarillo);
}
@media (max-width: 579px) and (min-width: 375px) {
  .servicios .sec3 {
    background-image: url("../img/servicios/prodesa-servicios-img-01-res.webp");
    padding: 80px 9%;
  }
  .servicios .sec3 .line {
    width: 18%;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .servicios .sec3 {
    background-image: url("../img/servicios/prodesa-servicios-img-01-res.webp");
    padding: 80px 9%;
  }
  .servicios .sec3 .line {
    width: 25%;
  }
}
.servicios .sec4 .line {
  width: 5.5%;
  margin-top: 1.05rem;
  background-color: var(--amarillo);
}
.servicios .sec4 .accordion .accordion-item {
  background-color: var(--negro, #000);
  border: none;
  margin-bottom: 10px;
}
.servicios .sec4 .accordion .accordion-item .accordion-button {
  background-color: var(--negro, #000);
  color: var(--blanco, #fff);
  font-weight: 500;
  padding: 1rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.servicios .sec4 .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
}
.servicios .sec4 .accordion .accordion-item .accordion-button:focus, .servicios .sec4 .accordion .accordion-item .accordion-button:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.servicios .sec4 .accordion .accordion-item .accordion-button .icono-acordeon {
  width: 24px;
  height: 24px;
}
.servicios .sec4 .accordion .accordion-item .accordion-button::after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("/assets/img/servicios/icono-down.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.servicios .sec4 .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("/assets/img/servicios/icono-up.webp");
}
.servicios .sec4 .accordion .accordion-item .accordion-body {
  background-color: #fff;
  color: #000;
  padding: 1rem 2.25rem;
  line-height: 1.6;
}
.servicios .sec4 .accordion .accordion-item .accordion-body ul {
  list-style: disc;
  padding-left: 1.7rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.servicios .sec4 .accordion .accordion-item .accordion-body ul li {
  font-size: 0.9rem;
  list-style-position: inside;
  margin-bottom: 10px;
}
.servicios .sec4 .accordion .accordion-item .accordion-body ul li::marker {
  font-size: 0.6rem;
  color: var(--negro);
}
@media (max-width: 579px) and (min-width: 375px) {
  .servicios .sec4 .accordion .accordion-item .accordion-body ul {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer {
  padding: 50px 9%;
}
.footer .line {
  width: 100%;
  margin: 5px 0px 10px;
}
.footer .btn-cta {
  width: 55%;
}
@media (max-width: 579px) and (min-width: 375px) {
  .footer h3 {
    font-size: 22px;
  }
  .footer .btn-cta {
    width: 40%;
    text-align: center;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .footer h3 {
    font-size: 22px;
  }
  .footer .btn-cta {
    width: 60%;
    text-align: center;
  }
}

.copyright {
  padding: 12px 9%;
  background-color: var(--gris-claro);
  color: var(--gris);
  font-size: 16px;
}
@media (max-width: 579px) and (min-width: 375px) {
  .copyright {
    font-size: 12px;
    text-align: center;
  }
}
@media (max-width: 375px) and (min-width: 0px) {
  .copyright {
    text-align: center;
    font-size: 10px;
  }
}

.desktop-item {
  display: block;
}

.mobile-item {
  display: none;
}

@media (max-width: 579px) and (min-width: 0px) {
  .desktop-item {
    display: none;
  }
  .mobile-item {
    display: block;
  }
  h1 {
    font-size: 40px;
  }
  .fs-50 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 27px;
  }
  h4 {
    font-size: 22px;
  }
}