@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/yellowtail');

/*Global styles*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-font: 'Open Sans', sans-serif;
    --secondary-font: 'Yellowtail', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --main-font-color-dark: #252525;
    --secondary-font-color: #c59d5f;
    --body-font-color: #515151;
    --body-background-color: #e2af8f;
}

html {
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font-color);
    scroll-behavior: smooth;
    overflow: scroll;
}

body {
    background-color: var(--body-background-color);
    overflow-x: hidden;
    overflow-y: scroll;
}

.show-mobile {
    display: inline;
}

.show-desktop {
    display: none;
}

section {
    padding: 3.9rem 0;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.6rem;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2.4rem;
}

/* Header */

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
}

.nav {
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    color: #fff;
    font-size: 2.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}

.fa-times {
    display: none;
}

.nav-list {
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: var(--main-font-color-dark);
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-100%);
    transition: transform .5s;
}

/* Footer */

.footer-nav-list {
    list-style: none;
    flex-direction: column;
}

.footer-nav-list a {
    font-size: 1.8rem;
    font-family: var(--main-font);
    color: var(--body-background-color);
}

footer p {
    font-size: 1.6rem;
    padding: 0.5rem;
}

.footer-nav-list li {
    padding: 0.5rem;
}

.footer-nav-list a:hover {
    color: var(--secondary-font-color);
}

.nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;
}

.fa-times {
    display: none;
}

.fa-bars {
    display: block;
}

.open .fa-times {
    display: block;
}

.open .fa-bars {
    display: none;
}

.open .nav-list {
    transform: translateX(0);
}

.open .nav-list {
    transform: translateX(0);
}

.opne .nav::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item {
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}

.nav-link {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color .5s;
}

.nav-link:hover {
    color: var(--secondary-font-color);
}

.logo {
    padding-top: 1.1rem;
    height: 100%;
}

.logo img {
    height: 120%;
    width: auto;
}

/* Hero */
.hero {
    width: 100vw;
    height: 80vh;
    background: url("images/intro.webp") center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    text-shadow: 2px 2px #000000;
}

.sub-headline {
    font-size: 8.5rem;
    line-height: 6.8rem;
    font-family: var(--secondary-font);
    color: var(--secondary-font-color);
    font-weight: 100;
    letter-spacing: 2px;
    text-shadow: 1.5px 1.5px #000000;
}

.first-letter {
    text-transform: uppercase;
    font-size: 10.3rem;
}

.headline {
    color: white;
    font-size: 3.7rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .5rem;
    margin-right: -.5rem;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 2rem 0;
}

.line {
    width: 100%;
    max-width: 8.5rem;
    height: .25rem;
    background-color: #fff;
    position: relative;
}

.line-right::before .line-left::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
}

.line-right::before {
    border-right-color: #fff;
    right: 0;
}

.line-left::before {
    border-left-color: #fff;
    left: 0;
}

.headline-description h5 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    margin-right: -3px;
    ;
}

.btn {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
    margin-bottom: 1.5rem;
}

.cta-btn {
    font-size: 1.1rem;
    background-color: #fff;
    padding: .9rem 1.8rem;
    color: var(--body-font-color);
    border-radius: .4rem;
    transition: background-color .5s
}

.cta-btn:hover,
.cta-btn:hover {
    color: #fff;
    background-color: var(--secondary-font-color)
}

.icon {
    display: inline-flex;
    align-self: center;
}

.icon svg,
.icon img {
    height: 1em;
    width: 1em;
}

.btn svg,
.btn img {
    align-self: center;
    position: relative;
}

.btn-text {
    align-self: center;
    padding: 0 1rem;
}

/* Discover */
.global-headline {
    text-align: center;
    margin-top: 1.2rem;
}

.section-about-us .line {
    background-color: #000;
}

.section-about-us h2 {
    text-shadow: 1.5px 1.5px #000;
}

.headline-dark {
    color: var(--main-font-color-dark);
    letter-spacing: .7rem;
    margin-right: -.7rem;
}

.global-headline .sub-headline {
    letter-spacing: .1rem;
}

.content {
    text-align: center;
}

.content-left-top {
    margin: 3rem 0;
    padding: 2rem 1rem;
}

.content-left-top p {
    line-height: 1.6rem;
    margin-bottom: 2.4rem;
}

.body-btn {
    font-size: 1.5rem;
    color: #000;
    position: relative;
    transition: color .5s;
}

.body-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus {
    color: var(--secondary-font-color);
    text-shadow: 0.5px 0.5px #000;
}

.body-btn:hover::before,
.body-btn:focus::before {
    background-color: var(--secondary-font-color);
}

.nav-padding {
    width: 2rem;
}

/* Contact */
.section-contact {
    padding: 15vh 0;
}

.location-map {
    height: 60vh;
}

