/*
* CSS generally applying to the entire site and/ or not specific to a particular section
*/
:root::-webkit-scrollbar {
    display: none;
}

:root {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    width: 100vw;
    background: linear-gradient(180deg, #131E19 40%, #010B09 100%);
    overflow-x: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

.waves-wrapper {
    position: relative;
    height: 100%;
}

.container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#forrest {
    width: 100vw;
    height: auto;
}

.image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.image img {
    z-index: 1;
    position: absolute;
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100vw;
}

.image h1 {
    text-align: center;
    position: relative;
    top: 20vh;
    width: 55%;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 4vmax;
    font-weight: 700;
    z-index: 5;
}

.transition {
    position: absolute;
    bottom: -10px;
    width: 100vw;
}

#gradient {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 30vh;
    min-height: 30vh;
    background: linear-gradient(180deg, rgba(19, 30, 25, 0.00) 0%, rgba(19, 30, 25, 0.75) 40%, #131E19 100%);
    z-index: 4;
}

#blur {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 15vh;
    min-height: 15vh;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 3;
}

.subheading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #FFF;
    font-family: Raleway, serif;
    font-size: 4vmax;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 70%;
}

.subheading:nth-of-type(2) {
    margin-top: 15vh;
}


a {
    -webkit-text-decoration: 0;
    text-decoration: 0;
}

.waves {
    position: relative;
    height: 50vh;
    min-height: 50vh;
}

.waves img {
    position: absolute;
    width: 100%;
    bottom: 0;
}

@media screen and (max-width: 1400px) {
    #co2-neutral {
        width: 50%;
        left: 65%;
    }
}

