/* #region Globals */
* {
    font-family: 'Red Hat Text', sans-serif;
}

body {
    background-image: url('images/2024/bg_footer.jpg');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #1e2f39;
}

h1 {
    font-size: 7rem;
    line-height: 6rem;
    font-weight: 600;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    color: #fff;
}

h1 .small {
    font-size: 3rem;
    line-height: 3rem;
    display: block;
}

h2 {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    color: #111;
    font-weight: 600;
    line-height: 2rem;
}

h4 {
    color: #a7d3d3;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mainlink {
    font-size: 1.5rem;
    color: #b28a37;
    border: 2px solid #b28a37;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    pointer-events: all;
}

.mainlink:hover {
    background-color: #d89c1e;
    border-color: #d89c1e;
    color: #111;
}

@media only screen and (max-width: 1400px) {
    h2 {
        font-size: 2.75rem;
        line-height: 2.75rem;
    }
}


@media only screen and (max-width: 800px) {
    h1 {
        font-size: 15vw;
        line-height: 13vw;
    }

    h1 .small {
        font-size: 7vw;
        line-height: 7vw;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2rem;
    }

    h4 {
        font-size: 1.25rem;
    }
}

/* #endregion */

/* #region Subheader */
.subheader {
    background-color: rgba(30, 47, 57, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color: #ddd;
    height: 3rem;
}

.subheader .boxbox {
    height: 100%;
}

.subheader .quote div:not(:last-of-type) {
    margin-right: 20px;
}

.subheader .quote span {
    font-weight: bold;
    color: #fff;
    background-repeat: no-repeat;
}

.subheader .quote .up {
    background-image: url('images/quote-up.png');
    padding-left: 18px;
    margin-left: 5px;
    color: #97ff3e;
    background-position: top 5px left;
}

.subheader .quote .down {
    background-image: url('images/quote-down.png');
    padding-left: 18px;
    margin-left: 5px;
    color: #ca3030;
    background-position: top 7px left;
}

.subheader .quote a {
    color: #ebb22c;
    font-weight: bold;
}

.subheader .quote a:hover {
    color: #ffb710;
    text-decoration: underline;
}

.subheader .contact {
    color: #ddd;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    font-weight: 500;
}

.subheader .contact:hover {
    color: #fff;
}

.subheader .sub {
    background-color: #b28a37;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-image: url('images/sh-sub.png');
    background-position: left 11px bottom 13px;
    background-repeat: no-repeat;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    transition: all .3s;
    z-index: 4;
}

.subheader .sub:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
    background-color: #d89c1e;
    height: 65px;
}

.subheader .tel {
    background-image: url('images/sh-tel.png');
    padding-left: 24px;
    margin-right: 20px;
}

.subheader .email {
    background-image: url('images/sh-email.png');
    padding-left: 28px;
    margin-right: 80px;
}

@media only screen and (max-width: 800px) {
    .subheader .contact {
        display: none;
    }
}

/* #endregion */

/* #region Main Header */
.header {
    z-index: 3;
    position: fixed;
    width: 100%;
}

.header .mainheader {
    transition: all .3s;
    padding: 1rem 0;
}

header .mainheader img {
    height: 70px;
    transition: all .3s;
}

.header .menu .contact {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-left: 100px;
}

.header .menu .contact:hover {
    background-color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    color: #d89c1e;
    border-radius: 5px;
    transition: all .3s;
}

.header h2 {
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .3em;
}

.header .logolink:hover {
    opacity: .7;
}

@media only screen and (max-width: 600px) {
    .header .mainheader img {
        height: unset;
        width: 70vw;
    }
}

/* #endregion */

