:root {
    --section-rotate: 9vw;
}

::-moz-selection {
    background-color: #55c57a;
    color: #fff;
}

::selection {
    background-color: #55c57a;
    color: #fff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    color: #777;
    padding: 3rem;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main {
    background-color: #f7f7f7;
    padding: 8rem 6rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.span-all-rows {
    grid-row: 1 / -1;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
}

.ma-bt-md {
    margin-bottom: 3rem !important;
}

.ma-bt-lg {
    margin-bottom: 3.5rem !important;
}

.right {
    text-align: right !important;
}

.line {
    margin: 6rem 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.alert {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 1.6rem 15rem;
    -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.alert--success {
    background-color: #20bf6b;
}
.alert--error {
    background-color: #eb4d4b;
}

.heading-secondary {
    font-size: 2.25rem;
    text-transform: uppercase;
    font-weight: 700;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#7dd56f),
        to(#28b487)
    );
    background-image: linear-gradient(to right, #7dd56f, #28b487);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.1rem;
    line-height: 1.3;
    display: inline-block;
}
.heading-secondary--error {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ff7730),
        to(#eb4d4b)
    );
    background-image: linear-gradient(to right, #ff7730, #eb4d4b);
    font-size: 3.5rem;
}

.heading-primary,
.heading-tertirary {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
}
.heading-primary span,
.heading-tertirary span {
    padding: 1rem 1.5rem;
    line-height: 1;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: -webkit-gradient(
        linear,
        left top,
        right bottom,
        from(rgba(125, 213, 111, 0.85)),
        to(rgba(40, 180, 135, 0.85))
    );
    background-image: linear-gradient(
        to bottom right,
        rgba(125, 213, 111, 0.85),
        rgba(40, 180, 135, 0.85)
    );
}

.heading-primary {
    font-size: 5rem;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.heading-tertirary {
    font-size: 2.75rem;
    text-align: right;
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    width: 70%;
    z-index: 10;
}

.btn,
.btn:link,
.btn:visited {
    font-size: 1.6rem;
    padding: 1.4rem 3rem;
    border-radius: 10rem;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*Add later when we use this for the button in form*/
    border: none;
    cursor: pointer;
}

.btn:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn:active {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn:focus {
    outline: none;
    background-color: #2e864b;
}

.btn--white {
    background-color: #fff;
    color: #777;
}
.btn--white::after {
    background-color: #fff;
}

.btn--green {
    background-color: #55c57a;
    color: #fff;
}
.btn--green::after {
    background-color: #55c57a;
}

.btn--google {
    background-color: #f6241c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}
.btn--google:hover {
    background-color: #eb4d4b;
}

.btn--small {
    padding: 1.25rem 3rem !important;
    font-size: 1.4rem !important;
}

.btn-small,
.btn-small:link,
.btn-small:visited {
    background-color: #55c57a;
    color: #fff;
    font-size: 1.4rem;
    padding: 1.25rem 3rem;
    border-radius: 10rem;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    font-weight: 400;
    border: none;
}

.btn-small:hover {
    background-color: #7dd56f;
}

.btn-text:link,
.btn-text:visited {
    color: #55c57a;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #55c57a;
    padding: 3px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.btn-text:hover {
    background-color: #55c57a;
    color: #fff;
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.btn-text:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-text:focus {
    outline: none;
    outline: 3px solid #55c57a;
    outline-offset: 3px;
}

.header {
    background-color: #444;
    padding: 0 5rem;
    height: 8rem;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 100;
    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;
}
@media only screen and (max-width: 62.5em) {
    .header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.header__logo img {
    height: 3.5rem;
}
@media only screen and (max-width: 62.5em) {
    .header__logo {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 1.5rem;
    }
}

.section-header {
    position: relative;
    height: 38vw;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - var(--section-rotate)),
        0 100%
    );
    -webkit-clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - var(--section-rotate)),
        0 100%
    );
}

.header__hero {
    height: 100%;
}

.header__hero-img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    -o-object-position: 50% 25%;
    object-position: 50% 25%;
}

.header__hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-image: -webkit-gradient(
        linear,
        left top,
        right bottom,
        from(#7dd56f),
        to(#28b487)
    );
    background-image: linear-gradient(to right bottom, #7dd56f, #28b487); */
    opacity: 0.85;
}

.heading-box {
    position: absolute;
    bottom: 13vw;
    left: 50%;
    top: 35%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.heading-box__group {
    color: #f7f7f7;
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.heading-box__detail {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
.heading-box__detail svg {
    margin-right: 0.8rem;
}
.heading-box__detail:not(:last-child) {
    margin-right: 4rem;
}
.heading-box__icon {
    height: 2rem;
    width: 2rem;
    fill: currentColor;
    -webkit-filter: drop-shadow(0 0.75rem 0.5rem rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0 0.75rem 0.5rem rgba(0, 0, 0, 0.25));
}

.section-description {
    background-color: #fcfcfc;
    margin-top: calc(0px - var(--section-rotate));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.section-description > * {
    padding: 0 8vw;
    padding-top: 14vw;
    padding-bottom: calc(1vw + var(--section-rotate));
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.description-box .description {
    margin-right: 5rem;
}
.description-box .description__text {
    font-size: 1.7rem;
}
.description-box .description__text:not(:last-child) {
    margin-bottom: 2rem;
}

.overview-box {
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.overview-box__group:not(:last-child) {
    margin-bottom: 7rem;
}
.overview-box__detail {
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
}
.overview-box__detail svg {
    margin-right: 1.25rem;
}
.overview-box__detail:not(:last-child) {
    margin-bottom: 2.25rem;
}
.overview-box__icon {
    height: 2.25rem;
    width: 2.25rem;
    fill: #55c57a;
}
.overview-box__label {
    font-weight: 700;
    margin-right: 2.25rem;
    text-transform: uppercase;
    font-size: 1.4rem;
}
.overview-box__text {
    text-transform: capitalize;
}
.overview-box__img {
    border-radius: 50%;
    height: 3.5rem;
    margin-right: 1.25rem;
}

.section-pictures {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    clip-path: polygon(
        0 var(--section-rotate),
        100% 0,
        100% calc(100% - var(--section-rotate)),
        0 100%
    );
    -webkit-clip-path: polygon(
        0 var(--section-rotate),
        100% 0,
        100% calc(100% - var(--section-rotate)),
        0 100%
    );
    margin-top: calc(0px - var(--section-rotate));
    position: relative;
    z-index: 1000;
}

.picture-box__img {
    display: block;
    width: 100%;
    height: 110%;
    -o-object-fit: cover;
    object-fit: cover;
}
.picture-box__img--1 {
    padding-top: 15%;
}
.picture-box__img--2 {
    padding-bottom: 15%;
}
.picture-box__img--3 {
    padding-bottom: 27%;
}

.section-map {
    position: relative;
    height: 65rem;
    margin-top: calc(0px - var(--section-rotate));
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.marker {
    background-image: url('../img/pin.png');
    background-size: cover;
    width: 32px;
    height: 40px;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 25rem;
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Lato', sans-serif;
    padding: 1.5rem !important;
    font-size: 1.4rem;
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.section-reviews {
    margin-top: calc(0px - var(--section-rotate));
    padding: calc(5rem + var(--section-rotate)) 0;
    position: relative;
    z-index: 1000;
    background: -webkit-gradient(
        linear,
        left top,
        right bottom,
        from(#7dd56f),
        to(#28b487)
    );
    background: linear-gradient(to right bottom, #7dd56f, #28b487);
    clip-path: polygon(
        0 var(--section-rotate),
        100% 0,
        100% calc(100% - var(--section-rotate)),
        0 100%
    );
    -webkit-clip-path: polygon(
        0 var(--section-rotate),
        100% 0,
        100% calc(100% - var(--section-rotate)),
        0 100%
    );
}

.reviews {
    padding: 5rem 0;
    display: grid;
    grid-column-gap: 6rem;
    grid-auto-flow: column;
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.reviews__card {
    width: 30rem;
    padding: 4rem;
    background-color: #f7f7f7;
    border-radius: 3px;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    scroll-snap-align: center;
    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;
}
.reviews:before,
.reviews:after {
    content: '';
    width: 2rem;
}
.reviews__avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
}
.reviews__avatar-img {
    height: 4.5rem;
    border-radius: 50%;
    margin-right: 1.5rem;
}
.reviews__user {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.reviews__text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}
.reviews__rating {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.reviews__star {
    height: 2rem;
    width: 2rem;
    margin-right: 1px;
}
.reviews__star--active {
    fill: #55c57a;
}
.reviews__star--inactive {
    fill: #bbb;
}

.section-cta {
    margin-top: calc(0px - var(--section-rotate));
    padding: 3rem;
    padding-bottom: 11rem;
    padding-top: calc(15rem + var(--section-rotate));
    background-color: #f7f7f7;
}

.cta {
    position: relative;
    max-width: 105rem;
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
    padding: 9rem 5rem 9rem 21rem;
    border-radius: 2rem;
    -webkit-box-shadow: 0 3rem 8rem 0.5rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 3rem 8rem 0.5rem rgba(0, 0, 0, 0.15);
}
.cta__img {
    height: 15rem;
    width: 15rem;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 1rem 0.5rem 3rem rgba(0, 0, 0, 0.15);
    box-shadow: 1rem 0.5rem 3rem rgba(0, 0, 0, 0.15);
}
.cta__img--logo {
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-gradient(
        linear,
        left top,
        right bottom,
        from(#7dd56f),
        to(#28b487)
    );
    background: linear-gradient(to right bottom, #7dd56f, #28b487);
    z-index: 10;
    -webkit-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
}
.cta__img--logo img {
    width: 100%;
}
.cta__img--1 {
    -webkit-transform: translate(-10%, -50%) scale(0.97);
    transform: translate(-10%, -50%) scale(0.97);
    z-index: 9;
}
.cta__img--2 {
    -webkit-transform: translate(15%, -50%) scale(0.94);
    transform: translate(15%, -50%) scale(0.94);
    z-index: 8;
}
.cta__content {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr auto;
    grid-gap: 0.7rem;
    grid-auto-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cta__text {
    font-size: 1.9rem;
    font-weight: 400;
}

.user-view {
    background-color: #fff;
    max-width: 120rem;
    margin: 0 auto;
    min-height: 100vh;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
    box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.user-view__menu {
    -webkit-box-flex: 32rem;
    -ms-flex: 32rem 0 0px;
    flex: 32rem 0 0;
    background-image: -webkit-gradient(
        linear,
        left top,
        right bottom,
        from(#7dd56f),
        to(#28b487)
    );
    background-image: linear-gradient(to right bottom, #7dd56f, #28b487);
    padding: 4rem 0;
}
.user-view__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 7rem 0;
}
.user-view__form-container {
    max-width: 68rem;
    margin: 0 auto;
    padding: 0 8rem;
}

.footer {
    background-color: #f7f7f7;
    padding: 6rem 4rem 3rem 4rem;
    font-size: 1.4rem;
    display: grid;
    grid-template-columns: auto auto;
    grid-row-gap: 0.75rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
}
@media only screen and (max-width: 50em) {
    .footer {
        grid-template-columns: 1fr;
        grid-row-gap: 1.25rem;
        justify-items: center;
    }
}
.footer__logo {
    grid-row: 1 / 3;
    -ms-flex-item-align: center;
    align-self: center;
}
@media only screen and (max-width: 50em) {
    .footer__logo {
        grid-row: 1;
    }
}
.footer__logo img {
    height: 3rem;
}
.footer__nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer__nav li {
    margin-left: 1.5rem;
}
.footer__nav a {
    color: #777;
    text-decoration: none !important;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.footer__nav a:hover,
.footer__nav a:active {
    color: #55c57a;
}
.footer__copyright {
    justify-self: end;
    color: #515050;
}
@media only screen and (max-width: 90em) {
    .footer__copyright {
        justify-self: center;
    }
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 37.5em) {
    .nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.nav--tours {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
}
@media only screen and (max-width: 62.5em) {
    .nav--tours {
        margin-bottom: 1.5rem;
    }
}
@media only screen and (max-width: 37.5em) {
    .nav--tours {
        margin-bottom: 0;
    }
}
.nav--user {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.nav__el,
.nav__el:link,
.nav__el:visited {
    color: #f7f7f7;
    text-transform: uppercase;
    font-size: 1.6rem;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-weight: 400;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.nav__el:hover,
.nav__el:active {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    text-shadow: 0 0.7rem 1rem black;
}
.nav__el:not(:last-child) {
    margin-right: 3rem;
}
@media only screen and (max-width: 37.5em) {
    .nav__el:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.2rem;
    }
}
.nav__el:focus {
    outline: none;
}
.nav__el--cta {
    padding: 1rem 3rem;
    border-radius: 10rem;
    border: 1px solid currentColor !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.nav__el--cta:hover {
    background-color: #f7f7f7;
    color: #777;
    text-shadow: none;
    border-color: #f7f7f7;
}
.nav__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 37.5em) {
    .nav__search {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 1.2rem;
    }
}
.nav__search-btn {
    background: none;
    border: none;
    margin-right: 0.8rem;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
.nav__search-btn svg {
    height: 2rem;
    width: 2rem;
    fill: #f7f7f7;
}
.nav__search-input {
    font-family: inherit;
    font-weight: inherit;
    text-transform: uppercase;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #f7f7f7;
    padding-bottom: 3px;
    border-bottom: 1px solid #999;
    width: 18rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.nav__search-input::-webkit-input-placeholder {
    color: #999;
}
.nav__search-input:-ms-input-placeholder {
    color: #999;
}
.nav__search-input::-ms-input-placeholder {
    color: #999;
}
.nav__search-input::placeholder {
    color: #999;
}
.nav__search-input:focus {
    outline: none;
    width: 25rem;
    border-bottom: 1px solid currentColor;
}
.nav__user-img {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.side-nav {
    list-style: none;
}
.side-nav li {
    margin: 1rem 0;
    border-left: 0 solid #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.side-nav--active,
.side-nav li:hover {
    border-left: 4px solid #fff !important;
}
.side-nav--active a {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}
.side-nav a:link,
.side-nav a:visited {
    padding: 1rem 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.side-nav a:hover,
.side-nav a:active {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.side-nav svg {
    height: 1.9rem;
    width: 1.9rem;
    fill: #f7f7f7;
    margin-right: 2rem;
}

.admin-nav {
    margin-top: 5.5rem;
}
.admin-nav__heading {
    margin: 0 5rem 1.5rem 4rem;
    padding-bottom: 3px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #f2f2f2;
    border-bottom: 1px solid currentColor;
}

.card-container {
    max-width: 120rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 7rem;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    background-color: #fff;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.card__header {
    position: relative;
}
.card__picture {
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
    height: 22rem;
}
.card__picture-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-image: -webkit-gradient(
        linear,
        left top,
        right bottom,
        from(#7dd56f),
        to(#28b487)
    );
    background-image: linear-gradient(to right bottom, #7dd56f, #28b487); */
    opacity: 0.7;
}
.card__picture-img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 1.75rem;
    grid-column-gap: 2rem;
    padding: 2.5rem 3rem;
}
.card__sub-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    grid-column: 1 / -1;
}
.card__text {
    grid-column: 1 / -1;
    font-size: 1.5rem;
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 0.75rem;
}
.card__data {
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card__data svg {
    margin-right: 0.7rem;
}
.card__icon {
    height: 2rem;
    width: 2rem;
    fill: #55c57a;
}
.card__footer {
    background-color: #f7f7f7;
    padding: 2.5rem 3rem;
    border-top: 1px solid #f1f1f1;
    font-size: 1.4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: auto;
}
.card__footer-value {
    font-weight: 700;
}
.card__footer-text {
    color: #999;
}
.card__ratings {
    grid-row: 2 / 3;
}
.card .btn-small,
.card .btn {
    grid-row: 1 / 3;
    justify-self: end;
    -ms-flex-item-align: center;
    align-self: center;
}

.error {
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 80rem;
    text-align: center;
}
.error__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.error__emoji {
    font-size: 3.75rem;
    margin-left: 1rem;
}
.error__msg {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 50rem;
    margin: 0 auto;
}
.singup-form,
.login-form {
    margin: 0 auto;
    max-width: 55rem;
    background-color: #fff;
    -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
    box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
    padding: 5rem 7rem;
    border-radius: 5px;
}

.form__input {
    display: block;
    font-family: inherit;
    font-size: 1.5rem;
    color: inherit;
    padding: 1.25rem 1.75rem;
    border: none;
    width: 100%;
    background-color: #fff;
    background-color: #f2f2f2;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* Pseudo element (a visible thing that isn't really in the DOM).
        Also needs -ms- */
}
.form__input:focus {
    outline: none;
    border-bottom: 3px solid #55c57a;
}
.form__input:focus:invalid {
    border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
    color: #bbb;
}

.form__group:not(:last-child) {
    margin-bottom: 2.5rem;
}

.form__label {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form__photo-upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
}

.form__user-photo {
    height: 7.5rem;
    width: 7.5rem;
    border-radius: 50%;
    margin-right: 2rem;
}

.form__upload {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.form__upload:focus + label {
    outline: 3px solid #55c57a;
    outline-offset: 3px;
}

.form__upload + label {
    color: #55c57a;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #55c57a;
    padding: 3px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}
.form__upload + label:hover {
    background-color: #55c57a;
    color: #fff;
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.forgot__password {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.forgot__password a {
    color: #55c57a;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 1.4rem;
}

@media (max-width: 1000px) {
    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .nav--tours {
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {
    body {
        padding: 0;
    }
    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .nav--tours,
    .header__logo {
        margin-bottom: 0 !important;
    }
    img.nav__user-img {
        height: 5rem;
        width: 5rem;
    }
    .card-container {
        display: flex;
        flex-direction: column;
        max-width: 60vw;
    }
    .card {
        min-height: 60vh;
    }
    .card__details {
        margin-top: 20px;
    }
    .heading-tertirary {
        font-size: 3.5rem;
    }
    .card__picture {
        height: auto;
    }
    .card__sub-heading {
        font-size: 1.8rem;
    }
    .card__text {
        font-size: 2rem;
    }
    .card__data {
        font-size: 2rem;
    }
    .card__footer-value {
        font-size: 2rem;
    }
    .card__footer-text {
        font-size: 1.8rem;
    }
    .card .btn {
        font-size: 2rem !important;
    }

    .nav__el,
    .nav__el:link,
    .nav__el:visited {
        font-size: 2rem;
    }
    .section-header {
        height: auto;
    }
    .heading-box__detail {
        font-size: 3rem !important;
        font-weight: 200;
    }
    .overview-box__text {
        font-size: 1.7rem;
    }
    .description-box .description__text {
        font-size: 2rem;
    }
    p.reviews__text {
        font-size: 1.9rem;
        max-width: 25rem;
    }
    svg.reviews__star {
        height: 2.8rem;
        width: 2.8rem;
    }
    .cta__text {
        font-size: 2.4rem;
        font-weight: 400;
    }
    button.btn.btn--green.span-all-rows {
        margin-top: 2rem;
        font-size: 2.2rem;
    }
    img.overview-box__img {
        height: 4rem !important;
    }
    nav.user-view__menu {
        flex: none;
    }
    .side-nav li a {
        font-size: 1.8rem !important;
    }
    .user--main {
        padding: 0;
    }
    .form__input {
        font-size: 2rem !important;
        margin-bottom: 2rem;
    }
    .form__upload + label {
        font-size: 2.2rem;
    }
    .form__user-photo {
        height: 10rem;
        width: 10rem;
    }
    button.user__update--btn,
    button.btn--save-password {
        margin-top: 2rem;
        font-size: 2rem !important;
    }
    .form__group button {
        font-size: 1.8rem !important;
    }
    a.forgot-password-link {
        font-size: 2rem;
    }
    .alert.alert--success {
        font-size: 2.5rem;
        width: 100vw;
        padding: 2rem;
    }
    .alert.alert--error {
        font-size: 2.5rem;
        width: 100vw;
        padding: 2rem;
    }
}

@media (max-width: 685px) {
    .nav__el,
    .nav__el:link,
    .nav__el:visited {
        font-size: initial;
    }
}
@media (max-width: 615px) {
    .nav__el,
    .nav__el:link,
    .nav__el:visited {
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    .nav__el,
    .nav__el:link,
    .nav__el:visited {
        font-size: 1.5rem;
    }
    .nav--user {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }
}
@media (max-width: 550px) {
    body {
        padding: 0;
    }
    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0 0.4rem;
        justify-content: flex-start;
    }
    .nav--tours,
    .header__logo {
        margin-bottom: 0 !important;
    }
    .nav--user {
        flex: none;
        flex-direction: row;
        justify-content: space-around;
        flex-grow: 1;
        align-items: self-end;
    }
    .nav__el,
    .nav__el:link,
    .nav__el:visited {
        font-size: 1.4rem;
    }
    a.nav__el.nav__el--logout {
        align-self: center;
    }
    .nav__el--cta {
        padding: 1rem 1rem;
        border-radius: 5px;
        border: 1px solid currentColor !important;
        transition: all 0.3s;
        justify-content: space-between;
    }
    .header__logo img {
        height: 2rem;
    }
    img.nav__user-img {
        height: 3rem;
        width: 3rem;
    }
    .nav__user--photo {
        margin-top: 0.5rem !important;
        /* margin-right: 1rem !important; */
    }
    .main {
        padding: 4rem 3rem;
    }
    .card-container {
        display: flex;
        flex-direction: column;
        max-width: 85vw;
    }
    .card__details {
        margin-top: 15px;
    }
    .heading-tertirary {
        font-size: 2.8rem;
    }
    .card__sub-heading {
        font-size: 1.5rem;
    }
    .card__text {
        font-size: 1.8rem;
    }
    .card__data {
        font-size: 1.5rem;
    }
    .card__footer-value {
        font-size: 1.7rem;
    }
    .card__footer-text {
        font-size: 1.5rem;
    }
    .card .btn {
        font-size: 1.2rem !important;
    }

    .user-view {
        flex-direction: column;
    }
    .user-view__menu {
        padding: 2rem 0;
    }
    .side-nav li {
        margin-left: 3px;
    }

    .heading-box__detail {
        font-size: 1.5rem !important;
        font-weight: 200;
        width: max-content;
    }
    .overview-box__text {
        font-size: 1.5rem !important;
    }
    .description-box .description__text {
        font-size: 2rem;
    }
    p.reviews__text {
        font-size: 1.5rem;
        max-width: 20rem;
    }
    svg.reviews__star {
        height: 2.4rem;
        width: 2.4rem;
    }
    .cta__text {
        font-size: 2.4rem;
        font-weight: 400;
    }
    button.btn.btn--green.span-all-rows {
        margin-top: 2rem;
        font-size: 1.2rem;
        margin-right: 2rem;
    }
    img.overview-box__img {
        height: 5.5rem;
    }
    nav.user-view__menu {
        flex: none;
    }
    .side-nav li a {
        font-size: 1.5rem !important;
    }
    .user--main {
        padding: 0;
    }
    .user-view__form-container {
        margin: 0 auto;
        padding: 0 2rem;
    }
    .form__input {
        font-size: 1.6rem !important;
        margin-bottom: 2rem;
    }
    .form__upload + label {
        font-size: 1.8rem;
    }
    .form__user-photo {
        height: 10rem;
        width: 10rem;
    }
    button.user__update--btn,
    button.btn--save-password {
        margin-top: 2rem;
        font-size: 2rem !important;
    }
    .form__group button {
        font-size: 1.5rem !important;
    }
    a.forgot-password-link {
        font-size: 1.5rem;
    }
    .section-header {
        height: 65vh !important;
    }
    .heading-box .heading-primary {
        font-size: 4rem;
    }
    .section-description {
        flex-direction: column;
    }
    .section-pictures {
        flex-direction: column;
    }
    .picture-box__img--1 {
        margin-top: -6rem;
        padding-bottom: 15%;
    }
    .picture-box__img--2 {
        padding-bottom: 15%;
    }
    .picture-box__img {
        margin-bottom: -3.2rem;
        -webkit-clip-path: polygon(
            0 var(--section-rotate),
            100% 0,
            100% calc(100% - var(--section-rotate)),
            0 100%
        );
    }
    .picture-box__img:last-child {
        margin-bottom: -12rem;
    }
    .cta__img {
        height: 10rem;
        width: 10rem;
    }
    .cta {
        padding: 2rem 0rem 3rem 12rem;
    }
    .heading-secondary {
        flex: 1;
    }
    .footer {
        padding: 0;
        padding-top: 5rem;
    }
    .footer__nav {
        display: inline-flex;
        padding: 0 1rem;
        line-height: 1;
        text-align: center;
    }
    .login-form {
        padding: 5rem 3rem;
    }
    .alert.alert--success {
        font-size: 1.8rem;
        width: 100vw;
        padding: 2rem;
    }
    .alert.alert--error {
        font-size: 1.8rem;
        width: 100vw;
        padding: 2rem;
    }
    .user-view__content {
        padding: 2rem 0;
    }
}
