:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-light: #F0F0F0;
    --color-dark: #313130;
    --color-main: #010100;
    --color-text: #565656;
}

/* @font-face {
    font-family: FontName;
    src: url(../url);
} */

body {
    position: relative;
    background-color: var(--color-light);
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
    margin: 0;
}

img {
    display: block;
    object-fit: contain;
}


/* --------------------------------------General-------------------------------------- */

main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Sections */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.full {
    min-height: 100vh;
}

section.start {
    align-items: start;
}

section.end {
    align-items: end;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4.73rem 0 5.33rem;
}

header button.btn-circle {
    display: none;
}

header img {
    height: 85px;
}

nav {
    display: flex;
    align-items: center;
    gap: 4.33rem;
}

nav>a {
    font-size: 1.33em;
    font-weight: 500;
}

nav.white>a {
    color: var(--color-white);
    text-shadow: 1px 1px 3px var(--color-dark);
}

.nav__btns {
    display: flex;
    gap: 0.8rem;
}

.nav__btns .btn-circle {
    width: 48px;
    border-radius: 24px;
}

/* Menu */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
    padding: 3rem 2rem;
    width: 390px;
    height: 100vh;
    background-color: var(--color-dark);
    color: var(--color-white);
    translate: -100%;
    transition: translate 0.3s;
}

.menu__btns {
    display: grid;
    grid-template-columns: 1fr auto auto;
    column-gap: 0.66rem;
}

.menu__btns button {
    display: block;
    padding: 0;
    width: 40px;
    aspect-ratio: 1;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.33em;
}

.menu__btns .btn-circle {
    display: none;
    background-color: var(--color-main);
}

.menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}

.menu__nav a {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1rem;
    row-gap: 4px;
    padding-left: 0.8rem;
}

.menu__nav a p {
    color: #E6E6E6;
    font-size: 1.6em;
    font-weight: 500;
}

.menu__nav a span {
    color: #B6B6B6;
    font-size: 1em;
    font-weight: 500;
}

.menu__nav a i {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: end;
    margin-bottom: 0.6rem;
    font-size: 1.33em;
}

.menu__nav hr {
    opacity: 0.4;
}


/* Buttons */
.btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1;
    background-color: var(--color-dark);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 1.2em;
    font-weight: 500;
}

.btn-filled {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    height: 40px;
    background-color: var(--color-dark);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 1.07em;
    font-weight: 500;

}



/* ----------------------------------------Home---------------------------------------- */

/* Experience */
.home__experience {
    padding: 5.33rem 4.73rem 0 5.33rem;
}

.home__exp-grid {
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    max-width: 1130px;
}

.home__exp-grid .gradient {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    opacity: 0.4;
    filter: blur(45px);
}

.home__exp-grid .gradient.orange {
    background-image: linear-gradient(0deg, #815238 0%, #F7BC78 100%);
}

.home__exp-grid .gradient.blue {
    background-image: linear-gradient(0deg, #006191 0%, #B5B5BF 100%);
}

.home__exp-grid h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    z-index: 1;
    margin-top: 1.66rem;
    padding: 0 2.66rem;
    font-size: 2.8em;
    font-weight: 700;
}

.home__exp-grid p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
    z-index: 1;
    display: block;
    margin: 1rem 0 2.66rem 0;
    padding: 0 2.66rem;
    width: 100%;
    max-width: calc(650px + 5.32rem);
    color: var(--color-text);
    font-size: 1.33em;
    font-weight: 500;
}

.home__exp-grid img {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    position: relative;
    z-index: 1;
    margin: 0 2.66rem 3.46rem 2.66rem;
    width: calc(100% - 5.32rem);
    aspect-ratio: 50 / 27;
    border-radius: 25px;
    object-fit: cover;
}

.home__exp-links {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    align-self: end;
    justify-self: end;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.66rem;
    padding: 1.8rem 4rem;
    margin-bottom: 3.46rem;
}

.home__exp-links .btn-circle,
.home__exp-links .btn-filled {
    background: #FFFFFF66;
}

/* About */
.home__about {
    flex-direction: row;
    justify-content: space-evenly;
    margin: 10rem auto 12rem auto;
    max-width: 1130px;
}

