/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700;800;900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 228;
  --hue-colordos:39;
  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --second-color: hsl(var(--hue-colordos), 100%, 50%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --medium-font-size: 2.3rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-15: .15rem;
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform:none;
 /*  margin-bottom: var(--mb-2); */
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title__nav{
  margin-left: 0;
}

.nav__logo, .nav__toggle {
  color: var(--text-color);
}

.nav__logo img{
  position: absolute;
  height: 50%;
  float: left;
  margin-top:-18px;
  filter: drop-shadow(1px 2px 1px rgba(2, 5, 59, 0.507));
}


.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home{
  background-color: rgb(27, 27, 27);
}
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
  filter: opacity(95%);
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}


.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: bold;
  margin-bottom: var(--mb-0-75);
  color: var(--body-color);
  font-size: 2.1rem;
  letter-spacing: 3px;
  color: var(--first-color);
  margin-bottom: -2px;
  font-weight: 800;
  text-shadow: 2px 2px 2px #000000;
}

.home__data-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--mb-0-15);
  text-shadow: 2px 2px 2px #000000;
  
}
h1 .home__data-title{
box-shadow: 3px 6px 7px -2px rgba(4,3,26,0.68);
}
span .home__data-subtitle{
box-shadow: 3px 6px 7px -2px rgba(4,3,26,0.68);  
font-weight: 900;
}
.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);

}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  margin-top: 1rem;
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}
/*=============== ABOUT US PAGE ===============*/
.about__container2 .about__data .section__title{
  font-size: var(--medium-font-size);
  text-transform: uppercase;
}
.about__mision{
  display: grid;
  grid-template-columns: repeat(2,1fr) ;
}
.about__container2{
 
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /* background-color: var(--first-color); */
}
.nuestros-valores{
  width: 100%;
  
  height: auto;
  display: inline-block;
font-size: var(--medium-font-size);
font-weight: 800;
color: var(--text-color);
text-align: center;
padding: 1rem;
}
/* .about__container2, .about__data{
 max-width: 50%;
} */

.about__img{
  transition: var(--img-transition);
}

.about__img:hover {
  transform: var(--img-scale);
}
/*conntainer 3*/
.about__container3{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse ;
  align-items: center;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.about__img-overlay {
  overflow: var(--img-hidden);
  
}

.about__img-one {
  max-width: 350px;
  max-height: 280px;
  padding: .5rem;
}

.about__img-two {
  max-width: 350px;
  max-height: 280px;
  padding: .5rem;

}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}
/*===============PAGE ABOUT VALUE===============*/
.tittle-valuebox{
  margin-top: 1rem;
}
.value-box{
  
  grid-template-columns: 50% 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4rem;
  justify-content: space-around;
  
}
.valueBox__one{
  width: 100vw;
  align-items: center;
  align-content: center;
  padding: .5rem .5rem .5rem .5rem;
}
.value-box__one{
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem 1rem 1rem;
  /* margin-left: 3rem; */
  
  
}

.one-text{
  max-width: 60%;
  min-width: 300px;
}

