*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    font-size: 62.5%; /* This defines the "rem" value you'll see in this file often. It's a size value which is in relation to the pixels like this (10px = 1rem) so when you see that something in this file is 1rem, that means it's 10px */
}

@media only screen and (max-width: 1600px) {
    html {
        font-size: 50%;
    }
}

@media only screen and (max-width: 1200px) {
    html {
        font-size: 45%;
    }
}

@media only screen and (max-width: 1000px) {
    html {
        font-size: 40%;
    }
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Assistant", sans-serif; /* The place to change the main font for the entire page */
    background-color: #f6f6f6; /* background color for the entire page */
}

.heading-2 {
  font-family: "Satisfy", cursive; /* Font for all big headings on the page */
  font-size: 7.2rem; /* font size for all headings on the page */
}

.heading-3 {
  font-family: "Satisfy", cursive; /* font for all smaller headings on the page */
  font-size: 4.8rem; /* font size for those smaller headings */
}

.btn-dark { /* this makes your dark button */
  text-decoration: none;
  color: #f6f6f6;
  font-weight: 800;
  background-color: #035f96;
  padding: 1rem 3.5rem;
  font-family: "Assistant", sans-serif;
  font-size: 2.6rem;
  text-transform: uppercase;
  border-radius: 100rem;
  -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
  box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-dark:hover {
  text-decoration: none;
  color: #f6f6f6;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 0.9rem 0.9rem 2rem rgba(0, 0, 0, 0.05);
  box-shadow: 0.9rem 0.9rem 2rem rgba(0, 0, 0, 0.05);
}

.btn-light { /* this makes your light button */
  text-decoration: none;
  color: #035f96;
  font-weight: 800;
  background-color: #f6f6f6;
  padding: 1rem 3.5rem;
  font-family: "Assistant", sans-serif;
  font-size: 2.6rem;
  text-transform: uppercase;
  border-radius: 100rem;
  -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
  box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-light:hover {
  text-decoration: none;
  color: #035f96;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 0.9rem 0.9rem 2rem rgba(0, 0, 0, 0.05);
  box-shadow: 0.9rem 0.9rem 2rem rgba(0, 0, 0, 0.05);
}


/* all these keyframes are your animations */
@-webkit-keyframes slideDown {
  0% {
      -webkit-transform: translateY(-30rem);
      transform: translateY(-30rem);
  }

  90% {
      -webkit-transform: translateY(1rem);
      transform: translateY(1rem);
  }

  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
      -webkit-transform: translateY(-30rem);
      transform: translateY(-30rem);
  }

  90% {
      -webkit-transform: translateY(1rem);
      transform: translateY(1rem);
  }

  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}

@-webkit-keyframes slideFromRight {
  0% {
      -webkit-transform: translateX(30rem);
      transform: translateX(30rem);
  }

  90% {
      -webkit-transform: translateX(-1rem);
      transform: translateX(-1rem);
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
      -webkit-transform: translateX(30rem);
      transform: translateX(30rem);
  }

  90% {
      -webkit-transform: translateX(-1rem);
      transform: translateX(-1rem);
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
      opacity: .9;
  }

  100% {
      opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
      opacity: .9;
  }

  100% {
      opacity: 1;
  }
}

/* ========================= */
/* HEADER */
.header { 
    background-color: #035f96; /* header background color */
    width: 100%;
    min-height: 20rem;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 100;
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-transition: all .4s;
    transition: all .4s;
}

@media only screen and (max-width: 900px) {
    .header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.header__logo {
    width: 40rem; /* header logo size for width */
    height: 25rem; /* header logo size for height */
    background-color: #f6f6f6; /* background color of the box where logo is */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 12rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    left: 5%;
    top: 6.2rem;
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s;
    transition: all .4s;
}

@media only screen and (max-width: 500px) {
    .header__logo {
        top: 2rem;
        height: 15rem;
        width: 32rem;
    }
}

.header__logo-img {
    width: 90%;
    height: 85%;.jpg
    display: block;
}

.header__nav {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: 5%;
}

@media only screen and (max-width: 900px) {
    .header__nav {
        margin-right: 2.5%;
    }
}

.header__nav-mobile {
    width: 8rem;
    height: 6rem;
    position: absolute;
    top: 13rem;
    right: 5%;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
}

@media only screen and (max-width: 900px) {
    .header__nav-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header__nav-mobile span {
    display: block;
    height: 3px;
    width: 5rem;
    margin: .5rem 0;
    background-color: #f6f6f6;
}

.header__nav-mobile span:nth-child(1) {
    top: 0rem;
}

.header__nav-mobile span:nth-child(2) {
    top: 1rem;
}

.header__nav-mobile span:nth-child(3) {
    top: 2rem;
}

@media only screen and (max-width: 500px) {
    .header__nav-mobile span {
        width: 4rem;
        height: 2px;
    }
}

.header__nav-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 900px) {
    .header__nav-list {
        display: none;
    }
}

.header__nav-item {
    margin-bottom: 3rem;
}

.header__nav-item:not(:last-child) {
    margin-right: 1rem;
}

@media only screen and (max-width: 900px) {
    .header__nav-item:not(:last-child) {
        margin-right: 0;
    }
}

.header__nav-link {
    text-decoration: none;
    font-size: 2.8rem; /* size of the header menu items */
    color: #f6f6f6; /* color of the header menu items text */
    text-transform: uppercase;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-bottom: 3rem;
    padding-top: 1rem;
    font-weight: 600;
    white-space: nowrap;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    -webkit-transition: all .2s;
    transition: all .2s;
    cursor: pointer;
}

.header__nav-link:hover {
    color: #FFFFFF;
    background-color: #0c1438;
}

.show-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10rem;
}

@media only screen and (max-width: 900px) {
    .show-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

@media only screen and (min-width: 900px) {
    .show-menu {
        margin-top: 0;
    }
}

.large {
    min-height: 20rem;
}

.small {
    min-height: 5rem;
}

.small .header__logo {
    width: 27rem;
    height: 12rem;
    top: 3.2rem;
}

.small .header__nav-mobile {
    top: 3.5rem;
}

.small .header__nav-item {
    margin-bottom: 1rem;
}

@media only screen and (max-width: 900px) {
    .small .header__nav-item {
        margin-bottom: 3rem;
    }
}

.small .header__nav-link {
    padding-bottom: 1rem;
}

.fix__menu-height {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}


/* ========================= */
/* HERO */
.hero {
    width: 100%;
    height: 100rem;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(121, 81, 81, 0.2)), to(rgba(121, 81, 81, 0.2))), url(../img/hero-background.jpg); /* this is your hero background image link */
    background-image: linear-gradient(to right, rgba(121, 81, 81, 0.2), rgba(121, 81, 81, 0.2)), url(../img/hero-background.jpg); /* the same hero link just for different browsers, you have to change both */
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}

