/* --------------------
 * 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: 4rem;

    /* * ========== Colors ==========
         * Change favorite color to match images
         * Green dark 190 - Green 171 - Grren Blue 200 */
    --hue: 45;

    /* * ========== HSL color mode ========== */
    --first-color: hsl(var(--hue), 98%, 60%);
    --first-color-alt: hsl(var(--hue), 100%, 53%);
    --first-color-light: hsl(var(--hue), 65%, 91%);
    --first-color-second: hsl(var(--hue), 100%, 47%);
    --title-color: hsl(var(--hue), 20%, 60%);
    --text-color: hsl(var(--hue), 37%, 52%);
    --text-color-light: hsl(var(--hue), 8%, 60%);
    --input-color: hsl(var(--hue), 24%, 97%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --white-color: #FFF;
    --black-color: #000;

    --scroll-bar-color: hsl(var(--hue), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue), 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;
    }
}

/* --------------------
   * 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,
textarea {
    border: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
}

input {
    outline: none;
}

.main {
    overflow-x: hidden;
}

/* --------------------
   * REUSABLE CSS CLASSES 
   * ------------------- */
.section {
    padding: 4.5rem 0 2.5rem;
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    text-align: center;
    text-transform: 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;
}

/* --------------------
   * ROUTE 
   * ------------------- */
.route {
    justify-content: center;
}

.route__container {
    margin-top: 25px;
}

.route__link {
    color: var(--first-color-second);
}

.route li {
    display: inline;
    font-size: var(--small-font-size);
    color: var(--title-color);
}

/* --------------------
   * COOKIE 
   * ------------------- */
.wrapper {
    position: fixed;
    bottom: 10px;
    margin-bottom: 28px;
    left: -370px;
    max-width: 345px;
    width: 100%;
    background: var(--first-color-light);
    border-radius: 8px;
    padding: 15px 25px 22px;
    z-index: 100;
    transition: left 0.4s ease;
}

.wrapper.show {
    left: 20px;
}

.wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.wrapper .data {
    margin-top: 16px;
}

.wrapper .data p {
    color: black;
    font-size: var(--small-font-size);
}

.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .cookie__logo-icon {
    color: black;
    font-size: 32px;
}

header h2 {
    color: black;
    font-weight: 500;
}

.buttons .button-cookie {
    border: none;
    color: white;
    padding: 8px 0;
    border-radius: 4px;
    background: var(--first-color);
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: .4s;
    text-align: center;
    font-size: 1rem;
}

.buttons .button-cookie:hover {
    background-color: var(--first-color-alt);
}

.buttons .button-cookie__link {
    border: none;
    color: var(--first-color-alt);
    padding: 8px 0;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: .4s;
    text-align: center;
    font-size: 1rem;
}

.buttons .button-cookie__link:hover {
    color: var(--first-color-second);
    text-decoration: underline;
}

/* --------------------
   * 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 {
    font-weight: var(--font-semi-bold);
    font-size: 1.25rem;
}

.nav__toggle {
    font-size: 1.2rem;
    cursor: pointer;
}

.nav__menu {
    position: relative;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
        padding: 3rem;
        transition: .4s;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.nav__link {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
}

.nav__link:hover {
    color: var(--first-color-second);
}

.nav__close {
    position: absolute;
    top: .75rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

/* * ========== show menu ========== */
.show-menu {
    right: 0;
}

/* * ========== Change background header ========== */
.scroll-header {
    background-color: var(--body-color);
    box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
    color: var(--first-color);
}

/* * ========== Active link ========== */
.active-link {
    position: relative;
    color: var(--first-color-second);
}

.active-link::before {
    content: '';
    position: absolute;
    background-color: var(--first-color);
    width: 100%;
    height: 2px;
    bottom: -.75rem;
    left: 0;
}

/* --------------------
   * HOME 
   * ------------------- */
.home__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 100%;
}

.home__container {
    position: relative;
    height: calc(100vh - var(--header-height));
    align-content: center;
    row-gap: 3rem;
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
    color: var(--white-color);
}

.home__data-subtitle {
    display: block;
    font-weight: 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);
    text-transform: capitalize;
}

