* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Trebuchet', sans-serif;
    max-width: 99999px;
}

/*
##############################################
Flexbox 
##############################################
*/

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.col {
    flex-direction: column;
}

.around {
    justify-content: space-around;
}

.between {
    justify-content: space-between;
}

.grow {
    flex-grow: 1;
}

.full {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    height: 0;
}

@media only screen and (max-width: 1366px) {
    .full {
        height: auto;
    }
}

.center {
    align-items: center;
}

.end {
    justify-content: flex-end;
}

.imgright {
    width: 40%;
    height: auto;
    margin-left: 60px;
    align-self: center;
}

.imgleft {
    width: 40%;
    height: auto;
    margin-right: 60px;
    align-self: center;
}

.imgfull {
    width: 100%;
    height: auto;
}

.picursor {
    cursor: pointer;
}

@media only screen and (max-width: 700px) {

    .imgright,
    .imgleft {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

/*
##############################################
Globals
##############################################
*/

.spacerbig>*:not(:last-child) {
    margin-bottom: 60px;
}

.spacer>*:not(:last-child) {
    margin-bottom: 30px;
}

.spacersmall>*:not(:last-child) {
    margin-bottom: 15px;
}

a {
    transition: all 0.2s;
}

body {
    min-width: 1366px;
    overflow-y: scroll;
    overflow-x: hidden;
}

@media only screen and (max-width: 1366px) {
    body {
        min-width: auto;
    }
}

.boxbox {
    width: 1400px;
}

.main-button {
    display: inline-block;
    background-color: #a05f0d;
    padding: 10px 20px;
    border-radius: 3px;
    background-image: url('images/right-arrow.png');
    background-position: left -15px center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 500px) {
    .main-button {
        font-size: 14px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

.pdf-button {
    background-image: url('images/pdf-icon.png');
    background-position: left -20px center;
}

.main-button:hover {
    padding-left: 35px;
    background-position: left 15px center;
    background-color: #8e4d0a;
}

.pdf-button:hover {
    padding-left: 45px;
}

.dark .main-button {
    background-color: #333;
}

.dark .main-button:hover {
    background-color: #222;
}

.dark h5 {
    color: #eec139;
}

.dark ul li {
    color: #fff;
}

.sidepad {
    padding-left: 50px;
    padding-right: 50px;
}

.tallpad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pad {
    padding: 50px;
}

@media only screen and (max-width: 500px) {
    .sidepad {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tallpad {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pad {
        padding: 20px;
    }
}

h1 {
    font-size: 42px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    animation: .5s ease-out 0s 1 slideInFromRight;
}

@media only screen and (max-width: 500px) {
    h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
}

h2 {
    font-size: 42px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
}

@media only screen and (max-width: 500px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 32px;
    font-weight: 600;
    color: #a05f0d;
}

@media only screen and (max-width: 500px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 30px;
    font-weight: 600;
    color: #222;
}

h5 {
    font-size: 24px;
    font-weight: 600;
    color: #555;
}

@media only screen and (max-width: 500px) {
    h5 {
        font-size: 18px;
    }
}

.dark h1,
.dark h2,
.dark h3,
.dark p {
    color: #fff !important;
}


p {
    font-size: 16px;
    line-height: 1.5em;
}

@media only screen and (max-width: 1000px) {
    p {
        font-size: 14px;
        line-height: 1.5em;
    }
}


.fourth {
    width: 25%;
}

.third {
    width: 33%;
}

.half {
    width: 50%;
}

@media only screen and (max-width: 800px) {
    .half {
        width: 100%;
    }
}

.twothird {
    width: 67%;
}

@media only screen and (max-width: 1000px) {
    .third {
        width: 100%;
    }

    .twothird {
        width: 100%;
    }
}

.sys-error {
    background-color: #bc2626;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    display: none;
}

.relative {
    position: relative;
}

/*
##############################################
Small Menu
##############################################
*/

.small-menu {
    background-color: rgba(33, 33, 33, 0.95);
    transition: height 1s, min-height 1s;
    min-height: 100vh;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    display: none;
}

.small-menu ul li a {
    color: #fff;
    padding: 30px;
    display: block;
}

.small-menu ul li:last-of-type {
    border-bottom: 0;
}

.small-menu ul li {
    border-bottom: 1px solid #666;
    color: #fff;
    transition: all 0.4s;
    font-weight: 600;
}

.small-menu ul li:hover {
    cursor: pointer;
    background-color: #333;
}

.small-menu ul li ul {
    display: none;
}

.small-menu ul li ul a {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.small-menu ul li ul li {
    list-style-type: none;
    padding-left: 0 !important;
    border-bottom: 0;
    font-weight: 400;
}

.small-link-pad {
    padding: 30px;
}

.small-menu ul li ul li:hover {
    background-color: unset;
    text-decoration: underline;
}

.small-menu-active {
    background-color: #a05f0d !important;
    box-shadow: inset 0 -7px 9px -7px rgba(0, 0, 0, 0.4), inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
    color: #ccc !important;
}

.dark-icon {
    background-size: contain;
    background-repeat: no-repeat;
}

.dark-icon {
    background-image: url('images/unv-icon-dark.png');
    background-position: left top;
    width: 48px;
    height: 48px;
    display: block;
}

.dark-icon:hover {
    opacity: 1;
}

.small-top {
    border-bottom: 1px solid #666;
}

.small-arrow {
    width: 24px;
    background-image: url('images/right-arrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .5;
    transition: all .2s;
}

.small-arrow-rotate {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
}

.small-menu-hide {
    opacity: 0;
    margin-bottom: -20px;
}

.small-menu-hide .small-arrow {
    margin-right: 20px;
}

.small-socials {
    margin-bottom: 20px;
    padding-top: 20px;
    justify-content: center;
    border-top: 1px solid #666;
}

.small-socials a {
    opacity: .75;
    width: 32px;
    height: 32px;
    margin-right: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (max-width: 700px) {
    .small-socials a {
        margin-right: 24px;
        width: 24px;
        height: 24px;
    }
}

.small-socials a:last-of-type {
    margin-right: 0;
}

.small-socials a:hover {
    opacity: 1;
}

.small-fb {
    background-image: url('images/fb-icon.png');
}

.small-tw {
    background-image: url('images/tw-icon.png');
}

.small-in {
    background-image: url('images/in-icon.png');
}

.small-li {
    background-image: url('images/li-icon.png');
}

.icon-hide {
    opacity: 0 !important;
    margin-top: -20px;
}

/*
##############################################
Subheader
##############################################
*/

.subheader {
    background-color: #eee;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    z-index: 10;
}

@media only screen and (max-width: 800px) {
    .subheader {
        display: none;
    }
}

.subheader span {
    color: #af513b;
    font-weight: bold;
}

.top-quote div {
    margin-right: 30px;
}

@media only screen and (max-width: 1100px) {
    .top-quote div:not(:first-of-type) {
        display: none;
    }

    .top-quote div {
        margin-right: 0;
    }
}

.top-contact {
    font-weight: 600;
    color: #222;
}

.flags {
    margin-left: 15px;
}

.flags a {
    width: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .5;
}

.flags a:hover {
    opacity: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.flags a:first-of-type {
    margin-right: 5px;
}

.flags .canada {
    background-image: url('images/icon_can.png');
}

.flags .germany {
    background-image: url('images/icon_ger.png');
}

@media only screen and (max-width: 1300px) {
    .top-right {
        margin-right: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .top-contact {
        display: none;
    }
}

.top-icon {
    background-position: center left;
    background-repeat: no-repeat;
    color: #222;
    display: block;
}

.top-icon:hover {
    color: #af513b;
}

.top-icon:last-of-type {
    margin-left: 30px;
}

.top-phone {
    background-image: url('images/top-phone.png');
    padding-left: 24px;
    background-size: contain;
}

.top-email {
    background-image: url('images/top-mail.png');
    padding-left: 30px;
}

/*
##############################################
Featured
##############################################
*/

.featured-main,
.featured-page {
    background-size: cover;
    background-position: center center;
}

.featured-page {
    background-position: center top;
    background-size: cover;
}

.featured-home {
    background-image: url('images/featured-bg.jpg');
    background-size: cover;
    background-position: bottom;
    transition: min-height 1s;
}

@media only screen and (max-width: 1200px) {
    .featured-home {
        background-image: url('images/featured-bg.jpg');
    }
}


.page-title {
    margin-top: 50px;
    margin-bottom: 80px;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .page-title {
        display: none;
    }
}

.hero .latest {
    width: 70%;
    background-color: #111;
    position: relative;
    z-index: 5;
}

.hero .latest .latelist {
    border-top: 1px solid #222;
}

.hero .latest .latelist a {
    position: relative;
    color: #fff;
    padding: 30px;
    font-weight: bold;
    width: 25%;
}

.hero .latest .latetop {
    padding: 20px 30px;
}

.hero .latest .latetop span {
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: bold;
}

.hero .latest .latetop a {
    border: 1px solid #444;
    padding: 10px 15px;
    color: #444;
    font-weight: bold;
}

.hero .latest .latetop a:hover {
    background-color: fff;
    border-color: #fff;
    color: #111;
}

.hero .latest .latelist a span {
    display: block;
    font-weight: 400;
    text-transform: capitalize;
}

.hero .latest .latelist a:hover {
    background-color: #a05f0d;
    border-color: #a05f0d;
}

.hero .about {
    margin-bottom: -10vh;
}

.hero .about p,
.hero h1 {
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .66);
}

.hero .about p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 28px;
}

.hero .about a {
    margin-top: 20px;
}

.main-next {
    font-size: 24px;
    color: #222;
    font-weight: 600;
    padding-bottom: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-image: url('images/main-arrow.png');
    background-position: center bottom 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all .5s;
}

.main-next:hover {
    color: #af503a;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 50px;
    background-image: url('images/main-arrow-over.png');
    background-position: center bottom;
}

.hero {
    background-image: url('images/hero_bg.jpg?12');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero .readmore span {
    font-size: 18px;
    font-weight: 600;
    color: #343434;
    background-image: url('images/down-arrow.png');
    background-repeat: no-repeat;
    background-position: center bottom 35px;
    padding: 40px;
    padding-bottom: 60px;
    background-color: #fff;
    display: block;
    text-align: center;
}

.about-text {
    width: 800px;
}

@media only screen and (max-width:1600px) {
    .hero .latest .latetop {
        padding: 10px 15px;
    }

    .hero .latest .latelist a:last-of-type {
        display: none;
    }

    .hero .latest .latelist a {
        width: 33%;
    }

    .hero .latest .latelist a {
        padding: 10px 15px;
    }
}

@media only screen and (max-width:1300px) {
    .hero {
        height: auto;
        background-position: center left;
    }

    .hero .about .between {
        display: block;
    }

    .hero .about .vidbox {
        width: 100%;
        height: 65vw;
    }

    .hero .about {
        margin-bottom: 0;
    }

    .hero .readmore {
        display: none;
    }

    .hero .latest {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width:1000px) {
    .hero .about .about-text {
        width: auto;
        flex-shrink: 1;
    }
}

@media only screen and (max-width:800px) {
    .hero .latest .latelist a:nth-child(3) {
        display: none;
    }

    .hero .latest .latelist a {
        width: 50%;
    }
}

@media only screen and (max-width:600px) {
    .hero .latest .latelist a:nth-child(2) {
        display: none;
    }

    .hero .latest .latelist a {
        width: 100%;
    }

    .hero .latest .latetop {
        flex-direction: column-reverse;
    }

    .hero .latest .latetop a {
        width: 100%;
        text-align: center;
    }

    .hero .latest .latetop span {
        margin-top: 10px;
    }

    .hero .about p {
        font-size: 16px;
    }
}

@media only screen and (max-width:500px) {
    .hero .latest {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*
##############################################
Header
##############################################
*/

.sticky-menu {
    width: 100%;
    position: fixed;
    z-index: 14;
}

.header {
    background-color: #fefefe;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.25);
}

.header-white {
    background-color: #fefefe;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.25);
}

.header-logo {
    margin-left: 50px;
}

.header-white .header-logo {
    transform: scale(0.8);
    margin-left: 15px;
}

@media only screen and (max-width: 1600px) {
    .header-logo {
        transform: scale(0.8);
        margin-left: 15px;
    }
}

@media only screen and (max-width: 1300px) {
    .header-logo {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.header-logo:hover {
    opacity: 0.75;
}

@media only screen and (max-width: 800px) {
    .header-logo {
        transform: unset;
        margin-left: 50px;
    }

    .header-logo img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .header-logo {
        margin-left: 15px;
        width: 60%;
    }

    .header-white .header-logo {
        margin: 5px;
        margin-left: 0;
    }
}

.header-menu {
    margin-right: 50px;
}

@media only screen and (max-width: 1300px) {
    .header-menu {
        display: none;
    }
}

.small-line1,
.small-line2,
.small-line3 {
    position: relative;
    width: 33px;
    height: 4px;
    background-color: #222;
    margin-bottom: 6px;
    transition: all .3s;
}

.small-line3 {
    margin-bottom: 0;
}

.header-menu-small-active .small-line1 {
    transform: rotate(45deg);
    margin-bottom: 0;
    background-color: #fff;
}

.header-menu-small-active .small-line2 {
    display: none;
}

.header-menu-small-active .small-line3 {
    transform: rotate(-45deg);
    margin-bottom: 0;
    margin-top: -3px;
    background-color: #fff;
}

.header-menu-small {
    display: none;
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 99999;
    background-color: #fff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0 0 5px 2px rgba(34, 34, 34, 0.1);
    border: 1px solid #ccc;
    border-top-width: 0;
    list-style-type: none;
    font-family: 'Montserrat';
    font-weight: bold;
    color: #333b41;
    font-size: 64px;
    line-height: 32px;
    font-weight: bold;
    transition: all .2s;
    cursor: pointer;
    padding: 13px;
    padding-top: 25px;
    transition: all .2s;
}

@media only screen and (max-width: 1300px) {
    .header-menu-small {
        display: block;
    }
}

.header-menu-small-active {
    border: 1px solid #a05f0d;
    background-color: #a05f0d;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
}

.header-menu ul {
    display: flex;
    justify-content: space-between;
    margin-left: 0;
}

.header-menu li {
    position: relative;
    list-style-type: none;
    font-family: 'Montserrat';
    font-weight: bold;
    color: #333b41;
    font-size: 18px;
    margin-left: 50px;
    transition: all .2s;
    cursor: pointer;
    padding: 20px 30px;
    padding-top: 40px;
    border: 1px solid transparent;
}

.header-white .header-menu li {
    padding: 10px 30px;
    padding-top: 30px;
}

.header-menu li a {
    color: #333b41;
}

.header-menu li:hover,
.header-menu li:hover a {
    color: #af513b;
}

.header-menu li:hover .header-bar {
    width: 100%;
}

.header-menu li ul {
    position: absolute;
    top: 87px;
    display: none;
    background-color: white;
    box-shadow: 0 0 5px 2px rgba(34, 34, 34, 0.1);
    z-index: 98765;
}

.header-white .header-menu li ul {
    top: 67px;
}

.header-menu li:hover ul {
    display: block;
}

.header-menu li ul li {
    margin-left: 0;
    display: block;
    padding: 10px;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
    transition: all .3s !important;
    text-transform: uppercase;
}

.header-white .header-menu li ul li {
    padding: 10px;
}

.header-menu li ul li:hover {
    background-color: #af513b;
    color: #fff;
    border-bottom-color: #af513b;
}

.header-menu li ul a:not(:last-child) {
    border-bottom: 1px solid #ddd;
    display: block;
}

.header-menu-active {
    background-color: #fff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0 0 5px 2px rgba(34, 34, 34, 0.1);
    border: 1px solid #ccc;
    border-top-width: 0;
    transition: box-shadow 1s;
}

.header-white .header-menu-active {
    box-shadow: unset;
}

.header-bar {
    height: 5px;
    width: 0;
    margin-top: 10px;
    background-color: #af513b;
    transition: all .2s ease-in-out;
}

.header-menu-active .header-bar {
    width: auto;
}

@media only screen and (max-width: 1600px) {
    .header-menu li {
        padding: 10px 15px;
        padding-top: 25px;
    }

    .header-menu li ul {
        top: 62px;
    }

    .header-menu li ul a {
        width: 100%;
    }
}

@media only screen and (max-width: 1500px) {
    .header-menu li {
        margin-left: 20px;
    }
}

/*
##############################################
Why Copper
##############################################
*/

.why-copper {
    background-color: #eee !important;
    background-image: url('images/why-copper.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 60%;
    border-top: 1px solid #ccc;
}

@media only screen and (max-width: 1500px) {
    .why-copper .half {
        width: 100%;
    }

    .top-copper p,
    .why-copper h3 {
        width: 50%;
    }
}

@media only screen and (max-width: 800px) {
    .featured-copper {
        background-image: none;
    }

    .why-copper {
        background-image: none;
    }

    .top-copper p,
    .why-copper h3 {
        width: 100%;
    }
}

.why-copper h2,
.why-copper h3 {
    margin-bottom: 30px;
}

.top-copper p {
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .why-copper h3 {
        font-weight: bold;
    }

    .why-copper h4 {
        font-size: 24px;
    }
}

.copper-gen {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.copper-gen:last-of-type {
    margin-bottom: 30px;
}

.copper-bar {
    color: #fff;
    padding: 20px;
    font-size: 18px;
}

@media only screen and (max-width: 700px) {
    .copper-bar {
        padding: 10px;
    }
}

.copper-text {
    width: 180px;
}

@media only screen and (max-width: 1000px) {
    .copper-text {
        width: 100px;
    }
}

.copper-wrap {
    flex-grow: 1;
}

.copper-market {
    margin-top: 20px;
    padding: 50px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ddd;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    margin-bottom: -100px;
}

.copper-chart img {
    width: 100%;
    height: auto;
    max-width: 976px;
}

@media only screen and (max-width: 1700px) {
    .copper-market {
        padding: 50px;
    }
}

.copper-market .half:first-of-type {
    margin-right: 50px;
}

@media only screen and (max-width: 1300px) {
    .copper-market {
        display: block;
    }

    .copper-market .half {
        width: 100% !important;
    }

    .copper-chart {
        margin-top: 20px;
        width: 100%;
    }

    .copper-chart img {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .copper-market {
        padding: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .copper-chart {
        display: none;
    }

    .copper-market {
        margin-bottom: -70px;
    }
}

.copper-market p:not(:first-of-type) {
    margin-top: 20px;
}

#copper-gachala h2 {
    margin-top: 50px;
}

@media only screen and (max-width: 1100px) {
    #copper-gachala {
        display: block;
    }

    #copper-gachala .about-box {
        width: 85%;
    }
}

@media only screen and (max-width: 700px) {
    #copper-gachala .about-box {
        width: 100%;
    }
}

/*
##############################################
About Gachala & Poplar
##############################################
*/

.poplar p {
    font-size: 24px;
}

.poplar .poplist li {
    background-image: url('images/ui/right_arrow.png');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 16px auto;
    padding-left: 24px;
    font-size: 18px;
    font-weight: 600;
    list-style-type: none;
}

.poplar h2 {
    color: #ae442c;
}

.about-gachala {
    background-image: url('images/gachala-bg.jpg');
    box-shadow: inset 0px 5px 20px 0px rgba(34, 34, 34, 0.25), inset 0px -5px 20px 0px rgba(34, 34, 34, 0.25);
}

.about-gachala,
.about-poplar {
    background-size: cover;
    background-position: center center;
}

.about-gachala p,
.about-poplar p {
    margin-bottom: 20px;
}

.about-poplar ul,
.about-gachala ul {
    margin-bottom: 25px;
    margin-left: 50px;
}

.about-poplar ul li,
.about-gachala ul li {
    margin-top: 25px;
}

.gachala-map,
.poplar-map {
    background-size: contain;
    background-repeat: no-repeat;
    width: 50%;
}

.gachala-map {
    background-image: url('images/gachala-map.png');
    margin-top: -50px;
    background-position: left bottom;
}

.poplar-map {
    background-image: url('images/home_poplar.png');
    background-position: left bottom;
    background-size: cover;
}

.about-gachala a,
.about-poplar a {
    margin-top: 20px;
}

.about-box {
    width: 50%;
}

.gachala-box {
    padding-right: 100px;
}

.poplar-box {
    padding: 100px;
}

.poplar .historic {
    position: relative;
}

.poplar .historic .textbox {
    background-color: #fafafa;
    padding: 60px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 800px;
    margin-bottom: -50px;
}

.poplar .historic .backimg {
    height: 80vh;
    width: 97%;
    background-image: url('images/home_sample.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
}

.poplar .comepad {
    padding-bottom: 0;
}

.poplar .upcoming .item .text {
    padding: 90px;
}

.poplar .upcoming .item .text span {
    font-size: 24px;
    font-weight: 600;
    display: block;
}

.poplar .upcoming .item .text span:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, 0.50);
    padding-top: 20px;
}

.poplar .upcoming .item .imagebox {
    width: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.poplar .upcoming .item .imagebox .image {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.poplar .poppins {
    padding: 10px;
    background-color: #835822;
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin: 60px;
    margin-top: -60px;
    max-width: 1200px;
}

.poplar .poppins .bgimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/home_learnmore.jpg');
    background-size: cover;
    opacity: .25;
    transition: all .3s;
    border-radius: 5px;
}

.poplar .poppins:hover .bgimg {
    opacity: 1;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
}

.poplar .poppins .inner {
    padding: 30px;
    color: #eee;
    position: relative;
    z-index: 2;
    background-image: url('images/ui/right_arrow_big.png');
    background-position: center right -80px;
    background-repeat: no-repeat;
    transition: all .3s;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #c78736;
}

.poplar .poppins .inner span {
    font-size: 32px;
    font-weight: 600;
    display: block;
}

.poplar .poppins:hover .inner {
    background-position: center right 30px;
    color: #fff;
    padding-left: 40px;
}

.poplar .splide__track,
.poplar .splide__list {
    height: 100%;
}

@media only screen and (max-width:1600px) {
    .poplar p {
        font-size: 18px;
    }

    .poplar .poplist li {
        font-size: 16px;
    }

    .poplar .upcoming .item .text {
        padding-left: 0;
    }
}

@media only screen and (max-width: 1400px) {

    .gachala-box,
    .poplar-box {
        padding-left: 0;
        padding-right: 0;
    }

    .poplar .upcoming .item .text span {
        font-size: 18px;
        font-weight: bold;
    }
}

@media only screen and (max-width:1200px) {
    .poplar .upcoming .item {
        flex-direction: column;
    }

    .poplar .upcoming .item .text {
        padding: 50px 0;
    }

    .poplar .upcoming .item .imagebox {
        width: 100%;
        height: 50vw;
    }

    .poplar .poppins {
        margin-top: -30px;
    }
}

@media only screen and (max-width: 1100px) {
    #poplar {
        width: 100%;
        flex-direction: column-reverse;
    }

    .poplar .about-box {
        width: 100%;
    }

    .poplar-map {
        height: 700px;
        width: 100%;
        background-size: cover;
    }

    .poplar-box {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .poplar .historic .textbox {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: -60px;
        position: relative;
    }

    .poplar .historic .backimg {
        width: 100%;
        height: 70vh;
    }

    .poplar .upcoming .item .text {
        padding: 30px 0;
        padding-top: 0;
    }
}

@media only screen and (max-width:800px) {
    .poplar-box {
        padding: 0;
    }

    .poplar .poppins .inner span {
        font-size: 24px;
    }

    .poplar .poppins .inner {
        font-size: 12px;
        padding: 10px;
    }
}

@media only screen and (max-width:600px) {
    .poplar-map {
        height: 500px;
    }

    .poplar .historic .textbox {
        padding: 30px;
        margin-bottom: 0;
    }

    .poplar .poppins {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media only screen and (max-width:500px) {
    .poplar .historic .textbox {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .poplar .poppins .inner span {
        font-size: 18px;
        text-align: center;
    }

    .poplar .poppins .inner {
        font-size: 10px;
        padding: 10px;
        text-align: center;
    }
}

/*
##############################################
Footer
##############################################
*/

.footer {
    background-image: url('images/footer-bg.jpg');
    background-size: cover;
    background-position: center center;
}

.footer-logo {
    width: 400px;
    height: 50px;
    background-image: url('images/footer-logo.png');
    background-repeat: no-repeat;
    background-position: center left;
    margin-bottom: 20px;
    background-size: contain;
}

.footer-info {
    line-height: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

@media only screen and (max-width: 900px) {
    .footer {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 1200px) {
    .footer-info {
        width: 33%;
    }
}

@media only screen and (max-width: 900px) {
    .footer-info {
        width: 100%;
        background-color: #222;
    }
}

.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}

.footer-socials a:hover {
    width: 32px;
    height: 32px;
    margin-top: -4px;
}

.footer-socials a:not(:last-child) {
    margin-right: 15px;
}

.socials-fb {
    background-image: url('images/socials-fb.png');
}

.socials-fb:hover {
    background-image: url('images/socials-fb-over.png');
}

.socials-tw {
    background-image: url('images/socials-tw.png');
}

.socials-tw:hover {
    background-image: url('images/socials-tw-over.png');
}

.socials-in {
    background-image: url('images/socials-in.png');
}

.socials-in:hover {
    background-image: url('images/socials-in-over.png');
}

.socials-li {
    background-image: url('images/socials-li.png');
}

.socials-li:hover {
    background-image: url('images/socials-li-over.png');
}

.footer-links {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

@media only screen and (max-width: 1200px) {
    .footer-links {
        display: none;
    }
}


.footer-links a {
    color: #af513b;
    display: block;
    font-weight: 600;
}

.footer-links a:hover {
    color: #d27e14;
}

.footer-sub {
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .footer-sub {
        width: 67%;
    }
}

@media only screen and (max-width: 900px) {
    .footer-sub {
        width: 100%;
    }
}

.footer-sub form {
    margin-top: 40px;
}

.footer-sub input[type="email"],
.footer-sub input[type="text"],
.footer-sub textarea {
    background-color: #fff;
    color: #222;
    font-size: 16px;
    border-radius: 3px;
    border: 0;
    padding: 15px;
    flex-grow: 1;
    margin-right: 20px;
    width: 100%;
}

.footer-sub-sub {
    background-color: #a05f0d;
    color: #222;
    font-size: 16px;
    border-radius: 3px;
    border: 0;
    padding: 15px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s all;
}

.footer-sub-sub:hover {
    background-color: #8e4d0a;
}

@media only screen and (max-width: 900px) {
    form .flex:first-of-type {
        display: block;
    }

    .footer-sub-sub {
        width: 100%;
        margin-top: 20px;
    }
}

.back-top {
    transform: rotate(-90deg);
    background-image: url('images/side-arrow.png');
    background-position: center center;
    background-size: 16px auto;
    background-color: #fff;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border: 1px solid #222;
    border-radius: 3px;
    transition: all .2s;
    cursor: pointer;
    opacity: .7;
    margin-top: 20px;
}

.back-top:hover {
    background-position: center right 10px;
    opacity: 1;
}

/*
##############################################
Subfooter
##############################################
*/

.subfooter {
    background-color: #111;
    color: #ddd;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
}

@media only screen and (max-width: 600px) {
    .subfooter {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        font-size: 12px;
    }

    .subfooter a {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 5px;
    }
}

.subfooter a {
    color: #af513b;
}

.subfooter a:hover {
    color: #d27e14;
}

/*
##############################################
Sidebar
##############################################
*/

.sidebar {
    padding-right: 0;
    border-right: 1px solid #ccc;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.side-link {
    font-size: 24px;
    color: #222;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
}

.side-small {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .sidebar {
        display: none;
    }

    .side-small {
        display: block;
        padding-top: 20px;
        border-right: 0;
        padding-bottom: 0;
        margin-bottom: 10px;
    }

    .side-link {
        font-size: 18px;
        font-weight: 600;
    }
}


.side-link:hover {
    color: #af513b;
    padding-left: 15px;
}

.side-link:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
}

.side-active {
    font-weight: 600;
    color: #af513b !important;
    padding-left: 20px !important;
    background-image: url('images/side-arrow.png');
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center left;
}

.sidebar h4 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1000px) {
    .sidebar h4 {
        margin-bottom: 0;
    }
}

.sub-side a {
    font-size: 18px;
    margin-left: 15px;
    background-image: none !important;
    color: #222;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
}

.sub-side a:hover {
    color: #af513b;
    padding-left: 15px;
}

@media only screen and (max-width: 1000px) {
    .sub-side a {
        font-size: 14px;
    }
}

.sub-side a:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
}

.sidebar-contact {
    list-style-type: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sidebar-contact li {
    font-weight: 600;
    background-position: center left;
    background-repeat: no-repeat;
    margin-bottom: 16px;
}

.sidebar-contact li:last-of-type {
    margin-bottom: 0;
}

.sidebar-phone {
    background-image: url('images/top-phone.png');
    padding-left: 32px;
    background-size: 18px;
    background-position: center left 2px !important;
}

.sidebar-fax {
    background-image: url('images/top-fax.png');
    padding-left: 32px;
    background-size: 18px;
    background-size: contain;
}

.sidebar-email {
    background-image: url('images/top-mail.png');
    padding-left: 32px;
    background-size: 18px;
}

.side-pdf {
    display: block;
    border: 1px solid #a05f0d;
    padding: 15px 20px;
    padding-left: 50px;
    border-radius: 3px;
    background-image: url('images/pdf-large.png');
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: center left 15px;
    font-size: 18px !important;
    font-weight: 600;
    color: #a05f0d;
    margin-right: 25px;
    margin-top: 25px;
}

.side-pdf span {
    display: block;
    font-size: 14px;
    color: #222;
    font-weight: 400;
    transition: 0.2s all;
}

.side-pdf:hover {
    background-color: #8e4d0a;
    border-color: #8e4d0a;
    color: #fff;
    background-image: url('images/pdf-large-over.png');
    padding-left: 70px;
    background-position: center left 25px;
}

.side-pdf:hover span {
    color: #fff;
}

@media only screen and (max-width: 1000px) {
    .side-pdf {
        display: none;
    }
}

/*
##############################################
Content Page
##############################################
*/

.content-page {
    border-top: 1px solid #ccc;
    background-color: #fff;
    position: relative;
    z-index: 3;
}

@media only screen and (max-width: 1000px) {
    .content-page {
        border-top: 1px solid #ccc;
    }
}

.people-item:not(:last-child) {
    margin-bottom: 50px;
}

@media only screen and (max-width: 1000px) {
    .people-item:not(:last-child) {
        margin-bottom: 30px;
    }
}

.people-item h4 {
    margin-bottom: 0 !important;
}

.content-page p {
    color: #222;
}

.content-page h4 span {
    font-size: 24px;
}

/*
##############################################
Project Page
##############################################
*/

.project-box:not(:last-of-type) {
    margin-bottom: 50px;
}

.project p {
    margin-top: 20px;
}

.project .flex-right {
    max-width: 60%;
    margin-left: 100px;
}

.project .flex-left {
    max-width: 60%;
    margin-right: 100px;
}

.project .float-right {
    max-width: 50%;
    float: right;
    margin: 50px;
    margin-right: 0;
}

.project .float-left {
    max-width: 50%;
    float: left;
    margin: 50px;
    margin-left: 0;
}

.project .float-left:first-child,
.project .float-right:first-child {
    margin-top: 0;
}

@media only screen and (max-width: 700px) {
    .project .flex {
        display: block;
    }
}

@media only screen and (max-width: 1000px) {

    .project .float-right,
    .project .float-left {
        max-width: 100%;
        float: none;
        margin: 0;
        margin-bottom: 20px;
    }
}

.project .disclaimer {
    font-size: 10px;
    line-height: 16px;
}

.project-box h5 {
    color: #af513b;
    margin-top: 20px;
}

.project-box ul {
    margin-left: 18px;
}

.project-box ul li {
    margin-top: 20px;
}

.border {
    border: 1px solid #ccc;
}

.project-triple {
    margin-top: 30px;
    width: 30%;
    background-size: cover;
    background-position: center center;
    height: 200px;
}

@media only screen and (max-width: 1000px) {
    .project-triple {
        width: 100%;
    }
}

.triple-main {
    background-image: url('images/project/poplar/poplar-maineast.jpg');
}

.triple-visual {
    background-image: url('images/project/poplar/poplar-visual.jpg');
}

.triple-east {
    background-image: url('images/project/poplar/poplar-eastwest.jpg');
}

.small-table,
.poplar-table {
    width: 48%;
    border-spacing: 0;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    margin-bottom: 40px;
}

.poplar-table {
    width: 100%;
}

.small-table {
    display: none;
}

@media only screen and (max-width: 700px) {
    .small-table {
        display: block;
    }

    .poplar-table {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    .small-table {
        width: 100%;
    }
}

.small-table tr td,
.poplar-table tr td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    color: #222;
    font-size: 14px;
    width: 10%;
}

.small-large {
    font-size: 24px !important;
    color: #af513b !important;
    font-weight: 600;
}

.project-dark {
    color: #fff;
    background-color: #222;
    padding: 25px;
    z-index: 100;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

.dark-right {
    margin-left: -120px;
}

.dark-left {
    margin-right: -120px;
}

.project-dark h4 {
    color: #fff !important;
}

.project-box .full-img {
    max-width: 100%;
    margin-top: 30px;
}

@media only screen and (max-width: 700px) {
    .project-col {
        flex-direction: column;
    }

    .project-colrev {
        flex-direction: column-reverse;
    }

    .project .flex-right,
    .project .flex-left {
        max-width: 100%;
        margin: 0;
    }

    .dark-left,
    .dark-right {
        width: 90%;
    }

    .dark-left {
        margin-right: 0;
        margin-top: -20px;
    }

    .dark-right {
        margin-left: 0;
        margin-top: -20px;
    }
}

/*
##############################################
Archive Page
##############################################
*/

.archive-year a {
    padding: 10px 20px;
    color: #222;
    border: 1px solid transparent;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    width: 120px;
    text-align: center;
}

.archive-year a:hover {
    border: 1px solid #af513b;
    color: #af513b;
}

.archive-year-active {
    background-color: #af513b;
    border: 1px solid #af513b !important;
    color: #fff !important;
    cursor: default !important;
}

.archive-year {
    margin-bottom: 20px;
}

.archive-list a {
    text-transform: capitalize;
    font-weight: 400;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: block;
    color: #222;
}

.archive-list a:hover {
    color: #af513b;
}

.archive-list a:last-of-type {
    border-bottom: 0;
}

.archive-list a span {
    display: block;
    font-weight: 600;
}

.archive-box {
    display: none;
}

.archive-curr {
    display: block;
}

/*
##############################################
News Page
##############################################
*/

.news-box {
    margin-bottom: 50px;
}

.news-box p {
    margin-top: 20px;
    word-wrap: break-word;
}

.news-box table p {
    word-wrap: unset;
    word-break: unset;
    margin-top: 0;
}

.news-box table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-spacing: 0;
}

.news-box table td,
.news-box table th {
    padding: 5px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.table-wrap {
    width: 100%;
    overflow-x: scroll;
    margin-top: 20px;
}

@media only screen and (max-width: 1300px) {
    .news-box table p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 700px) {
    .table-wrap {
        width: 90vw;
    }
}

.news-box h4 {
    font-size: 36px;
    text-transform: capitalize;
}

@media only screen and (max-width: 500px) {
    .news-box h4 {
        font-size: 24px;
    }
}

.news-box ul {
    margin-left: 50px;
}

.news-box ul li {
    margin-top: 20px;
}

.news-box img {
    max-width: 100%;
}

.news-box .main-button {
    margin-top: 30px;
}

.news-box a {
    color: #af513b;
}

.news-box a:hover {
    text-decoration: underline;
    color: #8e4d0a;
}

/*
##############################################
Subscribe & 404 Page
##############################################
*/

.check-mark {
    width: 64px;
    height: 64px;
    background-image: url('images/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.question-mark {
    width: 64px;
    height: 64px;
    background-image: url('images/question-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.subscribe p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
}

.subscribe-link {
    color: #af513b;
}

.subscribe-link:hover {
    text-decoration: underline;
    color: #8e4d0a;
}

/*
##############################################
Stock Page
##############################################
*/

.quote-chart {
    height: 400px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 500px) {
    .quote-chart {
        height: 250px;
    }
}

.stonk .structbox {
    width: 50%;
}

.stonk .structspacer {
    width: 60px;
}

.stonk .structlist div {
    font-size: 18px;
    font-weight: bold;
    padding: 30px 0;
}

.stonk .structlist span {
    font-size: 32px;
    font-weight: 500;
    display: block;
}

@media only screen and (max-width: 800px) {
    .stonk .structlist {
        flex-wrap: wrap;
    }

    .stonk .structlist div {
        width: 45%;
    }
}

@media only screen and (max-width: 500px) {
    .stonk .structlist div {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .stonk .structflex .structspacer {
        display: none;
    }

    .stonk {
        display: block;
    }

    .stonk .structbox {
        width: 100%;
    }

    .stonk .structbox:not(:last-of-type) {
        margin-bottom: 30px;
    }
}


.stonk table {
    width: 100%;
    border-spacing: 0;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.stonk table tr td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    color: #222;
}

.stonk table tr:first-of-type td {
    background-color: #222;
    color: #fff;
    font-weight: bold;
    border-color: #222;
}

@media only screen and (max-width: 500px) {
    .stonk table tr td {
        padding: 10px;
        font-size: 12px;
    }
}

.stonk table tr td:first-of-type {
    text-align: left;
}

.stonk table tr td:last-of-type {
    text-align: right;
}

.stock-large {
    font-size: 24px;
    color: #af513b !important;
    font-weight: 600;
}

@media only screen and (max-width: 500px) {
    .stock-large {
        font-size: 18px !important;
    }
}

.stock-header {
    padding-left: 10px !important;
}

/*
##############################################
Contact Page
##############################################
*/

.contact-form {
    margin-top: 30px;
}

.contact-form input[type="text"],
.contact-form textarea {
    background-color: #fff;
    color: #222;
    font-size: 16px;
    border-radius: 3px;
    border: 0;
    padding: 15px;
    flex-grow: 1;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.contact-form input[type="text"]:first-of-type {
    margin-right: 20px;
}

.contact-form textarea {
    height: 200px;
    resize: none;
}

.contact-form-sub {
    background-color: #a05f0d;
    color: #222;
    font-size: 16px;
    border-radius: 3px;
    border: 0;
    padding: 15px 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s all;
}

.contact-form-sub:hover {
    background-color: #8e4d0a;
}

/*
##############################################
Investor Media
##############################################
*/

.media-pdf {
    background-image: url('images/media-pdf.png');
}

.media-yt {
    background-image: url('images/media-yt.png');
}

.media i {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
}

.media a {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    display: block;
    color: #333;
    font-weight: normal;
    line-height: 24px;
    opacity: .75;
    transition: all .3s;
    background-size: 32px 32px;
    background-position: center left;
    background-repeat: no-repeat;
}

.media a:not(:last-of-type) {
    border-bottom: 1px dotted #ccc;
}

.media a span {
    display: block;
    font-weight: bold;
    color: #af513b;
}

.media a:hover {
    opacity: 1;
    padding-left: 55px;
    background-position: center left 5px;
}

.media a:hover span {
    text-decoration: underline;
}

.media .section:not(:first-of-type) {
    margin-top: 20px;
}

.media .section:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
}

/*
##############################################
Disclaimer Page
##############################################
*/

.disclaimer p {
    margin-bottom: 20px;
}

/*
##############################################
Flex Table
##############################################
*/

.twenty {
    width: 20%;
}

.forty {
    width: 40%;
}

.table {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.cell div {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    color: #222;
    font-size: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.table-large {
    font-size: 24px;
    color: #af513b;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

@media only screen and (max-width: 1250px) {
    .table {
        display: block;
        border-top: 0;
        border-left: 0;
    }

    .twenty,
    .forty {
        width: 100%;
        margin-bottom: 50px;
        justify-content: flex-start;
    }

    .cell,
    .table-large {
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        border-bottom: 0;
        flex-grow: 1;
    }

    .table-large {
        font-size: 18px;
    }
}

#temp-container {
    display: none;
    height: 0;
    width: 0;
}

/*
##############################################
Load First
##############################################
*/

#load-first {
    z-index: 999999;
    position: fixed;
    background-color: #fff;
    height: 100%;
    width: 100%;
}

#load-logo {
    opacity: 0;
    transition: opacity 1s;
}

#load-container {
    background-color: #eee;
    height: 3px;
    position: relative;
    opacity: 0;
    transition: opacity 1s, margin 1s;
}

#load-symbol {
    color: #222;
    opacity: 0;
    transition: opacity 1s;
}

#load-symbol span {
    font-weight: bold;
    color: #af513b;
}

.load-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #af513b;
    animation: 2s bouncer infinite ease-in-out;
}

@keyframes bouncer {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
    }
}

/*
##############################################
Animations
##############################################
*/

#ha1,
#ha1a,
#ha2,
#ha3,
#ha4,
#ha5,
#ha6,
#ha7,
#ia1,
#ia2 {
    transition: all 1s;
}

.ha1,
.ha2,
.ha3 {
    margin-left: -20px;
    opacity: 0;
}

.ha2 {
    margin-right: 20px;
}

.ha1a {
    margin-right: -20px;
    opacity: 0;
}

.ha4,
.ha5,
.ha6,
.ha7 {
    margin-top: 20px;
    opacity: 0;
    margin-bottom: -20px;
}

.ia1 {
    margin-bottom: 20px;
    margin-top: -20px;
    opacity: 0;
}

#hs1,
#hs1a,
#hs2,
#hs2a {
    transition: all 1s;
}

.hs1,
.hs2 {
    margin-left: -50px;
    opacity: 0;
}

.hs1a,
.hs2a {
    margin-right: -50px;
    opacity: 0;
}

.trans {
    transition: all .3s;
}

.rel {
    position: relative;
}

.disabled {
    opacity: .5 !important;
    pointer-events: none !important;
}

.presentation .slide {
    width: 100%;
    background-color: #222;
    cursor: pointer;
}

.presentation .slide span {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff;
    opacity: 0;
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
}

.presentation .slide img {
    width: 100%;
}

.presentation .slide:hover span {
    opacity: 1;
    margin-top: 0;
}

.presentation .slide:hover img {
    opacity: .10;
}

/* #region Custom: Sedar */
.sedar .item {
    padding:15px;
    color:#222;
    font-weight:bold;
    display:block;
}

.sedar .item span {
    color:#2a73d8;
    display:block;
}

.sedar .item:hover {
    background-color:#2a73d8;
    border-bottom:#2a73d8;
    color:#fff;
    padding-left:25px;
}

.sedar .item:hover span {
    color:#eee;
}

.sedar .item:not(:last-of-type) {
    border-bottom:1px solid rgba(0,0,0,.25);
}

#sedar .item span {
    color: #ae442c;
}

#sedar .item:hover {
    background-color: #ae442c;
}

#sedar .item:hover span {
    color: #fff;
}

#sedar .yearbox .active {
    background-color: #ae442c;
    border-color: #ae442c;
}
/* #endregion */