/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Varela Round', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #3d5443;
    background-color: #b2c68f;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #454B4D;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    margin: 0;
    line-height: initial;
    -webkit-text-stroke: 1px #847669;
    color: white;
    text-shadow: 3px  3px 0 #847669, 
                -1px -1px 0 #847669, 
                 1px -1px 0 #847669, 
                -1px  1px 0 #847669, 
                 1px  1px 0 #847669;
}

a {
    color: #a47a4f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #175E91;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 10rem;
    max-width: 885px;
}

.main {
    
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
.main-logo {
    width: 150px;
    height: 150px;
    transform: rotateZ(45deg);
}

.header .padding {
    padding: 1rem 0;
}

.header {
    color: #eee;
}

.header a {
    color: #fff;
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
    background-color: #d3e7bf;
    transform: rotateZ(-45deg);
    padding: 100px 150px 0 150px;
    position: absolute;
    left: -160px;
    top: -90px;
    background-size: 160px !important;
    box-shadow: 0px -40px 0px 50px #87996c;
}

#body {
    position: relative;
}

.creators {
    background-color: #f4c878;
    font-size: 0.8em;
    padding: 20px;
    border-radius: 20px;
    border-bottom: 3px solid #a47a4f;
    border-right: 3px solid #a47a4f;
    color: #6c4d2c;
}

.tile {
    width: 150px;
    height: 150px;
}

.footer {
    min-height: 200px;
    background-color: #6698b9;
    flex-grow: 1;
    position: relative;
}

.bottom-container {
    position: absolute;
    width: 200vw;
}

.grav-youtube {
    border-radius: 20px;
    border-bottom: 3px solid #87996c;
    border-right: 3px solid #87996c;
    background: #87996c;
    padding-top: 0 !important;
    padding-bottom: 56% !important;
}

/* Menu Settings */
.main-nav ul {
    text-align: left;
    letter-spacing: -1em;
    margin: 25px 0 0 22rem;
    padding: 0;
    height: 120px;
    width: 480px;
}

.main-nav ul li {
    transition: transform 0.2s;
    display: inline-block;
    letter-spacing: normal;
    transform: rotateZ(-45deg);
    font-size: 1.5em;
    min-width: 225px;
    text-align: left;
    margin-left: -130px;
    box-shadow: -8px 8px 0px 0px #87996c;
    border-radius: 10px;
}

.main-nav ul li a {
    border-radius: 10px;
    transition: background-color 0.2s;
    position: relative;
    display: block;
    padding: 0 20px;
    white-space: nowrap;
    font-family: 'Rubik', sans-serif;
    -webkit-text-stroke: 1px #a47a4f;
    color: white;
    text-shadow:-3px  3px 0 #a47a4f, 
                -1px -1px 0 #a47a4f, 
                 1px -1px 0 #a47a4f, 
                -1px  1px 0 #a47a4f, 
                 1px  1px 0 #a47a4f;
}

.main-nav > ul > li > a {
    background-color: #f4c878;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
    background-color: #cda163;
}

.main-nav ul li:hover {
    transform: rotateZ(-45deg) translate(-10px, 0px);
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    background-color: #d5e9c1;
    -webkit-text-stroke: 1px #5b7662;
    color: white;
    text-shadow: -3px  3px 0 #5b7662, 
                -1px -1px 0 #5b7662, 
                 1px -1px 0 #5b7662, 
                -1px  1px 0 #5b7662, 
                 1px  1px 0 #5b7662;
}

.main-nav ul li.selected:hover > a {
    background-color: #7e8f65;
}


/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #1F8DD6;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

/* Buildings */
.buildings-left,
.building {
    position: absolute;
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    bottom: 0;
    z-index: -1;
}

.buildings-right {
    position: absolute;
    width: 100vw;
    bottom: 0;
}

.button {
    text-align: center;
    background: #f4c878;
    display: inline-block;
    border-radius: 20px;
    padding: 10px 20px;
    border-bottom: 3px solid #a47a4f;
    border-right: 3px solid #a47a4f;
    font-family: 'Rubik', sans-serif;
    -webkit-text-stroke: 1px #a47a4f;
    color: white;
    text-shadow: 3px 3px 0 #a47a4f, -1px -1px 0 #a47a4f, 1px -1px 0 #a47a4f, -1px 1px 0 #a47a4f, 1px 1px 0 #a47a4f;
    font-size: 1.5rem;
    transition: all 0.3s;

}

