/*=============== 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 ==========*/
    /* Change favorite color to match images */
    /*Green dark 190 - Green 171 - Grren Blue 200*/
    --hue-color: 190;
  
    /* HSL color mode */
    --first-color: hsl(var(--hue-color), 64%, 22%);
    --main-color: #B88B29;
    --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%);
    --first-color-lighten: #e6efeb;
    --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;
    --container-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;
    --h4-font-size: .75rem;
    --normal-font-size: .838rem;
    --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;
    --transition: all 0.5s ease;
    --img-hidden: hidden;
    --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
    :root {
      --biggest-font-size: 3rem;
      --h1-font-size: 2.25rem;
      --h2-font-size: 1.39rem;
      --h3-font-size: 1.25rem;
      --h4-font-size: 1rem;
      --normal-font-size: .95rem;
      --small-font-size: .875rem;
      --smaller-font-size: .813rem;
    }
}

/*========== Variables Dark theme ==========*/

body.dark-theme {
    --first-color-second: hsl(var(--hue-color), 54%, 12%);
    --first-color-lighten: hsl(var(--hue-color), 29%, 12%);
    --title-color: hsl(var(--hue-color), 24%, 95%);
    --text-color: hsl(var(--hue-color), 8%, 75%);
    --text-color-light: #fff;
    --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;
}

/* Loading */
.loading_fake_barrier {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 700rem;
    background: #fff;
    /*animation: change-background 6s ease infinite;*/
    z-index: 990;
}
.loading_fake_barrier.hidden {
    display: none;
}
@keyframes change-background {
    0% {
        background: #fff;
    }
    50% {
        background: #fff;
    }
    75% {
        background: #ffe07a;
    }
    100% {
        background: #ff6d3c;
    }
}
html {
    scroll-behavior: smooth;
}
.formFooter {
    /* visibility: hidden; */
    display: none;
}
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, h4, h5, h6 {
    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: 2rem 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);
}
section.video h4 {
    font-size: var(--h3-font-size);
}
.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;
    padding: 5px 0;
    z-index: var(--z-fixed);
    background-color: #fff;
    /*background-color: rgba(255,255,255,.25);*/
}
/*=============== 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 {
    font-weight: var(--font-semi-bold);
    display: flex;
    align-items: center;
}
.dark__logo {
    display: block;
}
body.dark-theme .dark__logo {
    display: none;
}
.light__logo {
    display: none;
}
body.dark-theme .light__logo {
    display: block;
}
.nav__logo img {
    height: 50px;
    min-width: 145.35px;
    width: 145.35px;
}
.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__logo img {
        width: 45px;
        height: 45px;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.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 {
    color: var(--title-color);
    position: absolute;
    top: .75rem;
    right: 1rem;
    font-size: 1.5rem;
    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 ===============*/