.home__about div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.home__about h2 {
    font-size: 2.8em;
    font-weight: 700;
}

.home__about h3 {
    margin-bottom: 1rem;
    font-size: 1.5em;
    font-weight: 700;
}

.home__about p {
    color: var(--color-text);
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.3em;
}

.home__about p b {
    color: var(--color-main);
    font-weight: 700;
}

.home__about img {
    width: 315px;
    aspect-ratio: 21 / 20;
    object-fit: cover;
    border-radius: 25px;
}

/* Contact */
.home__contact-cont {
    padding: 0 4.73rem 9.8rem 5.33rem;
}

.home__contact {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 5.2rem 0 5.2rem;
    width: 100%;
    max-width: 1050px;
    text-align: center;
}

.home__contact h2 {
    font-size: 2.8em;
    font-weight: 700;
}

.home__contact h3 {
    margin-top: 2rem;
    font-size: 1.5em;
    font-weight: 700;
}

.home__contact p {
    margin: 3rem 0 6rem 0;
    color: var(--color-text);
    font-size: 1.2em;
    font-weight: 500;
}

.home__contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home__contact form input,
.home__contact form textarea {
    display: block;
    padding: 0 3.6rem;
    width: 100%;
    height: 50px;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 15px;
    font-size: 1.07rem;
    font-weight: 500;
}

.home__contact form textarea {
    resize: none;
    padding: 1rem 3.6rem;
    height: 110px;
}

.home__contact form input::placeholder,
.home__contact form textarea::placeholder {
    color: #97BBCE;
}

.contact__btns {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    column-gap: 2rem;
    margin-top: 5px;
    padding: 0 1.2rem 0 1.6rem;
}

.contact__btns .btn-filled {
    padding: 0 2rem;
}

.contact__btns> :first-child {
    max-width: 370px;
}

.home__contact .gradient {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #006191 0%, #B5B5BF 100%);
    border-radius: 25px;
    opacity: 0.4;
    filter: blur(45px);
}



/* ----------------------------------Experience Detail--------------------------------- */

/* Header */
.exp__header {
    position: relative;
    display: block;
    width: 100%;
    height: 400px;
}

.exp__header .gradient {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 0 25px 25px;
    opacity: 0.4;
    filter: blur(45px);
}

.exp__header .gradient.orange {
    background-image: linear-gradient(0deg, #815238 0%, #F7BC78 100%);
}

.exp__header .gradient.blue {
    background-image: linear-gradient(0deg, #006191 0%, #B5B5BF 100%);
}

.exp__header>img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 0 0 25px 25px;
    opacity: 0.9;
    object-fit: cover;
}

.exp__header header {
    position: relative;
    z-index: 2;
}

/* Info */
.exp__info-cont {
    padding: 4rem 4.73rem 0 5.33rem;
}

.exp__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.66rem;
    row-gap: 2.66rem;
    padding: 0 2.66rem;
    width: 100%;
    max-width: 1130px;
}

.exp__info h1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    font-size: 2.8em;
    font-weight: 700;
}

.exp__info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5em;
    font-weight: 700;
}

.exp__info p {
    color: var(--color-text);
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.3em;
}

.exp__info p b {
    font-weight: 700;
}

.exp__info div>ul {
    margin: 0.8rem 0;
    color: var(--color-text);
    font-size: 1.15em;
    line-height: 1.33em;
}

.exp__info-gallery {
    align-self: start;
    justify-self: center;
    display: grid;
    grid-template-columns: 150px 150px;
    gap: 1rem;
}

.exp__info-gallery img,
.exp__info-gallery video {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 25px;
    object-fit: cover;
}

/* Location */
.exp__location-cont {
    padding: 5.33rem 4.73rem 0 5.33rem;
}

.exp__location {
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    max-width: 1130px;
}

.exp__location .gradient {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #19A673 0%, #D3F8E2 100%);
    border-radius: 25px;
    opacity: 0.4;
    filter: blur(45px);
}

.exp__location h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    z-index: 1;
    margin-top: 1.66rem;
    padding: 0 2.66rem;
    font-size: 2.8em;
    font-weight: 700;
}