.button:hover {
    color: white !important;
    background: #cda163;
    transform: scale(1.05);
    cursor: pointer;
    box-shadow: 2px 5px 0px 0px #87996c;
}

.button.download {
    max-width: 380px;
    padding: 0;
}

.button.download h3 {
    border-bottom: 3px solid #a47a4f;
    padding: 10px;
    -webkit-text-stroke: 1px #a47a4f;
    color: white;
    text-shadow: 3px 3px 0 #a47a4f, -1px -1px 0 #a47a4f, 1px -1px 0 #a47a4f, -1px 1px 0 #a47a4f, 1px 1px 0 #a47a4f;
}

.button.download .download-img {
    background: #d3e7bf;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.button.download:hover .download-img {
    background: #a5bb84
}

.button.download .download-img img {
    width: 180px;
}

.button.download h4 {
    border-top: 3px solid #b2c68f;
    background: #87996c;
    padding: 5px;
    border-bottom: 3px solid #a47a4f;
    -webkit-text-stroke: 1px #5b7662;
    color: white;
    text-shadow: 3px 3px 0 #5b7662, -1px -1px 0 #5b7662, 1px -1px 0 #5b7662, -1px 1px 0 #5b7662, 1px 1px 0 #5b7662;
}

.button.download h5 {
    text-shadow: none;
    -webkit-text-stroke: 0;
    color: #a47a4f;
    text-transform: none;
    font-size: 0.75em;
    padding: 10px 20px;
}

.button.download h3:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f019";
    margin-right: 10px;
}

.cc-window.cc-floating.cc-type-info.cc-theme-block.cc-bottom.cc-right.cc-color-override-530831885 {
    background-color: #d5e9c1;
    color: #3d5443;
    border-bottom: 3px solid #87996c;
    border-right: 3px solid #87996c;
    border-radius: 20px;
}

.cc-color-override-530831885 .cc-link, .cc-color-override-530831885 .cc-link:active, .cc-color-override-530831885 .cc-link:visited {
    color: #a47a4f !important;
    text-decoration: none;
    font-weight: bold;
}

.cc-color-override-530831885 .cc-link:hover, .cc-color-override-530831885 .cc-link:hover, .cc-color-override-530831885 .cc-link:hover {
    color: #175E91 !important;
}

.cc-color-override-530831885 .cc-btn {
    background-color: #f4c878 !important;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Rubik', sans-serif;
    -webkit-text-stroke: 1px #a47a4f;
    color: white;
    text-shadow: 2px 2px 0 #a47a4f, -1px -1px 0 #a47a4f, 1px -1px 0 #a47a4f, -1px 1px 0 #a47a4f, 1px 1px 0 #a47a4f
}

.cc-color-override-530831885 .cc-btn:hover {
    background-color: #cda163 !important;
}

@media (max-width: 710px) {
    .header .logo {
        background: #d3e7bf !important;
        transform: none;
        width: 100%;
        display: block;
        padding: 0;
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        font-size: 0em;
        text-align: center;
        border-bottom: 5px solid #87996C;
    }

    .main-logo {
        width: 150px;
        height: 150px;
        transform: none;
    }

    .main-nav ul li {
        transition: transform 0.2s;
        display: inline-block;
        letter-spacing: normal;
        transform: none;
        font-size: 1.5em;
        min-width: 100%;
        text-align: left;
        margin-left: 0;
        box-shadow: 0px 5px 0px 0px #87996c;
        border-radius: initial;
    }

    .main-nav ul li:hover {
        transform: none;
    }
    
    .main-nav ul li a {
        text-align: center;
        border-radius: 0;
    }
    
    .main-nav ul {
        text-align: center;
        letter-spacing: -1em;
        margin: 0;
        padding: 0;
        height: auto;
        width: 100%;
    }

    .wrapper {
        margin: 0 auto;
        max-width: 100%;
        width: 90%;
    }

}