* {
    box-sizing: border-box
}
html {
    height: 100%;
}
body {
    margin:0;
    background-color: black;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url("../images/officebg.png");
    background-size:100% 100%;
    background-repeat: no-repeat; 
    overflow-y: hidden;
    height:100vh;
}
img {
    width:100%;
}
main {
    position: absolute;
    z-index: 0;
    width:91.3%;
    max-width: 1380px;
    display:flex;
    top: 50%;
    transform: translateY(-50%);
}
section {
    z-index: 2;
    background-color: white;
    width:100%;
    height:44vw;
    overflow-y: scroll;
    overflow-x:hidden;
}
aside {
    width:19%;
}
h1{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 4.2vw;  
    margin:0; 
}
h2{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 2.6vw; 
    line-height: 1.1em;
    margin-top: 0; 
}
h3{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.7vw;
    line-height: 0.7em;   
}
h4{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.4vw;
    line-height: 0.4em;   
}
p, li{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1vw;
    text-align: left;   
}
li{
    margin-bottom: 5%;
}
#vpalist li{
    margin-bottom: 2% !important;
}
#vpalist ul{
    padding-left: 20px;
}
a{
    text-decoration: none;
}
.background{
    position: absolute;
    z-index:0;
    top: 50%;
    transform: translateY(-50%);
}
.savebutton a:hover p{
    background-color:white;
    color:#62824D;
}
.save p{
    position:absolute;
    bottom:1%;
    right:-3%;
    width:15%;
    background-color:#62824D;
    font-family: "PT Mono", monospace;
    font-weight: 400;
    font-size: 1vw;
    text-align:center;
    text-decoration: none;
    line-height: 3em;
    color:white;
}
.section{
    padding:10%;
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.section-no-space{
    padding:0 10%;
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.sectionbg{
    padding:10%;
    display:flex;
    background-color: #e5e4e4;
    align-items: center;
    justify-content: space-between;  
}
.sectionbg-no-space{
    padding:0 10%;
    display:flex;
    background-color: #e5e4e4;
    align-items: center;
    justify-content: space-between;  
}
.mediacolumn{
    width:45%;
}
.textcolumn{
    width:45%;
}
.four-media{
    width:25%;
    margin: 0 2%;
}
.fadeinarrow{   
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 3s;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.mobile{
    display:none;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}
/* Hide the images by default */
.mySlides {
    display: none;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Number text (1/3 etc) */
.numbertext {
    color: #9a9a9a;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0vw;
    width: 100%;
    text-align: center;
}
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* Style the Image Used to Trigger the Modal */
#myImg {
    cursor: pointer;
    transition: 0.3s;
}
#myImg:hover {
    opacity: 0.5;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    padding-top: 3%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
}
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
    text-align: center;
    color: #ccc;
    padding: 2% 0;
    height: 10%;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1em; 
}
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}


@media only screen and (max-width: 1515px) {
    main {
            margin-top:2.5vw;
    }
}
@media only screen and (min-width: 1515px) {
    .background{
        max-width: 1515px;
    }
    main {
        margin-top:39px;
    }
    body{
        padding: 7% 0;
    }
    section{
        height:668px;
    }
    h1{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
        font-size: 4em;  
        margin:0; 
    }
    h2{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
        font-size: 2.5em; 
        line-height: 1em;  
    }
    h3{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.6em;
        line-height: 0.7em;   
    }
    h4{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 1.3em;
        line-height: 0.4em;   
    }
    p, li{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1em;
        text-align: left;    
    }
    .save p{
        font-size: 14px;
        bottom:.5%;
    }
}
@media only screen and (max-width: 700px) {
    .mobile{
        display:block;
        position:relative;
        background-image: url("../images/green-background.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        width:100%;
        height: 100vh;
        z-index: 1;
    }
    .mobilechild{
        position:absolute;
        z-index: 1;
        top: 50%;
        transform: translateY(-50%);
    }
    .mobiletext{
        width: 320px;
        margin:auto;
        font-family: "PT Mono", monospace;
        color:white;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 8vw;
        text-align: center;
    }
}
