:root {
  --ac-blue: #2157db;
  --ac-orange: #f2733b;
  --ac-green: #a5bc00;
  --ac-gray: #f2e7f0;
  --ac-pink: #f7d9d5;
  --ac-light-pink: #fcf2fa;
  --ac-bg-gray: #f5eeee;
}
* {
  margin: 0;
}
html {
  font-size: 20px;
  background-color: var(--ac-light-pink);
}
.bg-ac-light-pink {
  background-color: var(--ac-light-pink);
}
.bg-ac-pink {
  background-color: var(--ac-pink);
}
.bg-ac-gray {
  background-color: var(--ac-gray);
}
.bg-ac-orange {
  background-color: var(--ac-orange);
}
.bg-ac-blue {
  background-color: var(--ac-blue);
}
.bg-ac-green {
  background-color: var(--ac-green);
}
body {
  font-family: Helvetica, sans-serif;
  transition: 0.3s;
  color: var(--ac-blue);
  background-color: transparent !important;
}
.hidden {
  overflow: hidden;
}
.preloader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #dcdcdc;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}
.preloader-animation {
  position: relative;
  width: 60px;
  height: 60px;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: solid 4px transparent;
  border-top-color: #2157db;
  border-left-color: #2157db;
  border-radius: 50%;
  animation: loader 1.2s linear infinite;
}
.loader2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: solid 4px transparent;
  border-top-color: #f2733b;
  border-left-color: #f2733b;
  border-radius: 50%;
  animation: loader2 1.2s linear infinite;
}
@keyframes loader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loader2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.btn-ac {
  will-change: transform;
  background: transparent;
  min-width: 150px;
  font-size: 0.8rem;
  border-radius: 20px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.btn-ac-first {
  color: var(--ac-light-pink);
  background-color: var(--ac-orange);
  font-size: 1.2rem;
  padding: 0.3rem;
  width: 200px;
}

.btn-ac-first:hover {
  color: var(--ac-light-pink);
  background-color: #c05324;
}
.btn-ac:focus {
  box-shadow: none;
  transform: translate(2px, 2px);
}
.btn-ac-white {
  color: var(--ac-light-pink);
  border: 1px solid var(--ac-light-pink);
}
.btn-ac-about {
  background-color: var(--ac-orange);
  border-radius: 20px 20px 0 20px;
  color: var(--ac-light-pink);
  width: fit-content;
  align-self: flex-end;
}
.btn-ac-about-container {
  align-self: flex-end;
  position: relative;
}
.border-blue {
  width: fit-content;
  margin-bottom: 1rem;
  border-bottom: solid 1px #2157db;
}

/* Header */

.nav-bar {
  width: 100%;
  position: fixed;
  z-index: 999;
  color: var(--ac-light-pink);
  transition: 0.2s linear;
  overflow: hidden;
}
.nav-colored {
  background-color: var(--ac-blue);
  color: var(--ac-light-pink);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.26);
  transition-duration: 0.3s;
}
.nav-transparent {
  background-color: transparent;
}
.header__text-logo {
  display: none;
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1001;
}
.nav-bar a {
  color: var(--ac-light-pink);
  text-decoration: none;
  z-index: 1001;
}
.nav-bar-logo {
  margin-right: 0.5rem;
  width: 40px;
  z-index: 1001;
}
.container-red {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 80px;
}
.wrapper {
  will-change: transform;
  position: fixed;
  top: 0;
  z-index: 1000;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: var(--ac-light-pink);
  color: blue;
  transition: all 0.6s ease-in-out;
  transform: translateY(100%);
}
.wrapper-header {
  width: 100%;
  height: 80px;
  background-color: var(--ac-blue);
}
.showNav {
  transform: translateY(0);
}
.menu-btn {
  position: fixed;
  margin-top: 0.8rem;
  z-index: 1001;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.menu-btn:focus {
  box-shadow: none;
}
.menu-btn-ham1,
.menu-btn-ham2,
.menu-btn-ham3 {
  background-color: var(--ac-light-pink);
  position: absolute;
  top: calc(50% - 1px);
  left: 30%;
  width: 40%;
  height: 3px;
  margin-bottom: 1px;
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-btn-ham1 {
  transform: translateY(-8px);
}
.menu-btn-ham3 {
  transform: translateY(8px);
}

.close {
  z-index: 1001;
  width: 50px;
  height: 50px;
  pointer-events: none;
  transition: background-color 0.6s;
}
/* closing animation */
.closeBtn2 {
  transform: scaleX(0);
}
.closeBtn1 {
  transform: rotate(45deg);
}
.closeBtn3 {
  transform: rotate(-45deg);
}
.nav-bar__header {
  background-color: var(--ac-blue);
  color: var(--ac-light-pink);
  font-size: 1.5rem;
  padding: 0 0 0.5rem 0;
}
.nav-bar__header img {
  will-change: transform;
  width: 4rem;
  margin-bottom: 1rem;
  background-image: url(../assets/bg1.png);
  animation: boat 5s;
  animation-iteration-count: infinite;
}
@keyframes boat {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(-5deg);
  }
}
.nav-bar-menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  height: 100%;
  list-style: none;
  opacity: 0;
  transform: translateX(-250px);
  transition: all 0.6s ease-in-out;
  transition-delay: 0.2s;
}
.wrapper ul li {
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.wrapper ul li a {
  text-decoration: none;
  font-size: 2rem;
  color: var(--ac-blue);
}
.wrapper ul li a:hover {
  text-decoration: underline 2px var(--ac-blue);
}
.showMenuLink {
  opacity: 1;
  transform: translateX(0px);
}
.nav-bar-menu-link .bonus {
  color: var(--ac-orange);
}
.nav-bar-menu__logo {
  width: 80%;
  padding: 1rem 0;
  text-align: center;
}
.nav-bar-menu__logo img {
  width: 2rem;
}
/* Hero */
#Hero {
  overflow: hidden;
}
#carouselExampleFade {
  position: relative;
}
#Hero .carousel-inner .carousel-item img {
  object-fit: cover;
  max-width: 575px;
  height: 90vh;
  max-height: 800px;
  filter: grayscale(40%);
}
#carouselExampleFade .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--ac-light-pink);
  z-index: 1;
}