section.home {
    height: 100vh;
}
.home__img, .home__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin-top: 5rem;
}
.home__container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    row-gap: 1rem;
    grid-template-rows: 2fr 1fr;
}
.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
    color: var(--white-color);
}
.home__data-subtitle {
    display: block;
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-75);
    color: #292E34;
}
.home__data {
    padding: 1.6rem;
    border-radius: 5px;
}
.home__data-title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-75);
    background-color: rgba(255, 255, 255, .7);
    padding: 1rem 1.5rem;
    color: #191D1C;
    text-transform: none;
    border-radius: 6px;
    line-height: 2.8rem;
}
.home__data-title .yellow-color, .section__title.about__title .yellow-color, .about__description .yellow-color {
    color: #B88B29;
}
.home__social-link {
    color: var(--text-color);
    transition: .3s;
    opacity: 1;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
}
.home__social-link:hover {
    color: #000000;
}
.home__info {
    background-color: var(--main-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 {
    display: inline-block;
    background-color: #FCD469;
    color: #292E34;
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
}
.button:hover {
    background-color: var(--first-color-alt);
    color: var(--white-color);
}
.button--flex {
    display: flex;
    align-items: center;
    column-gap: .25rem;
}
.button--link {
    background: none;
    padding: 0;
}
.button--link:hover {
    background: none;
}

/*=============== ABOUT ===============*/
.about_main .about__video video {
    border-radius: 5px;
}
.about__container {
    row-gap: 3rem;
    padding-top: 3rem;
}
.about_main .about__container {
    column-gap: 2.5rem;
}
.about__description {
    margin-bottom: var(--mb-2);
    font-size: var(--h3-font-size);
}
.about__data {
    margin-top: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}
.about__data .about__title{
    font-size: 1.75rem;
}
.about__description.about_second {
    font-size: var(--h4-font-size);
}
.about__video-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about__img {
    display: flex;
    column-gap: 2rem;
    align-items: center;
    justify-content: center;
}
.about__img-overlay {
    overflow: var(--img-hidden);
}
.about__img-one {
    width: 100%;
    /*width: 130px;*/
    border-radius: 13px;
}
.about__img-two {
    width: 210px;
    border-radius: 26px;
}
.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}
.about__title {
    text-transform: none;
}
.about__button {
    background-color: var(--main-color);
    color: var(--white-color);
}
.about__container.forum {
    padding-top: 1rem;
}
.about__container.forum {
    display: grid;
    align-items: flex-start;
    column-gap: 4rem;
}
.about__container.forum .about__img {
    padding-top: 1.5rem;
}
.about__container.forum__galary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.about__container.forum__galary img {
    width: 324px;
}
.about__container.about__video {
    display: grid;
    grid-template-rows: 1fr;
    column-gap: 4rem;
}
.about__container.about__video video {
    border-radius: 10px;
}
.about__icon-group {
    margin: 3rem 0;
    width: 100%;
}
.about__icon-group .icon-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.about__icon-group .icon-group li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}
.about__icon-group .icon-group li .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgb(255,196,0);
    background: linear-gradient(180deg, rgba(255,196,0,1) 0%, rgba(254,192,21,1) 37%, rgba(253,115,1,1) 100%);
    color: #fff;
    border-radius: 50%;
    margin-bottom: .7rem;
}
.about__icon-group .icon-group li i {
    font-size: 36px;
}
/*=============== DISCOVER ===============*/

section.discover .section__title {
    padding: 0 3rem;
    text-transform: none;
}
section.discover h2 {
    text-transform: none;
}
.discover__card {
    position: relative;
    width: 300px;
    overflow: var(--img-hidden);
}
.discover__data {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    background-color: rgba(0,0,0,.25);
    padding: .75rem;
    border-radius: 3px;
}
.discover__data h3 {
    text-align: center;
}
.discover__title, 
.discover__description {
    color: var(--white-color);
}
.discover__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
    margin: 0 2rem;
}
.discover__description {
    display: block;
    font-size: var(--smaller-font-size);
}
.discover__img {
    transition: var(--img-transition);
}
.swiper-button-prev {
    background: none;
    color: #FFF;

}
.swiper-button-next {
    background: none;
    color: #FFF;

}

/*=============== TEAM ===============*/
.team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5rem;
    margin-top: 2rem;
    width: 100%;
  }
  .team h1 {
    font-size: var(--h1-font-size);
  }
  .card {
    width: 17.5rem;
    height: 22.5rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .card-img-wrapper {
    width: 100%;
    height: 100%;
    background-color: #424242;
    border-radius: 0.5rem;
  }
  .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
  }
  .card:hover .card-img-wrapper img {
    opacity: 0.5;
  }
  .card-info {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .card:hover .card-info {
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
  }
  .card-info h2 {
    font-size: var(--h2-font-size);
    font-weight: 300;
    color: #eee;
  }
  .card-info h3 {
    font-size: var(--h3-font-size);
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
  }

/* ---------------  QUESTIONS   --------------- */

.questions {
    background-color: var(--first-color-lighten);
}
.questions__container {
    gap: 1.5rem;
    padding: 1.5rem 0;
}
.questions h2 {
    padding-left: .5rem;
    padding-bottom: 2rem;
}
.questions h3 {
    padding-left: 1rem;
    color: hsl(var(--hue-color), 24%, 35%);
}
.questions h3 span {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}
.questions__group {
    display: grid;
    row-gap: 1.5rem;
}
.questions__item {
    background-color: var(--container-color);
    border-radius: .25rem;
}
.questions__item-title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
}
.questions__icon {
    font-size: 1.25rem;
    color: hsl(var(--hue-color), 24%, 35%);
}
.questions__description {
    font-size: var(--small-font-size);
    line-height: 1.3rem;
    padding: 0 1.25rem 1.25rem 2.5rem;
}
.questions__header {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    padding: .75rem .5rem;
    cursor: pointer;
}
.questions__header:hover {
    background-color: rgb(221, 227, 230);
}
.questions__content {
    overflow: hidden;
    height: 0;
}
.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content{
    transition: .3s;
}
.questions__item:hover {
    box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}