.scrolled .mainheader {
    background-color: rgba(30, 47, 57, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
}

.scrolled .mainheader img {
    height: 60px;
}

@media only screen and (max-width: 600px) {
    .scrolled .mainheader img {
        height: unset;
    }
}


/* #region Small Menu */
.small-menu {
    background-color: rgba(33, 33, 33, 0.98);
    transition: height 1s, min-height 1s;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1000;
    display: none;
}

.small-menu .menu-link:last-of-type {
    border-bottom: 0;
}

.small-menu .main {
    padding: 25px;
    padding-bottom: 0;
}

.small-menu .big {
    padding: 0 25px;
}

.small-menu .big:last-of-type {
    padding-top: 25px;
}

.small-menu .big,
.small-menu .top {
    color: #aaa;
    transition: all 0.4s;
    font-weight: 500;
    font-size: 24px;
    display: block;
}

.small-menu .top {
    padding-bottom: 0;
}

.small-menu .main div a {
    display: block;
    color: #b28a37;
    font-size: 18px;
    padding: 10px 25px;
    font-weight: 500;
}

.small-menu .main div {
    display: none;
}

.small-menu-active {
    color: #fff !important;
    padding-left: 25px;
    margin-bottom: 10px;
}

.header-x-small {
    position: relative;
    width: 30px;
    height: 30px;
}

.small-x1,
.small-x2 {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: all .3s;
    display: inline-block;
    top: 50px;
    right: 40px;
}

.small-x1-rot {
    transform: rotate(45deg);
}

.small-x2-rot {
    transform: rotate(-45deg);
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 500px) {
    .header .small-button {
        width: 40px;
    }

    .header .small-button div {
        height: 3px;
    }
}

@media only screen and (max-width: 400px) {
    .header .small-button {
        width: 30px;
    }

    .header .small-button div {
        height: 2px;
    }

    .header .small-button div:not(:last-of-type) {
        margin-bottom: 7px;
    }
}

/* #endregion */

/* #region Home Section */

.home p {
    font-size: 1.5rem;
}

.home h2 span {
    display: block;
}

.home .bmeg .maintext,
.home .drilling .maintext {
    color: #fff;
}

.home img {
    border-radius: 2rem;
}

.home .tcfjr:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: width .5s ease-in-out;
}

.home #tcfjr:before {
    width: 0;
}

.home .tcfjr .boxbox {
    background-image: url('https://www.goldenlakex.com/images/gallery/GLM_Jewel-Ridge_Figures_85.jpg');
    background-size: auto 100%;
    background-position: center left;
    background-repeat: no-repeat;
}

.home .tcfjr .boxbox .half {
    margin-left: auto;
}

.home .tcfjr .maintext {
    padding: 8rem 3rem;
}

.home .drilling .maintext {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    text-align: center;
}

.home .drilling .highlights .item {
    width: 30%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: 3rem;
    color: #fff;
    text-align: center;
    position: relative;
}

.home .drilling .highlights .item span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 1rem;
    background-color: #1e2f39;
    padding: 0.5rem;
}

.home .drilling .highlights .item strong {
    color: #ebb22c;
    font-weight: 500;
    font-size: 3rem;
    line-height: 3rem;
}

.home .verge .maintext h2,
.home .verge .maintext p,
.home .verge form h3 {
    color: #fff;
}

.home .verge .mainsub {
    margin-bottom: 0;
}

@media only screen and (max-width: 1400px) {
    .home p {
        font-size: 1.2rem;
    }

    .home .tcfjr h2 span {
        display: unset;
    }
}

@media only screen and (max-width: 1200px) {
    .home .tcfjr .maintext {
        padding: 6rem 3rem;
    }
}