/* Hero text animation */
.Iam {
  position: relative;
  margin-bottom: 20px;
}
.Iam h1 {
  margin: 0;
}
.Iam .container-innerIam {
  float: left;
  overflow: hidden;
  position: relative;
  height: calc(1.375rem + 1.5vw);
}
.Iam .innerIam {
  will-change: transform;
  display: inline-block;
  position: relative;
  flex-wrap: nowrap;
  top: 0;
  left: 0;
  font-size: calc(1.375rem + 1.5vw);
  line-height: calc(1.375rem + 1.5vw);
  text-decoration: underline 2px;
  /*animation*/
  animation: move 6s;
  /*animation-iteration-count*/
  animation-iteration-count: infinite;
  /*animation-delay*/
  animation-delay: 1s;
}
@keyframes move {
  0% {
    top: 0px;
  }
  5% {
    top: 0px;
  }
  25% {
    top: -100%;
  }
  30% {
    top: -100%;
  }
  50% {
    top: -200%;
  }
  55% {
    top: -200%;
  }
  75% {
    top: -300%;
  }
  80% {
    top: -300%;
  }
}
/* Hero icons animation */
.hero-icons {
  position: relative;
  height: 150px;
}
.hero-icons__container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background-color: var(--ac-orange);
  z-index: 0;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.hero-icons__container img {
  width: 60%;
}
.hero-icons_four {
  will-change: transform;
  animation: move-icon 6s;
  animation-iteration-count: infinite;
}
.hero-icons_three {
  will-change: transform;
  animation: move-icon 6s;
  animation-iteration-count: infinite;
  animation-delay: 1.5s;
}
.hero-icons_two {
  will-change: transform;
  animation: move-icon 6s;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}
.hero-icons_one {
  will-change: transform;
  animation: move-icon 6s;
  animation-iteration-count: infinite;
  animation-delay: 4.5s;
}