/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content{
  background-color: var(--main-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon{
  color: #FFF;
}

.accordion-open .questions__icon{
  transform: rotate(45deg);
}

/*=============== VIDEO ===============*/

.video__container {
    padding-bottom: 1rem;
}
section.video h4 {
    font-size: var(--h3-font-size);
    text-transform: none;
}
.video__content {
    position: relative;
}
.video__button {
    position: absolute;
    right: 1rem;
    bottom: -1rem;
    padding: 1rem 1.5rem;
}
.video__button-icon {
    font-size: 1.2rem;
}

/* lifestyle */

.lifestyle{
    background: var(--lightGrey);
    display: grid;
}
.lifestyle h1 {
    margin-bottom: 4rem;
}
.lifestyle h4 {
    font-size: 14px;
    text-transform: uppercase;
}
.lifestyle-wrapper{
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 2rem;
}
.lifestyle-item-img{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.lifestyle-item-img img{
    transition: var(--transition);
}
.lifestyle-item-img img:hover{
    transform: scale(1.07);
}
.lifestyle-item-footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 0.4rem;
}
.lifestyle-item-footer h3 {
    font-size: 17px;
    color: var(--text-color);
    word-wrap: break-word;
    line-height: 1.2;
    transition: var(--transition);
    margin-bottom: .75rem;
}
.lifestyle-item-footer h3:hover {
    color: #333;
}
.lifestyle-item-footer p{
    font-size: 15px;
    color: #777777;
    font-weight: 400;
}
.lifestyle .lifestyle-button {
    text-align: center;
}

/*=============== PLACES ===============*/

.place__card, .place__img {
    height: 180px;
    width: 180px;
}
.place__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 0;
}
.place__card {
    position: relative;
    background: #ffc400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    transition: .5s;
}
.place__card:hover {
    transform: translateX(15px);
    background: #fd7301;
}
.place__card:nth-child(1) {
    width: 210px;
    height: 210px;
    opacity: 1;
    animation: shining4 7s ease-in-out infinite;
    background: rgb(255,196,0);
    background: linear-gradient(180deg, rgba(255,196,0,1) 0%, rgba(254,192,21,1) 37%, rgba(253,115,1,1) 100%);
}
@keyframes shining4{
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    70% {
        transform: translateX(15px);
        opacity: .9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.place__card:nth-child(2) {
    width: 180px;
    height: 180px;
    background: #ffae00;
}
.place__card:nth-child(2):hover {
    transform: scale(1.2);
    background: #ffc039;
}
.place__card:nth-child(3) {
    width: 240px;
    height: 240px;
    opacity: .9;
    animation: shining 7s ease-in-out infinite;
}
@keyframes shining{
    0% {
        transform: translateX(0);
        opacity: .9;
    }
    30% {
        transform: translateX(10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: .9;
    }
}
.place__card:nth-child(3):hover {
    transform: translateX(-15px);
}
.place__card:nth-child(4) {
    width: 210px;
    height: 210px;
    background: rgb(255,196,0);
    background: linear-gradient(180deg, rgba(255,196,0,1) 0%, rgba(254,192,21,1) 37%, rgba(253,115,1,1) 100%);
}
.place__card:nth-child(4):hover {
    transform: translateX(-15px);
}
.place__card:nth-child(5) {
    width: 190px;
    height: 190px;
    animation: shining2 7s ease-in-out infinite;
}
@keyframes shining2{
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    30% {
        transform: translatey(-10px);
        opacity: .9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.place__card:nth-child(5):hover {
    transform: translateY(-15px);
}
.place__card:nth-child(6) {
    width: 250px;
    height: 250px;
    opacity: .8;
    background-color: #fd7301;
}
.place__card:nth-child(6):hover {
    background-color: #ffc400;
}
.place__card:nth-child(7) {
    width: 210px;
    height: 210px;
}
.place__card:nth-child(7):hover {
    transform: translateY(-15px);
}
.place__card:nth-child(8) {
    width: 220px;
    height: 220px;
    background: #fab725;
    animation: shining3 7s ease-in-out infinite;
}
@keyframes shining3{
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    30% {
        transform: translateX(-15px);
        opacity: .85;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.place__card:nth-child(8):hover {
    transform: translateX(-15px);
    background: #ff7b00;
}
.place__card h3 {
    color: var(--white-color);
    text-align: center;
}
/*=============== 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);
}
.received-message {
    display: none;
    /* position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9; */
  }

  .received-message p {
    text-align: center;
    margin-top: var(--mb-2-5);
    color: var(--white-color);
}

/*=============== SPONSORS ===============*/

.sponsor__container {
    justify-items: center;
    display: flex;
    flex-wrap: wrap;
    row-gap: 2.5rem;
    min-width: 402rem;
    animation: lefting infinite 80s linear;
    background-color: #FFF;
    padding: 1rem 0;
}
.sponsor h1 {
    font-size: var(--h1-font-size);
    margin-bottom: 4rem;
}
@keyframes lefting {
    0% {
        transform: translateX(0rem);
    }
    100% {
        transform: translateX(-183rem);
    }
}
.sponsor__img {
    height: 70px;
    width: auto;
    /*filter: grayscale(100%);*/
}

/*=============== FOOTER ===============*/
.footer {
    padding-left: 20px;
    padding-right: 20px;
}
.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);
}
.footer__description {
    margin-bottom: var(--mb-1);
}

.footer__social {
    font-size: 1.85rem;
    color: var(--text-color);
    margin-right: var(--mb-1-25);
}
.footer__subtitle {
    margin-bottom: var(--mb-1);
}
.footer__item {
    margin-bottom: var(--mb-0-75);
}
.footer .nav__item {
    margin-bottom: var(--mb-0-5);
}
.footer__link {
    color: var(--text-color);
}
.footer__link:hover {
    color: var(--title-color);
}
.footer__rights {
    display: flex;
    row-gap: 1.5rem;
    text-align: center;
    justify-content: center;
}
.footer__rights p {
    margin: 0 auto;
}
.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: rgb(255,196,0);
    background: linear-gradient(180deg, rgba(255,196,0,1) 0%, rgba(254,192,21,1) 37%, rgba(253,115,1,1) 100%);
    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;
}

/* Special Page */
.special__page__text {
    font-size: var(--h4-font-size);
    line-height: 1.5rem;
}
.special__page__title {
    font-size: var(--h2-font-size) !important;
}

/*=============== 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);
}

/*================== LOADING ==================*/

.animation {
    display: block;
    visibility: visible;
}
.animation__block {
    display: block;
    visibility: visible;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9vw;
    height: 9vw;
    border-radius: 50%;
    z-index: 999;
    overflow: hidden;
}
.animation.hidden {
    display: none;
    visibility: hidden;
}
.animation__caption {
    font-size: 0.75rem;
    width: 250px;
    margin: 10px auto 0;
    text-align: right;
}
.hill, .sun {
    animation-duration: 7s;
    animation-play-state: fill;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hill {
    position: absolute;
    top: 100%;
    height: 150%;
    border-radius: 50%;
    z-index: 2;
}
.hill.red-dk {
    left: -75%;
    width: 150%;
    background-color: #cb3838;
    box-shadow: inset 0 0 0 2px rgba(235, 177, 177, 0.091);
    animation-name: rise-red-dk;
}
.hill.red {
    left: -30%;
    width: 250%;
    background-color: #e3413c;
    box-shadow: inset 0 0 0 2px rgba(246, 195, 194, 0.091);
    animation-name: rise-red;
}
.sun {
    position: absolute;
    left: -20%;
    top: 100%;
    width: 20%;
    height: 20%;
    background-color: #ffdb41;
    border-radius: 50%;
    transform: scale(0);
    animation-name: sun;
}
/** * HILL ANIMATIONS */
@keyframes rise-red-dk {
    17%, 73% {
        transform: translateY(-30%);
   }
}
@keyframes rise-red {
    23%, 80% {
        transform: translateY(-20%);
   }
}
/** * SUN ANIMATION */
@keyframes sun {
    0%, 10% {
        transform: scale(0.1);
   }
    20% {
        transform: translate(400%, -400%) scale(1);
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091);
   }
    25% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091);
   }
    26% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), long-shadow(90, 0, transparent), 0 0 0 35px #ffb63c;
   }
    27% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638;
   }
    28% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638, 0 0 0 105px #ff963c;
   }
    29% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638, 0 0 0 105px #ff963c, 0 0 0 140px #ff823c;
   }
    30% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638, 0 0 0 105px #ff963c, 0 0 0 140px #ff823c, 0 0 0 175px #ff6d3c;
   }
    31% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638, 0 0 0 105px #ff963c, 0 0 0 140px #ff823c, 0 0 0 175px #ff6d3c, 0 0 0 210px #e3413c;
   }
    32% {
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638, 0 0 0 105px #ff963c, 0 0 0 140px #ff823c, 0 0 0 175px #ff6d3c, 0 0 0 210px #e3413c, 0 0 0 250px #cb3838;
   }
    70% {
        transform: translate(400%, -400%) scale(1);
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), long-shadow(10, 0, #ffdb41), 0 0 0 35px #ffb63c, 0 0 0 70px #ffa638, 0 0 0 105px #ff963c, 0 0 0 140px #ff823c, 0 0 0 175px #ff6d3c, 0 0 0 210px #e3413c, 0 0 0 250px #cb3838;
   }
    85% {
        transform: translate(800%, 200%) scale(1);
        box-shadow: inset 0 0 0 2px rgba(255, 248, 218, 0.091), long-shadow(10, 0, #ffdb41), 0 0 0 10px #ffb63c, 0 0 0 20px #ffa638, 0 0 0 35px #ff963c, 0 0 0 40px #ff823c, 0 0 0 50px #ff6d3c, 0 0 0 60px #e3413c, 0 0 0 70px #cb3838;
   }
    90% {
        transform: translate(800%, 200%) scale(0);
   }
}


