/*///////////////////////// GENERALES /////////////////////////*/
* {
  scroll-behavior: smooth;
}
/* Fonts */
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Regular.ttf") format("ttf");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Medium.ttf") format("ttf");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Bold.ttf") format("ttf");
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: "Aeonik", sans-serif;
  color: #606060;
  line-height: 1.1 !important;
  background-color: white;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.main-wrapper,
.wrapper {
  overflow: hidden !important;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.primary {
  color: #003b6d;
}

.blue {
  color: #76b1e2;
}

.light-gray-bg {
  background-color: #f2f2f2;
}

.gray {
  color: #cccccc;
}

.gray-bg {
  background: #cccccc;
}

.orange {
  color: #ee5b29;
}

.orange-bg {
  background: #ee5b29;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-wrap {
  white-space: nowrap;
}

.underline {
  text-decoration: underline;
}

/* Scroll top */
#scrollToTopBtn {
  position: fixed;
  bottom: 14rem;
  right: 23px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  display: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

#scrollToTopBtn img {
  width: 52px;
  height: 52px;
}

#scrollToTopBtn.show {
  display: block;
  opacity: 1;
}

#scrollToTopBtn.hide {
  opacity: 0;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 35px;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none !important;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease;
  color: #fff;
  display: inline-flex;
  overflow: hidden;
}

.btn-primary {
  border: 1px solid #fff;
  color: #003b6d;
  background-color: #fff;
}

.btn-secondary {
  border: 1px solid #76b1e2;
  color: #fff;
  background-color: #76b1e2;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #fff;
  background-color: transparent;
}