@keyframes move-icon {
  0% {
    transform: translateX(0);
    z-index: 0;
  }
  5% {
    z-index: 1;
  }
  20% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(100%);
    z-index: 1;
    opacity: 1;
  }
  35% {
    transform: translateX(100%);
    z-index: 0;
  }
  50% {
    transform: translateX(0%);
    z-index: 0;
    opacity: 0;
  }
  90% {
    transform: translateX(0);
    z-index: 0;
    opacity: 0;
  }
}
/* @keyframes move-icon2 {
  0% {
    transform: translatey(50%) rotateX(-90deg);
    z-index: 1;
  }

  25% {
    transform: translateY(0%) rotateX(0deg);
    opacity: 1;
    z-index: 1;
    background-color: #f2733b;
  }
  50% {
    transform: translateY(-50%) rotateX(90deg);
    background-color: #a34e2a;
    opacity: 1;
  }
  75% {
    z-index: 0;
    opacity: 0;
    transform: translateY(0%) rotateX(0deg);
  }
  100% {
    transform: translatey(50%) rotateX(-90deg);
  }
} */
/* Marquee */
#MarqueeOne {
  background-color: var(--ac-blue);
}
.marquee {
  background-color: var(--ac-blue);
  color: var(--ac-light-pink);
  height: 1rem;
  font-size: 0.8rem;
}

.prueba {
  width: 200px;
  height: 200px;
  background-color: red;
}
/* BG-IMG */
.bg1 {
  background-image: url(../assets/bg1.png);
}
.bg2 {
  background-image: url(../assets/bg2.png);
  background-repeat: repeat;
  background-size: 150%;
}

/* Services */
#Services {
  overflow: hidden;
}
.siemprelistas .title {
  text-transform: uppercase;
  text-decoration: underline 2px;
  margin: 0;
}
.service-item {
  will-change: transform;
  display: flex;
  flex-wrap: wrap;
  /* width: 300px; */
  min-width: 270px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.service-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  min-height: 80px;
}
.service-item .icon img {
  width: 80px;
}
.service-item .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  max-width: 160px;
  padding: 0 1rem 0 1rem;
}
.service-item .title {
  margin: 0;
}
.service-item .section-text {
  display: block;
  color: var(--ac-orange);
}
.service-item .section-text:hover {
  color: #2157db;
}
.section-title {
  width: fit-content;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0;
}
.section-subtitle {
  display: flex;
  width: fit-content;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2rem;
}
.section-text {
  font-size: 0.8rem;
}
.section-text span {
  font-weight: 700;
}
.services-col-two {
  display: none;
}
.carousel-big-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  height: 800px;
  transform-style: preserve-3d;
}
#carousel {
  will-change: transform;
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}
.pack-container {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  min-width: 250px;
  height: 450px;
  color: var(--ac-light-pink);
  font-size: 0.8rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  cursor: pointer;
}
.pack-card {
  padding: 0.5rem;
  text-align: center;
  background-color: var(--ac-light-pink);
  color: #f2733b;
}
.pack-services-container {
  display: flex;
  height: 200px;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}