.iconBox__one{
  display: flex;
    flex-direction: column;
    align-items: center;
  margin: auto;

  width: 90%;
  text-align: center;
  min-width: 300px;
  min-height: 300px;
  color: var(--text-color);
}
.iconBox__one:hover{
  transform: var(--img-scale);
}
.iconBox__one img{
  width: 400px;
  
  color: var(--second-color);
}
.iconBox__one i{
  font-size: 6rem;
  
  color: var(--second-color);
}
.iconBox__one h2{
  padding: 20px;
  font-size: var(--medium-font-size);
  font-weight: 700;
  color: var(--text-color);
}
/* .value-box__one p{
width: 80vw;
} */
.iconBox{
  justify-content: center;
  margin: auto;
  padding: 2rem ;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 5px 6px 8px -3px rgba(23,43,122,0.68);
  width: 48%;
  text-align: center;
  min-width: 300px;
  min-height: 300px;
}
.iconBox:hover{
  transform: var(--img-scale);
}
.iconBox img{
  width: 400px;
  
  color: var(--second-color);
}
.iconBox i{
  font-size: 6rem;
  
  color: var(--second-color);
}
/*PAGE ABOUT PROFILE*/
.card-team{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card-profile{float: left;
  background-color: var(--second-color);
  width: 350px;
  height: 450px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 5px 6px 8px -3px rgba(23,43,122,0.68);
}
.card-profile:hover{
  transform: var(--img-scale);
}
.card-background{
  background: linear-gradient(to right, rgb(218, 218, 218), rgb(226, 226, 230));
  height: 160px;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.card-img{
  position: relative;
  border-radius: 50%;
  width: 120px;
  height: auto;
  top: 60%;
}
.card-info{
  margin-top: 25%;
}
.card-info p{
  font-size: 1rem;
  font-weight: 400;
  color: var(--first-color-second);
}
/*===========INVEst PAGE============ */
.invest__data__tittle {
  position: relative;
  display: block; /* Cambiado a bloque para que pueda usar márgenes automáticos */
  text-align: center;
}
.invest__data__title img{
    display: inline-block; /* Asegura que las imágenes y videos se muestren como elementos de bloque */
    max-width: 100%;
    height: auto;
    margin: 0 auto; /* Agrega márgenes automáticos para centrar horizontalmente */
}
.invest__container {
  position: relative;
}
.investt__container{
  grid-template-columns: repeat(2, 1fr);
    align-items: center;
}


.invest__data-subtitle{

  display: block;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*margin-left:26%;*/
  align-items: center;
  text-align: center;
  color: var(--white-color);
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0px 3px 2px rgba(34, 16, 4, 0.76);
}
.invest__info{
  display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.invest__info__banner{
  margin-right: 2%;
  display: inline-block;
  width: fit-content;
  height: 3.5rem;
  font-size: var(--medium-font-size);
  text-transform: uppercase;
  font-weight: 600;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 10px 0;
  color: var(--second-color);
}

.invest__item{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  margin-bottom: 2%;
  margin-top: 2%;
}

.invest__img-type{
  margin-bottom: 2%;
  width: 80%;
  border-radius: 5px;
  
}
.invest__data{
  display: flex;
    flex-direction: column;
    align-items: center;
}  

.invest-paragraph{
  width: 66%;
  align-items: center;
  text-align: center;
  text-wrap: balance;
  padding: 10px 0;
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 600px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title, 
.discover__description {
  color: var(--white-color);
}
.overlay-swiper{
  position: fixed;

 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: Orgba(0, 0, 0, 0.5);
 z-index: 100;
 display: flex;
 justify-content: space-around;
 align-items: center;
 transition: all .7s ease;
 margin-left: 1rem;
 margin-right: 1rem;
 opacity: 60%;
}
.overlay-swiper:hover{
  opacity: 0;
}
.container-arrow{
 /*  width: 50%;
 height: 50%; */
 border-radius: 50%;
 color: #000;
 display: flex;
 justify-content: space-around;
 align-items: center;
 font-size: 20px;
 position: relative;
 transform: translateY(-50%);
 color: tex;
  }
  .atras {
    left: 0px;
   }
   .adelante {
    right: 0px;
   }
.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  width: max-content;
  height: 450px;
  transition: var(--img-transition);
  object-fit: cover;
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

/* .experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
} */

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

.description__service{
  list-style-image:url(../img/SVG/SVG/logviñ.svg);
  text-align: left;
  margin-left: 1.5rem;
}

/*=============== PLACES ===============*/
.place__card, .place__img {
  height: 230px;
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content, .place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle, .place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-color: var(--first-color-second);
  padding: 2.5rem 0;
}

.subscribe__title, 
.subscribe__description {
  color: var(--white-color);
}

.subscribe__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.subscribe__form {
  background-color: var(--input-color);
  padding: .5rem;
  display: flex;
  justify-content: space-between;
}

.subscribe__input {
  width: 70%;
  padding-right: .5rem;
  background-color: var(--input-color);
  color: var(--text-color);
}

.subscribe__input::placeholder {
  color: var(--text-color);
}

/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}
.footer__data{
  width: fit-content;
  min-width: 320px;
  padding: 2rem 0;
  display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem; */
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  text-align: center;
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}
/*============SLIDER HOME=================*/
.slider {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
}

.slide {
  flex-shrink: 0; /* Evita que las diapositivas se reduzcan más allá de su tamaño */
  position: relative;
  width: 100%;
}

.slides img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.interest-btn-left {
  position: absolute;
  bottom: 4rem;
  left: 7.1rem;
  padding: 5px 10px;
  background-color: var(--first-color);
  font-size: var(--font-medium);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.interest-btn-right {
  position: absolute;
  bottom: 4rem;
  right: 7.1rem;
  font-size: var(--font-medium);
  background-color: var(--first-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.dots {
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #555;
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}
/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (min-width: 341px) and (max-width: 567px){
 
  .investt__container{
    grid-template-columns: auto;
  }
  .invest__data-subtitle{
    font-size: 1rem;
  }
  .home__data-subtitle{
    font-size: 1.3rem;
  }
  .home__data-title{
    font-size: 2rem;
    font-weight: 900;
  }
  .home__data-subtitle h1{
    font-size: 1.7rem;
    color: var(--white-color);
    text-shadow:-2px 1px 2px 0px rgba(9,5,38,0.6);
  
  }
  .interest-btn-right{
      bottom: 0.7rem;
      right: 2.1rem;
      font-size: var(--h3-font-size);
      padding: 2px 5px;
  }
  .interest-btn-left{
      bottom: .7rem;
      left: 1.1rem;
      font-size: var(--h3-font-size);
      padding: 2px 5px;
  }
  /* .invest__info__banner{
    margin-left: calc(100vw - 94%);
    font-size: 1.5rem;
    height: 2.4rem;
  } */
   
  }
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    display: inline-block;
    width: 190px;
    padding: 1rem;
  }
  .investt__container{
    grid-template-columns: auto;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
  .invest__data-subtitle{
    font-size: 1rem;
  }
  .invest__info{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home__data-subtitle{
    font-size: 1.3rem;
  }
  .home__data-title{
    font-size: 2rem;
    font-weight: 900;
  }
  .interest-btn-right{
    bottom: .7rem;
    left: 1.1rem;
    font-size: var(--h3-font-size);
    padding: 2px 5px;
  }
    
  .interest-btn-left{
    bottom: .7rem;
    left: 1.1rem;
    font-size: var(--h3-font-size);
    padding: 2px 5px;
}
   
}

/* For medium devices */
@media screen and (min-width: 568px) {
  /* .home__data-subtitle{
    font-size: 1.3rem;
  }
  .home__data-title{
    font-size: 2rem;
    font-weight: 900;
  } */
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
  .investt__container{
    grid-template-columns: auto;
  }
  .invest__data-subtitle{
    font-size: 1.5rem;
  }
  /* .invest__info__banner{
    margin-left: 50px;
    font-size: 1.5rem;
    height: 2.4rem;
  } */
  .interest-btn-right{
    bottom: 1.7rem;
    right: 4.7rem;
    font-size: var(--h3-font-size);
    padding: 2px 5px;
  }
    
  .interest-btn-left{
    bottom: 1.9rem;
    left: 2.1rem;
    font-size: var(--h3-font-size);
    padding: 2px 5px;
}
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--text-color-light);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--second-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container, .about__container2, .about__container3 {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-around;
  }
  

  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    /* margin-right: 4rem; */
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
  .investt__container{
    grid-template-columns: repeat(2, 1fr);
  }
  .invest__data-subtitle{
    font-size: 2.5rem;
  }
   .interest-btn-left {

    bottom: 2rem;
    left: 2.7rem;
    padding: 5px 10px;
    font-size: var(--h2-font-size);
    
  }
  
  .interest-btn-right {
    
    bottom: 2rem;
    right: 5.rem;
    font-size: var(--h2-font-size);
    padding: 5px 10px;
  }
  
  
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .discover__card {
    width: 400px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
  /*   margin-right: 7rem; */
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
  /* .invest__info__banner{
    width: 85vw;
    margin-left: 100px;
    font-size: 2.5rem;
    height: 3.4rem;
  } */
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
  .interest-btn-left {

    bottom: 4rem;
    left: 7.1rem;
    padding: 5px 10px;
    font-size: var(--h2-font-size);
    
  }
  
  .interest-btn-right {
    
    bottom: 4rem;
    right: 7.1rem;
    font-size: var(--h2-font-size);
    padding: 5px 10px;
  }
  
}