.btn:hover {
  background-color: #003b6d;
  border-color: #003b6d;
  color: white;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn:hover::before {
  left: 120%;
}

/*///////////////////////// HEADER /////////////////////////*/
header {
  position: relative;
  z-index: 10;
}

.navbar-brand img {
  max-width: 350px;
  height: auto;
  transition: 0.3s;
}

.navbar-toggler {
  padding: 0;
}

/* Navegador principal */
.navbar-collapse {
  justify-content: center;
  display: flex;
}

.navbar {
  padding: 1.2rem 2rem;
  width: 100%;
  background: transparent;
}

.custom-nav {
  justify-content: end;
  width: 100%;
  align-items: center;
}

.nav-link {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  position: relative;
  padding: 6px 0px 6px 0 !important;
}

.nav-btn {
  font-size: 20px;
  background-color: #ee5b29;
  padding: 8px 16px 10px 16px;
  border-radius: 35px;
  font-weight: 400;
  color: #ffffff !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  text-decoration: none !important;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease;
  display: inline-flex;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.nav-btn:hover::before {
  left: 120%;
}

.nav-btn:hover {
  background-color: #c93d0e;
}

.nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0rem;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  right: auto;
  margin: 0 auto;
  position: absolute;
  background: #ffffff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover:after {
  width: 30px;
}

.nav-item.active .nav-link {
  font-weight: 600;
}

.nav-item.active .nav-link::after {
  width: 30px;
}

/* Bs nav para el menú mobile */
.bsnav-mobile .navbar {
  left: 0 !important;
  color: #fff !important;
  transform: translate3d(-300px, 0, 0) !important;
  width: 80%;
  max-width: 300px;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar.bsnav-dark {
  background: #ffffff !important;
  color: #003e51 !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  background: #003b6d;
  padding: 1.2rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-brand img {
  max-width: 220px;
  height: auto;
  transition: 0.3s;
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in
  .navbar-toggler
  .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-slide.sticked.in
  .navbar-toggler
  .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-slide.sticked.in
  .navbar-toggler
  .navbar-toggler-icon::before {
  background-color: #ffffff;
}

/*//////////////////////// MAIN-HERO ////////////////////////////*/
.top-overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 0) 84%
  );
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  opacity: 0.4;
  top: 0;
  z-index: 1;
}

.main-section {
  height: 100vh;
  position: relative;
  line-height: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-title {
  position: absolute;
  text-align: center;
  margin: auto;
  z-index: 5;
  color: white;
  width: 85%;
  left: 0;
  right: 0;
  top: 40%;
  bottom: auto;
}

.main-title h2 {
  font-size: 65px;
  line-height: 1;
}

.main-section .carousel {
  height: 100vh;
}

.main-section .carousel-inner {
  height: 100%;
}

.main-section .carousel-item,
.main-section .carousel-item.active {
  height: 100%;
}

.main-section .carousel-item img,
.main-section .carousel-item.active img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  margin: 0 auto;
  align-items: center;
  z-index: 5;
}

.carousel-indicators li {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  margin-left: 4px;
  background-color: transparent;
  border: 2px solid white;
  opacity: 1;
  transition: all 0.6s ease;
  border-radius: 50%;
  background-clip: border-box;
}

.carousel-indicators li.active {
  background-color: white;
}

/*///////////////////////// animation zoom /////////////////////////*/
.animaZoom {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.infinite-zoom {
  -webkit-animation: zoomSlow 35s infinite linear;
  -moz-animation: zoomSlow 35s infinite linear;
  animation: zoomSlow 35s infinite linear;
}

@-webkit-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*///////////////////////// Text block //////////////////////////*/
.text-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 9rem 0;
}

.text-block-about {
  background-image: url(../images/bg-bloque1.jpg);
  font-size: 36px;
  scroll-margin-top: 5rem;
}

/*///////////////////////// Timeline //////////////////////////*/
.time-line {
  padding: 6rem 0;
  position: relative;
}

/* Swipper */
.time-line-container {
  color: #003b6d;
  padding: 1rem;
  border-radius: 20px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  text-align: center;
}

.time-line-year {
  position: absolute;
  top: -6rem;
  line-height: 1;
  color: #003b6d;
  opacity: 1;
  font-size: 26px;
  font-weight: 500;
  transition: 0.3s;
}

.time-line-container:hover .time-line-year {
  color: #004ea2;
  font-size: 30px;
  font-weight: 600;
}

.time-line-dot {
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  transition: 0.3s;
  border: 6px solid #76b1e2;
  border-radius: 50%;
  position: absolute;
  top: -3rem;
  z-index: 10;
}

.time-line-container:hover .time-line-dot {
  background-color: #fff;
  border: 6px solid #003b6d;
}

.timeline-content img {
  width: 100%;
  height: 170px;
  border-radius: 20px;
  margin-bottom: 1rem;
  object-fit: cover;
  opacity: 0.5;
  transition: 0.3s;
}

.timeline-content p {
  font-size: 22px;
}

.time-line-container:hover .timeline-content img {
  opacity: 1;
}

.gallerySlider {
  margin-top: 7rem;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.gallerySlider__swiper {
  overflow: visible;
  margin-left: -12px;
  margin-right: -12px;
}

.slider-container-hidden {
  overflow-x: clip;
  display: flex;
}

.gallerySlider__slider {
  position: relative;
  flex: 0 0 20%;
  max-width: 18%;
}

.gallerySlider__nav {
  margin-top: 0px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gallerySlider__navProgress {
  height: 5px;
  position: relative;
  flex: 1;
  background-color: #76b1e2;
}

.gallerySlider .swiper-pagination-progressbar-fill {
  background-color: #76b1e2;
}

.gallerySlider__navProgress::before {
  content: "";
  height: 5px;
  width: 3000px;
  background-color: #76b1e2;
  position: absolute;
  left: -3000px;
  z-index: 100;
}
/* Fin swipper */

.swipe-icon {
  width: 55px;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}

.slide-left {
  -webkit-animation: slide-left 0.6s 1s infinite alternate both;
  animation: slide-left 0.6s 1s infinite alternate both;
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

/*///////////////////////// Text block soluciones //////////////////////////*/
.text-block-lg {
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-block-lg h2 {
  font-size: 56px;
  line-height: 1;
}

.text-block-solutions {
  background-image: url(../images/bg-desafio.jpg);
}

.solutions {
  padding: 2rem 0 6rem 0;
}

.solutions-icon-container {
  text-align: center;
  width: 132px;
  display: block;
  margin: auto;
}

.solutions-icon-container img {
  width: 120px;
  height: 120px;
  margin-bottom: 0.8rem;
}

.solutions-icon-container p {
  font-size: 18px;
}

.social-media-container {
  display: flex;
}

.social-media {
  display: block;
  margin: 0 0.8rem 0 0;
  border-radius: 50%;
  transition: 0.3s;
}

.social-media img {
  width: 42px;
  height: 42px;
}

.social-media-w img {
  filter: contrast(0) brightness(10);
}

.social-media:hover {
  transform: scale(1.1);
}

/* Animación infinita */
.infinite-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  color: #545759;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  font-size: 44px;
  text-transform: uppercase;
}

.infinite-text {
  display: inline-block;
  animation: scroll-left 10s linear infinite;
  width: 100%;
}

.infinite-text span {
  display: inline-block;
  padding: 0 15px;
}

/* Animación */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
.infinite-wrapper:before,
.infinite-wrapper:after{
  content:"";
  position:absolute;
  top:0;
  width:250px;
  height:100%;
  z-index:2;
}
.infinite-wrapper:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), #cccccc);
}
.infinite-wrapper:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), #cccccc);
}
#store .infinite-wrapper:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), #ee5b29);
}
#store .infinite-wrapper:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), #ee5b29);
}
#design .infinite-wrapper:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), #f2f2f2);
}
#design .infinite-wrapper:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), #f2f2f2);
}
/*///////////////////////// Text block store //////////////////////////*/
.text-block-store {
  background-image: url(../images/bg-store.jpg);
}