.home__social {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.home__social-link {
    font-size: 1.2rem;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home__social-link--text {
    font-size: var(--smaller-font-size);
}

.home__info {
    background-color: var(--first-color);
    display: flex;
    padding: 1.5rem 1rem;
    align-items: center;
    column-gap: .5rem;
    position: absolute;
    right: 0;
    bottom: 1rem;
    width: 228px;
}

.home__info-title {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-75);
}

.home__info-button {
    font-size: var(--smaller-font-size);
}

.home__info-overlay {
    overflow: var(--img-hidden);
}

.home__info-img {
    width: 145px;
    transition: var(--img-transition);
}

.home__info-img:hover {
    transform: var(--img-scale);
}

/* --------------------
   * BUTTON 
   * ------------------- */
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
}

.button__icon {
    transition: .3s;
}

.button:hover {
    background-color: var(--first-color-alt);
}

.button--flex {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}

.button--link {
    background: none;
    padding: 0;
}

.button--link:hover {
    background: none;
}

.button:hover .button__icon {
    transform: translateX(.25rem);
}

.button--link:hover .button__icon {
    transform: translateX(.25rem);
}

/* --------------------
   * 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);
}

.about__img-one {
    width: 130px;
}

.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);
}

/* --------------------
   * PLACE 
   * ------------------- */
.place__card,
.place__img {
    height: 230px;
    width: 265px;
    object-fit: cover;
}

.place__container {
    grid-template-columns: repeat(1, 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 {
    color: var(--white-color);
}

.place__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .75rem .75rem 1rem;
}

.place__rating {
    align-self: flex-end;
    display: flex;
    align-items: center;
    background-color: var(--first-color);
    padding: 0.35rem;
    border-radius: 50%;
    font-size: 1.15rem;
}

.place__rating-icon {
    font-size: 1.75rem;
    margin-right: var(--mb-0-25);
    display: contents;

}

.place__subtitle,
.place__price {
    display: block;
}

.place__price {
    font-size: var(--smaller-font-size);
}

.place__subtitle {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1-25);
}

.place__button {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: .75rem 1rem;
    font-size: var(--smaller-font-size);
}

.place__banner {
    grid-template-columns: repeat(1, max-content);
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.place__banner-card,
.place__banner-img {
    height: 230px;
    width: 265px;
    object-fit: cover;
}

.place__banner-card {
    position: relative;
    overflow: var(--img-hidden);
}

.place__banner-card:hover .place__banner-img {
    transform: var(--img-scale);
}

.place__banner-img {
    transition: var(--img-transition);
}

.place__banner-content {
    color: var(--white-color);
}

.place__banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .75rem .75rem 1rem;
}

.place__banner-rating {
    align-self: flex-end;
    display: flex;
    align-items: center;
    background-color: var(--first-color);
    padding: 0.35rem;
    border-radius: 50%;
    font-size: 1.15rem;
}

.place__banner-rating-icon {
    font-size: 1.75rem;
    margin-right: var(--mb-0-25);
    display: contents;

}

.place__banner-subtitle {
    display: block;
}

.place__banner-subtitle {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1-25);
}

.place__banner-button {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: .75rem 1rem;
    font-size: var(--smaller-font-size);
}

/* --------------------
   * QUESTIONS 
   * ------------------- */
.question__container {
    row-gap: 2rem;
}

.question__img {
    width: 280px;
    justify-self: center;
}

.question__title {
    margin-bottom: var(--mb-1);
}

.question__description {
    margin-bottom: var(--mb-2);
}

.question__details {
    display: grid;
    row-gap: 1rem;
    margin-bottom: var(--mb-2-5);
}

.question__details-description {
    display: inline-flex;
    column-gap: .5rem;
}

.question__details-icon {
    font-size: 1rem;
    color: var(--first-color);
    margin-top: .15rem;
}

/* --------------------
   * STEPS 
   * ------------------- */
.steps__bg {
    background-color: var(--first-color);
    padding: 3rem 2rem 2rem;
    /* border-radius: 1rem; */
}

.steps__container {
    gap: 2rem;
    padding-top: 1rem;
}

.steps__title {
    color: #FFF;
}

