* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Trebuchet', sans-serif;
    max-width: 99999px;
}

/*
##############################################
Globals
##############################################
*/

a,
button {
    transition: 0.2s;
    cursor: pointer;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    background-image: url('images/bg_body.jpg');
    background-position: bottom left;
    background-color: #fff;
    background-repeat: no-repeat;
}

.boxbox {
    width: 1400px;
}

.mainlink {
    border: 2px solid #c5a102;
    padding: 1rem 2rem;
    color: #c5a102;
    font-weight: bold;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.mainlink::before {
    content: "";
    position: absolute;
    background-color: #c5a102;
    width: 0;
    height: 110%;
    top: -5%;
    left: -5%;
    transition: all .2s ease-in-out;
}

.mainlink span {
    position: relative;
    transition: transform .2s ease-in-out;
}

.mainlink .fa-solid {
    margin-right:0.5rem;
}

.mainlink:hover::before {
    width: 110%;
}

.mainlink:hover {
    color: #fff;
}

.mainlink:hover span {
    transform: scale(1.1);
}

h1,
h2 {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 600;
    color: #111;
}

h3 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 600;
    color: #c5a102;
}

@media only screen and (max-width: 1644px) {
    .boxbox {
        width: 90%;
    }
}

@media only screen and (max-width:1000px) {

    h1,
    h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2.6rem;
    }
}



/*
##############################################
SKYG.css
##############################################
*/

