body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

#cookiebanner-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.65);
    z-index: 98;
}
.cookiebanner-top {
    text-align: center;
    margin-bottom: 10px;
}
.cookiebanner-top a {
    color: white;
}
.cookiebanner-top-text {
    margin-bottom: 8px;
}
.cookiebanner-buttons {
    text-align: center;
}
#cookiebanner {
    position: fixed;
    width: 50%;
    background-color: rgba(0,0,0,0.75);
    color: white;
    bottom: -3px;
    left: 25%;
    z-index: 99;
    border-radius: 6px;
    border: 2px solid white;
    padding: 20px;
}
.cookiebanner-btn-accept {
    padding: 10px 15px;
    background: white;
    border: none;
    border-radius: 6px;
    margin-right: 6px;
    font-weight: bold;
    font-size: 0.85rem;
}
.cookiebanner-btn-decline {
    padding: 8px 15px;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
    #cookiebanner {
        width: calc(80% - 40px);
        left: 10%;
    }
    .cookiebanner-buttons {
        display: flex;
        flex-direction: column;
    }
    .cookiebanner-btn-accept {
        margin-bottom: 10px;
        margin-right: 0;
    }
}


.header {
    padding-left: 32px;
    padding-right: 32px;
}
.header-with-bg {
    height: 100vh;
    background-image: url('img/header.jpg');
    background-size: cover;
    position: relative;
    background-position-x: center;
}
.header-simple {
    height: auto;
    background-color: black;
}
.header a {
    text-decoration: none;
    color: white;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    width: 100%;
    padding: 40px 0;
}
.header-wrapper > a {
    align-self: center;
}
.logo {
    height: 20px;
    width: auto;
    align-self: center;
}
.nav-wrapper-desktop {
    font-weight: 600;
}
.nav-wrapper-desktop ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}
.header-main-wrapper {
    margin-top: 80px;
    color: white;
}
.header-main-content {
    text-align: center;
    padding: 10px;
    background-color: rgba(0,0,0,0.15);
}
@media screen and (min-width: 768px) {
    .header-main-content {
        margin: 0 80px;
    }
}
.header-main-content h1 {
    font-weight: normal;
}
.header-main-content p {
    font-weight: 500;
}
.social-media-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 10px;
}
.social-media-wrapper img {
    width: 30px;
}
.social-media-wrapper a:not(:last-child) {
    margin-bottom: 48px;
}
.social-media-wrapper a:first-child img {
    width: 38px;
    margin-right: -4px;
}
.nav-wrapper-desktop ul li:not(:last-child) {
    margin-right: 20px;
}
.header .cta-button {
    background: #FDC018;
    border-radius: 6px;
    padding: 12px 16px;
    text-align: center;
}
.header .cta-button a {
    color: black;
    text-decoration: none;
}

.container {
    padding-left: 32px;
    padding-right: 32px;
    max-width: 1280px;
    margin: 0 auto;
}
.word-break {
    word-break: break-word;
}