.location-map iframe {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

.pricing-section {
    background: url("images/pricing.webp") center no-repeat;
    background-size: cover;
}

.between {
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

/* Footer */
footer {
    padding: 7.9;
    background-color: #121212;
    color: #fff;
    text-align: center;
    position: relative;
}

footer .middle-third img {
    width: 50%;
}

.left-third {
    text-align: center;
    padding: 2rem;
}

.middle-third {
    align-items: center;
    padding: 0 0 1rem 0;
}

.right-third {
    text-align: center;
    padding: 2rem;
}

.back-to-top {
    width: 7rem;
    height: 7rem;
    background-color: #121212;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.back-to-top i {
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 2rem;
}

.footer-content {
    overflow: hidden;
}

.about-us {
    width: 100vw;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10vh 0;
    height: auto;
    width: auto;
}

.about-us p {
    padding: 1.5rem;
    display: block;
    color: var(--main-font-color-dark);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color .5s;
}


.hero-content {
    position: relative;
    display: inline-block;
    width: 100vw;
    height: 80vh;
    background-color: #ccc;
    overflow: hidden;
}

.hero-content video {
    position: relative;
    left: 0;
    display: block;
    min-height: 90vh;
    width: 100vw;
    object-fit: cover;
}

.hero-content .container {
    position: absolute;
    width: 100vw;
    top: 25%;
}

/* Responsive table */
.pricing {
    width: 100vw;
    min-height: 100vh;
    background: url("images/pricing_background.webp") center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-table {
    padding: 5vh 10vh;
}

table {
    border: 1px solid var(--secondary-font-color);
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table caption {
    font-size: .5em;
    margin: .5em 0 .75em;
}

table tr {
    background-color: var(--body-background-color);
    border: 1px solid var(--body-font-color);
    padding: .35em;
}

table th,
table td {
    padding: 1.625em;
    text-align: center;
    font-size: 1.1em;
}

table th {
    font-size: 1.15em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.table-row-label {
    font-size: 1.15em;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: bold;
}


@media screen and (max-width: 920px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid var(--main-font-color-dark);
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid var(--main-font-color-dark);
        display: block;
        font-size: 1.15em;
        text-align: right;
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }

    .pricing-table {
        padding: 15vh 18vw;
    }
}

/* Media query */

@media screen and (min-width: 920px) {
    html {
        overflow: hidden;
    }

    body {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: -17px;
        overflow-y: scroll;
    }

    .show-mobile {
        display: none;
    }

    .show-desktop {
        display: inline;
    }

    .third {
        min-width: 33.33%;
        width: 33.33%;
        max-width: 33.33%;
    }

    .left-third {
        text-align: left;
        padding: 2rem 6rem;
    }

    .middle-third {
        padding: 2rem;
    }

    .right-third {
        text-align: right;
        padding: 2rem 6rem;
    }

    footer .middle-third img {
        width: 30%;
    }

    footer .container {
        display: flex;
    }

    .footer-nav-list a {
        font-size: 1.4rem;
    }

    footer p {
        font-size: 1.4rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav {
        justify-content: space-between;
    }

    .nav-list {
        position: initial;
        width: initial;
        height: initial;
        background-color: transparent;
        padding: 0;
        justify-content: initial;
        flex-direction: row;
        transform: initial;
        transition: initial;
    }

    .footer-nav-list {
        flex-direction: column;
    }

    footer img {
        width: 8rem;
    }

    .nav-item {
        margin: 0 2.4rem;
        border: none;
    }

    .nav-item:last-child {
        margin-right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .active {
        position: relative;
    }

    .active::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        bottom: -3px;
    }

    .sub-headline {
        font-size: 10rem;
        line-height: 7rem;
        text-shadow: 1.5px 1.5px #000000;
    }

    .first-letter {
        font-size: 12.2rem;
    }

    .headline {
        font-size: 4.7rem;
        letter-spacing: .8rem;
    }

    .line {
        max-width: 11.4rem;
    }

    .content {
        width: 95vw;
        display: flex;
        align-items: center;
    }

    .content>div {
        flex: 1;
    }

    .content-left-top {
        min-width: 50%;
        padding: 2rem 4rem;
    }

    .content-right-bottom {
        min-width: 50%;
        padding: 2rem;
    }

    .footer-content {
        max-width: 77.5rem;
        margin: auto;
    }

    .footer-content-about {
        max-width: 51.3rem;
        margin: 3.2rem auto 3.2rem;
    }

    .footer-content-divider {
        display: flex;
        justify-content: center;
    }

    .social-media,
    .newsletter-form {
        width: 100%;
        max-width: 27.3rem;
        margin: 0 1rem;
    }

    .social-icons i {
        opacity: 1;
    }

    .newsletter-btn {
        margin-left: 7.5rem;

    }

    .pricing {
        height: 100vh;
    }

    .about-us img {
        width: 95%;
        max-width: 95%;
    }
}