.exp__location p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
    z-index: 1;
    display: block;
    margin: 1rem 0 2.66rem 0;
    padding: 0 2.66rem;
    width: 100%;
    max-width: calc(530px + 5.32rem);
    color: var(--color-text);
    font-size: 1.33em;
    font-weight: 500;
}

.exp__location iframe {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    position: relative;
    z-index: 1;
    margin: 0 2.66rem;
    width: calc(100% - 5.32rem);
    aspect-ratio: 50 / 35;
    border-radius: 25px;
    object-fit: cover;
}

.exp__location-links {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    align-self: end;
    justify-self: end;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.66rem;
    padding: 0 4rem;
    margin: 2rem 0 3.46rem 0;
}

/* FAQ */
.exp__faq {
    margin: 5.33rem 0;
    padding: 0 4.73rem 0 5.33rem;
}

.exp__faq div {
    display: flex;
    flex-direction: column;
    padding: 0 2.66rem;
    width: 100%;
    max-width: 1130px;
}

.exp__faq h2 {
    margin-bottom: 2rem;
    font-size: 2.8em;
    font-weight: 700;
}

.exp__faq h4 {
    margin-bottom: 0.66rem;
    font-size: 1.2em;
    font-weight: 500;
}

.exp__faq p {
    margin-bottom: 2rem;
    max-width: 530px;
    color: var(--color-text);
    font-size: 1.07em;
    font-weight: 500;
}

/* Book */
.exp__book {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.66rem;
    padding: 1.2rem 0;
    width: 100%;
    background-color: #D9D9D9;
}

.exp__book h4 {
    font-size: 1.2em;
    font-weight: 700;
}

.exp__book-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    width: 220px;
    height: 45px;
    background-color: #03384B;
    border-radius: 22.5px;
    color: var(--color-white);
    font-size: 1.07em;
    font-weight: 500;
}



/* ---------------------------------------Booking-------------------------------------- */

.booking {
    min-height: calc(100vh - 100px);
}

.booking__title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5.33rem;
    padding: 0 2.66rem 1.33rem 2.66rem;
    width: 100%;
    max-width: 740px;
}

.booking__title h1 {
    font-size: 2.8em;
    font-weight: 700;
}

.booking__title img {
    width: 100%;
    aspect-ratio: 25 / 12;
    border-radius: 25px;
    object-fit: cover;
}

.booking__title .gradient {
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: calc(100% - 2rem);
    background-image: linear-gradient(0deg, #815238 0%, #F7BC78 100%);
    border-radius: 25px;
    opacity: 0.4;
    filter: blur(45px);
}

.booking p {
    margin: 1.33rem 0 1.66rem 0;
    color: var(--color-text);
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
}

.snorkel-booking-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.33rem 0 2.2rem 0;
    padding: 0 2.66rem;
    width: 100%;
    max-width: 700px;
    color: var(--color-text);
}

.snorkel-booking-info p {
    margin: 0;
    text-align: start;
}

.booking form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.8rem;
    row-gap: 1rem;
    margin-bottom: 6rem;
    padding: 0 2.66rem;
    width: 100%;
    max-width: 700px;
}

.booking form input,
.booking form select {
    display: block;
    padding: 0 1.2rem;
    width: 100%;
    height: 50px;
    background-color: var(--color-white);
    outline: none;
    border: 1px solid #D9D9D9;
    border-radius: 15px;
}

.booking form input.two-column {
    grid-column: 1 / 3;
}

.booking form input::placeholder {
    color: #A5A5A5;
}

.booking form .btn-filled {
    margin-top: 0.66rem;
    max-width: 230px;
}

.booking form div {
    display: flex;
    justify-content: end;
    gap: 0.66rem;
    margin-top: 0.66rem;
}

.booking form div.booking__check {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.8rem;
    margin-top: 0;
    padding: 0 0.8rem;
    width: 100%;
    height: 50px;
}

.booking__check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.booking__total {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 50px;
    font-size: 1.2em;
    font-weight: 700;
}



/* ---------------------------------------Guides--------------------------------------- */

.guides__cont {
    margin: 5.33rem 0 8rem 0;
    padding: 0 4.73rem 0 5.33rem;
}

