/*
########################################################################################################################
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                   GENERAL STYLING                                                    #
########################################################################################################################
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    font-family: 'Jost', sans-serif;
}

main {
    min-height: 80vh;
    width: 100%;
}

header {
    padding-top: 7vh;
}

#scroll-to {
    position: absolute;
    bottom: 7vh;
}

#scroll-to-solution {
    position: absolute;
    bottom: 0;
}

.skip-to-content {
    padding: 1rem;
    background-color: #16723a;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
}

.skip-to-content:focus {
    transform: translateX(0%);
}

/* LINKS BETWEEN PAGES */

.page-link {
    display: inline-block;
    color: #16723A;
    padding: 1rem 1rem 1rem 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500 !important;
}

.page-link span {
    transition: 0.2s ease;
}

.page-link:hover span {
    padding-left: 5px;
    letter-spacing: 2px;
}

@media only screen and (max-width: 780px) {
    .page-link {
        text-decoration: underline;
    }
}

/* FONT SIZE LARGE SCREENS */

.source-link {
    color: #16723a;
    font-weight: 500;
    display: inline-block;
}

.green {
    color: #16723a !important;
}

.white {
    color: white;
}

strong {
    font-weight: 500;
}

.fsize-nav {
    font-size: 1.875rem;
    font-weight: 500;
}

.fsize-bheader {
    font-size: 3.125rem;
    font-weight: 700;
    color: #2f3236;
    text-align: left;
}

.fsize-content-header {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2f3236;
    text-align: left;
}

.fsize-content {
    font-size: 1.375rem;
    font-weight: 300;
    color: #2f3236;
    text-align: left;
}

.fsize-btn {
    font-size: 1.375rem;
    font-weight: 300;
    text-align: center;
}

.font-color-white {
    color: white !important;
}

@media only screen and (max-width: 1440px) {

    /* FONT SIZING FOR LAPTOP SCREEN SIZE */
    .fsize-bheader {
        font-size: 2.75rem;
    }

    .fsize-content {
        font-size: 1.25rem;
    }

    .fsize-btn {
        font-size: 1.25rem;
    }

    .fsize-nav {
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {

    /* FONT SIZING MEDIUM LARGE LAPTOP SCREENS */
    .fsize-bheader {
        font-size: 2.25rem;
    }

    .fsize-content-header {
        font-size: 2rem;
    }

    .fsize-content {
        font-size: 1.125rem;
    }

    .fsize-btn {
        font-size: 1.125rem;
    }

}

@media (max-width: 780px) {

    header {
        margin-top: 0;
    }

    /* FONT SIZING */
    .fsize-bheader {
        font-size: 2rem;
    }

    .fsize-content-header {
        font-size: 1.9rem;
    }

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

@media (max-width: 480px) {

    /* FONT SIZE MOBILE */
    .fsize-bheader {
        font-size: 1.5rem;
    }

    .fsize-content-header {
        font-size: 1.875rem;
    }

    .fsize-nav {
        font-size: 1.1rem;
    }
}

/*
########################################################################################################################
#                                                   GENERAL STYLING                                                    #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                   NAVBAR STYLING                                                     #
########################################################################################################################
*/

/* Navbar box */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15vw;
    min-height: 7vh;
    width: 100%;
    background-color: #EFEFEF;
    z-index: 5;
    box-shadow: 0 5px 5px -5px rgba(47,50,54,0.4);
}

/* Navbar logo */
.navbar .nav-logo {
    float: left;
    padding: 1vh 0;
}

.navbar .nav-logo a img {
    height: 5vh;
}

/* Navbar items */
.navbar .nav-list {
    float: right;
    display: flex;
}

.navbar .nav-list .nav-item {
    list-style: none;
}

.navbar .nav-list .nav-item a {
    height: 7vh;
    line-height: 7vh;
    padding: 0 15px;
    color: #2f3236;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    font-weight: 300;
}

.navbar .nav-list .nav-item a.nav-item-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #2f3236;
    opacity: 1;
}

.navbar .nav-list .nav-item a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #2f3236;
    transition: all 0.3s;
    opacity: 0;
}

.navbar .nav-list .nav-item a:hover::after {
    opacity: 1;
}

.navbar .active-page {
    display: none;
}


/* Navbar hamburger */

