body {
  font-family: 'MyriadPro', sans-serif;
}

/************/
/*** MENU ***/
/************/
header {
    width: 100%;
}

header,
header .content-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
}

header .content-menu {
    width: min(1200px, 86%);
    margin: auto;
}

header .menu-options {
    display: flex;
    justify-content: space-between;
    width: 67%;
}

header .menu-options .menu-option {
    margin-left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}


header .menu-mobile {
    display: none;
}

header .menu-mobile {
  display: none;
}

@media (max-width: 1024px) {
    header .menu-options {
        display: none;
    }
    
    header .menu-mobile {
        display: block;
        justify-self: end;
    }
}

.main-menu .content-menu .menu-mobile .menu-mobile-toggle > svg {
    fill: black;
}

header .menu-mobile .menu-mobile-content {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: end;

  background-color: #00000060;

  opacity: 0;
  pointer-events: none;

  transform: translateX(100%);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

header .menu-mobile .menu-mobile-content.active {
  opacity: 1;
  pointer-events: all;

  transform: translateX(0);
  z-index: 5000;
}

header .menu-mobile .menu-mobile-content .menu {
  padding-left: 30px;
  background-color: #ffffff;
  width: 210px;
  z-index: 1;
}

header .menu-mobile .menu-mobile-content .menu>li {
  margin: 20px 0px;
}

/************/
/** BANNER **/
/************/

#hero {
  background-image: url(./assets/page-3/images/main-banner-sectors.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: calc(100vh - 0px);
  z-index: 2;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  z-index: 0;
}

#hero .hero-content {
  width: min(700px, 80%);
  margin-left: 80px;
  z-index: 2;
}

#hero .hero-content>* {
  color: white;
}

#hero .hero-content>h1 {
  font-size: 30px;
  margin: 20px 0;
}

#hero .hero-content>.description-hero {
  font-size: 15px;
  color: rgb(190, 190, 190);
}

#hero .hero-content>button {
  background-color: #e60814;
  padding: 14px 16px;
  border: none;
  margin-top: 80px;

  display: flex;
  gap: 6px;
}

@media(max-width: 1024px) {
  #hero .hero-content {
    margin-left: 0px;
    margin: auto;
  }
}

/**************************/
/**-- ===== ORIGIN ===== **/
/**************************/

.margin-page {
  width: min(1440px, 90%);
  margin: 0 auto;
}

.section--about {
  padding: 60px 0px;
  position: relative;
}