.guides {
    display: flex;
    flex-direction: column;
    gap: 2.66rem;
    padding: 0 2.66rem;
    width: 100%;
    max-width: 1130px;
}

.guides h1 {
    font-size: 2.8em;
    font-weight: 700;
}

.guides__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.66rem;
    width: 100%;
}

.guides__grid a {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 5px;
    padding: 1.33rem 1.33rem 0.8rem 1.33rem;
    background-color: var(--color-black);
    border-radius: 25px;
    color: var(--color-white);
}

.guides__grid span {
    align-self: end;
    font-size: 0.93em;
    font-weight: 500;
}

.guides__grid i {
    font-size: 2.2em;
}

.guides__grid p {
    grid-column: 1 / 3;
    font-size: 1.2em;
    font-weight: 700;
}


/* ---------------------------------------Success--------------------------------------- */

.success,
.cancel {
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem;
}

.success__logo,
.cancel__logo {
    position: relative;
    display: block;
    width: 180px;
}

.success__logo span,
.cancel__logo span {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #006191 0%, #B5B5BF 100%);
    filter: blur(45px);
}

.cancel__logo span {
    background-image: linear-gradient(0deg, #815238 0%, #F7BC78 100%);
}

.success__logo img,
.cancel__logo img {
    position: relative;
    display: block;
    z-index: 1;
    width: 100%;
    object-fit: contain;
}

.success h1,
.cancel h1 {
    margin: 6rem 0 3rem 0;
    font-size: 2.2em;
}

.success p,
.cancel p {
    width: 100%;
    max-width: 500px;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.4em;
}

.success__info {
    margin: 3rem 0;
    display: block;
    width: 100%;
    max-width: 350px;
}

.success__info li {
    margin-bottom: 0.6rem;
    font-size: 1.1em;
    line-height: 1.33em;
    word-break: break-all;
}

.success__info li::marker {
    color: var(--color-text);
}

.success__info span {
    color: var(--color-text);
    font-size: 1.05em;
    font-weight: 700;
}

.success a,
.cancel a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    width: 220px;
    height: 45px;
    background-color: #03384B;
    border-radius: 22.5px;
    color: var(--color-white);
    font-size: 1.07em;
    font-weight: 500;
}

.cancel a {
    margin-top: 3rem;
    background-color: #815238;
}



/* --------------------------------------Specials-------------------------------------- */
.hidden {
    display: none;
}




/* -------------------------------------Responsive------------------------------------- */


@media screen and (max-width: 1200px) {

    /* General */
    header {
        padding: 3rem 3.5rem 0 3.5rem;
    }

    nav {
        gap: 3.33rem;
    }

    nav>a {
        font-size: 1.2em;
    }

    /* Home */
    .home__experience {
        padding: 5.33rem 3.5rem 0 3.5rem;
    }

    .home__about {
        justify-content: space-between;
        gap: 6rem;
        padding: 0 5.33rem;
    }

    .home__contact-cont {
        padding: 0 3.5rem 9.8rem 3.5rem;
    }

    /* Experience Detail */
    .exp__header {
        height: 300px;
    }

    .exp__info-cont {
        padding: 4rem 3.5rem 0 3.5rem;
    }

    .exp__location-cont {
        padding: 5.33rem 3.5rem 0 3.5rem;
    }

    .exp__faq {
        padding: 0 3.5rem;
    }

    /* Guide */
    .guides__grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 2rem;
    }
}

@media screen and (max-width: 900px) {

    /* General */
    header button.btn-circle {
        display: flex;
    }

    header a.desk {
        display: none;
    }

    .nav__btns .btn-circle {
        width: 40px;
        border-radius: 20px;
        font-size: 1.07em;
    }

    .nav__btns .fa-whatsapp {
        font-size: 18px;
    }

    /* Home */
    .home__about {
        flex-direction: column;
        margin: 8rem auto 10rem auto;
    }

    /* Experience Detail */
    .exp__info,
    .exp__location h2,
    .exp__location p,
    .exp__faq div {
        padding: 0 1rem;
    }

    /* Guide */
    .guides__cont {
        padding: 0 3.5rem;
    }
}