/*=============== MEDIA QUERIES ===============*/

/* For small devices */

@media screen and (max-width: 340px) {
    .nav__logo img {
        width: auto;
        height: 35px;
    }
    .home__data-title {
        line-height: 2.4rem;
    }
    .place__container {
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }
    .experience__content {
        padding: 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .experience__overlay:nth-child(1) {
        width: 190px;
    }
    .experience__overlay:nth-child(2) {
        width: 80px;
    }
    .home__info {
        width: 190px;
        padding: 1rem;
    }
    .about__data {
        margin-top: 0rem;
        margin-left: .5rem;
        margin-right: .5rem;
    }
    .experience__img,
    .video__container {
        padding: 0;
    }
    .sponsor__container {
        column-gap: 3rem;
    }
    .lifestyle-wrapper{
        grid-template-columns: repeat(1,1fr);
        grid-gap: 16px;
    }
}

@media screen and (min-width: 475px) {
    .about__data {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

/* For medium devices */

@media screen and (min-width: 568px) {
    .section {
        padding: 2rem 0 2rem;
    }
    .nav__list {
        column-gap: 1rem;
    }
    .home__data {
        width: 50%;
    }
    .home__data-title {
        line-height: 2.4rem;
    }
    .video__container {
        display: grid;
        grid-template-columns: .6fr;
        justify-content: center;
    }
    .place__container {
        grid-template-columns: repeat(3, 1fr);
    }
    .subscribe__form {
        width: 470px;
        margin: 0 auto;
    }
    .experience__content {
        grid-template-columns: repeat(3, 1fr);
    }
    section.video h4 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .sponsor__container {
        column-gap: 4.5rem;
    }
    .lifestyle-wrapper{
        grid-template-columns: repeat(1,1fr);
        grid-gap: 16px;
    }
}

@media screen and (min-width: 768px) {
    .section {
        padding: 4.5rem 0 2rem;
    }
    section.discover {
        padding: 6.5rem 0 8.5rem 0;
    }
    body {
        margin: 0;
    }
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }
    .nav__link {
        text-transform: initial;
    }
    .nav__link:hover {
        color: #000;
    }
    .nav__dark {
        position: initial;
    }
    .nav__menu {
        display: flex;
        column-gap: 1rem;
    }
    .nav__list {
        flex-direction: row;
        column-gap: 1.2rem;
    }
    .nav__toggle, .nav__close {
        display: none;
    }
    .change-theme-name {
        display: none;
    }
    .change-theme {
        color: #292E34;
    }
    .active-link::before {
        background-color: #292E34;
    }
    .scroll-header {
        color: var(--text-color);
    }
    .nav__link {
        color: var(--text-color-light);
    }
    .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);
    }
    .footer {
        padding: 7rem 2rem 2rem 2rem;
    }
    .home__container {
        height: 100vh;
    }
    .home__social {
        flex-direction: row;
        align-self: flex-end;
        margin-bottom: 3rem;
        column-gap: 2.5rem;
    }
    .home__info {
        bottom: 3rem;
    }
    .home__data-title {
        line-height: 3rem;
    }
    .about__container {
        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);
    }
    .about__container.forum {
        grid-template-columns: 1fr 1fr;
    }
    .discover__container {
        width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .questions__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .questions__container {
        align-items: flex-start;
    }
    .discover__container,
    .place__container {
        padding-top: 2rem;
    }
    .place__container {
        grid-template-columns: repeat(4, 1fr);
    }
    section.video h4 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .subscribe__bg {
        background: none;
        padding: 0;
    }
    .subscribe__container {
        background-color: var(--first-color);
        padding: 3.5rem 0;
    }
    .subscribe__input {
        padding: 0 .5rem;
    }
    .sponsor__container {
        column-gap: 6rem;
    }
    .footer__rights {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 768px) {
    .lifestyle-wrapper{
        grid-template-columns: repeat(2,1fr);
        grid-gap: 2rem;
        row-gap: 3rem;
    }
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .team {
        padding: 0 5rem 10rem 5rem;
    }
}

/* For large devices */

@media screen and (min-width: 1024px) {
    .section {
        padding: 6rem 0 2rem;
    }
    .container {
      margin-left: auto;
      margin-right: auto;
    }
    .nav__list {
        flex-direction: row;
        column-gap: 2rem;
    }
    .home__container {
      grid-template-rows: 2fr .5fr;
    }
    .home__data-title {
        line-height: 3.8rem;
    }
    .home__info-title {
      font-size: var(--normal-font-size);
    }
    .home__info-img {
      width: 240px;
    }
    .about__container {
        grid-template-columns: 2fr 2fr;
    }
    .about_main .about__container {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .about_main .about__data {
        align-items: center;
        justify-content: center;
        order: 1;
    }
    .about_main .about__description {
        font-size: var(--h4-font-size);
    }
    .about__description {
        font-size: var(--h4-font-size);
    }
    .about__img-one {
        width: 100%;
      /*width: 160px;*/
    }
    .about__img-two {
        width: 290px;
    }
    .about__container.forum {
        grid-template-columns: 1fr 2fr;
    }
    .discover__card {
        width: 420px;
    }
    .discover__data {
        left: 1.5rem;
        bottom: 2rem;
    }
    .discover__title {
        font-size: var(--h2-font-size);
    }
    .cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .experience__container {
        flex-direction: row;
    }
    .experience__content {
        margin: var(--mb-1) 0;
        column-gap: 3.5rem;
        grid-template-columns: repeat(6, 1fr);
    }
    .experience__overlay:nth-child(1) {
        width: 463px;
        margin-right: 7rem;
    }
    .experience__overlay:nth-child(2) {
        width: 220px;
        top: 3rem;
    }
    .lifestyle-wrapper{
        grid-template-columns: repeat(3,1fr);
        grid-gap: 2rem;
        row-gap: 3rem;
    }
    .video__container {
        grid-template-columns: .7fr;
    }
    .video__description {
        padding: 0 2rem;
    }
    .place__card, .place__img {
        height: 243px;
    }
    .sponsor__container {
        column-gap: 7rem;
    }
    .footer__content {
        justify-items: center;
    }
  }

/* For extra-large devices */

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
    .home__data {
        width: 30%;
    }
    .experience__content {
        grid-template-columns: repeat(6, 1fr);
    }
    .questions__container {
        padding: 1rem 0 4rem;
    }
    .questions__title {
        text-align: initial;
    }
    .questions__group {
        row-gap: 2rem;
    }
    .questions__header {
        padding: 1rem;
    }
    .questions__description {
        padding: 0 3.5rem 2.25rem 2.75rem;
    }
}

/* For tall screens on mobiles y desktop*/

@media screen and (min-height: 721px) {
    body {
      margin: 0;
    }
}