@media only screen and (max-width: 700px) {
    .hero {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.hero__feature {
    background-color: #f6f6f6; /* background of the hero feature box */
    width: 45rem; /* width of the hero feature box */
    height: 60rem; /* height of the hero feature box */
    margin-top: 15rem;
    margin-right: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    -webkit-animation-name: slideFromRight;
    animation-name: slideFromRight;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}

@media only screen and (max-width: 700px) {
    .hero__feature {
        margin-right: 0;
    }
}

.hero__feature-title {
    color: #035f96;
    font-weight: 400;
    font-size: 4.8rem;
}

.hero__feature-list {
    font-size: 2.8rem;
    color: #035f96;
}

.hero__feature-item {
    padding: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero__feature-button {
    font-weight: 800;
}

.promobar {
    min-height: 10rem;
    width: 100%;
    background-color: #035f96;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 500px) {
    .promobar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.promobar__text {
    display: inline-block;
    font-size: 4.2rem;
    font-weight: 800;
    color: #f6f6f6;
    margin-left: 5%;
    padding: 1rem;
}

@media only screen and (max-width: 500px) {
    .promobar__text {
        text-align: center;
    }
}

.promobar__button {
    margin-right: 5%;
    font-weight: 800;
    white-space: nowrap;
}

@media only screen and (max-width: 500px) {
    .promobar__button {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}


/* ========================= */
/* GALLERY */
.gallery__title {
    color: #035f96;
    font-weight: 400;
    text-align: center;
    margin: 10rem 2rem;
}

.gallery__container {
    display: grid;
    grid-template-rows: repeat(3, 30rem);
    grid-template-columns: repeat(4, auto);
    grid-gap: 3rem;
    max-width: 172.8rem;
    margin: 0 5%;
}

@media only screen and (max-width: 900px) {
    .gallery__container {
        grid-template-columns: repeat(3, auto);
    }
}

@media only screen and (max-width: 700px) {
    .gallery__container {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(5, 30rem);
    }
}

@media only screen and (max-width: 550px) {
    .gallery__container {
        grid-template-columns: auto;
        grid-template-rows: repeat(9, 30rem);
    }
}

.gallery__img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.gallery__img:hover {
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.gallery__img-2 {
    grid-row: span 2;
}

@media only screen and (max-width: 900px) {
    .gallery__img-2 {
        grid-row: auto;
    }
}

.gallery__img-3 {
    grid-column: span 2;
}

@media only screen and (max-width: 900px) {
    .gallery__img-3 {
        grid-column: auto;
    }
}

.gallery__img-4 {
    grid-row: span 2;
}

@media only screen and (max-width: 900px) {
    .gallery__img-4 {
        grid-row: auto;
    }
}

.gallery__img-8 {
    grid-column: span 2;
}

@media only screen and (max-width: 900px) {
    .gallery__img-8 {
        grid-column: auto;
    }
}


/* ========================= */
/* STORY */
.story {
    width: 100%;
    min-height: 90rem;
    margin-top: 15rem;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(121, 81, 81, 0.2)), color-stop(50%, rgba(121, 81, 81, 0.9)), to(#035f96)), url(../img/about-background.jpg); /* background image for the story section */
    background-image: linear-gradient(to right, rgba(121, 81, 81, 0.2), rgba(121, 81, 81, 0.9) 50%, #035f96), url(../img/about-background.jpg); /* background image for the hero story section just for different browsers. You have to change both */
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 900px) {
    .story {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.story__about {
    width: 60rem;
    margin-right: 10%;
}

@media only screen and (max-width: 900px) {
    .story__about {
        margin-right: 0;
        width: auto;
        margin: 0 auto;
        padding: 0 10rem;
        padding-bottom: 5rem;
    }
}

@media only screen and (max-width: 600px) {
    .story__about {
        margin: 0 5%;
        padding: 0;
        padding-bottom: 5rem;
    }
}

.story__title {
    font-weight: 400;
    color: #f6f6f6;
    text-align: center;
    margin: 5rem 1rem;
}

.story__text {
    font-size: 2.8rem;
    color: #f6f6f6;
    margin: 2rem 1rem;
    font-weight: 300;
}


/* ========================= */
/* TESTIMONIAL */
.testimonial {
    min-height: 90rem;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 252, 238, 0.97)), to(rgba(255, 252, 238, 0.97))), url(/images/testimonial-bg.png); /* this is the testimonial background image (the fade image you can barely see behind the content) */
    background-image: linear-gradient(to right, rgba(255, 252, 238, 0.97), rgba(255, 252, 238, 0.97)), url(/images/testimonial-bg.png); /* same bacground image but for different browsers. You have to change both */
    background-size: cover;
    position: relative;
    z-index: 1;
}

.testimonial__quote {
    position: absolute;
    left: 20rem;
    top: 25rem;
}

@media only screen and (max-width: 1200px) {
    .testimonial__quote {
        left: 8rem;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@media only screen and (max-width: 1000px) {
    .testimonial__quote {
        top: 15rem;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@media only screen and (max-width: 800px) {
    .testimonial__quote {
        top: 40rem;
    }
}

@media only screen and (max-width: 350px) {
    .testimonial__quote {
        top: 120rem;
        left: 1rem;
    }
}

.testimonial__title {
    font-weight: 400;
    color: #035f96;
    text-align: center;
    margin: 10rem 2rem;
}

@media only screen and (max-width: 800px) {
    .testimonial__title {
        margin: 4rem 1.5rem;
    }
}

.testimonial__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 800px) {
    .testimonial__box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.testimonial__left {
    width: 50%;
    padding: 0 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
}

@media only screen and (max-width: 1200px) {
    .testimonial__left {
        padding: 0 10rem;
    }
}

@media only screen and (max-width: 1000px) {
    .testimonial__left {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .testimonial__left {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 400px) {
    .testimonial__left {
        padding: 0 5%;
    }
}

.testimonial__left-story-1 {
    display: none;
}

.testimonial__left-story-2 {
    display: none;
}

.testimonial__left-story-3 {
    display: none;
}

.testimonial__left-text {
    font-size: 3.2rem; /* font size of the testimonial story text */
    color: #035f96; /* color of the testimonial story text */
    text-align: center;
    margin: 1.5rem 1rem;
    font-weight: 300;
}

.testimonial__right {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .testimonial__right {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media only screen and (max-width: 350px) {
    .testimonial__right {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.testimonial__right-person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2rem 0;
    width: 60rem;
    cursor: pointer;
}

@media only screen and (max-width: 800px) {
    .testimonial__right-person {
        width: 30rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.testimonial__right-person-profile {
    border-radius: 100rem;
    border: 0.5rem solid #035f96;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.testimonial__right-person-profile:hover {
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media only screen and (max-width: 1200px) {
    .testimonial__right-person-profile {
        height: 15rem;
        width: 15rem;
    }
}

.testimonial__right-person-info {
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: 3.5rem;
}

@media only screen and (max-width: 800px) {
    .testimonial__right-person-info {
        margin-left: 0;
        margin-top: 2rem;
    }
}

.testimonial__right-person-info-name {
    font-size: 4.2rem;
    color: #035f96;
    font-family: "Satisfy", cursive;
}

@media only screen and (max-width: 1200px) {
    .testimonial__right-person-info-name {
        font-size: 3.8rem;
    }
}

@media only screen and (max-width: 800px) {
    .testimonial__right-person-info-rating {
        text-align: center;
    }
}

.testimonial__right-person-info-rating-img {
    height: 2.8rem;
}

@media only screen and (max-width: 1200px) {
    .testimonial__right-person-info-rating-img {
        height: 2.4rem;
    }
}

.show-story {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
}

.hide-story {
    display: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* ========================= */
/* ACTIVITIES */
.activities {
    margin-top: 10rem;
    position: relative;
    z-index: 1;
}

.activities__slider-next {
    font-size: 20.2rem;
    color: #f6f6f6;
    font-family: "Satisfy", cursive;
    position: absolute;
    top: 50%;
    right: 4rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .activities__slider-next {
        font-size: 16rem;
    }
}

.activities__slider-prev {
    font-size: 20.2rem;
    color: #f6f6f6;
    font-family: "Satisfy", cursive;
    position: absolute;
    top: 50%;
    left: 4rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .activities__slider-prev {
        font-size: 16rem;
    }
}

.activities__slider-slide {
    height: 90rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.activities__slider-slide-1 { /* this is the info for the first slide. Same things for the background as before */
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(121, 81, 81, 0.65)), to(rgba(121, 81, 81, 0.65))), url(../img/activity1.jpg);
    background-image: linear-gradient(to right, rgba(121, 81, 81, 0.65), rgba(121, 81, 81, 0.65)), url(../img/activity1.jpg);
    background-size: cover;
    background-position: center;
}

.activities__slider-slide-2 { /* same as before, only for slide 2 */
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(121, 81, 81, 0.65)), to(rgba(121, 81, 81, 0.65))), url(../img/activity2.jpg);
    background-image: linear-gradient(to right, rgba(121, 81, 81, 0.65), rgba(121, 81, 81, 0.65)), url(../img/activity2.jpg);
    background-size: cover;
    background-position: center;
}

.activities__slider-slide-3 { /* again, the same, change both bacgrounds */
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(121, 81, 81, 0.65)), to(rgba(121, 81, 81, 0.65))), url(../img/activity3.jpg);
    background-image: linear-gradient(to right, rgba(121, 81, 81, 0.65), rgba(121, 81, 81, 0.65)), url(../img/activity3.jpg);
    background-size: cover;
    background-position: center;
}

.activities__slider-slide-title {
    color: #f6f6f6;
    font-weight: 400;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .activities__slider-slide-title {
        margin: 0 20%;
    }
}

.activities__slider-slide-text {
    font-size: 2.8rem;
    text-align: center;
    display: block;
    max-width: 60rem;
    margin: 1rem auto;
    color: #f6f6f6;
}

@media only screen and (max-width: 500px) {
    .activities__slider-slide-text {
        margin: 1rem 20%;
    }
}

.hide-slide {
    display: none;
}

.show-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/* ========================= */
/* ROOMS */
.rooms {
    width: 100%;
}

.rooms__title {
    font-size: 6.4rem;
    text-transform: uppercase;
    color: #035f96;
    margin: 10rem 5%;
}

.rooms__list {
    max-width: 140rem;
    margin: 0 auto;
    list-style: none;
}

@media only screen and (max-width: 1000px) {
    .rooms__list {
        margin: 0 5%;
    }
}

.rooms__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 33.8rem;
    padding: 2.5rem;
    border-top: 3px solid rgba(121, 81, 81, 0.65);
}

.rooms__item:last-of-type {
    border-bottom: 3px solid rgba(121, 81, 81, 0.65);
}

@media only screen and (max-width: 750px) {
    .rooms__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.rooms__item-text {
    margin: 0 2.5rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.rooms__item-img {
    display: block;
    width: 42.5rem;
    -o-object-fit: cover;
    object-fit: cover;
    height: 28.4rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.rooms__item-img:hover {
    -webkit-box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.9rem 0.9rem 1.6rem rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media only screen and (max-width: 750px) {
    .rooms__item-img {
        width: 100%;
    }
}

.rooms__item-title {
    font-size: 3.9rem;
    color: #035f96;
    font-weight: 300;
    letter-spacing: .6rem;
    margin: 1rem 0;
}

.rooms__item-description {
    font-size: 2.6rem;
    font-weight: 300;
    color: #035f96;
}

.rooms__item-button {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 4.5rem;
}

@media only screen and (max-width: 400px) {
    .rooms__item-button {
        -ms-flex-item-align: center;
        align-self: center;
    }
}


/* ========================= */
/* FOOTER */
.footer {
    width: 100%;
    min-height: 30rem;
    background-color: #035f96;
    margin-top: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 900px) {
    .footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.footer__left {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-left: 5%;
    margin-bottom: 5.5rem;
    padding-top: 5.5rem;
}

@media only screen and (max-width: 900px) {
    .footer__left {
        width: 100%;
        margin-left: 0;
        margin-bottom: 3.5rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__left-logo {
    background-color: #f6f6f6;
    width: 38rem;
    height: 27rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media only screen and (max-width: 1300px) {
    .footer__left-logo {
        width: 30rem;
        height: 14rem;
    }
}

@media only screen and (max-width: 900px) {
    .footer__left-logo {
        margin-bottom: 1rem;
    }
}

.footer__left-logo-img {
    width: 90%;
    height: 85%;
}

.footer__left-info {
    margin-left: 3rem;
}

@media only screen and (max-width: 900px) {
    .footer__left-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 0;
    }
}

.footer__left-info-text {
    font-size: 2.4rem;
    color: #f6f6f6;
    font-weight: 300;
    display: block;
}

@media only screen and (max-width: 1300px) {
    .footer__left-info-text {
        font-size: 2rem;
    }
}

.footer__left-info-social {
    margin-top: .5rem;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 900px) {
    .footer__left-info-social {
        margin-top: 1rem;
    }
}

.footer__left-info-social-icon {
    fill: #f6f6f6;
    width: 4.5rem;
    height: 4.5rem;
}

@media only screen and (max-width: 1300px) {
    .footer__left-info-social-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.footer__left-info-social-link {
    text-decoration: none;
}

.footer__left-info-social-link:not(:last-child) {
    margin-right: 1.5rem;
}

.footer__right {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 5.5rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 5%;
}

@media only screen and (max-width: 900px) {
    .footer__right {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-right: 0;
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
}

.footer__right-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: #f6f6f6;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 1300px) {
    .footer__right-title {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 450px) {
    .footer__right-title {
        text-align: center;
        margin-left: 5%;
        margin-right: 5%;
    }
}

.footer__right-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 450px) {
    .footer__right-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__right-input {
    height: 5.6rem;
    border-radius: 100rem;
    border: none;
    outline: none;
    background-color: #f6f6f6;
    width: 35rem;
    margin-right: 2rem;
    font-family: inherit;
    font-size: 2.4rem;
    padding: 2.4rem;
    color: #035f96;
}

@media only screen and (max-width: 1300px) {
    .footer__right-input {
        font-size: 1.8rem;
        width: 30rem;
    }
}

@media only screen and (max-width: 900px) {
    .footer__right-input {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 450px) {
    .footer__right-input {
        margin-right: 0;
    }
}

.footer__right-input::-webkit-input-placeholder {
    font-family: inherit;
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(121, 81, 81, 0.5);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.footer__right-input:-ms-input-placeholder {
    font-family: inherit;
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(121, 81, 81, 0.5);
    transform: translateY(-2px);
}

.footer__right-input::-ms-input-placeholder {
    font-family: inherit;
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(121, 81, 81, 0.5);
    transform: translateY(-2px);
}

.footer__right-input::placeholder {
    font-family: inherit;
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(121, 81, 81, 0.5);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

@media only screen and (max-width: 1300px) {
    .footer__right-input::-webkit-input-placeholder {
        font-size: 1.8rem;
    }

    .footer__right-input:-ms-input-placeholder {
        font-size: 1.8rem;
    }

    .footer__right-input::-ms-input-placeholder {
        font-size: 1.8rem;
    }

    .footer__right-input::placeholder {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 900px) {
    .footer__right-input::-webkit-input-placeholder {
        font-size: 2.2rem;
    }

    .footer__right-input:-ms-input-placeholder {
        font-size: 2.2rem;
    }

    .footer__right-input::-ms-input-placeholder {
        font-size: 2.2rem;
    }

    .footer__right-input::placeholder {
        font-size: 2.2rem;
    }
}

.footer__right-button {
    outline: none;
    border: none;
    cursor: pointer;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

@media only screen and (max-width: 450px) {
    .footer__right-button {
        -ms-flex-item-align: center;
        align-self: center;
        margin-top: 1rem;
    }
}