.section--about>.about-content {
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section--about>.about-content>p {
  margin: 8px 0px 3px;
  line-height: 2.1;
  font-size: 22px;
}

.design-box {
  width: 15px;
  height: 30px;
  background-color: red;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
}

.design-box.design-box-top {
  justify-self: flex-start;
  align-self: flex-start;
}

.design-box.design-box-bottom {
  justify-self: flex-end;
  align-self: flex-end;
  transform: rotate(180deg);
}

.section--about .container-btn-sectors {
    gap: 14px;
    margin: 40px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.section--about .container-btn-sectors .btn-sector {
  border: 2px solid #e60814;
  border-radius: 100px;
  width: 420px;
  height: 70px;
  padding: 16px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: clamp(16px, 1.3vw, 20px);
  cursor: pointer;
  transition: all .2s ease;
}

.section--about .container-btn-sectors .btn-sector:hover {
  color: white;
  background-color: #e60814;
}

.section--about .container-btn-sectors .btn-sector>span {
  width: 85%;
  font-size: 20px;
}

.section--about .container-btn-sectors .btn-sector>svg {
  width: 32px !important;
  height: 27px;
}

.section--about .container-btn-sectors .btn-sector>svg>g {
  fill: #e60814 !important;
}

.section--about .container-btn-sectors .btn-sector:hover>svg>g {
  fill: white !important;
}

@media(max-width: 1024px) {
    .section--about .container-btn-sectors .btn-sector {
        width: min(420px, 80%);
    }
}

/*************************************************/
/************** Efecto Store telling *************/
/*************************************************/

.store-telling {

  height: 500vh;
  position: relative;

}

.store-telling .sticky-card {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  margin: auto;
  border-radius: 0px;
  background: #d1d1d1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition:
    border-radius .4s;
}

.store-telling .slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.store-telling .slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(80px);
  transition: .5s;
  padding: 30px 50px
}

.store-telling .slide.active {
  opacity: 1;
  transform: none;
}

.store-telling .slide h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.store-telling .slide > *:not(.mask) {
  z-index: 3;
  width: 60%;
}

.store-telling
:is(
  .slide.aerospace-slide,
  .slide.automotive-slide
)
.mask {
  background: linear-gradient(90deg, rgba(60, 0, 3, 0.85) 0%, rgba(60, 0, 3, 0.85) 45%, transparent 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 1
}

.store-telling
:is(
  .slide.manufacture-slide,
  .slide.logistics-and-distribution-center-slide
)
.mask {
  background: linear-gradient(90deg, rgba(22, 22, 22, 0.9) 0%, rgba(22, 22, 22, 0.9) 45%, transparent 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 1
}

.store-telling .slide p {
  font-size: 15px;
}

.store-telling .slide .mini-galery {
  margin: 60px 0px 20px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.store-telling .slide .mini-galery .image-complete {
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-telling .slide .mini-galery .image-complete img {
  width: 100%;
}

.store-telling .slide.automotive-slide {
  background: url(./assets/page-3/images/automotriz/automotriz.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.manufacture-slide {
  background: url(./assets/page-3/images/manufactura-industrial/manufactura-industrial.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.aerospace-slide {
  background: url(./assets/page-3/images/aeroespacial/aeroespacial.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.logistics-and-distribution-center-slide {
  background: url(./assets/page-3/images/logistica/logistica-y-centros-de-distribucion.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media(max-width: 768px) {
  .store-telling .slide {
    padding: 20px 20px;
  }

  .store-telling
  :is(
    .slide.aerospace-slide,
    .slide.automotive-slide
  )
  .mask {
    background: rgba(60, 0, 3, 0.4);
  }

  .store-telling
  :is(
    .slide.manufacture-slide,
    .slide.logistics-and-distribution-center-slide
  )
  .mask {
    background: rgba(22, 22, 22, 0.5);
  }

  .store-telling .slide > *:not(.mask) {
    width: 100%;
  }

  .store-telling .slide p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .store-telling .slide .mini-galery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    place-items: center;
  }
  
  
  .store-telling .slide .mini-galery .image-complete {
      width: 100px;
  }
}


/************************************/
/**************** CTA ***************/
/************************************/
.cta {
  background: url(./assets/banner-cta.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  min-height: 400px;
  margin: 80px 0px;
  display: grid;
  position: relative;
  z-index: 3;
}

.cta::after {
  content: '';
  background: linear-gradient(90deg, rgba(230, 8, 20, .5) 0%, transparent 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta .container-cta {
  width: min(1440px, 90%);
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
}

.cta .container-cta>* {
  color: white;
}

.cta .container-cta>h2 {
  font-size: 30px;
}

.cta .container-cta>p {
  width: 50%;
}

.cta .container-cta>button {
  background-color: #e60814;
  padding: 14px 16px;
  border: none;
  margin-top: 20px;
  display: flex;
  gap: 6px;
  height: 40px;
  align-items: center;
  color: white;
  width: min(230PX, 70%);
  align-self: flex-end;
}

@media(max-width: 500px) {
    .cta .container-cta>p {
        width: 100%;
    }
    
    .cta .container-cta {
        padding: 20px;
    }
    
    .cta .container-cta>button {
        width: 100%;
        height: 42px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/****************************************/
/***************** FOOTER ***************/
/****************************************/
footer {
  display: grid;
  place-items: center;
}

footer .content-footer {
  width: min(1100px, 100%);
  margin: auto;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}

footer .content-footer :is(.container-image, .options) {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

footer .content-footer .container-image {
  gap: 0px;
}

footer .content-footer .container-image span {
  margin: auto;
  margin-top: -8px;
  font-size: clamp(12px, 3vw, 18px);
}

footer .note-footer {
  margin: 40px 0px;
}

footer .line {
  width: 80%;
  height: 1px;
  background: #e60814;
  margin: 40px 0px;
}

@media(max-width: 1024px) {
  footer .content-footer .container-image {
    width: 90%;
    margin: auto
  }
  
  footer .content-footer .container-image span {
    width: 80%;
    margin-top: 10px;
    text-align: center;
  }

  footer .note-footer {
    width: 80%;
    font-size: clamp(18px, 4vw, 24px);
  }
  
  footer .note-footer {
    margin: 0px 0px 30px 0px;
  }
}