.content .pageHead {
    background-image: url('images/bg-small-corporate.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.content .pageHead .inner {
    padding: 4rem 0;
}

.content .pageHead h2 {
    color: #fff;
}

.logo-hide {
    opacity: 0;
    display: none;
    pointer-events: none;
}


.person-box {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px dotted #ccc;
}

.person-box:last-of-type {
    margin-bottom: 0;
    border-bottom: 0;
}

.person-box h3 {
    color: #222;
}

.person-box h3 span {
    font-size: 24px;
    text-transform: capitalize;
}

.person-box h4 {
    color: #c5a102;
    text-transform: uppercase;
}

.person-box p {
    margin-top: 20px;
    color: #444;
}

@media only screen and (max-width: 600px) {
    .left-box h2 {
        font-size: 36px;
    }

    .right-box h3 {
        font-size: 28px;
    }

    .right-box h4 {
        font-size: 18px;
    }

    .person-box h3 span {
        font-size: 18px;
    }
}

.left-box {
    white-space: nowrap;
}

.left-contact {
    min-width: 300px;
}

@media only screen and (max-width: 1000px) {
    .left-contact {
        min-width: unset;
    }
}

.left-box h2 {
    margin-left: -3px;
}

.noleft {
    display: none;
}

.noright {
    margin-left: 0;
}

.right-box table {
    border-top: 1px solid #222;
    border-left: 1px solid #222;
    border-spacing: 0;
    width: 100%;
    margin-top: 20px;
}

.right-box table tr td {
    padding: 10px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
}

.right-box table tr td:not(:first-of-type) {
    text-align: right;
}

@media only screen and (max-width: 1000px) {
    .noflex {
        display: block;
    }

    .right-box {
        margin-left: 0;
    }

    .left-box {
        padding: 50px 100px;
        background-size: cover;
        background-position: center top;
    }

    .left-box h2 {
        color: #fff;
    }
}

@media only screen and (max-width: 800px) {
    .left-box {
        padding: 50px 25px;
    }

    .right-box {
        padding: 25px;
        padding-bottom: 0;
    }

    .person-box {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

.float-box {
    background: #c5a102;
    height: 5px;
    width: 50px;
    margin-right: 20px;
    align-self: center;
}






/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */



.left-show {
    opacity: 1;
    margin-right: 0;
    margin-left: 0;
}

.right-show {
    opacity: 1;
    margin-left: 100px;
    margin-right: 0;
}

.info-box p {
    font-size: 24px;
}

.info-box {
    margin-bottom: 50px;
}

.info-phone {
    background: url('images/phone-outline.png');
}

.info-mail {
    background: url('images/mail-outline.png');
}

.info-img {
    display: table;
    background-repeat: no-repeat;
    padding-left: 35px;
    background-position: left center;
    margin-top: 15px;
    font-size: 24px;
    background-size: 24px auto;
    opacity: .75;
}

.info-img:hover {
    opacity: 1;
    padding-left: 50px;
    background-position: left 10px center;
}

.info-circle {
    display: inline-block;
    width: 24px;
    height: 24px;
    opacity: 0.5;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.info-circle:not(:last-of-type) {
    margin-right: 10px;
}

.info-circle:hover {
    opacity: 1;
}

.circle-fb {
    background-image: url('images/icon-fb.png');
}

.circle-tw {
    background-image: url('images/icon-tw.png');
}

.circle-ig {
    background-image: url('images/icon-in.png');
}

.circle-li {
    background-image: url('images/icon-li.png');
}

.page-struct {
    color: #c5a102;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.struct-arrow {
    background-image: url('images/struct-arrow.png');
    width: 20px;
    margin: 0 5px;
    background-repeat: no-repeat;
    background-position: center center;
}



.disclaimer {
    font-style: italic;
}

.news-box {
    max-width: 1200px;
    margin: auto;
}

.news-box h1 {
    text-transform: capitalize;
    font-size: 3rem;
    line-height: 3.9rem;
}

.news-box p {
    margin-top: 20px
}

.news-box img {
    max-width: 100%;
}

.news-box ul li {
    margin-top: 20px;
    margin-left: 40px;
    line-height: 1.5em;
}

.news-box a {
    word-break: break-all;
}

.content-bottom {
    margin-top: 50px;
}

.main-button {
    padding: 15px 25px;
    border-radius: 3px;
    background-color: #3b8177;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    background-image: url('images/right-arrow-small.png');
    background-repeat: no-repeat;
    background-position: left -25px center;
}

.main-button:hover {
    background-color: #5da399;
    padding-left: 40px;
    background-position: left 15px center;
}

.up-button {
    padding: 15px 30px;
    border-radius: 3px;
    border: 1px solid #5da399;
    display: inline-block;
}

.hideflow {
    height: 0;
    overflow: hidden;
}

@media only screen and (max-width: 800px) {
    .contact .around {
        width: 100%;
        padding: 25px;
    }

    .news-box h1 {
        font-size: 2rem;
        line-height: 2.6rem;
    }
}

/*
##############################################
Archive Page
##############################################
*/

.archive-year a {
    padding: 10px 20px;
    color: #222;
    border: 1px solid transparent;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    width: 80px;
    text-align: center;
}

.archive-year a:hover {
    border: 1px solid #5da399;
    color: #5da399;
}

.archive-year-active {
    background-color: #c5a102;
    border: 1px solid #c5a102 !important;
    color: #fff !important;
    cursor: default !important;
}

.archive-year {
    margin-bottom: 20px;
}

.archive-list .news-link {
    text-transform: capitalize;
    font-weight: 400;
    display: block;
    color: #222;
}

.archive-list .news-link:hover {
    color: #5da399;
}

.archive-list .news-link:last-of-type {
    border-bottom: 0;
}

.archive-list .news-link span {
    display: block;
    font-weight: 600;
}

.archive-list .news-outer {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.archive-list .newslink:last-of-type {
    border-bottom: 0;
}

.archive-box {
    display: none;
}

.archive-curr {
    display: block;
}

.archive-list .pdf-news-button {
    background-image: url('images/pdf-file.png');
    background-size: contain;
    background-position: center center;
    width: 32px;
    height: 32px;
    opacity: .66;
    flex-shrink: 0;
    margin-left: 60px;
}

.archive-list .pdf-news-button:hover {
    opacity: 1;
}

.right-marg {
    margin-left: 0;
}

.fourohfour {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.fourohfour h1 {
    margin-bottom: 20px;
}

.fourohfour p {
    margin-bottom: 20px;
}

.text-link {
    color: #3b8177;
    font-weight: bold;
    border-bottom: 1px dotted transparent;
}

.text-link:hover {
    border-bottom-color: #5da399;
    color: #5da399;
}

.question-mark,
.check-mark {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
}

.question-mark {
    background-image: url('images/question-mark.png');
}

.check-mark {
    background-image: url('images/check-mark.png');
}

/*
##############################################
Stock Page
##############################################
*/

.quote-chart {
    height: 400px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 500px) {
    .quote-chart {
        height: 250px;
    }
}

.stock-structure {
    width: 100%;
    border-spacing: 0;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.stock-structure tr td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 10px;
    text-align: right;
    color: #222;
    padding-left: 30px;
}

@media only screen and (max-width: 500px) {
    .stock-structure tr td {
        padding: 10px;
        font-size: 12px;
    }
}

.stock-structure tr td:first-child {
    text-align: left;
}

.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;
}

.stock-page h3 {
    margin-bottom: 20px;
}

/*
##############################################
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;
}

.nolink {
    pointer-events: none;
    opacity: .25 !important;
}

.project .quote {
    background-image: url('images/content_dark_bg.jpg');
    background-position: center center;
    color: #fff;
    padding: 50px;
    margin-top: 20px;
    border-radius: 5px;
    line-height: 1.5em;
    font-size: 18px;
}

.project p,
.project ul {
    margin-top: 20px;
}

.project li {
    margin-left: 50px;
}

.project li {
    margin-top: 20px;
}

.project .highlights {
    background-color: #c5a102;
    padding:2rem;
    color: #fff;
}

.project .alternate {
    background-color: #f9f9f9;
    padding:2rem;
}

.project-box {
    margin-bottom: 50px;
}

.project-box:last-of-type {
    margin-bottom: 0;
}

.project-box .main-button {
    margin-top: 30px;
}

.side-link {
    display: block;
    padding: 15px;
    border-top: 1px solid #ccc;
    color: #222;
    cursor: pointer;
}

.side-link:hover {
    padding-left: 30px;
}

.side-link:first-of-type {
    border-top: 0;
}

.side-big {
    padding: 10px 15px;
    border: 1px solid #ccc;
    color: #c5a102;
    font-weight: 600;
    display: block;
    border-radius: 3px;
    font-size: 20px;
    margin-top: 20px;
    background-position: center right -40px;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1000px) {
    .side-big {
        display: none;
    }
}

.side-big span {
    display: block;
    font-size: 12px;
    color: #444;
    text-transform: uppercase;
}

.side-big:hover {
    background-color: #c5a102;
    color: #fff;
    border-color: #c5a102;
    padding-left: 20px;
    background-position: center right 15px;
}

.side-span {
    transition: all .3s;
}

.side-big:hover .side-span {
    margin-left: 10px;
}

.side-mail {
    background-image: url('images/side-mail.png')
}

.side-head {
    font-size: 14px;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
    font-weight: bold;
    color: #222;
}

@media only screen and (max-width: 1000px) {
    .side-head {
        color: #eee;
    }

    .side-link {
        color: #fff;
    }
}

.side-active {
    color: #c5a102;
    font-weight: bold;
    padding-left: 20px !important;
    background-image: url('images/struct-arrow.png');
    background-repeat: no-repeat;
    background-position: center left;
    pointer-events: none;
}

.home-over {
    position: relative;
    z-index: 2;
    height: 100vh;
}

.home-hack {
    background: #212830;
}

.float-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.float-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.ablation {
    width: 500px;
    height: 300px;
    background: url('news/20200507-01.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.gallerybox {
    position: relative;
}

.gallerybox:hover .galleryover {
    opacity: 1;
}

.gallerybox:hover .gallerytext {
    opacity: 1;
    font-size: 18px;
}

.galleryover {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(31, 38, 45, .85);
    transition: all .5s;
    overflow: hidden;
    opacity: 0;
}

.gallerytext {
    display: inline-block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    opacity: 0;
    transition: all .5s;
    white-space: nowrap;
}

.hidden {
    display: none;
}

.imagebox {
    margin-top: 20px;
    margin-right: 20px;
    width: 130px;
    height: 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.imagebox:hover {
    opacity: .7;
}

.overview-box {
    margin-top: 20px;
}

.fancybox-content {
    background: transparent !important;
}

.fancybox-content img {
    max-height: 84vh;
}

/*
##############################################
Subscribe Popup
##############################################
*/

.sub-container {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10001;
    background-color: rgba(255, 255, 255, .75);
    transition: all .3s;
}

.sub-box {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #ccc;
    padding: 50px;
    width: 800px;
    transition: all .3s;
    position: relative;
}

.sub-box p {
    margin-top: 20px;
    margin-bottom: 30px;
}

.sub-box p,
.sub-box h2 {
    text-align: center;
}

.sub-email {
    padding: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
}

.sub-sub {
    border: 0;
    border-radius: 3px;
    background-color: #3b8177;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-left: 20px;
    width: 25%;
}

.sub-sub:hover {
    background-color: #5da399;
}

.sub-box .float-box {
    margin-left: 20px;
    margin-right: 0;
}

.sub-out {
    opacity: 0;
    pointer-events: none;
}

.sub-out .sub-box {
    margin-bottom: -50px;
}

.sub-not {
    border: 0;
    background: none;
    margin-top: 30px;
    font-size: 16px;
    color: #3b8177;
    font-style: italic;
    font-weight: bold;
}

.sub-not:hover {
    text-decoration: underline;
}

.sub-error {
    background-color: #cc0000;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    border-radius: 3px;
    display: none;
}

.sub-ex {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: #c5a102;
    color: #fff;
    border-radius: 3px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    line-height: 24px;
}

.sub-ex:hover {
    background-color: #b68901;
}

@media only screen and (max-width: 900px) {
    .sub-container {
        padding: 25px;
    }

    .sub-box {
        width: 100%;
        padding: 25px;
    }

    .sub-container .float-box {
        display: none;
    }

    .sub-container h2 {
        font-size: 32px;
        text-align: left;
    }

    .sub-container p {
        text-align: left;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    #sub-form {
        display: block;
    }

    .sub-container .between {
        display: block;
        width: 100%;
    }

    .sub-email {
        width: 100%;
    }

    .sub-sub {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        padding: 20px;
    }
}



/*
#######################################
######### LEFT BOX STYLES #############
#######################################
*/

@media only screen and (max-width: 1000px) {
    .left-box {
        background-image: url('images/bg-small-mgmt.jpg');
    }

    .left-corporate {
        background-image: url('images/bg-small-corporate.jpg');
        margin: auto -10%;
    }

    .left-clone {
        background-image: url('images/bg-small-clone.jpg');
    }

    .left-investors {
        background-image: url('images/bg-small-news.jpg');
    }
}

/*
#######################################
######### BOTTOM MAIL LIST#############
#######################################
*/

.bottom-mail {
    background-color: #c5a102;
    color: #fff;
    font-weight: 600;
    font-size: 2rem;
    background-position: center center;
    background-size: cover;
    background-image: url('images/news-footer.jpg');
    margin-top: 25px;
    transition: all .2s ease-in-out;
}

.bottom-mail img {
    height: 48px;
    width: 48px;
}

.bottom-mail span {
    display: block;
    font-size: 18px;
    color: #444;
    text-transform: uppercase;
}

.bottom-mail:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 1000px) {
    .bottom-mail {
        display: flex;
    }
}

@media only screen and (max-width: 800px) {
    .bottom-mail {
        padding: 25px;
    }

    .bottom-mail img {
        height: 32px;
        width: 32px;
    }
}

.herovid {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    left: 0;
    position: absolute;
    top: 0;
}



.home-wrap {
    position: absolute;
    overflow: hidden;
}

.home-bg {
    position: relative;
    background: unset;
}

.home-link {
    color: #ddd;
    padding: 15px 30px;
    font-weight: 400;
    font-size: 24px;
    margin-top: 50px;
    background-color: rgba(34, 34, 34, 0.75);
    display: inline-block;
    background-image: url('images/right-arrow.png');
    background-position: center left -30px;
    background-repeat: no-repeat;
}

.home-link:hover {
    background-color: #222;
    color: #fff;
    padding-left: 60px;
    background-position: center left 15px;
}

@media only screen and (max-width: 1400px) {
    .home-link {
        font-size: 18px;
    }
}

.home-dark .home-link {
    background-color: #eee;
    color: #666;
    background-image: url('images/right-arrow-dark.png');
}

.home-map {
    margin-top: 180px;
    background: url('images/home-map.png');
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.home-bg {
    color: #fff;
}

.home-box h1 {
    font-size: 120px;
    font-weight: 600;
    color: #222;
    mix-blend-mode: hard-light;
    line-height: 1em;
}

@media only screen and (max-width: 1400px) {
    .home-box h1 {
        font-size: 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .home-box h1 {
        font-size: 80px;
    }
}



.home-bg p {
    margin-bottom: 40px;
}


.home-menu {
    padding: 150px;
}

.home-bar {
    background-color: #ffd000;
    height: 3px;
}

.home-small-text {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
}

@media only screen and (max-width: 1200px) {
    .home-small-text {
        font-size: 28px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-bar-box {
        display: flex;
    }

    .home-type-flex {
        display: block;
    }

    .home-small-text:first-child {
        margin-right: 10px;
    }

    .home-small-text {
        font-size: 24px;
    }
}

@media only screen and (max-width: 500px) {
    .home-box h1 {
        font-size: 40px;
    }

    .home-small-text {
        font-size: 18px;
    }
}

.home-bar-box {
    margin-right: 30px;
    margin-left: 5px;
}

.home-top {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #222;
}

.home-top-bar {
    background-color: 222;
    width: 0%;
    height: 2px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    transition: all .3s;
}

@media only screen and (max-width: 700px) {
    #home-main-1 {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    #home-main-1 img {
        max-width: 50vw;
    }

    .home-top {
        padding: 10px;
        color: #222;
        background-color: #fff;
        margin-bottom: 30px;
        display: none;
    }

    .home-top-bar {
        display: none;
    }
}

.home-top:hover {
    color: #fff;
}

.home-top:hover .home-top-bar {
    background-color: #fff;
    width: 95%;
}

.home-pad {
    padding: 150px;
    position: relative;
}

@media only screen and (max-width: 1400px) {
    .home-pad {
        padding: 100px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-pad {
        padding: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .home-pad {
        padding: 50px 25px;
    }
}


.home-main {
    z-index: 11;
}

.home-upcoming {
    z-index: 7;
}

.home-star {
    background-image: url('images/home-star.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 9;
}

.home-star-text {
    font-size: 28px;
    width: 50%;
    padding-right: 100px;
    color: #fff;
    padding-left: 150px;
    line-height: 1.5em;
}

.home-work {
    background-image: url('images/home-targets.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 6;
}

.home-about {
    background-image: url('images/home-clone.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 10;
}

.home-about-map {
    width: 50%;
    background-image: url('images/home-clone-map.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1599px) {
    .home-about-map {
        width: 60%;
    }
}

.home-box {
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

.home-box p {
    font-size: 28px;
    line-height: 1.5em;
}

@media only screen and (max-width: 1599px) {
    .home-box p {
        font-size: 18px;
    }
}

.home-dark p {
    color: #fff;
}

.home-about p {
    color: #222;
}

.home-star-box {
    width: 50%;
    padding-right: 150px;
}

.home-about-box {
    width: 50%;
    padding-left: 150px;
}

@media only screen and (max-width: 1599px) {
    .home-about-box {
        padding-left: 100px;
        width: 40%;
    }

    .home-clone-box {
        padding-right: 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .about-flex {
        flex-direction: column-reverse;
        justify-content: space-around;
    }

    .home-about-box,
    .home-clone-box {
        width: 100%;
        padding: 100px;
    }

    .home-about-map,
    .work-rock-box {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {

    .home-about-box,
    .home-clone-box,
    .home-work-box {
        padding: 50px;
    }

    .home-box {
        max-height: unset;
    }
}


.home-box h2 {
    color: #c5a102;
    font-size: 62px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 1599px) {
    .home-box h2 {
        font-size: 48px;
    }
}


@media only screen and (max-width: 500px) {

    .home-about-box,
    .home-clone-box,
    .home-work-box {
        padding: 25px;
    }

    .home-box h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

#home-main-1,
#home-main-2,
#home-main-3 {
    margin-top: 30px;
    margin-bottom: -30px;
    opacity: 0;
}

#anim-about-1,
#anim-about-2 {
    opacity: 0;
    margin-left: -30px;
    margin-right: 30px;
}

#anim-about-3 {
    opacity: 0;
    margin-right: -30px;
}

#anim-clone-1,
#anim-clone-2 {
    opacity: 0;
    margin-left: 30px;
    margin-right: -30px;
}

.home-gold {
    -webkit-animation: glow 2s ease-in-out infinite alternate;
    -moz-animation: glow 2s ease-in-out infinite alternate;
    animation: glow 2s ease-in-out infinite alternate;
    color: #ffd000;
}



.work-half {
    width: 50%;
}

.work-pad {
    padding: 150px;
}

@media only screen and (max-width: 1599px) {
    .work-pad {
        padding: 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .work-half {
        width: 100%;
    }
}

.work-rock-box {
    position: relative;
    width: 600px;
    height: 400px;
}

@media only screen and (max-width: 1599px) {
    .work-rock-box {
        width: 400px;
        height: 300px;
    }
}

.rock-image,
.rock-back {
    width: 100%;
    height: 100%;
    position: absolute;
}

.rock-back {
    border: 10px solid #222;
    opacity: 0.5;
    z-index: 1;
}

.rock-image {
    background-image: url('images/home-rock.jpg');
    z-index: 2;
    margin-right: 30px;
    margin-left: -30px;
    background-size: cover;
    background-position: center center;
}

#anim-work-1,
#anim-work-2,
#anim-work-3,
#anim-work-4 {
    opacity: 0;
}

#anim-work-1,
#anim-work-2 {
    margin-left: -30px;
}

.home-home {
    color: #5da399;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
}

.home-home:hover {
    text-decoration: underline;
    color: #235f56;
}

.real-home-text {
    width: 60%;
}

@media only screen and (max-width: 1500px) {
    .real-home-text {
        padding-left: 100px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .real-home-text {
        padding-right: 100px;
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .real-home-text {
        padding: 25px;
    }
}

.real-home-text h1 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 500px) {
    .real-home-text h1 {
        font-size: 32px;
    }
}

.real-home-map {
    width: 50%;
}

.real-home-text p {
    margin-bottom: 30px;
    font-size: 18px;
}

.home-symbol {
    background-color: #c5a102;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
}

.home-symbol b {
    color: #fff;
}

.home-symbol span {
    opacity: .33;
}

@media only screen and (max-width: 600px) {
    .home-symbol {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    .home-symbol {
        padding: 5px 10px;
    }

    .home-link {
        padding: 10px 15px;
        margin-top: 20px;
    }

    #home-main-3 .home-link {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .work-pad {
        padding: 0;
    }
}

.home-text-type {
    -webkit-animation: type .4s ease-in-out infinite alternate;
    -moz-animation: type .4s ease-in-out infinite alternate;
    animation: type .4s ease-in-out infinite alternate;
}

.home-small-top {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 50;
    background-color: #fff;
    z-index: 99;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    transition: all 1s;
    margin-top: -100px;
    background-image: url('images/home-icon.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    opacity: 0.75;
}

@media only screen and (max-width: 700px) {
    .home-small-top {
        margin-top: 0;
    }
}

@media only screen and (max-width: 600px) {
    .home-small-top {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 500px) {
    .home-small-top {
        width: 50px;
        height: 50px;
        right: 25;
    }
}

/*
##############################################
Load First
##############################################
*/

#load-first {
    z-index: 999999;
    position: fixed;
    background-color: #fff;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
}

#load-logo {
    transition: opacity 1s;
    background-image: url('images/sky-icon-large.png');
    background-position: center top;
    background-repeat: no-repeat;
    height: 71px;
    width: 124px;
}

#load-container {
    background-color: #947901;
    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: #c5a102;
    animation: 2s bouncer infinite ease-in-out;
}

@keyframes bouncer {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
    }
}

/*
##############################################
Media Box
##############################################
*/

.media-box {
    margin-top: 20px;
}

.media-box::after {
    content: "";
    flex: auto;
}

.media-box:not(:last-of-type) {
    margin-bottom: 40px;
}

.media-box div {
    opacity: .75;
    width: 150px;
    height: 150px;
    background-size: cover;
    transition: all .3s;
    cursor: pointer;
    margin: 15px;
}

.media-box div:hover {
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    .media-box div {
        width: 100%;
        padding-bottom: 100%;
        margin: 0;
        margin-bottom: 5px;
    }
}


/* #region Landing Page */

.landing p {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.landing .hero {
    background-image: url('images/2024-03/hero_large.jpg');
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    height: 140vh;
    padding-bottom: 40vh;
    position: relative;
}

.landing .hero p {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.landing .hero .over {
    background-image: url('images/bg_landing_over.png');
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    height: 100vh;
    position: absolute;
}

.landing .hero h1 {
    text-align: center;
}

.landing .hero h1 span {
    color: #ecb631;
}

.landing .bridge {
    height: 30vh;
    margin-top: -30vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(40, 19, 2, 1));
    position: relative;
    z-index: 4;
}

.landing .comparisons .compare .item {
    width: 49%;
    padding: 50px;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-weight: 500;
    margin-bottom: 2%;
}

.landing .comparisons .compare .item:nth-child(even) {
    margin-left: 2%;
}

.landing .sgb {
    padding-top: 30vw;
    width: 100%;
    background-image: url('images/2024-03/sgb_map.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -20vh;
    position: relative;
    padding-bottom: 8rem;
}

.landing .sgb p {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.landing .targets .textbox {
    padding: 8rem 0;
}

.landing h2,
.landing h4 {
    text-align: center;
}

.landing .targets h2,
.landing .subscribe h2 {
    text-align: unset;
}

.landing .targets img {
    max-width: 50%;
}

.landing .comparisons {
    padding-bottom: 4rem;
}

.landing .comparisons p {
    color: #111;
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.landing .highlights {
    margin-top: -250px;
    background-image: url('images/bg_landing_highlights.jpg');
    background-position: center top;
    background-size: cover;
}

.landing .highlights .itembox {
    margin-top: 50px;
    position: relative;
    z-index: 5;
}

.landing .highlights .item {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    padding: 50px;
    padding-left: 125px;
    width: 48%;
    margin-bottom: 3vw;
    background-repeat: no-repeat;
    background-position: center left 30px;
    background-size: auto 64px;
}

.landing .highlights .item p {
    font-weight: 600;
}

.landing .tear {
    height: 30vh;
    width: 100%;
    background-image: url('images/bg_landing_torn.png');
    background-position: center bottom;
    background-size: cover;
    position: relative;
    z-index: 4;
    background-color: #281302;
}

.landing .forward {
    background-color: #fff;
}

.landing .forward h2 {
    margin-bottom: 30px;
}

.landing .forward p {
    margin-right: 60px;
}

.landing .forward ul li {
    margin-left: 50px;
    color: #ecb631;
    margin-top: 20px;
    font-weight: 600;
}

.landing .forward ul li:first-of-type {
    margin-top: 0;
}

.landing .forward ul {
    margin-bottom: 30px;
    margin-top: 30px;
}

.landing .forward .image {
    width: 48%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    margin-left: 4%;
    position: relative;
}

.landing .forward .image span {
    position: absolute;
    background-color: #222;
    color: #fff;
    padding: 20px 30px;
    font-weight: 600;
    bottom: 30;
    right: -15;
}

.landing .subscribe {
    background-image: url('images/bg_landing_subscribe.jpg');
    background-position: center center;
    background-size: cover;
    box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.15);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.landing .subscribe p {
    width: 50%;
    margin-top: 15px;
    margin-bottom: 30px;
}

.landing .subscribe h3 {
    color: #111;
    text-align: unset;
}

.landing .subscribe form input {
    padding: 15px 25px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff;
    border: 0;
    font-size: 16px;
    width: 400px;
}

.landing .subscribe form button {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    padding: 15px 25px;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    background-color: #222;
    color: #eee;
}

.landing .subscribe span {
    margin-top: 15px;
    display: block;
    font-weight: 600;
    color: #ff0000;
    transition: all .3s;
    opacity: 0;
    margin-left: 20px;
}

.showmsg {
    opacity: 1 !important;
    margin-left: 0 !important;
}

.landing .light h2 {
    color: #222;
}

.landing .more {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
    font-weight: 600;
    align-self: center;
    padding-bottom: 40px;
    position: relative;
}

.landing .more span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    width: 100%;
    text-align: center;
    animation: bounce 1s infinite;
    z-index: 9;
}

.landing .forward p {
    font-size: 24px;
}

@media only screen and (max-width:1400px) {
    .landing .targets {
        flex-direction: column-reverse;
    }

    .landing .targets .textbox {
        width: 100%;
        padding: 4rem 0;
    }

    .landing .targets img {
        max-width: 100%;
        max-height: 75vh;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .landing p {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .landing .sgb {
        background-size: 130% auto;
        padding-top: 40vw;
    }
}

@media only screen and (max-width:800px) {
    .landing .comparisons .compare .item {
        width: 100%;
    }

    .landing .comparisons .compare .item:nth-child(odd) {
        margin-right: 4%;
    }

    .landing .comparisons .compare .item:nth-child(even) {
        margin-left: 4%;
    }
}

/* #endregion */

@keyframes bounce {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 10;
    }

    100% {
        margin-bottom: 0;
    }
}


/*
##############################################
Animate (LEAVE LAST)
##############################################
*/

.animate {
    transition: all 1s;
}

.hide {
    opacity: 0 !important;
}

.hideleft {
    margin-left: -50px;
    margin-right: 50px;
    opacity: 0;
}

.hideright {
    margin-right: -50px;
    margin-left: 50px;
    opacity: 0;
}

.hidedown {
    margin-bottom: -50px;
    margin-top: 50px;
    opacity: 0;
}

.hideup {
    margin-top: -50px;
    margin-bottom: 50px;
    opacity: 0;
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
Presentation Page
@@@@@@@@@@@@@@@@@@@@@@@
*/

.presentation .link {
    font-size: 18px;
    color: #b28a37;
    font-weight: 500;
    padding: 10px 15px;
    padding-left: 55px;
    margin-top: 0px;
    border: 2px solid #b28a37;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: center left 15px;
    display: block;
}

.presentation .link:hover {
    background-color: #d89c1e;
    border-color: #d89c1e;
    color: #111;
    padding-left: 65px;
}

.presentation .link span {
    display: block;
    font-weight: 400;
    font-size: 16px;
}

@media only screen and (max-width: 1300px) {
    .presentation {
        display: block;
    }

    .presentation .link {
        margin-top: 20px;
        display: inline-block;
    }
}

.sidebar .pdf,
.presentation .pdf {
    background-image: url('images/sidebar-pdf.png');
}

.sidebar .pdf:hover,
.presentation .pdf:hover {
    background-image: url('images/sidebar-pdf-over.png');
    background-size: 32px auto;
    background-position: center left 11px;
}

.slide {
    margin-top: 30px;
    max-width: 100%;
    border-radius: 5px;
    transition: all .3s;
    cursor: pointer;
}

.slide:hover {
    opacity: .75;
}

@media only screen and (max-width: 1300px) {
    .ablation {
        float: none;
        width: 100%;
        height: 500px;
        margin: 0;
        margin-bottom: 30px;
    }
}

.homeloc {
    cursor: pointer;
}

@media only screen and (max-width: 1000px) {
    .locbox {
        display: block;
    }

    .homeloc {
        float: none !important;
        max-width: 100% !important;
        height: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .ablation {
        float: none;
        width: 100%;
        height: 500px;
        margin: 0;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 700px) {
    .ablation {
        height: 400px;
    }
}

@media only screen and (max-width: 600px) {
    .ablation {
        height: 350px;
    }
}

@media only screen and (max-width: 500px) {
    .ablation {
        height: 300px;
    }
}

.imgright {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
    width: 60%;
}

.imgleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 60%;
}

.imgmax {
    height: auto;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    margin-bottom: 30px;
}

.imgmax,
.imgright,
.imgleft {
    cursor: pointer;
    border-radius: 5px;
    transition: all .3s;
}

.imgmax:hover,
.imgright:hover,
.imgleft:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}



/* #region Custom Contact Page */

#contact .contactform {
    background-color: #eee;
}

#contact .info a span {
    line-height: 1rem;
}

/* #endregion */



/* #region Custom Project: Shebandowan */
    .project .shebandowan .projcont {
        background-color:#fff;
        width:70%;
        margin:auto;
        margin-top:-8rem;
        position:relative;
        padding:3rem;
    }

    .project .shebanHistory .projcont .spacersmall {
        padding:3rem;
    }

    .project .shebanGlacial {
        position:relative;
    }

    .project .shebanGlacial .projcont {
        position:absolute;  
        width:60%;
        top:5rem;
        right:0;
        padding:3rem;
    }

    .project .shebanMaps .projcont .spacersmall p {
        display:flex;
        flex-wrap:wrap;
    }

    .project .shebanMaps .projcont .spacersmall img {
        width:48%;
        margin-bottom:4%;
    }

    .project .shebanMaps .projcont .spacersmall img:nth-child(odd) {
        margin-right:4%;
    }

    .project .shebanForward ul {
        display:flex;
        flex-wrap:wrap;
        margin-left:0;
    }

    .project .shebanForward ul li {
        list-style-type:none;
        border:2px solid #d2b539;
        padding:2rem;
        width:49%;
        margin-right:2%;
        margin-left:0;
        font-weight:600;
    }

    .project .shebanForward ul li:nth-child(even) {
        margin-right:0;
    }

    @media only screen and (max-width:1400px) {
        .project .shebanGlacial .projcont {
            top:0;
            width:70%;
            padding:1rem;
        }
    }

    @media only screen and (max-width:1000px) {
        .project .shebandowan .projcont {
            width:100%;
            margin-top:0;
        }
        .project .shebanHistory .projcont .spacersmall {
            padding:0;
        }
        .project .shebanGlacial .projcont {
            position:relative;
            width:100%;
            padding:unset;
            margin-top:2rem;
        }
    }

    @media only screen and (max-width:800px) {
        .project .shebanForward ul li {
            width:100%;
            margin-right:0;
        }
    }
/* #endregion */

.content .agm .item {
    width:30%;
    padding:2rem;
    text-align:center;
    font-size:2rem;
    border-radius:0.5rem;
    border: 1px solid #333;
    font-weight:600;
    line-height:1;
}

.content .agm .item span {
    font-size:1rem;
    display:block;
    font-weight:bold;
    color:#ecb631;
}

.content .agm .pdflink {
    padding:1rem;
    border-radius:0.5rem;
    border: 1px solid #333;
    display:block;
    background-image: url('images/pdf-file.png');
    background-size: 24px auto;
    background-position: left 1rem center;
    background-repeat: no-repeat;
    padding-left: 3rem;
    font-weight:bold;
    color:#222;
}

.content .agm .pdflink:hover {
    padding-left:3.25rem;
    color:#ecb631;
    background-position:left .75rem center;
}

@media only screen and (max-width:1000px) {
    .content .agm .item {
        width: 100%;
        margin-bottom: 1rem;
    }
    .content .agm .flex {
        flex-direction: column;
    }
}

@media only screen and (max-width:600px) {
    .content .agm .item {
        padding: 1rem;
    }
}

#header .subheader {
    background-color:rgba(238, 238, 238, 0.9);
}

#header .subheader .subscribe {
    background-color:#c5a102;
    color:#fff;
}

#header.scrolled {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.home img, .project img {
    border: 1rem solid #fff;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.home .highlights {
    background-color:#c5a102;
    color:#fff;
}

.lucide {
    width:3rem;
    height:3rem;
    stroke-width:1.5;
}

#management .item, #advisors .item {
    background-color:rgba(238, 238, 238, 0.9);
    border-radius:1rem;
}

.pagetop .under {
    background-image:url('images/headers/contact.jpg');
}

.subpop .item .image {
    background-image:url('images/news/covers/default.jpg');
}

@media only screen and (max-width:1400px) {
    .aboutus .highlights .flexcol1000 .item {
        width: calc((100% - (4rem * 1)) / 2) !important;
    }
}

@media only screen and (max-width:1000px) {
    .aboutus .highlights .flexcol1000 .item {
        width: 100% !important;
    }
}

.project .secalt {
    background-color:rgba(238, 238, 238, 0.9);
}

.project .tower {
    position:relative;
}

.project .tower:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:url('images/2025-09/hero_bg.jpg');
    background-size:cover;
    background-position:center top;
    opacity:.10;
}

.project .tower .boxbox {
    position:relative;
}