.store {
  padding: 2rem 0 6rem 0;
}

.store-carousel-container {
  background-color: white;
  border-radius: 40px;
  padding: 1rem;
  height: auto;
}

#storeCarousel .f-carousel__slide {
  width: 26%;
  padding: 1rem;
  text-align: center;
}
#storeCarousel .f-carousel__slide img{
  max-width: 120px;
}

/*///////////////////////// Text block diseño //////////////////////////*/
.text-block-design {
  background-image: url(../images/bg-diseno.jpg);
}

.design {
  padding: 2rem 0 6rem 0;
}

/*///////////////////////// Foldin //////////////////////////*/
.foldin {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0 12rem 0;
  display: flex;
  align-items: end;
  background-image: url(../images/bg-foldin.jpg);
  background-attachment: fixed;
  min-height: 700px;
}

.foldin-logo {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-bottom: 1rem;
  display: block;
}

/*///////////////////////// Lideres //////////////////////////*/
.leaders {
  padding: 6rem 0;
  background-image: url(../images/bg-lideres.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#leadersCarousel .f-carousel__slide {
  width: 25%;
  color: white;
}

.leader-container {
  padding: 0.5rem;
}

.leader-container img {
  margin-bottom: 1rem;
  transition: 0.3s;
  height: 270px;
  width: 100%;
  object-fit: cover;
}

.leader-container img:hover {
  filter: brightness(1.2);
}

#leadersCarousel .f-button.is-prev,
#leadersCarousel .f-button.is-next {
  top: 40%;
  transform: translateY(-50%);
  color: white;
  transition: 0.3s;
}

#leadersCarousel .f-button.is-prev:hover,
#leadersCarousel .f-button.is-next:hover {
  color: #ee5b29;
}

#leadersCarousel .f-button.is-next {
  right: -45px;
}

#leadersCarousel .f-button.is-prev {
  left: -45px;
}

.deco-pellacani {
  width: 100%;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  background: #4d4d4d;
  padding: 5rem 0 3rem 0;
  color: #cccccc;
}

footer p,
footer a {
  font-size: 22px;
  font-weight: 400;
  transition: 0.3s;
  color: #cccccc;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact img {
  width: 42px;
  margin-right: 0.6rem;
}

.footer-contact a:hover {
  margin-left: 5px;
  color: #cccccc;
}

