/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --hue-color: 190;
  /* HSL color mode */
  --first-color: #da9d54;
  --first-color-second: #da9d54;
  --first-color-alt: #be8a4a;
  --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;
  --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-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;
}

.preloader_container {
  background: #e3e4e8;
  display: grid;
  place-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: all 500ms;
}

.pl {
  width: 6em;
  height: 6em;
}

.pl__ring {
  animation: ringA 2s linear infinite;
}

.pl__ring--a {
  stroke: var(--first-color);
}

.pl__ring--b {
  animation-name: ringB;
  stroke: var(--first-color);
}

.pl__ring--c {
  animation-name: ringC;
  stroke: var(--first-color);
}

.pl__ring--d {
  animation-name: ringD;
  stroke: var(--first-color);
}

/* Animations */
@keyframes ringA {
  from, 4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }
  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }
  40%, 54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }
  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }
  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }
  90%, to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}
@keyframes ringB {
  from, 12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }
  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }
  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }
  48%, 62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }
  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }
  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }
  98%, to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}
@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }
  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }
  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }
  36%, 58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }
  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }
  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }
  94%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}
@keyframes ringD {
  from, 8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }
  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }
  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }
  44%, 50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }
  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }
  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }
  86%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}
.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: capitalize;
  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;
}
.nav__logo, .nav__toggle {
  color: var(--white-color);
}
.nav__logo img {
  height: 2rem;
}
.nav__toggle {
  font-size: 1.3rem;
  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: 0.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: 0.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: -0.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
  filter: brightness(80%) blur(1px);
}
.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.home__data-subtitle, .home__data-title, .home__social-link, .home__info {
  color: var(--white-color);
}
.home__data {
  width: fit-content;
}
.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}
.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}
.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}
.home__info {
  column-gap: 0.5rem;
  right: 0;
  bottom: 1rem;
  width: 400px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(7px);
}
.home__info .swiper-slide {
  display: flex;
  padding: 1rem 1rem;
  align-items: center;
}
.home__info .swiper-slide .description {
  margin-left: 1rem;
}
.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
  color: black;
}
.home__info-content {
  color: black;
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-75);
}
.home__info-button {
  font-size: var(--smaller-font-size);
  font-weight: 400 !important;
}
.home__info .button_container {
  background-color: var(--first-color);
  padding: 5px 10px;
  width: fit-content;
  margin-top: var(--mb-0-75);
}
.home__info-overlay {
  overflow: var(--img-hidden);
}
.home__info-img {
  transition: var(--img-transition);
}
.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: 0.3s;
}
.button:hover {
  background-color: var(--first-color-alt);
}
.button--flex {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}
.button--link {
  background: none;
  padding: 0;
}
.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}
.about__container {
  row-gap: 2.5rem;
}
.about__description {
  margin-bottom: var(--mb-2);
}
.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}
.about__img-overlay {
  overflow: var(--img-hidden);
  width: 90%;
}
.about__img-two {
  width: 180px;
}
.about__img-one, .about__img-two {
  transition: var(--img-transition);
}
.about__img-one:hover, .about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}
.discover__data {
  position: absolute;
  bottom: 0 !important;
  left: 0 !important;
  left: 1rem;
  width: 100%;
  background-image: linear-gradient(0deg, #202020, rgba(0, 0, 0, 0));
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.discover__title {
  color: white;
}
.discover__description {
  color: var(--white-color);
}
.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 {
  transition: var(--img-transition);
}
.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__data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.experience__container {
  row-gap: 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 {
  text-align: center;
  font-size: var(--small-font-size);
}
.experience__img {
  position: relative;
  padding-bottom: 2rem;
}
.experience__img-one, .experience__img-two, .experience__img-three {
  transition: var(--img-transition);
}
.experience__img-one:hover, .experience__img-two:hover, .experience__img-three:hover {
  transform: var(--img-scale);
}
.experience__overlay {
  overflow: var(--img-hidden);
}
.experience__overlay:nth-child(1) {
  margin-right: 2rem;
}
.experience__overlay:nth-child(2) {
  position: absolute;
  top: 2rem;
  right: 0;
}
.experience__overlay:nth-child(3) {
  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;
}

/*=============== PRODUCT ===============*/
.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: 0.75rem 0.75rem 1rem;
}
.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}
.place__rating-icon {
  font-size: 0.75rem;
  margin-right: var(--mb-0-25);
}
.place__rating-number {
  font-size: var(--small-font-size);
}
.place__subtitle, .place__price {
  display: block;
}
.place__data {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background-image: linear-gradient(0deg, #202020, rgba(0, 0, 0, 0));
}
.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-0-25);
}
.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  border-top-left-radius: 10px;
}