.steps__card {
    background-color: var(--white-color);
    padding: 2.5rem 3rem 2rem 1.5rem;
    border-radius: 1rem;
}

.steps__card-number {
    display: inline-block;
    background-color: var(--first-color-alt);
    color: #FFF;
    padding: .5rem .75rem;
    border-radius: .25rem;
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1-5);
    transition: .3s;
}

.steps__card-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
}

.steps__card-description {
    font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number {
    transform: translateY(-.25rem);
}

/* --------------------
   * SERVICE 
   * ------------------- */
.service__card {
    position: relative;
    width: 200px;
    overflow: var(--img-hidden);
}

.service__data {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
}

.service__title,
.service__description {
    color: var(--white-color);
}

.service__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.service__description {
    display: block;
    font-size: var(--smaller-font-size);
}

.service__img {
    transition: var(--img-transition);
}

.service__img:hover {
    transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: none;
}

/* --------------------
   * EXPERIENCE 
   * ------------------- */
.experience__container {
    row-gap: 2.5rem;
    justify-content: center;
    justify-items: center;
}

.experience__content {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
    justify-items: center;
    padding: 0 2rem;
}

.experience__number {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-5);
}

.experience__description {
    font-size: var(--small-font-size);
}

.experience__img {
    position: relative;
    padding-bottom: 2rem;
}

.experience__img-one,
.experience__img-two {
    transition: var(--img-transition);
}

.experience__img-one:hover,
.experience__img-two:hover {
    transform: var(--img-scale);
}

.experience__overlay {
    overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
    width: 263px;
    margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
    width: 120px;
    position: absolute;
    top: 2rem;
    right: 0;
}

/* --------------------
   * VIDEO 
   * ------------------- */
.video__container {
    padding-bottom: 1rem;
}

.video__description {
    text-align: center;
    margin-bottom: var(--mb-2-5);
}

.video__content {
    position: relative;
}

.video__button {
    position: absolute;
    right: 1rem;
    bottom: -1rem;
    padding: 1rem 1.5rem;
}

.video__button-icon {
    font-size: 1.2rem;
}

/* --------------------
   * SPONSORS 
   * ------------------- */
.sponsor__container {
    /* grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); */
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    row-gap: 3rem;
    padding-bottom: 40px;
}

.sponsor__content:hover .sponsor__img {
    filter: grayscale(0%);
    transform: scale(1.2);
}

.sponsor__img {
    width: 10rem;
    filter: grayscale(100%);
    transition: var(--img-transition);
}

/* --------------------
   * BRANDS 
   * ------------------- */
.brand__container {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    justify-items: center;
    align-items: center;
    row-gap: 4.5rem;
    column-gap: 3.5rem;
    padding: 40px;
}

.brand__content:hover .brand__img {
    filter: grayscale(0%);
    transform: scale(1.2);
}

.brand__img {
    width: 15rem;
    filter: grayscale(100%);
    transition: var(--img-transition);
}

/* --------------------
   * MAPS 
   * ------------------- */
.maps__container {
    row-gap: 3.5rem;
}

.maps__box {
    display: grid;
    justify-content: center;
}

.maps__data {
    width: 300px;
    text-align: center;
    transition: var(--img-transition);
}

/* --------------------
   * CONTACT 
   * ------------------- */
.contact__container {
    row-gap: 3.5rem;
}

.contact__data {
    display: grid;
    row-gap: 3rem;
}

.contact__subtitle {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
}

.contact__description {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--text-color);
    font-weight: var(--font-medium);
}

.contact__icon {
    font-size: 1.25rem;
}

.contact__inputs {
    display: grid;
    row-gap: 2rem;
    margin-bottom: var(--mb-2-5);
}

.contact__content {
    position: relative;
    height: 3rem;
    border-bottom: 1.5rem;
}

.contact__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    font-size: var(--small-font-size);
    border: 1px solid var(--text-color);
    border-radius: .5rem;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
}

.contact__label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 .25rem;
    background-color: var(--white-color);
    color: var(--text-color);
    font-size: var(--small-font-size);
    transition: .4s;
}

.contact__area {
    height: 7rem;
}

