* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: #004d5a;
    color: #ffffff;
    margin: 0;
}
html, body {
    font-size: 62.5%;
    overflow: auto;
    height: 100vh;
    scroll-snap-type: y mandatory;
}
.header {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    z-index: 1000;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.header:is(:hover, :focus) {
    opacity: .6;
}
.header .logo {
    width: 40px;
}
.header .logo-text {
    margin-top: 3px;
    margin-left: 10px;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    z-index: 1001;
}
.main-content .viewport-section {
    width: 50%;
    height: calc(100dvh - 80px);
    padding: 20px;
    position: relative;
    z-index: 10;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.main-content .viewport-section :is(h1, h2) {
    font-size: 8rem;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: 400;
}
.main-content .viewport-section p {
    width: 100%;
    max-width: 700px;
    font-size: 2rem;
    margin-bottom: 15px;
}
.image-overlay {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 0;
}
.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 77, 90, 1), rgba(0, 77, 90, 0) 90%);
    z-index: 1;
}
.btn-wrapper {
    position: relative;
}
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #224A62;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 0;
    border: 2px solid #fff;
    text-transform: uppercase;
    position: relative;
    transition: all .3s ease-in-out;
}
.cta-button::after {
    content: '';
    display: block;
    width: 60%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: calc(100% + 30px);
    left: 16px;
    opacity: .7;
}
.cta-button:hover {
    background-color: #005f6b;
    border-color: #005f6b;
}
@media screen and (max-width: 967px) {
    .main-content .viewport-section {
        width: 100%;
        background: rgba(0, 77, 90, .88);
    }
    .main-content .viewport-section :is(h1, h2) {
        font-size: 6rem;
    }
}
@media screen and (max-width: 677px) {
    .main-content .viewport-section :is(h1, h2) {
        font-size: 4rem;
    }
}

/*#chevronWrapper {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    transition: all .3s ease-in-out;*/
/*    color: #ffffff;*/
/*    text-decoration: none;*/
/*    z-index: 99;*/
/*    cursor: pointer;*/
/*    user-select: none;*/
/*}*/
/*.rotate-chevron {*/
/*    transform: translateX(-50%) rotate(180deg);*/
/*}*/
/*.chevron {*/
/*    font-size: 6rem;*/
/*    animation: bounce 2s infinite;*/
/*}*/
@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    80% {
        transform: translateY(-10px);
    }
}