/*=============== 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 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.subscribe input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0rem;
  background-color: var(--input-color);
  color: var(--text-color);
}
.subscribe input::placeholder {
  color: var(--text-color);
}
.subscribe__email {
  height: 3rem;
}
.subscribe__massage {
  height: 6rem;
}

/*=============== 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__content {
  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);
  height: 1.5rem;
}
.footer__description {
  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__copy a {
  color: var(--text-color-light);
  transition: all 0.2s;
}
.footer__copy a:hover {
  color: var(--first-color);
}
.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: 0.5rem;
  display: flex;
  opacity: 0.9;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  box-shadow: 0px 0px 4px #838383;
}
.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;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  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: 320px) {
  .experience__overlay:nth-child(1) {
    width: 223px;
    margin-left: 2rem;
  }
  .experience__overlay:nth-child(2) {
    width: 100px;
    top: 4rem;
    left: -1rem;
  }
  .experience__overlay:nth-child(3) {
    width: 150px;
    top: -4rem;
    right: -1rem;
  }

  .nav__logo img {
    height: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .place__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  .experience__content {
    padding: 0;
  }

  .home__data {
    align-self: flex-start;
  }
  .home__info {
    width: 100%;
  }
  .home__info .swiper-slide {
    padding: 0.7rem;
  }
  .home__info .swiper-slide .description {
    margin-left: 0.7rem;
  }
  .home__info-title {
    margin-bottom: var(--mb-0-25);
  }
  .home__info-content {
    margin-bottom: var(--mb-0-25);
  }
  .home__info .button_container {
    margin-top: var(--mb-0-25);
  }
  .home__info-overlay {
    width: 140%;
  }

  .experience__img,
.video__container {
    padding: 0;
  }
}
/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }

  .place__container {
    grid-template-columns: repeat(3, max-content);
  }

  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }

  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-left: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 150px;
    top: 7rem;
    left: 0rem;
  }
  .experience__overlay:nth-child(3) {
    width: 200px;
    top: -3rem;
    right: -5rem;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-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 0.5fr;
    flex-direction: row;
    row-gap: 3rem;
    justify-content: space-between;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    width: 420px;
  }

  .about__container {
    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: 610px;
    margin-left: auto;
    margin-right: auto;
  }

  .discover__container,
.place__container {
    padding-top: 2rem;
  }

  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-left: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 150px;
    top: 7rem;
    left: 0rem;
  }
  .experience__overlay:nth-child(3) {
    width: 200px;
    top: -3rem;
    right: -5rem;
  }

  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 0.5rem;
  }

  .footer__rights {
    flex-direction: row;
    justify-content: center;
  }
}
/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__container {
    grid-template-rows: 2fr 0.5fr;
  }
  .home__info {
    width: 500px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-content {
    font-size: var(--normal-font-size);
  }
  .about__img-one {
    width: 100%;
  }
  .about__img-two {
    width: 290px;
  }

  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .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: 525px;
    margin-left: 8rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 7rem;
    left: 0rem;
  }
  .experience__overlay:nth-child(3) {
    width: 300px;
    top: -3rem;
    right: -5rem;
  }

  .video__container {
    grid-template-columns: 0.7fr;
  }
  .video__description {
    padding: 0 8rem;
  }

  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }

  .footer__content {
    justify-items: center;
  }
}
@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;
  }
}