.pack-services {
  justify-content: space-between;
  border-bottom: 1px solid var(--ac-light-pink);
  margin-bottom: 0.5rem;
}
.pack-services p {
  margin-bottom: 0;
}
.yes {
  display: flex;
}
.none {
  display: none;
}
.btn-pack {
  position: absolute;
  bottom: 1rem;
  background-color: transparent;
  width: 75%;
  color: #fcf2fa;
  border: 1px solid var(--ac-light-pink);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.input-margin-start {
  margin: 0 0 0 40%;
}
#pack1:checked ~ #carousel #item4,
#pack2:checked ~ #carousel #item1,
#pack3:checked ~ #carousel #item2,
#pack4:checked ~ #carousel #item3 {
  transform: translatex(-40%) scale(0.8);
  opacity: 0.7;
  z-index: 0;
}
#pack1:checked ~ #carousel #item2,
#pack2:checked ~ #carousel #item3,
#pack3:checked ~ #carousel #item4,
#pack4:checked ~ #carousel #item1 {
  transform: translatex(40%) scale(0.8);
  opacity: 0.7;
  z-index: 0;
}
#pack1:checked ~ #carousel #item1,
#pack2:checked ~ #carousel #item2,
#pack3:checked ~ #carousel #item3,
#pack4:checked ~ #carousel #item4 {
  transform: translatex(0) scale(1);
  opacity: 1;
  z-index: 1;
}
#pack1:checked ~ #carousel #item3,
#pack2:checked ~ #carousel #item4,
#pack3:checked ~ #carousel #item1,
#pack4:checked ~ #carousel #item2 {
  transform: translatex(0) scale(0);
  opacity: 1;
  z-index: -1;
}
/* About */
.about-title {
  text-decoration: none;
}
.new-about__wrapper {
  display: grid;
}
.new-about__imgOne,
.new-about__imgTwo {
  width: 100%;
  height: 30vh;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.new-about__imgOne {
  background-image: url(../assets/wrapper-gridOne.jpg);
}
.new-about__imgTwo {
  background-image: url(../assets/wrapper-gridTwo.jpg);
}
.new-about__imgThree {
  width: 100%;
  height: 60vh;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-image: url(../assets/wrapper-gridThree.jpg);
}
.new-about__text-big-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.new-about__text-container {
  background-color: var(--ac-light-pink);
  color: var(--ac-orange);
  text-align: center;
  padding: 2rem;
}

/* Clients */
.clients {
  width: 100%;
  /* background-color: #f2f2f2; */
  padding: 2rem 0;
  overflow: hidden;
}
/* .clients__slider-inner {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(7, 1fr);
  overflow: scroll;
  transition: ease-in-out;
}
.clients__logo-container {
  width: 30%;
  margin: 0 1rem;
  min-width: 80px;
}
.clients__logo-img {
  width: 100%;
} */
.clients__video {
  width: 100%;
  min-width: 500px;
}

/* Gallery */
.gallery {
  position: relative;
  padding: 5rem 0.5rem 2rem 0.5rem;
  background: var(--ac-orange);
  background-image: url(../assets/bg-orange.png);
  background-position: bottom;
}
.gallery .container {
  position: relative;
}
.gallery__title-container {
  position: absolute;
  width: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 1rem;
  z-index: 2;
}
.gallery__title-img {
  width: 150px;
}
/* .slider {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.swiper-wrapper{
  will-change: contents;
  transform: translate3d(0px, 0px, 0px);
  transition-duration: 0ms;
}
.slider-inner {
  position: absolute;
  left: -120px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  pointer-events: none;
  transition: 0s ease-in;
}
.slider__card-container {
  position: relative;
  width: 300px;
  max-height: 200px;
  overflow: hidden;
} */
.slider__img {
  /* width: 300px; */
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.slider__info-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
  overflow: hidden;
}
.slider__info-fill {
  position: absolute;
  background-color: #2156db6c;
  right: -50%;
  bottom: -20%;
  opacity: 0;
  width: 100%;
  height: 30%;
  padding: 0.5rem 1rem;
  transition: 0.4s;
  cursor: pointer;
}
.slider__info-fill:hover {
  transform: translate(-50%, -20%);
  opacity: 1;
}
.slider__info-fill p {
  font-size: 0.6rem;
  color: var(--ac-light-pink);
}
.slider__info-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 18px;
  opacity: 0.8;
}

/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
  cursor: grab;
}
.swiper:active {
  cursor: grabbing;
}
.swiper-slide {
  /* max-height: 200px; */
  /* min-width: 300px !important; */

  width: fit-content;
  height: 300px;
  font-size: 18px;
  background: #fff;
  display: flex;
}
.swiper-slide .slider__img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.swiper-pagination{
  margin-top: 2rem;
  position: inherit;
}
.swiper-pagination-bullet{
  background-color: #2157db;
}
/* Contact */
#Contact a {
  color: #f2733b;
}
.btn-back{
  color: #2157db;
}
/* Footer */
.footer {
  color: var(--ac-light-pink);
  font-size: 0.8rem;
}
.footer__border {
  border-top: 0.5px solid var(--ac-light-pink);
  border-bottom: 0.5px solid var(--ac-light-pink);
  height: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1.5rem 0rem;
}
.footer_title {
  text-transform: uppercase;
  margin: 0;
}
.footer .logo-footer {
  width: 2.2rem;
  margin: 1rem 0 0 0;
}
.footer_direction {
  text-align: end;
  margin: 0;
}
.footer_direction img {
  width: 1rem;
  margin-right: 0.5rem;
}
.footer__icons img {
  height: 1.3rem;
  margin-left: 0.5rem;
}
.footer li {
  list-style: none;
}
.footer a {
  text-decoration: none;
  color: var(--ac-light-pink);
}
.footer a:hover {
  text-decoration: underline solid 1px;
}
.footer p {
  font-size: 0.6rem;
}
a span {
  color: var(--ac-orange);
}
.underline-blue{
  border-bottom: 1px solid #2157db;
}