.navbar .hamburger-btn {
    display: none;
    float: right;
    height: 7vh;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.navbar .hamburger-btn .hamburger-icon {
    background: #333;
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
    transition:background .3s ease-in-out;
}
.navbar .hamburger-btn .hamburger-icon:before {
    background: #333;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease-in-out;
    top: 5px;
}

.navbar .hamburger-btn .hamburger-icon:after {
    background: #333;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease-in-out;
    top: -5px;
}

/*### iPad screens and smaller devices ###*/
@media only screen and (max-width: 1005px) {

    /* Navbar box */
    .navbar {
        padding: 0 20px;
    }

    /* Navbar list */

    .navbar .nav-list {
        position: absolute;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: #EFEFEF;
        top: 7vh;
        left: 0;
        transition: 0.4s;
        display: block;
        text-align: center;
    }

    /* Moving the underline to the center and adjusts the width from 100% to 13vw*/
    .navbar .nav-list .nav-item a::after {
        margin: auto;
        width: 80px;
    }

    .navbar .nav-list .nav-item a.nav-item-active::after {
        margin: auto;
        width: 80px;
    }

    .navbar .active-page {
        position: absolute;
        left: 0;
        width: 100%;
        height: 7vh;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .navbar .nav-active {
        height: 29vh;
        box-shadow: 0 5px 5px -5px rgba(47,50,54,0.4);
    }

    .navbar .nav-active-appendix {
        height: 36vh;
        box-shadow: 0 5px 5px -5px rgba(47,50,54,0.4);
    }

    .navbar .hamburger-btn {
        display: flex;
    }

    .navbar .hamburger-btn p {
        margin-right: 7px;
    }

    /* the change of the hamburger icon to the cross icon */
    .navbar .hamburger-btn .hamburger-icon-active {
        background: transparent;
    }

    .navbar .hamburger-btn .hamburger-icon-active:before {
        transform: rotate(-45deg);
        top: 0;
    }

    .navbar .hamburger-btn .hamburger-icon-active:after {
        transform: rotate(45deg);
        top: 0;
    }
}

/*
########################################################################################################################
#                                                   NAVBAR STYLING                                                     #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                   FOOTER STYLING                                                     #
########################################################################################################################
*/

footer {
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #EFEFEF;
    z-index: 5;
}

footer .content-box {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

/* Info section all the way to the left */
.footer-info {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 30px;
    border-right: 2px solid #2f3236;
    font-weight: 300;
}
.footer-info a {
    color: #2f3236;
}

.footer-info img {
    height: 60px;
    margin-bottom: 10px;
}

/* 2 - Links */

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
}

.footer-links button {
    background-color: #2f3236;
    color: white;
    overflow: hidden;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links a button {
    text-decoration: none;
    color: white;
    text-align: center;
}

.footer-links button:hover {
    background-color: #16723A;
}

.footer-links .footer-sdg-goal {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-links .footer-sdg-goal img {
    width: 80px;
    height: 0;
    margin: 0 10px;
    transition: height 0.2s ease-in-out;
}

.footer-links .footer-sdg-goal span{
    transition: 0.2s ease;
}

.footer-links .footer-sdg-goal:hover img {
    height: 40px;
}

.footer-links .footer-sdg-goal:hover span {
    background-color: #16723A;
}

.footer-btn {
    border-radius: 25px;
    font-weight: 500;
    margin: 5px 0;
    padding: 6px 35px;
    cursor: pointer;
    background-color: #2f3236;
    color: white;
    text-decoration: none;
    text-align: center;
}

.footer-appendix-btn {
    transition: 0.2s ease;
}

.footer-appendix-btn:hover {
    background-color: #16723A;
}

@media only screen and (max-width: 820px) {
    .footer-links a button {
        padding: 10px 25px;
    }

    .footer-links a .footer-sdg-goal img {
        display: none;
    }
}


@media only screen and (max-width: 780px) {
    footer {
        height: 280px;
    }
}


@media only screen and (max-width: 620px) {
    .footer-info {
        padding-right: 15px;
    }

    .footer-info img {
        height: 40px;
    }

    .footer-links {
        padding-left: 10px;
    }

    .footer-links a button {
        padding: 10px 10px;
    }
}

@media only screen and (max-width: 480px) {
    footer .content-box {
        width: 85%;
    }

    .footer-info {
        padding-right: 5px;
    }

    .footer-links {
        padding-left: 5px;
    }
}

/*
########################################################################################################################
#                                                   FOOTER STYLING                                                     #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                 INDEX PAGE STYLING                                                   #
########################################################################################################################
*/

/*### HEADER SECTION - STANDARD ###*/

.index-header {
    position: relative;
    margin-top: 7vh;
    height: 93vh;
    overflow: hidden;
    background-image: url('../images/irl-images/forsidebilde.jpg');
    background-color: #EFEFEF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.index-header .content-box {
    width: 70%;
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.index-header .content-box .header-text {
    position: absolute;
    background-color: #EFEFEF;
    border-radius: 2px;
    padding: 1rem;
    top: 12%;
    left: 10%;
}

.index-header .scroll-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.index-header .scroll-down {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 55px;
    border-radius: 2px;
    background-color: #EFEFEF;
    padding-bottom: 10px;
}

.index-header .scroll-down .underline1 {
    position: relative;
    top: 7px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.index-header .scroll-down .underline2 {
    position: relative;
    top: 5px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.index-header .scroll-down:hover .underline1 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}

.index-header .scroll-down:hover .underline2 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

@media only screen and (max-width: 650px) {
    .index-header {
        background-position-x: 70%;
    }
}

/*### HEADER SECTION - MOBILE ###*/
@media only screen and (max-width: 480px) {
    .index-header .content-box {
        width: 85%;
    }
}

/*### SDG SECTION - STANDARD ###*/

/* sdg banner */

.index-sdg-section {
    width: 100%;
    background-color: white;
}

.index-sdg-banner {
    width: 100%;
    background-color: #16723A;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.index-sdg-banner .content-box {
    width: 70%;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sdg-logo {
    height: 40px;
}

@media only screen and (max-width: 480px) {
    .index-sdg-banner .content-box {
        width: 85%;
    }
}

/* sdg explanation */

.index-sdg-explanation {
    width: 100%;
    display: flex;
    justify-content: center;
}

.index-sdg-explanation .content-box {
    background-color: #EFEFEF;
    width: 70%;
    padding: 20px;
}

/*### SDG SECTION - MOBILE ###*/

@media (max-width: 480px) {
    .index-sdg-explanation .content-box {
        width: 100%;
        padding: 7.5vw;
    }
}
/*### LIFECYCLE SECTION - STANDARD ###*/

.lifecycle {
    max-width: 1600px;
    margin: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lifecycle .content-box {
    width: 70%;
}

.lifecycle-event {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 335px;
    align-items: center;/* Vertical positioning*/
    margin: 20px 0;
}

.lifecycle .illustration {
    width: 30%;
    display: flex;
    align-items: center;
}

.lifecycle .illustration img {
    width: 100%;
}

.lifecycle-event .lifecycle-event-text {
    order: 2;
    width: 70%;
    padding: 0 20px;
}

.lifecycle-event .lifecycle-event-text p {
    text-align: left;
}

.lifecycle .left .illustration {
    order: 1;
}

.lifecycle .left .lifecycle-event-text {
    order: 2;
}

.lifecycle .right .illustration {
    order: 2;
}

.lifecycle .right .lifecycle-event-text {
    order: 1;
}

.lifecycle-transition-line {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lifecycle-transition-line img.long-line {
    width: 80%;
}

.lifecycle-transition-line img.flipped {
    transform: scaleX(-1);
}

@media (max-width: 1200px) {
    /* For small screens down to iPads */

    .lifecycle-event {
        min-height: 225px;
    }
}

@media only screen and (max-width: 780px) {
    /* For small screens down to iPads */

    .lifecycle-event {
        width: 100%;
        min-height: 175px;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .lifecycle .right .illustration {
        order: 1;
    }

    .lifecycle .right .lifecycle-event-text {
        order: 2;
    }

    .lifecycle-transition-line img.long-line {
        display: none;
    }

    .lifecycle-transition-line {
        justify-content: flex-start;
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    /* For mobile devices and smaller */
    .lifecycle .content-box {
        width: 85%;
    }

    .lifecycle-event {
        width: 100%;
        min-height: 175px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .lifecycle-event .illustration {
        width: 70%;
    }

    .lifecycle-event .lifecycle-event-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
    }
}

.index-back-to-top-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.index-back-to-top-area .index-back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 65px;
    text-decoration: none;
}

.index-back-to-top-area .index-back-to-top a {
    text-decoration: none;
    color: #2f3236;
}

.index-back-to-top-area .index-back-to-top .underline1 {
    position: relative;
    top: 7px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.index-back-to-top-area .index-back-to-top .underline2 {
    position: relative;
    top: 5px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.index-back-to-top-area .index-back-to-top:hover .underline1 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

.index-back-to-top-area .index-back-to-top:hover .underline2 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}

.continue-to-page {
    text-align: center;
    margin: 2rem 0;
}

.continue-to-page a {
    padding: 6px 35px;
    font-weight: 500;
    background-color: #16723A;
    color: white;
    border-radius: 25px;
    transition: 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.continue-to-page a:hover {
    box-shadow: 1px 1px 4px 2px #2f32365e;
}

@media only screen and (min-width: 1600px) {
    .index-sdg-banner .content-box {
        width: 1120px;
    }

    .index-sdg-explanation .content-box {
        width: 1120px;
    }
}

/*
########################################################################################################################
#                                                 INDEX PAGE STYLING                                                   #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                               CHALLENGE PAGE STYLING                                                 #
########################################################################################################################
*/

.challenge-header-wrapper {
    background-color: #2f3236;
}

.challenge-grey-background {
    background-color: #EFEFEF;
}

.challenge-header {
    width: 70vw;
    margin: 7vh auto 0 auto;
    display: flex;
    padding: 4rem 0;
}

.ch-logo-wrapper {
    width: 20%;
    padding-right: 2rem;
}

.ch-logo {
    width: 100%;
    padding: 1rem 1rem 0 0;
}

.ch-text {
    width: 80%;
}

.ch-text p {
    padding-top: 1rem;
}

.ch-text-goal13 {
    padding-bottom: 1rem;
    font-style: italic;
}

.ch-image-wrapper {
    height: 300px;
    overflow: hidden;
    width: 70vw;
    margin: auto;
}

.ch-image {
    min-width: 100%;
    position: relative;
    zoom: 0.7;
    bottom:45%;
}

.ch-list-element {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ch-list-text {
    width:48%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-list-element .ch-list-text img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 1024px) {
    .ch-image {
        bottom: 25%;
    }

    .challenge-header {
        flex-direction: column;
        padding-top: 2rem;
        /* align-items: center; */
    }

    .ch-logo-wrapper {
        align-self: center;
        width: 30%;
    }

    .ch-text {
        width: 100%;
        margin-top: 2rem;
    }

    .ch-list-text {
        width:100%;
        margin-top: 0;

    }

    .ch-list-element {
        flex-direction: column;
        margin-top: 0;
    }
}

@media only screen and (max-width: 780px) {
    .ch-logo-wrapper {
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ch-logo {
        width: 70%;
        padding-right: 0;
    }

    .ch-image-wrapper {
        height: 200px;
        width: 100vw;
    }

    .ch-image {
        bottom: 40%;
        zoom: 0.5;
        width: 100vw;
        object-fit: cover;
    }

}

@media only screen and (max-width: 480px) {
    .ch-image {
        zoom: 1.5;
        object-fit: cover;
    }
}

/* Main section */

.challenge-section {
    width: 70vw;
    margin: auto;
}

.main-challenge-box {
    width: 100%;
}

.main-challenge-text-wrapper {
    margin: 1rem 0;
}

.main-challenge-text-wrapper p{
    margin: 2rem 0;
}

.main-challenge-text-wrapper ol {
    margin: 2rem;
}

.main-challenge-text-wrapper ol li {
    padding-top: 1rem;
}

.cs-section {
    width: 70vw;
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    margin: 3rem auto auto auto;
}

.cs-text-wrapper {
    width: 100%;
}

.cs-text-wrapper p {
    padding-top: 1.5rem;
}

.cgraph {
    margin-top: 2rem;
    width: 100%;
    display: flex;
}

.cgraph-image-wrapper {
    width: 350px;
}

.cgraph-image {
    width: 100%;
}

.cgraph-desc {
    margin-left: 3rem;
    width: 600px;
}

.cgraph-desc ol {
    margin-left: 1rem;
    padding-top: 1rem;
}

@media only screen and (max-width: 780px) {
    .cgraph {
        flex-direction: column;
        align-items: flex-start;
    }

    .cgraph-desc {
        margin-left: 0;
        width: auto;
    }

    .cgraph-image-wrapper {
        width: 250px;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 480px) {
    .challenge-header {
        width: 85vw;
    }

    .main-challenge-text-wrapper ol {
        margin-left: 1rem;
    }

    .challenge-section {
        width: 85vw;
    }

    .cs-section {
        width: 85vw;
    }

    .main-challenge-text-wrapper ol {
        margin: 0;
        list-style-position: inside;
    }
}

@media only screen and (min-width: 1600px) {
    .challenge-header {
        width: 1120px;
    }

    .challenge-section {
        width: 1120px;
    }

    .cs-section {
        width: 1120px;
    }

    .ch-image{
        width: 1120px;
    }

    .ch-image-wrapper {
        width: 1120px;
    }

}

.challenge-back-to-top-area {
    width: 100%;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.challenge-back-to-top-area .challenge-back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 65px;
    text-decoration: none;
}

.challenge-back-to-top-area .challenge-back-to-top a {
    text-decoration: none;
    color: #2f3236;
}

.challenge-back-to-top-area .challenge-back-to-top .underline1 {
    position: relative;
    top: 7px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.challenge-back-to-top-area .challenge-back-to-top .underline2 {
    position: relative;
    top: 5px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.challenge-back-to-top-area .challenge-back-to-top:hover .underline1 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

.challenge-back-to-top-area .challenge-back-to-top:hover .underline2 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}

.to-solution-page .page-link:hover .text {
    letter-spacing: 0;
}

/*
########################################################################################################################
#                                               CHALLENGE PAGE STYLING                                                 #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                SOLUTION PAGE STYLING                                                 #
########################################################################################################################
*/

/*### HEADER SECTION - STANDARD ###*/

.solution-header {
    position: relative;
    margin-top: 7vh;
    height: 93vh;
    overflow: hidden;
    background-image: url('../images/irl-images/platform.jpg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.solution-header-text-box {
    background-color: #EFEFEF;
    position: absolute;
    left: 10vw;
    text-align: center;
    border-radius: 2px;
    padding: 1.5rem 1rem;
}

.solution-header .scroll-position-box {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.solution-header .scroll-position-box .scroll-down {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 55px;
    background-color: #EFEFEF;
    border-radius: 2px;
    text-decoration: none;
    padding-bottom: 5px;
}

.solution-header .scroll-down .underline1 {
    position: relative;
    top: 5px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.solution-header .scroll-down .underline2 {
    position: relative;
    top: 3px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.solution-header .scroll-down:hover .underline1 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}

.solution-header .scroll-down:hover .underline2 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

@media only screen and (max-width: 1620px) {
    .solution-header {
        background-position-x: 90%;
    }
}

@media only screen and (max-width: 580px) {
    .solution-header {
        background-position-x: 90%;
    }
}

@media only screen and (max-width: 780px) {
    .solution-header-text-box {
        width: 100vw;
        left: 0;
        top: 7vh;
    }

    .solution-header {
        position: static;
        margin-top: 14vh;
        height: 86vh;
    }
}

/*### BANNER SECTION - STANDARD ###*/

.solution-general {
    padding: 60px 0;
    background-color: white;
    width: 70vw;
    margin: auto;
    display: flex;
    flex-direction: row;
}

.solution-general .content-box {
    width: 50%;
}

.solution-general .content-box h1 {
    padding-bottom: 1.5rem;
}

.solution-waste-list {
    display: flex;
    width: 50%;
    flex-direction: column;
    padding-left: 2rem;
}

.solution-waste-list h2 {
    padding-bottom: 1.5rem;
}

.solution-waste-list .list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.7rem 0;
}

.solution-waste-list .list-item img {
    width: 50px;
    margin-right: 2rem;
}

#spray-can {
    margin-left: 1rem;
    margin-right: 1rem;
}

@media only screen and (max-width: 1000px) {
    .solution-general {
        flex-direction: column;
    }

    .solution-general .content-box {
        order: 0;
        width: 100%;
        padding: 0 0 2rem 0;
    }

    .solution-waste-list {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    /* For mobile devices and smaller */
    .solution-general {
        width: 85vw;
    }

    .solution-waste-list .list-item img {
        width: 45px;
    }
}

/*### MACHINE SECTION - STANDARD ###*/

.solution-machine {
    width: 100%;
    padding: 48px 0;
    background-color: #EFEFEF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-machine .content-box {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.solution-machine .content-box .steps-header {
    margin-top: 2rem;
    font-weight: 500;
}

.solution-machine .content-box .steps {
    margin: 0.5rem 0 1.5rem 0;
}

.solution-machine .content-box .steps .step {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem 0;
}

.solution-machine .content-box .steps .step img {
    width: 25px;
    margin-left: 0;
}

.solution-machine .content-box .steps .step p {
    margin-left: 10px;
}

/*solution-machine-image-container*/

.solution-machine-image-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.solution-machine-image-container img {
    width: 48%;
    border-radius: 2px;
}

@media only screen and (max-width: 580px) {
    .solution-machine-image-container {
        flex-direction: column;
        align-items: center;
    }

    .solution-machine-image-container img {
        width: 85%;
        margin: 0.5rem 0;
    }
} 

.machine-images-text-after .second-p {
    margin-top: 2rem;
}
/*END solution-machine-image-container*/

@media (max-width: 900px) {
    /* For smaller iPad sizes and down to largest mobile devices */

    .solution-machine .content-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* For mobile devices and smaller */
    .solution-machine .content-box {
        width: 85%;
    }
}

@media only screen and (max-width: 780px) {
    .solution-machine .content-box .steps .step img {
        margin-left: 0;
    }
}

/*### APP SECTION - STANDARD ###*/

.solution-app {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.solution-app .content-box {
    width: 70%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-app .content-box .text {
    padding-bottom: 40px;
}

.solution-app .content-box .app-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.solution-app .content-box .app-images img {
    width: 25%;
    padding: 20px 10px;
}

@media (max-width: 900px) {
    /* For smaller iPad sizes and down to largest mobile devices */

    .solution-app .content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .solution-app .content-box .app-images {
        flex-direction: row;
    }

    .solution-app .content-box .app-images img {
        width: 40%;
    }
}

@media (max-width: 480px) {
    /* For mobile devices and smaller */
    .solution-app .content-box {
        width: 85%;
    }

    .solution-app .content-box .app-images {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .solution-app .content-box .app-images img {
        width: 50%;
    }
}

.solution-back-to-top-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.solution-back-to-top-area .solution-back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 65px;
    text-decoration: none;
}

.solution-back-to-top-area .solution-back-to-top a {
    text-decoration: none;
    color: #2f3236;
}

.solution-back-to-top-area .solution-back-to-top .underline1 {
    position: relative;
    top: 7px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.solution-back-to-top-area .solution-back-to-top .underline2 {
    position: relative;
    top: 5px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.solution-back-to-top-area .solution-back-to-top:hover .underline1 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

.solution-back-to-top-area .solution-back-to-top:hover .underline2 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}


/* For extremely large screens */
@media only screen and (min-width: 1600px) {
    .solution-general {
        width: 1120px;
    }

    .solution-machine .content-box {
        width: 1120px;
    }

    .solution-app .content-box {
        width: 1120px;
    }
}

.to-vision-page .page-link:hover .text {
    letter-spacing: 0;
}

/*
########################################################################################################################
#                                               SOLUTION PAGE STYLING                                                  #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                 VISION PAGE STYLING                                                  #
########################################################################################################################
*/

.vision-header {
    position: relative;
    margin-top: 7vh;
    height: 93vh;
    overflow: hidden;
    background-image: url('../images/vision/vision-bg-medium.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.vision-header-text-box {
    position: absolute;
    background-color: #EFEFEF;
    border-radius: 2px;
    padding: 1rem;
    top: 12%;
    left: 5%;
}

.vision-header-text-right {
    margin-left: 2em;
}

.vision-header .scroll-position-box {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.vision-header .scroll-position-box .scroll-down {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 55px;
    background-color: #EFEFEF;
    border-radius: 2px;
    text-decoration: none;
    padding-bottom: 5px;
}

.vision-header .scroll-down .underline1 {
    position: relative;
    top: 5px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.vision-header .scroll-down .underline2 {
    position: relative;
    top: 3px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.vision-header .scroll-down:hover .underline1 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}

.vision-header .scroll-down:hover .underline2 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

.vision-expansion-element {
    width: 70vw;
    margin: 4rem auto;
    display: flex;
    align-items: center;
}

.vision-expansion-image-wrapper {
    width: 10%;
}

.vision-expansion-image-wrapper img {
    width: 100%;
    float: left;
    margin-right: 3rem;
}

.vision-expansion-text-box {
    width: 90%;
    margin-left: 2rem;
}

.vision-expansion-text-box p {
    padding-top: 1rem;
}

.vision-expansion-text-box-header {
    padding-bottom: 1rem;
}

.vision-infrastructure {
    background-color: #EFEFEF;
    width: 100%;
    display: flex;
}

.vision-infrastructure-text-box {
    width: 70vw;
    margin: auto;
    padding: 3rem 0;
}

.vision-infrastructure-text-box h2 {
    padding-bottom: 1rem;
}

.vision-engagement {
    width: 70vw;
    margin: auto;
    display: flex;
    padding: 3rem 0 6rem 0;
}

.vision-engagement-image-wrapper {
    width: 60%;
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.vision-engagement-image-wrapper img {
    width: 100%;
    border-radius: 2px;
}

.vision-engagement-text-box {
    width: 40%;
    margin-left: 1rem;
}

.vision-engagement-list li:before {
    content: "-";
    margin-right: 1rem;
}

@media only screen and (max-width: 1150px) {
    .vision-engagement-image-wrapper {
        width: 50%;
    }

    .vision-engagement-text-box {
        width: 50%;
    }
}

@media only screen and (max-width: 1000px) {
    .vision-engagement {
        flex-direction: column;
    }

    .vision-engagement-image-wrapper {
        width: 100%;
        order: 2;
        padding-top: 2rem;
        padding-right: 0;
    }

    .vision-engagement-text-box {
        width: 100%;
        order: 1;
        margin: 0;
    }
}

@media only screen and (max-width: 780px) {

    .vision-header-text-box {
        left: 2.5%;
        padding: 0.5rem;
    }

    .vision-header-text-right {
        margin-left: 1rem;
    }

    .vision-header {
        background-position-x: 35%;
    }
}

@media only screen and (max-width: 560px) {

    .vision-header-text-box {
        width: 100%;
        left: 0;
    }

    .vision-header-text-right {
        margin-left: 0;
    }

    .vision-expansion-element {
        flex-direction: column;
        margin: 2rem auto;
        padding: 2rem 0;
    }

    .vision-expansion-image-wrapper {
        padding-bottom: 1rem;
        width: 20%;
    }

    .vision-expansion-text-box {
        margin-left: 0;
        width: 100%;
        text-align: left;
    }
}

@media only screen and (max-width: 480px) {
    .vision-expansion-element {
        width: 85vw;
    }

    .vision-infrastructure-text-box {
        width: 85vw;
    }

    .vision-engagement {
        width: 85vw;
    }
}

@media only screen and (max-width: 370px) {

    .vision-expansion-image-wrapper {
        width: 30%;
    }
}

@media only screen and (min-width: 1600px) {
    .vision-expansion-element {
        width: 1120px;
    }

    .vision-infrastructure-text-box {
        width: 1120px;
    }

    .vision-engagement {
        width: 1120px;
    }

    .vision-header {
        background-image: url('../images/vision/vision-bg-large.jpg');
    }

    .vision-header-text-box {
        position:unset;
        left: 0;
        top: 0;
    }

    .vision-header-text-wrapper {
        width: 1120px;
        margin: 10vh auto 0 auto;
    }

}

.vision-back-to-top-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.vision-back-to-top-area .vision-back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 65px;
    text-decoration: none;
}

.vision-back-to-top-area .vision-back-to-top a {
    text-decoration: none;
    color: #2f3236;
}

.vision-back-to-top-area .vision-back-to-top .underline1 {
    position: relative;
    top: 7px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.vision-back-to-top-area .vision-back-to-top .underline2 {
    position: relative;
    top: 5px;
    left: -30px;
    width: 60px;
    height: 2px;
    background-color: #2f3236;
    transition: all 0.3s;
}

.vision-back-to-top-area .vision-back-to-top:hover .underline1 {
    transform: rotate(15deg);
    width: 63px;
    border-radius: 3px;
}

.vision-back-to-top-area .vision-back-to-top:hover .underline2 {
    transform: rotate(-15deg);
    width: 63px;
    border-radius: 3px;
}

/*
########################################################################################################################
#                                                 VISION PAGE STYLING                                                  #
#                                                         /\                                                           #
#                                                         ||                                                           #
#                                                         \/                                                           #
#                                                APPENDIX PAGE STYLING                                                 #
########################################################################################################################
*/

/* APPENDIX CONTENT */
.spacer-div {
    height: 7vh;
}

.ax-content-menu-mobile {
    display: none;
}

@media only screen and (max-width: 1400px){
    .ax-content-menu-mobile {
        display: block;
    }

    .ax-content-menu-desktop {
        display: none;
    }

}

.appendix-box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 30px auto;
    padding: 30px 50px;
    width: 70vw;
    min-height: 150px;
    background-color: #EFEFEF;
}

.appendix-header {
    flex-direction: column;
    margin-top: 7vh;
}

.appendix-box a, .appendix-box a:hover, .appendix-box a:visited{
    color: #2f3236;
    word-wrap: break-word;
}

.appendix-box a:hover{
    transition-duration: 0.1s;
}

.appendix-content-text {
    width: 80%;
    padding-right: 15px;
}

.appendix-content-text p {
    margin: 1rem 0;
}

.appendix-content-image {
    height: 150px;
    max-width: 20%;
    max-height: 100%;
}

.appendix-content-image img{
    padding: 20px;
    max-height: 150px;
    max-width: 100%;
}

.dark-bg {
    background-color: #2f3236;
}

.white-bg {
    background-color: white;
}

/* FEASIBILITY CONTENT */

.feasibility-box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 30px auto;
    padding: 30px 50px;
    width: 70vw;
    min-height: 150px;
    background-color: #EFEFEF;
}

.feasibility-header {
    flex-direction: column;
    margin-top: 7vh;
}

.feasibility-box a, .feasibility-box a:hover, .feasibility-box a:visited{
    color: #2f3236;
}

.feasibility-box a:hover {
    transition-duration: 0.1s;
}

.feasibility-content-text {
    width: 80%;
    padding-right: 15px;
}

.feasibility-middle-p {
    margin: 2rem 0;
}

.feasibility-list {
    padding-left: 20px;
}

.video-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 3rem;
}

.video-wrapper video {
    width: 200px;
    border-radius: 2px;
}

.video-description {
    margin-left: 1rem;
}

.video-description p {
    margin-bottom: 1rem;
}

.video-description ol li {
    margin: 0.5rem 0;
}

.controls button {
    padding: 6px 5px;
    font-weight: 500;
    background-color: #16723A;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.controls button:hover, button:focus {
    box-shadow: 1px 1px 4px 2px #2f32365e;
}

@media only screen and (min-width: 1600px) {
    .feasibility-box{
        width: 1120px;
    }
}

@media only screen and (max-width: 1024px) {
    .feasibility-content-text{
        width: 100%;
    }

    .video-description {
        margin: 0;
    }

    .video-wrapper {
        flex-direction: column;
        margin: 0;
    }

    .video-wrapper video{
        margin: 1rem auto 1rem auto;
    }
}


@media only screen and (max-width: 480px) {
    .feasibility-box{
        width: 85vw;
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-description ol {
        list-style-position: inside;
        padding-left: 0;
    }    

    .video-description ol li {
        margin: 1rem 0;
    }
}

/* ACCESSIBILITY SCORE CONTENT */

.score-text {
    width: 65%;
}

.score-result {
    width: 35%;
    padding-left: 30px;
    color: #16723A;
}

/* SOURCES CONTENT */

.source-text {
    width: 100%;
}

.appendix-box .source-text-green a {
    width: 100%;
    color: #16723a;
    font-weight: 500;
}

.appendix-box .source-text-green h2 a {
    font-weight: 700;
}

.appendix-box-float {
    position: fixed;
    width: 14vw;
    padding: 15px;
    background-color: #EFEFEF;
}

.ax-content-menu-mobile a.source-link {
    color: #16723a;
    font-weight: 700;
    display: inline-block;
}

@media only screen and (min-width: 1600px) {
    .appendix-box{
        width: 1120px;
    }
}

@media only screen and (max-width: 1024px) {
    .appendix-content-text{
        width: 100%;
    }

    .appendix-content-image{
        max-width: 500px;
        max-height: 50%;
    }

    .score-result {
        padding-top: 30px;
        padding-left: 0;
    }
}


@media only screen and (max-width: 480px) {
    .appendix-box{
        width: 85vw;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* MINUTES STYLING */
.minutes-table {
    width: 100%;
    margin-bottom: 2rem;
}

.minutes-table tr td {
    text-align: left;
}

.minutes-table tr .table-download {
    width: 50%;
}

@media only screen and (max-width: 1024px) {
    .minutes-table tr .table-download {
        width: unset;
    }
}

@media only screen and (max-width: 768px) {
    .meeting-box {
        width: 100vw !important;
    }

    .minutes-table tr td{
        padding-bottom: 1rem;
    }

    .minutes-table tr .table-download {
        text-align: center;
    }
}