@media screen and (max-width: 760px) {

    /* General */
    header {
        padding: 4.66rem 2rem 0 2rem;
    }

    .menu {
        padding: 4.66rem 2rem 0 2rem;
        width: 100%;
    }

    .menu__btns .btn-circle {
        display: flex;
    }

    /* Home */
    .home__experience {
        padding: 3.33rem 1rem 0 1rem;
    }

    .home__exp-grid h2 {
        margin-top: 0;
        padding: 0 1rem;
        font-size: 2.2em;
    }

    .home__exp-grid p {
        padding: 0 1rem;
    }

    .home__exp-grid img {
        margin: 0 1.46rem 1.9rem 1.46rem;
        width: calc(100% - 2.92rem);
        aspect-ratio: 1;
    }

    .home__exp-links {
        grid-row: 4 / 5;
        justify-self: unset;
        display: grid;
        grid-template-columns: 1fr auto auto;
        padding: 0 1.46rem;
    }

    .home__exp-links .btn-circle,
    .home__exp-links .btn-filled {
        background-color: #010100CC;
    }

    .home__exp-grid .gradient {
        grid-row: 2 / 5;
    }

    .home__about {
        padding: 0 2rem;
    }

    .home__about h2 {
        font-size: 2.2em;
    }

    .home__contact-cont {
        padding: 0 1rem 9.8rem 1rem;
    }

    .home__contact {
        padding: 1.5rem 1rem 0 1rem;
    }

    .home__contact h2 {
        font-size: 2.2em;
    }

    .contact__btns {
        column-gap: 0.66rem;
        padding: 0 0.6rem;
    }

    .contact__btns> :first-child {
        width: max-content;
        padding: 0 2.66rem;
    }

    .contact__btns a.btn-filled {
        padding: 0;
        aspect-ratio: 1;
    }

    /* Experience Detail */
    .exp__info-cont {
        padding: 4rem 2rem 0 2rem;
    }

    .exp__info {
        grid-template-columns: 100%;
        row-gap: 0;
        padding: 0;
    }

    .exp__info h1 {
        grid-column: 1 / 2;
        font-size: 2.2em;
    }

    .exp__info h3 {
        margin: 1.5rem 0;
    }

    .exp__info p {
        margin: 1rem 0 3.33rem 0;
    }

    .exp__location-cont {
        padding: 3.33rem 1rem 0 1rem;
    }

    .exp__location h2 {
        font-size: 2.2em;
    }

    .exp__location iframe {
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .exp__location-links {
        justify-self: start;
        display: grid;
        grid-template-columns: 1fr auto auto;
        padding: 0 1rem;
        width: 100%;
    }

    .exp__faq {
        padding: 0 2rem;
    }

    .exp__faq h2 {
        font-size: 2.2em;
    }

    .exp__book-link {
        margin-bottom: 4rem;
    }

    /* Booking */
    .booking__title h1 {
        font-size: 2.2em;
    }

    /* Guide */
    .guides__cont {
        padding: 0 2rem;
    }

    .guides {
        padding: 0;
    }

    .guides h1 {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 480px) {

    /* Home */
    .home__exp-links .btn-circle,
    .home__exp-links .btn-filled {
        padding: 0 1rem;
    }

    .home__about {
        margin: 5rem 0 6rem 0;
    }

    .home__about img {
        width: 60%;
    }

    /* Experience Detail */
    .exp__info-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .exp__location-links .btn-filled {
        padding: 0 1rem;
    }

    .exp__book h4 {
        font-size: 1.07em;
    }

    /* Booking */
    .booking__title {
        margin-top: 2rem;
        padding: 0 2rem 1.33rem 2rem;
    }

    .booking__title img {
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }

    .booking form {
        padding: 0 2rem;
    }

    .booking form .btn-filled {
        justify-self: start;
        padding: 0 2.2rem;
    }

    /* Guide */
    .guides__grid {
        grid-template-columns: 100%;
        row-gap: 1rem;
    }
}

/* IPhone SE */
@media screen and (max-width: 380px) {
    .booking form {
        padding: 0 1.5rem;
    }
}



/* -------------------------------------Animations------------------------------------- */



/* Keyframes */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fade-out {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loader-animation {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 78px;
        left: 78px;
        width: 36px;
        height: 36px;
        opacity: 0;
    }
}

@keyframes loader-text {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}