.social-media-g img {
  filter: grayscale(1) brightness(4);
}

.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid white;
  background-color: transparent;
  font-size: 20px;
  color: white;
}

.form-control:focus {
  box-shadow: none;
  background-color: transparent;
  border-color: #003b6d;
  color: white;
}

.form-control::placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

.form-btn {
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid white;
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: 0.3s;
}

.form-btn:hover {
  background-color: white;
  color: #003b6d;
}

/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1440px) {
  .timeline-content img {
    height: 115px;
  }
}

@media (max-width: 1200px) {
  .navbar-brand img {
    max-width: 310px;
  }
  .timeline-content img {
    height: 105px;
  }
}

@media (max-width: 1024px) {
  .navbar-brand img {
    max-width: 275px;
  }

  .nav-link {
    font-size: 18px;
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .solutions-icon-container {
    margin: 0 0.5rem;
  }

  .foldin {
    min-height: 620px;
  }
}

@media (max-width: 768px) {
  .navbar {
    align-items: center;
  }
  .timeline-content img {
    height: 135px;
  }
  .bsnav-mobile .navbar-nav {
    padding: 30px;
  }
  .infinite-wrapper:before,
  .infinite-wrapper:after{
    width:60px;
  }
  .nav-link {
    color: #003b6d !important;
    font-weight: 400;
    font-size: 18px;
    padding: 6px 0 12px 0;
  }

  .bsnav-mobile .navbar-nav .nav-item .nav-link {
    margin: 0;
    margin-bottom: 0.6rem;
  }

  .nav-btn {
    margin-top: 1rem;
  }

  .main-title h2 {
    font-size: 55px;
  }

  .gallerySlider__slider {
    position: relative;
    flex: 0 0 65%;
    max-width: 65%;
  }

  .text-block-about {
    font-size: 32px;
  }

  .text-block-lg {
    min-height: 700px;
  }

  .text-block-lg h2 {
    font-size: 46px;
  }

  #storeCarousel .f-carousel__slide {
    width: 50%;
  }

  .foldin {
    padding: 6rem 0;
    background-position-x: 25%;
  }

  #leadersCarousel .f-carousel__slide {
    width: 33.3%;
  }

  #leadersCarousel .f-carousel__nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }

  #leadersCarousel .f-button.is-prev,
  #leadersCarousel .f-button.is-next {
    position: relative;
    transform: none;
    margin: 0 0.5rem;
  }

  #leadersCarousel .f-button.is-next {
    right: 0px;
  }

  #leadersCarousel .f-button.is-prev {
    left: 0px;
  }
}

@media (max-width: 525px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1rem;
  }
  .navbar-brand img {
    max-width: 250px;
  }
  .bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-brand img {
    max-width: 200px;
  }

  .carousel-indicators {
    bottom: 4rem;
  }

  .main-title {
    top: 35%;
  }

  .main-title h2 {
    font-size: 50px;
  }

  .gallerySlider__slider {
    position: relative;
    flex: 0 0 70%;
    max-width: 70%;
  }

  .text-block-about {
    font-size: 26px;
  }

  .text-block-lg {
    min-height: 500px;
    padding: 2rem 0;
  }
  .design,
  .store,
  .solutions {
    scroll-margin-top: 4rem;
  }

  .text-block-lg h2 {
    font-size: 36px;
  }

  .solutions-icon-container {
    margin: 0 auto;
  }

  .infinite-wrapper {
    font-size: 32px;
  }

  .infinite-text {
    animation: scroll-left 2.5s linear infinite;
  }

  .store-carousel-container {
    height: auto;
  }

  #storeCarousel .f-carousel__slide {
    width: 50%;
  }

  #leadersCarousel .f-carousel__slide {
    width: 80%;
  }

  .form-group {
    width: 100%;
  }

  .form-btn {
    margin-left: auto;
  }

  footer a {
    font-size: 21px;
  }

  footer p {
    font-size: 18px;
  }
}

@media (max-width: 376px) {
  .navbar-brand img,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-brand img {
    max-width: 200px;
  }
}