@media only screen and (max-width: 1000px) {
    .home h2 span {
        display: unset;
    }

    .home .bmeg {
        display: block;
    }

    .home .bmeg .maintext {
        width: 100%;
        margin-bottom: 2rem;
        padding: 3rem;
    }

    .home .bmeg img {
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .home .tcfjr .boxbox {
        background-size: 100% auto;
        background-position: top center;
    }

    .home .tcfjr .maintext {
        width: 100%;
        padding: 3rem;
        padding-top: 75vw;
    }

    .home .drilling .highlights {
        display: block;
    }

    .home .drilling .highlights .item {
        width: 100%;
        margin-bottom: 2rem;
    }

    .home .drilling .highlights .item:last-child {
        margin-bottom: 0;
    }

    .home .verge {
        display: block;
    }

    .home .verge .maintext,
    .home .verge .mainsub {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .home .bmeg .maintext {
        padding: 1rem;
    }

    .home .tcfjr .maintext {
        padding: 1rem;
        padding-top: 70vw;
    }
}

@media only screen and (max-width: 600px) {
    .home .drilling .highlights .item {
        padding: 1rem;
    }
}



/* #endregion */

/* #region Hero Section */

.homehero {
    background-image: url('images/2024/bg_hero.jpg');
    background-size: cover;
    background-position: top center;
    position: relative;
}

.homehero .transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent, #1e2f39);
    pointer-events: none;
}

.homehero .transition .continue {
    padding-top: 20vh;
    padding-bottom: 1rem;
    text-align: center;
    color: #eee;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .5s;
    position: relative;
    z-index: 2;
}

.homehero .transition .continue.faded {
    opacity: 0;
    transform: translateY(20px);
}

.homehero .transition .continue .mouse-animation {
    width: 30px;
    height: 50px;
    transform: scale(.6);
}

.homehero .transition .continue .mouse {
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.homehero .transition .continue .mouse .wheel {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

.homehero .maintext {
    position: relative;
    z-index: 2;
}

.homehero .maintext .heroicon {
    background-image: url('images/2024/glm_icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    max-width: 600px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
}

/* Add this new rule for the shimmer effect */
.homehero .maintext .heroicon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

/* Add this keyframe animation for the shimmer effect */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.homehero h1 {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero a {
    font-size: 18px;
    color: #fff;
    padding: 15px 100px;
    font-weight: 500;
    margin: 0 auto;
    display: inline-block;
    border-radius: 5px;
    background-color: #b28a37;
}

.hero a:hover {
    background-color: #d89c1e;
    color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

/* #endregion */

/* #region Pagetop */
.pagetop {
    background-image: url('images/2024/bg_pagetop.jpg');
    background-size: cover;
    background-position: center top;
    transition: all 0.5s ease-in-out;
}

.pagetop h2 {
    color: #fff;
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 600px) {
    .pagetop h2 {
        font-size: 36px;
        padding: 25px 0 60px 0;
    }
}

/* #endregion */

/* #region Sidebar */
.sidebar {
    padding-bottom: 50px;
}

.sidebar nav {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    padding: 25px;
    flex-shrink: 0;
    margin-top: -30px;
    width: 300px;
}

.sidebar nav span {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: -40px;
    display: inline-block;
}

.sidebar nav a {
    display: block;
    font-size: 18px;
    color: #666;
    padding: 15px 0;
    font-weight: 500;
    background-image: url('images/right-arrow.png');
    background-position: center left -25px;
    ;
    background-repeat: no-repeat;
}

.sidebar nav a:hover {
    color: #111;
    padding-left: 20px;
    background-position: center left;
}

.sidebar nav a:not(:last-of-type) {
    border-bottom: 1px dotted #ccc;
}

.sidebar nav .active {
    color: #d89c1e !important;
    background-image: none !important;
    padding-left: 0px !important;
    pointer-events: none;
}

.sidebar .link,
.presentation .link {
    font-size: 18px;
    color: #b28a37;
    font-weight: 500;
    padding: 10px 15px;
    padding-left: 55px;
    margin-top: 25px;
    border: 2px solid #b28a37;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: center left 15px;
    display: block;
}

.sidebar .link:hover,
.presentation .link:hover {
    background-color: #d89c1e;
    border-color: #d89c1e;
    color: #111;
    padding-left: 65px;
}

.sidebar .link span,
.presentation .link span {
    display: block;
    font-weight: 400;
    font-size: 16px;
}

.presentation .link {
    margin-top: 0;
}

.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;
}

.sidebar .sub {
    background-image: url('images/sidebar-sub.png');
}

.sidebar .sub:hover {
    background-image: url('images/sidebar-sub-over.png');
    background-size: 32px auto;
    background-position: center left 11px;
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 1000px) {
    .swap {
        flex-direction: column-reverse;
    }

    .sidebar {
        flex-direction: column-reverse;
        display: flex;
        padding-bottom: 0;
        width: 100%;
    }

    .sidebar nav {
        margin-top: 30px;
        width: 100%;
        margin-bottom: -20px;
    }

    .sidebar .link {
        width: 100%;
    }

    .sidebar .link:last-of-type {
        margin-right: 20px;
    }

    .sidebar .below {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 600px) {
    .sidebar .below {
        display: block;
    }

    .sidebar .link {
        margin-right: 0;
    }
}

/* #endregion */

/* #region Content */
.content {
    background-color: #fff;
    color: #111;
}

.content .main {
    padding-bottom:3rem;
    width:100%;
}

.content .negtop {
    margin-top: -1rem;
}

.content h1 {
    color: #111;
    font-weight: 600;
    font-size:3rem;
    line-height:1.3;
    text-transform: capitalize;
    text-shadow:unset;
}

.content p,
.content ul li {
    font-size: 1.2rem;
}

.content table {
    border: 1px solid #ccc;
    border-bottom: 0;
    margin: 0 auto;
    padding: 0;
    border-spacing: 0;
    min-width: 600px;
}

.content table tr td {
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
}

.content table tr:nth-child(odd) {
    background-color: #fafafa;
}

.content table tr:first-of-type td {
    background-color: #111;
    color: #fff;
}

.content img {
    max-width: 100%;
}

.content .item:not(:last-of-type) {
    margin-bottom: 60px;
}

.content-bottom {
    margin-top: 30px;
}

.content .pdflink {
    display: block;
    max-width: 400px;
    padding: 15px;
    padding-left: 60px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    background-image: url('images/ui/pdf-file.png');
    background-repeat: no-repeat;
    background-position: center left 15px;
    font-weight: 600;
    color: #b28a37;
}

.content .pdflink:hover {
    background-color: #b28a37;
    color: #222;
    padding-left: 70px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .1);
    transform: scale(1.05);
}

.content .mainsub {
    padding:2rem;
}

.content .mainsub h3 {
    color:#fff;
}

.content .mainsub form {
    width:100%;
    max-width:800px;
}

.content .mainsub form input {
    flex-grow:1;
    border-top-right-radius:0;
    border-bottom-right-radius:0;
}

.content .mainsub form button {
    width:unset;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
}

.mainsub {
    border-radius: 0.5rem;
    background-image: url('images/forward_sub_bg.jpg');
    background-position: center center;
    background-size: cover;
    position: relative;
    margin-bottom: -3rem;
}

.mainsub p,
.mainsub h2 {
    color: #fff;
}

.mainsub form {
    background-color: rgba(0, 0, 0, .1);
}

.mainsub button {
    background-color: #222;
    width: 100%;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
}

.mainsub button:hover {
    background-color: #111;
    background-position: center right 22px;
}

.mainsub input {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 1.5rem;
}

.mainsub span {
    font-weight: 500;
    margin-top: 0;
    display: block;
    background-color: #ed2121;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: all .3s;
    text-align: center;
    margin-bottom: -20px;
}

.mainsub .showmsg {
    opacity: 1;
    margin-top: 15px;
}

.projimg {
    width: 50%;
    padding-top: 300px;
    background-size: cover;
}

.projimg span {
    background-color: #333;
    color: #eee;
    padding: 10px 15px;
    display: table;
    margin-bottom: 20px;
    margin-left: -20px;
    font-size: 18px;
    font-weight: 500;
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 1400px) {
    .content .main {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 1000px) {
    .content .main {
        padding: 30px 0;
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .mainsub input {
        width: 100%;
    }

    .mainsub form {
        width: 100%;
    }

    .content table {
        display: block;
        width: unset;
        min-width: unset;
        overflow-x: scroll;
        white-space: nowrap;
    }

    .content tbody {
        min-width: 600px;
        display: table;
    }
}

@media only screen and (max-width: 600px) {
    .mainsub p {
        font-size: 18px;
    }

    .mainsub h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .mainsub {
        padding: 20px;
    }
}

/* #endregion */

/*
@@@@@@@@@@@@@@@@@@@@@@@
ManagementS / AdvisorsS
@@@@@@@@@@@@@@@@@@@@@@@
*/

.content .person {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 1300px) {

    .person {
        background: none;
        padding-right: 0;
        overflow: hidden;
    }

    .person:last-of-type {
        border-bottom-width: 0;
        padding-bottom: 0;
    }

    .person .flex {
        display: block;
    }

    .person h4 {
        margin-bottom: 10px;
    }

    .person .social {
        display: flex;
        margin-bottom: 10px;
    }

    .person .social a:not(:last-of-type) {
        margin-right: 5px;
    }

    .person img {
        display: block;
        float: right;
        width: 220px;
        margin-left: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .person img {
        float: none;
        margin-bottom: 20px;
        margin-left: 0;
    }
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
DirectoryS
@@@@@@@@@@@@@@@@@@@@@@@
*/

.corp-item {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    padding-bottom: 40px;
}

.corp-item:not(:last-of-type) {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

.corp-item h4 {
    margin-bottom: 20px;
}

.corp-item a {
    font-size: 18px;
    padding: 5px 20px;
    border: 1px solid #b28a37;
    color: #b28a37;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    font-weight: 500;
    background-image: url('images/external-link.png');
    background-position: right -20px center;
    background-repeat: no-repeat;
}

.corp-item a:hover {
    background-color: #d89c1e;
    border-color: #d89c1e;
    color: #111;
    padding-right: 35px;
    background-position: right 10px center;
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
ArchiveS
@@@@@@@@@@@@@@@@@@@@@@@
*/

.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;
    border-radius: 5px;
}

.archive-year a:hover {
    border: 1px solid #5da399;
    color: #5da399;
}

.archive-year-active {
    background-color: #d89c1e;
    border: 1px solid #d89c1e !important;
    color: #111 !important;
    cursor: default !important;
}

.archive-year {
    margin-bottom: 20px;
}

.archive-list .news-outer {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.archive-list .news-link {
    text-transform: uppercase;
    font-weight: 400;
    color: #222;
}

.archive-list .news-link:hover {
    color: #5da399;
}

.archive-list .pdf-news-button {
    background-image: url('images/ui/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;
}

.archive-list .news-outer:last-of-type {
    border-bottom: 0;
}

.archive-list a span {
    display: block;
    font-weight: 600;
}

.archive-box {
    display: none;
}

.archive-curr {
    display: block;
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
stockS
@@@@@@@@@@@@@@@@@@@@@@@
*/

.chart {
    aspect-ratio: 4/1;
    margin-bottom: 80px;
}

.chart .tradingview-widget-container {
    height:100%;
}

@media only screen and (max-width: 500px) {
    .chart {
        height: 250px;
    }
}

.structure div {
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
    color: #111;
    padding: 25px 30px;
    border: 1px solid #ccc;
    border-right-width: 0;
    transition: all .3s;
    flex-grow: 1;
}

.structure div:first-of-type {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #fff;
    background-color: #222;
    border-color: #222;
}

.structure div:last-of-type {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-right-width: 1px;
}

.structure span {
    display: block;
    color: #a7d3d3;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
}

.stock .schedule {
    width: 48%;
}

.stock .schedule div {
    border: 1px solid #ccc;
    border-top-width: 0;
    padding: 10px 20px;
    font-size: 18px;
}

.stock .schedule div:first-of-type {
    background-color: #222;
    color: #a7d3d3;
    border-color: #222;
    font-weight: 500;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: 30px;
}

.stock .schedule div:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.stock .schedule div span {
    min-width: 33%;
    text-align: right;
}

.stock .schedule div span:first-of-type {
    text-align: left;
}

.stock .schedule div:nth-child(odd) {
    background-color: #fefefe;
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 1300px) {
    .stock .structure div {
        font-size: 32px;
    }

    .stock .structure div span {
        font-size: 18px;
    }

    .stock .sched-box {
        display: block;
    }

    .stock .schedule {
        width: 100%;
    }

    .stock .schedule:last-of-type {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1200px) {
    .stock .structure {
        display: block;
    }

    .stock .structure div {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        border-bottom-width: 0;
        border-right-width: 1px;
    }

    .stock .structure div:first-of-type {
        border-radius: 0;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .stock .structure div:last-of-type {
        border-radius: 0;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-width: 1px;
    }
}

@media only screen and (max-width: 500px) {
    .stock .structure div {
        display: block;
        text-align: left;
    }
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
NewsS
@@@@@@@@@@@@@@@@@@@@@@@
*/

.content .news-box {
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}

.content .news-box .main-button {
    margin-top: 30px;
}

.content .news-box img {
    max-width: 100%;
}

.content .news-box h1 {
    text-transform: uppercase;
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
ContactS
@@@@@@@@@@@@@@@@@@@@@@@
*/

.content .contact .office a {
    display: block;
    font-size: 18px;
    color: #222;
    font-weight: 500;
    background-size: 22px auto;
    background-position: center left;
    background-repeat: no-repeat;
    padding: 5px 0;
    padding-left: 30px;
}

.content .contact .tel {
    background-image: url('images/contact-tel.png');
}

.content .contact .email {
    background-image: url('images/contact-email.png');
}

.content .contact .fax {
    background-image: url('images/contact-fax.png');
}

.content .contact .office a:hover {
    color: #d89c1e;
    padding-left: 40px;
    background-position: center left 5px;
}

.content .contact .office a:first-of-type {
    margin-top: 30px;
}

.content .contact .office {
    padding-right: 80px;
}

.content .map {
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

.content .contact .form {
    margin-top: 80px;
}

.content .contact form input,
.content .contact form textarea {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 15px 20px;
    font-size: 18px;
    transition: 0.5s;
}

.content .contact form input {
    width: 50%;
}

.content .contact form input:first-of-type {
    margin-right: 30px;
}

.content .contact .formrow {
    margin-bottom: 30px;
}

.content .contact form textarea {
    width: 100%;
    min-height: 300px;
}

.content .contact .checkbox {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 2px solid #222;
    margin-right: 10px;
    opacity: .25;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: all .3s;
}

.content .contact .checkbox:hover {
    opacity: .5;
}

.content .contact .checkbox .check {
    width: 0;
    height: 24px;
    position: absolute;
    background-image: url('images/check.png');
    background-repeat: no-repeat;
    background-position: center left;
    top: -3;
    opacity: 0;
    transition: all .3s;
}

.content .contact .checked .check {
    opacity: 1;
    width: 24px;
}

.content .contact .main-button {
    background-color: #fff;
}

.content .contact .main-button:hover {
    background-color: #d89c1e;
}

.content .contact span {
    font-weight: 500;
    display: block;
    color: #ed2121;
    opacity: 0;
    transition: all .3s;
    padding-left: 40px;
}

.content .contact .pop {
    opacity: 1;
    padding-left: 20px;
}

.content .contact .missing {
    background-color: #fde8e8;
    border-color: #fac7c7 !important;
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 800px) {
    .content .map {
        display: none;
    }

    .content .contact .office {
        padding-right: 0;
    }
}

@media only screen and (max-width: 600px) {
    .content .contact .formrow {
        display: block;
    }

    .content .contact form input {
        width: 100%;
    }

    .content .contact form input:first-of-type {
        margin-bottom: 30px;
    }

    .content .contact .sys-send {
        flex-direction: column-reverse;
    }

    .content .contact .pop {
        margin-bottom: 20px;
        text-align: center;
        padding-left: 0;
    }

    .content h3 {
        font-size: 32px;
    }
}

/* #region Footer */
.footer {
    color: #fff;
}

.footbox .boxbox {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-top: 6rem;
    padding-bottom: 1rem;
}

.footer .info {
    color: #fff;
}

.footer h5 {
    font-weight: 500;
    font-size: 24px;
    color: #666;
}

.sitemap {
    width: 70%;
}

.sitemap div {
    width: 18%;
}

.sitemap .small {
    color: #fff;
    display: block;
    margin-top: 20px;
}

.sitemap .small:hover {
    color: #d89c1e;
    text-decoration: underline;
}

.sitemap .large {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.sitemap .large:hover {
    color: #d89c1e;
    text-decoration: underline;
}

.fb {
    background-image: url('images/footer_fb.png');
}

.li {
    background-image: url('images/footer_li.png');
}

.ig {
    background-image: url('images/footer_ig.png');
}

.tw {
    background-image: url('images/footer_tw.png');
}

.footer .social {
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 2rem;
    color: #fff;
    opacity: .5;
    transition: all .2s;
}

.footer .social:hover {
    opacity: 1;
    color: #ebb22c;
}

.footer .social:hover {
    opacity: 1;
}

.footer .connect .contact {
    color: #fff;
    font-weight: 600;    
}

.footer .connect .contact span {
    color: #ebb22c;
    margin-right: 0.5rem;
    transition: all .2s;
}

.footer .connect .contact:hover span {
    margin-right: 1rem;
}

.footer .connect .contact:hover {
    color:#ebb22c;
}

.footer .quicklinks a {
    display: block;
    color: #ebb22c;
    font-weight: 600;
}

.footer .quicklinks a:hover {
    text-decoration: underline;
}

.footer .quicklinks a:not(:last-child) {
    margin-bottom: 1rem;
}

.footer .presentation {
    border-radius: 0.5rem;
    position: relative;
    background-color: #222;
    margin-left:auto;
}

.footer .presentation img {
    position: relative;
    border-radius: 0.5rem;
    width: 100%;
    height: auto;
    opacity: 0.25;
    transition: all .2s;
    filter: saturate(0);
}

.footer .presentation span {
    position: absolute;
    color: #fff;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 1.2rem;
    transition: all .2s;
}

.footer .presentation:hover img {
    opacity: 1;
    filter: saturate(1);
    transform: scale(1.05);
}

.footer .presentation:hover span {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.25);
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 1200px) {

    .footer .sitemap .large,
    .footer .sitemap h5 {
        font-size: 18px;
    }

    .footer .sitemap .small {
        font-size: 14px;
    }

    .footer .info img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .footer .boxbox {
        flex-direction: column;
        row-gap: 1rem;
    }

    .footer .quarter {
        width: 100%;
    }

    .footer .connect .trad {
        display: flex;
        column-gap: 3rem;
    }

    .footer .quicklinks {
        display: none;
    }

    .footer .presentation {
        display: none;
    }
}


@media only screen and (max-width: 900px) {
    .footer .sitemap {
        display: none;
    }

    .footer .info {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .footer .boxbox {
        padding: 50px 0 25px 0;
    }
}

/* #endregion */

/*
@@@@@@@@@@@@@@@@@@@@@@@
Subfooter [SECTION]
@@@@@@@@@@@@@@@@@@@@@@@
*/

.subfooter {
    border-top: 1px solid rgba(0, 0, 0, .2);
    padding: 15px 0 30px 0;
    font-size: 14px;
    color: #ddd;
}

.subfooter a {
    color: #ddd;
}

.subfooter a:hover {
    color: #d89c1e;
    text-decoration: underline;
}

.subfooter .spacer {
    margin: 0 5px;
    color: #666;
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 600px) {
    .footer .subfooter {
        padding: 10px 0 15px 0;
        display: block;
    }

    .footer .subfooter span {
        color: #aaa;
        display: block;
        margin-bottom: 5px;
    }

    .footer .subfooter .spacer {
        display: unset;
        color: #666;
    }
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
Project Page
@@@@@@@@@@@@@@@@@@@@@@@
*/

.project h3 {
    margin-bottom: 30px;
}

.project h4 {
    font-size: 24px;
    font-weight: 600;
}

.project a {
    color: #b28a37;
    font-weight: 500;
}

.project a:hover {
    color: #d89c1e;
    text-decoration: underline;
}

.project .section img {
    border-radius:2rem;
}

.project .quote {
    background-color: #eee;
    background-image: url('images/quote-bg.jpg');
    background-size: cover;
    background-position: center top;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    clear: both;
}

.project .quote p {
    font-size: 18px;
    color: #222;
    font-weight: 500;
}

.project .quote span {
    font-size: 18px;
    text-align: right;
    font-weight: 500;
    color: #b28a37;
    display: block;
}

.project .carlin {
    background: url('images/carlin-bg.jpg');
    background-size: cover;
    padding: 30px;
    border-radius: 5px;
}

.project .carlin h5 {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 10px;
}

.project .carlin h5 span {
    color: #d6a43b;
}

.project .carlin p {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
}

.project .carlin ul li {
    color: #eee;
    font-size: 18px;
    margin-top: 20px;
}

.project table {
    min-width: 100%;
    border-spacing: 0;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
}

.project table tr td {
    padding: 10px;
    text-align: center;
}

.project table tr td:first-of-type {
    text-align: left;
}

.project table tr:nth-child(odd) td {
    background-color: rgba(0, 0, 0, 0.02);
}

.project table tr:first-of-type td {
    background-color: #222;
    color: #a7d3d3;
    font-weight: bold;
}

.project .tablebox {
    clear: both;
    overflow-x: auto;
}

.project .tablebox h4 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.project .imgright {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
    max-width: 60%;
    max-height: 500px;
}

.project .imgleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    max-width: 60%;
    max-height: 500px;
}

.project ul li {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
    color: #d6a43b;
}

.project .locmap {
    padding-right: 380px;
    background-position: right top;
    background-size: 340px auto;
    background-repeat: no-repeat;
    margin-bottom: 0 !important;
}

.project .locmap p {
    padding-bottom: 60px;
}

.project .highlights h3 {
    color: #fff;
}

.project .highlights {
    padding: 30px;
    border-radius: 5px;
}

.project .secalt {
    background-color: #cfaf4e;
    color: #fff;
    padding: 30px;
    border-radius: 5px;
}

.project .secalt ul li {
    color: #fff;
}

.project .secalt h3 {
    color: #fff;
}

.project .secalt img {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .25);
}

/*
~~~~~~~~
Media Queries
~~~~~~~~
*/

@media only screen and (max-width: 800px) {
    .project .locmap {
        padding-right: 0;
        padding-bottom: 400px;
        background-position: center bottom -100px;
    }

    .project .carflex {
        display: flex;
        flex-direction: column-reverse;
    }

    .project .carlin {
        margin-top: 30px;
        max-width: unset;
        margin-left: 0;
        float: none;
        margin-bottom: 0 !important;
    }

    .project .imgleft {
        max-width: unset;
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 30px !important;
    }

    .project ul li {
        margin-left: 20px;
    }
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
Contact Popup
@@@@@@@@@@@@@@@@@@@@@@@
*/

.thanks {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(106, 194, 89, .95);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
    color: #fff;
    text-align: center;
}

.thanks-on {
    opacity: 1;
    pointer-events: all;
}

.check {
    background-image: url('images/check-mark.png');
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 100px;
    transition: all .3s;
}

.thanks span {
    display: block;
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

.thanks .close {
    font-size: 18px;
    background-color: #eee;
    color: #6ac259;
    padding: 15px 100px;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
    transition: all .3s;
    cursor: pointer;
    opacity: 0;
}

.thanks .close:hover {
    background-color: #fff;
    color: #222;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

.hidedown {
    margin-top: 20px;
    opacity: 0;
}

.closedown {
    margin-top: 20px;
    opacity: 1 !important;
}

.slide {
    margin-top: 30px;
    max-width: 100%;
    border-radius: 5px;
    transition: all .3s;
    cursor: pointer;
}

.slide:hover {
    opacity: .75;
}

.hidden {
    display: none;
}

/*@@@@@@@@@@@@@@@@@@@@@@@ Honey Pot @@@@@@@@@@@@@@@@@@@@@@@*/
#contactadd {
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
}

.project .segb h3 {
    text-align: center;
}

.project .segb ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 0;
}

.project .segb ul li {
    list-style-type: none;
    width: 47%;
    margin-left: 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project .segb ul li strong {
    color: #d6a43b;
}

.project .segb ul li:last-of-type {
    background-color: #d6a43b;
    color: #fff;
    border-color: #d6a43b;
    width: 100%;
}

.project .segb ul li:last-of-type strong {
    color: #fff;
}

@media only screen and (max-width:700px) {
    .project .segb ul li {
        width: 100%;
    }
}

.slowscroll {
    transition: all .1s;
}