.contact__area textarea {
    resize: none;
}

/* * ========== Input focus move up label ========== */
.contact__input:focus+.contact__label {
    top: -.5rem;
    left: .8rem;
    color: var(--first-color-second);
    font-size: var(--smaller-font-size);
    font-weight: 500;
    z-index: 10;
}

/* * ========== Input focus sticky top label ========== */
.contact__input:not(:placeholder-shown).contact__input:not(:focus)+.contact__label {
    top: -.5rem;
    left: .8rem;
    font-size: var(--smaller-font-size);
    font-weight: 500;
    z-index: 10;
}

/* * ========== Input focus ========== */
.contact__input:focus {
    border: 1.5px solid var(--first-color-second);
}

/* * ========== Input success ========== */
.contact__input.success {
    border-color: var(--first-color-second);
}

/* --------------------
   * CONTACT US
   * ------------------- */
.contact-us__bg {
    background-color: var(--first-color-light);
    padding: 3rem 2rem 2rem;
}

.contact-us__container {
    padding-bottom: 3rem;
}

.contact-us__title {
    color: var(--title-color);
}

.contact-us__description {
    text-align: center;
    margin-top: 1.75rem;
}

.contact-us__content {
    row-gap: .75rem;
    color: var(--text-color);
}

.contact-us__address {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
}

.contact-us__information {
    font-weight: initial;
    color: var(--text-color);
}

/* --------------------
   * FOOTER
   * ------------------- */
.footer {
    background-color: var(--first-color);
}

.footer__container {
    row-gap: 2rem;
}

.footer__content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
    font-size: var(--h3-font-size);
    color: var(--white-color);
}

.footer__title {
    margin-bottom: var(--mb-1);
    display: flex;
    align-items: center;
}

.footer__logo {
    width: 25px;
    margin-right: 10px;
}

.footer__description {
    margin-bottom: var(--mb-2);
    font-size: .95rem;
    color: var(--white-color);
}