.section-padding-small {
    padding-top: 40px;
    padding-bottom: 40px;
}
.section-padding-default {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-padding-large {
    padding-top: 160px;
    padding-bottom: 160px;
}


.arrows-wrapper {
    position: relative;
    height: 120px;
}
.arrows-down {
    width: 40px;
    position: absolute;
    bottom: 45px;
    left: calc(50% - 20px);
}
.arrows-down--animation {
    animation-name: floating_arrow;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes floating_arrow {
    0% { bottom: 45px; }
    25% { bottom: 15px; }
    50% { bottom: 25px; }
    75% { bottom: 35px; }
    100% { bottom: 45px; }
}

.header-title {
    position: absolute;
    width: calc(100% - 64px);
    bottom: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-title span {
    font-size: 30px;
}

#features, 
#features .container {
    display: flex;
}
#features {
    flex-direction: row;
}
#features img {
    width: 100%;
}
#features .feature-icon img {
    width: 24px;
}
#features .feature-preview {
    max-height: 450px;
    width: auto;
    transform: rotate(20deg);
    margin-left: 100px;
}
.feature-item {
    display: flex;
}
.feature-item:not(:last-child) {
    margin-bottom: 40px;
}
.feature-info {
    margin-left: 16px;
}
.feature-info h2 {
    margin: 0;
}
.feature-info p {
    margin-top: 8px;
}
.flex {
    display: flex;
}
@media screen and (max-width: 767px) {
    .md-flex-col {
        flex-direction: column;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
}
.flex-col {
    flex-direction: column;
}
.col-2 {
    width: 50%;
}
.vertical-self-center {
    align-self: center;
}
.vertical-items-center {
    align-items: center;
}
.align-self-end {
    align-self: flex-end;
}
.horizontal-content-center {
    justify-content: center;
}
.bold {
    font-weight: 600;
}
.mt-auto {
    margin-top: auto;
}

#price {
    background: linear-gradient(180deg, #FFFFFF 0%, #ACACAC 34.9%, #090A0C 100%);
}
.plan-box {
    padding: 60px 20px 20px 20px;
    background: black;
    color: white;
    border-radius: 16px;
    margin-left: 25px;
    margin-right: 25px;
    position: relative;
    max-width: 400px;
    margin-bottom: 80px;
}
.plan-box hr {
    width: 100%;
}
.plan-box--secondary {
    background: #202020;
    padding-top: 50px;
}
.plan-box--secondary .plan-box-price {
    font-size: 40px;
    margin-top: 20px;
}
.plan-box--secondary .plan-box-points {
    margin-top: 20px;
}
.plan-box-title {
    color: #FDC018;
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 12px;
}
.plan-box-description {
    margin-top: 12px;
}
.plan-box-logo {
    background: #FDC018;
    padding: 23px;
    border-radius: 999px;
    width: 70px;
    margin: 0 auto;
    position: absolute;
    top: -60px;
    left: calc(50% - 60px);
}
.plan-box-logo img {
    width: 100%;
}
.plan-box-points {
    margin-top: 40px;
}
.plan-box-point-text {
    margin-left: 12px;
}
.plan-box-price {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: bold;
    text-align: right;
}
.plan-box-button {
    background: #FDC018;
    border-radius: 8px;
    padding: 12px 24px;
    text-align: center;
    color: black;
    text-decoration: none;
    font-weight: 600;
}
.plan-box--secondary .plan-box-button {
    background: rgba(253, 192, 24, 0.90);
}


#review {
    background-image: url('img/woman-wallpaper.jpg');
    background-position-x: 70%;
}
.review-section {
    background-size: cover;
    color: white;
    text-align: center;
}
#goal .cta-button, 
.review-section .cta-button {
    background: #FDC018;
    border-radius: 6px;
    padding: 12px 40px;
    text-align: center;
    margin-top: 40px;
    width: fit-content;
}
@media screen and (min-width: 768px) {
    #goal .cta-button, 
    .review-section .cta-button {
        align-self: center;
    }
}
#goal .cta-button a, 
.review-section .cta-button a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

#review .container {
    margin-right: 30%;
}
.review-text, .goal-text {
    font-size: 20px;
    line-height: 32px;
}
.review-author {
    font-weight: 300;
    font-size: 18px;
    margin-top: 40px;
    letter-spacing: 0.075em;
}

#review-2 {
    background-image: url('img/boy-wallpaper.jpg');
    background-position-x: 32%;
    position: relative;
}
#review-2 .container {
    margin-left: 40%;
    z-index: 2;
}
#review-2 .layer {
    display: none;
}

#goal {
    background-image: url('img/destination-wallpaper.jpg');
    background-size: cover;
    color: white;
    background-position-x: 82%;
    background-position-y: 75%;
}
#goal .container {
    padding-top: 250px;
    padding-bottom: 250px;
}
.goal-text {
    margin-right: 0;
    text-align: center;
    line-height: 126.4%;
    letter-spacing: 0.105em;
}