.footer__social {
    font-size: 1.25rem;
    color: var(--white-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(--white-color);
    font-size: .95rem;
}

.footer__link:hover {
    color: var(--text-color);
}

.footer__card {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
}

.footer__card-img {
    width: 35px;
}

.footer__rights {
    /* display: flex; */
    flex-direction: column;
    /* row-gap: 1.5rem; */
    text-align: center;
}

.footer__copy,
.footer__terms-link,
.footer__create-link,
.footer__web-link {
    font-size: var(--small-font-size);
    color: var(--white-color);
}

.footer__terms {
    display: grid;
    row-gap: 0.7rem;
    justify-items: center;
}

.footer__terms-link:hover,
.footer__web-link:hover {
    color: var(--text-color);
}

/* --------------------
   * SCROLL UP
   * ------------------- */
.scrollup {
    position: fixed;
    right: 1.8rem;
    bottom: -20%;
    background-color: var(--first-color-alt);
    border-radius: 10%;
    padding: .5rem;
    display: flex;
    opacity: .9;
    z-index: var(--z-tooltip);
    transition: .4s;
}

.scrollup__icon {
    font-size: 1.2rem;
    color: var(--white-color);
}

.scrollup:hover {
    background-color: var(--first-color-second);
    opacity: 1;
}

/* * ========== Show scroll ========== */
.show-scroll {
    bottom: 9.2rem;
}

/* --------------------
   * 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);
}

/* --------------------
   * POLITY
   * ------------------- */
.polity__logo-icon {
    width: 600px;
    height: 60px;
    margin-top: 40px;
}

.polity__site-branding img {
    width: 300px;
    height: auto;
}

.polity__text-center {
    text-align: center !important;
    color: var(--black-color);
}

.polity__text-paragraph {
    font-size: var(--small-font-size);
    color: var(--black-color);
}

.polity__has-text-align-right {
    text-align: right;
    color: var(--black-color);
}

.polity__subtitle {
    color: var(--black-color);
}

.polity__justify-content-center {
    justify-content: center !important;
}

.polity__col {
    flex: 1 0 0%;
}

.polity__row {
    --bs-gutter-x: -7.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

footer nav ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
    text-decoration: underline;
}

/* --------------------
   * TERMS
   * ------------------- */
.terms__logo-icon {
    width: 600px;
    height: 60px;
    margin-top: 40px;
}

.terms__site-branding img {
    width: 300px;
    height: auto;
}

.terms__text-center {
    text-align: center !important;
    color: var(--black-color);
}

.terms__text-paragraph {
    font-size: var(--small-font-size);
    color: var(--black-color);
}

.terms__has-text-align-right {
    text-align: right;
    color: var(--black-color);
}

.terms__subtitle {
    color: var(--black-color);
}

.terms__mb {
    margin-bottom: 8px;
}

.terms__icon-circle {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--black-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    margin-bottom: 0.15rem;
    margin-left: 0.15rem;
}

.terms__justify-content-center {
    justify-content: center !important;
}

.terms__col {
    flex: 1 0 0%;
}

.terms__row {
    --bs-gutter-x: -7.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

footer nav ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
    text-decoration: underline;
}

/* --------------------
   * MEDIAQUERIES
   * ------------------- */
/* * ========== For small devices ========== */
@media screen and (max-width: 340px) {

    /* 
       * Place */
    .place__container {
        grid-template-columns: max-content;
        justify-content: center;
    }

    .place__banner-card,
    .place__banner-img {
        width: 100px;
        height: 250px;
    }

    /* 
       * Steps */
    .steps__bg {
        padding: 2rem 1rem;
    }

    .steps__card {
        padding: 1.5rem;
    }

    /* 
       * Experience */
    .experience__content {
        padding: 0;
    }

    .experience__overlay:nth-child(1) {
        width: 190px;
    }

    .experience__overlay:nth-child(2) {
        width: 80px;
    }

    /* 
       * Contact Us */
    .contact-us__bg {
        padding: 2rem 1rem;
    }

    /* 
       * Home */
    .home__info {
        width: 190px;
        padding: 1rem;
    }

    /* 
       * Maps */
    .maps__data {
        width: 400px;
    }

    /* 
       * Experience & Video */
    .experience__img,
    .video__container {
        padding: 0;
    }
}

/* * ========== For medium devices ========== */
@media screen and (min-width: 568px) {

    /* 
       * Place */
    .place__container {
        grid-template-columns: repeat(2, max-content);
    }

    .place__banner-card,
    .place__banner-img {
        width: 555px;
        height: 250px;
    }

    /* 
       * Steps */
    .steps__container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 
       * Contact Us */
    .contact-us__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .contact-us__description {
        text-align: initial;
    }

    /* 
       * Maps */
    .maps__data {
        width: 500px;
    }

    /* 
       * Question & Contact */
    .question__container,
    .contact__container {
        padding: 0 4rem 0 4rem;
    }

    /* 
       * Video */
    .video__container {
        display: grid;
        grid-template-columns: .6fr;
        justify-content: center;
    }

    /*
       * Sponsors */
    .sponsor__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor__img {
        width: 15rem;
    }
}

@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    /* 
       * Header */
    .nav {
        height: calc(var(--header-height) + 1.1rem);
    }

    .nav__link {
        color: var(--white-color);
        text-transform: initial;
    }

    .nav__link:hover {
        color: var(--white-color);
    }

    .nav__menu {
        display: flex;
        column-gap: 1rem;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 3rem;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .active-link::before {
        background-color: var(--white-color);
    }

    .scroll-header {
        color: var(--text-color);
    }

    .scroll-header .nav__link {
        color: var(--first-color);
    }

    .scroll-header .active-link {
        color: var(--first-color-second);
    }

    .scroll-header .active-link::before {
        background-color: var(--first-color-second);
    }

    /* 
       * Scroll */
    .show-scroll {
        bottom: 9.2rem;
    }

    /* 
       * Layout */
    .section {
        padding: 5rem 0 2rem;
    }

    /* 
       * Home */
    .home__container {
        height: 100vh;
        grid-template-rows: 1.8fr .5fr;
    }

    .home__data {
        align-self: flex-end;
    }

    .home__social {
        flex-direction: row;
        align-self: flex-end;
        margin-bottom: 3rem;
        column-gap: 2.5rem;
    }

    .home__info {
        bottom: 3rem;
    }

    /* 
       * About, Question */
    .about__container,
    .question__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    /* 
       * About & Contact */
    .about__data,
    .about__title,
    .contact__title,
    .contact-us__title,
    .question__title {
        text-align: initial;
    }

    /* 
       * About */
    .about__container {
        padding: 0 3rem 0 3rem;
    }

    .about__title {
        margin-bottom: var(--mb-1-5);
    }

    .about__description {
        margin-bottom: var(--mb-2);
    }

    /* 
       * Maps */
    .maps__data {
        width: 730px;
    }

    /* 
       * Service */
    .service__container {
        width: 610px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 
       * Service & Place */
    .service__container,
    .place__container {
        padding-top: 2rem;
    }

    /* 
       * Experience */
    .experience__overlay:nth-child(1) {
        width: 363px;
        margin-right: 4rem;
    }

    .experience__overlay:nth-child(2) {
        width: 160px;
    }

    /* 
       * Contact */
    .contact__container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 
       * Footer */
    .footer__content {
        justify-items: center;
        grid-template-columns: 1fr .5fr .5fr .5fr;
    }

    .footer__rights {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer__terms {
        display: flex;
        column-gap: 1.5rem;
        justify-content: center;
    }
}

/* * ========== For large devices ========== */
@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    /* 
       * Home */
    .home__container {
        grid-template-rows: 2fr .5fr;
    }

    .home__info {
        width: 328px;
        grid-template-columns: 1fr 2fr;
        column-gap: 2rem;
    }

    .home__info-title {
        font-size: var(--normal-font-size);
    }

    .home__info-img {
        width: 240px;
    }

    /* 
       * About */
    .about__img-one {
        width: 230px;
    }

    .about__img-two {
        width: 290px;
    }

    /* 
       * Place */
    .place__container {
        gap: 3rem 2rem;
    }

    .place__container {
        grid-template-columns: repeat(3, max-content);
    }

    .place__card,
    .place__img {
        height: 263px;
        width: 290px;
    }

    .place__banner {
        grid-template-columns: repeat(2, max-content);
        margin-top: 3rem;
        gap: 2rem;
    }

    .place__banner-card,
    .place__banner-img {
        width: 455px;
        height: 250px;
    }

    /* 
       * Steps */
    .steps__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps__bg {
        padding: 3.5rem 2.5rem;
    }

    .steps__card-title {
        font-size: var(--normal-font-size);
    }

    /* 
       * Contact Us */
    .contact-us__container {
        column-gap: 6rem;
        grid-template-columns: 3fr 1.5fr 1.25fr;
    }

    /* 
       * Question */
    .question__img {
        width: 320px;
    }

    /* 
       * Maps */
    .maps__data {
        width: 900px;
    }

    /* 
       * Service */
    .service__card {
        width: 237px;
    }

    .service__container {
        width: 700px;
    }

    .service__data {
        left: 1.5rem;
        bottom: 2rem;
    }

    .service__title {
        font-size: var(--h3-font-size);
    }

    /* 
       * Experience */
    .experience__content {
        margin: var(--mb-1) 0;
        column-gap: 3.5rem;
    }

    .experience__overlay:nth-child(1) {
        width: 463px;
        margin-right: 7rem;
    }

    .experience__overlay:nth-child(2) {
        width: 220px;
        top: 3rem;
    }

    /* 
       * Video */
    .video__container {
        grid-template-columns: .7fr;
    }

    .video__description {
        padding: 0 8rem;
    }

    /*
       * Sponsors */
    .sponsor__container {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsor__img {
        width: 12rem;
    }

    /* 
       * Footer */
    .footer__rights {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }

    /* 
       * Question */
    .question__container {
        column-gap: 7rem;
    }

    /* 
       * Scroll */
    .scrollup {
        right: 1.8rem;
    }

    .show-scroll {
        bottom: 9.25rem;
    }
}

/* * ========== For tall screens on mobiles y desktop ========== */
@media screen and (min-height: 721px) {
    body {
        margin: 0;
    }

    /* 
       * Home */
    .home__container,
    .home__img {
        height: 700px;
    }
}