#download-app {
    background-image: url('img/TM_Wallpaper.jpg');
    background-size: cover;
    background-position-x: 26%;
    background-position-y: 45%;
}
#download-app .container {
    padding-bottom: 50px;
    height: 600px;
}
.download-app-icons .appstore-icon {
    height: 42px;
}
.download-app-icons .playstore-icon {
    height: 60px;
}


/* Navigation */
.nav-wrapper-mobile {
    display: block;
    position: relative;
}
#nav-mobile-menu-icon img {
    position: absolute;
    top: -7px;
    right: -4px;
    width: 30px;
}
#nav-mobile-menu-box {
    display: none;
    text-decoration: none;
    list-style: none;
    padding: 20px;
    background-color: black;
    position: absolute;
    top: 30px;
    right: 0;
    width: 200px;
    font-weight: 600;
}
#nav-mobile-menu-box li:not(:last-child) {
    margin-bottom: 12px;
}
.nav-wrapper-desktop {
    display: none;
}

footer {
    background-color: black;
}
footer .container {
    padding-top: 60px;
    padding-bottom: 60px;
    color: white;
    justify-content: space-between;
}
footer a {
    color: white;
    text-decoration: none;
}
footer ul {
    list-style: none;
}
footer li:not(:last-child) {
    margin-bottom: 8px;
}
footer .links {
    /*text-align: right;*/
}
footer .links ul {
    padding: 0;
    margin-bottom: 0;
}


@media screen and (min-width: 768px) {
    .logo {
        height: 24px;
    }
    .nav-wrapper-mobile {
        display: none;
    }
    .nav-wrapper-desktop {
        display: block;
    }
    .plan-box {
        width: calc(33% - 100px);
        margin-bottom: 0px;
    }
    #goal {
        background-position-x: 60%;
    }
    #goal .cta-button, 
    .goal-text {
        margin-right: 250px;
    }
    .review-author {
        margin-top: 80px;
    }
}
@media screen and (max-width: 767px) {
    .section-padding-large {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .goal-text {
        margin-bottom: 70px;
    }
    #features .container {
        flex-direction: column;
    }
    #features .col-2 {
        width: 100%;
    }
    #features .feature-preview {
        margin-top: 60px;
        margin-left: auto;
        margin-right: auto;
    }
    footer .container {
        flex-direction: column;
        align-items: start;
    }
    footer .links {
        margin-top: 24px;
    }
}

@media screen and (min-width: 840px) {
    .header, 
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
    .header-title {
        width: calc(100% - 160px);
    }
}

@media screen and (max-width: 1023px) {
    #review {
        text-align: left;
    }
    #review-2 {
        text-align: right;
    }
}
@media screen and (max-width: 480px) {
    #review-2 .container {
        margin-left: 30%;
    }
    #review-2 .layer {
        display: block;
        background-color: rgb(0 0 0 / 35%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}
@media screen and (max-width: 375px) {
    .review-text, .goal-text {
        font-size: 16px;
        line-height: 28px;
    }
    #review .container {
        margin-right: 17%;
    }
    #review-2 .container {
        margin-left: 15%;
    }
    .review-author {
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    .review-text, .goal-text {
        font-size: 28px;
        line-height: 44px;
    }
    #goal .cta-button, 
    .goal-text {
        margin-right: 325px;
    }
    .review-author {
        font-size: 22px;
    }
    .nav-wrapper-desktop ul li:not(:last-child) {
        margin-right: 40px;
    }
    #goal .container {
        padding-top: 350px;
        padding-bottom: 350px;
    }
}
@media screen and (min-width: 1280px) {
    .review-section .container {
        padding-top: 200px;
        padding-bottom: 200px;
    }
}
@media screen and (min-width: 1600px) {
    .review-section .container {
        padding-top: 300px;
        padding-bottom: 300px;
    }
}