/* ============================================================
   mainsheet_prepro.css
   Consolidated page styles for Adelphi Metals (prepro)
   ============================================================ */

/* #region Fonts */
@font-face {
    font-family: 'Adelphi';
    src: url('fonts/Adelphi.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adelphi';
    src: url('fonts/AdelphiSlim.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* #endregion */

/* #region Globals */

* {
    font-family: 'Red Hat Text';
}

h1,
h2, h2 span,
h3,
h4,
h5,
h6 {
    font-family: 'Adelphi';
}

h1 {
    font-size: 6rem;
    color: #fff;
}

h1 span {
    font-family: 'Adelphi';
    display: inline-block;
}

h1 .discovery {
    color: #af9351;
}

h2 {
    font-size: 3rem;
    color: #221f1f;
}

h2 span {
    font-weight:400;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 2rem;
    color: #8c7c4b;
}

p,
p * {
    font-size: 1.25rem;
}

.mainlink {
    background-color: #af9351;
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mainlink:before {
    content: '';
    display: block;
    width: 300%;
    height: 300%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: -100%;
    left: -100%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
}

.mainlink:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.mainlink:hover {
    transform: scale(1.05);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

.mainlink span {
    position: relative;
}

.mainlink .fa-solid {
    margin-right: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mainlink:hover .fa-solid {
    margin-right: 1rem;
    margin-left: -0.25rem;
}

@media only screen and (max-width: 1400px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 2.5rem;
        color: #221f1f;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.75rem;
        color: #8c7c4b;
    }
}

@media only screen and (max-width: 800px) {
    h1 {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: 2.5rem;
    }
}

/* #endregion */

/* #region Header */
#header .subheader .subscribe {
    background-color: #af9351;
}

#header .subheader .stock .item a {
    color: #af9351;
}

/* Dropdown items — visible on hover via CSS (not jQuery-only) */
.header .main .nav .menu .item:hover .submenu .sublink {
    opacity: 1;
    transform: translateX(0);
}

/* Override legacy .menu .sublink shared styles */
.header .main .nav .menu .item .submenu .sublink {
    text-transform: none;
    text-align: left;
}
/* #endregion */

/* #region Home */

/* -- Hero -- */
.home .hero {
    background-image: url('images/bg_hero.jpg');
    background-size: cover;
    background-position: center top;
    min-height: 100dvh;
}

.home .hero .video {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.33;
    object-fit: cover;
}

.home .hero .video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    background-color: #222929;
    overflow: hidden;
    transform: translateY(-50%);
}

.home .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to top, #1e2a2a, transparent);
    pointer-events: none;
    z-index: 1;
}

.home .hero.pagetop {
    padding-top: 0 !important;
}

.home .hero h1 {
    max-width: 800px;
}

.home .hero .continue {
    text-align: center;
    color: #fff;
    letter-spacing: 0.25rem;
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    width: 100%;
    font-weight: 500;
    z-index: 2;
}

.home .hero .continue span {
    display: block;
    width: 2px;
    height: 26px;
    background-color: #af9351;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.home .hero .latest {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-radius: 0.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 40%;
    flex-shrink: 0;
    margin-top: 6rem;
    margin-bottom: 2.5rem;
    transition: transform 0.1s ease-out, box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    align-self: flex-end;
    min-height: 50%;
    cursor: pointer;
}

.home .hero .latest::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(175, 147, 81, 0) 0%,
        rgba(175, 147, 81, 0.1) 50%,
        rgba(175, 147, 81, 0) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.home .hero .latest:hover::after {
    opacity: 1;
}

.home .hero .latest:hover {
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(175, 147, 81, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(175, 147, 81, 0.35);
}

.home .hero .latest .label {
    padding: 0.75rem 2.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Red Hat Text', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.45s ease, border-color 0.45s ease;
}

.home .hero .latest:hover .label {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(175, 147, 81, 0.2);
}

.home .hero .latest .item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    padding: 1.75rem 2.5rem;
    position: relative;
}

.home .hero .latest .item:not(:last-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home .hero .latest .item span {
    color: #c8ad6e;
    font-weight: 600;
    transition: color 0.45s ease;
}

.home .hero .latest:hover .item span {
    color: #e2c87c;
}

/* -- Eyebrow -- */
.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #af9351;
}

/* -- About -- */
.home-about {
    background-color: #1e2a2a;
    padding: 6rem 0;
    position: relative;
}

.home-about p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.home-about .about-text-col {
    border-left: 3px solid rgba(175, 147, 81, 0.45);
    padding-left: 2rem;
}

.home-about .map-img {
    width: 100%;
    display: block;
}

/* -- Project Sections -- */
.home-project {
    background-color: #222e2e;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.home-project h2 {
    color: #fff;
}

.home-project p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.home-project:not(.alt) .mainlink {
    background-color: #af9351;
    border: none;
    color: #fff;
}

.home-project:not(.alt) .mainlink:hover {
    background-color: #c8a85a;
}

.home-project.alt {
    background-color: #1e2a2a;
}

.home-project.alt .mainlink {
    background-color: transparent;
    border: 1.5px solid rgba(175, 147, 81, 0.5);
    color: #c8a85a;
}

.home-project.alt .mainlink:hover {
    background-color: rgba(175, 147, 81, 0.12);
    border-color: #af9351;
    box-shadow: 0 0 1.5rem rgba(175, 147, 81, 0.15);
}

.home-project.alt .mainlink:before {
    background-color: rgba(175, 147, 81, 0.15);
}


.home-project .boxbox {
    position: relative;
    z-index: 1;
}

.proj-rule {
    width: 3rem;
    height: 3px;
    background: linear-gradient(to right, #af9351, transparent);
    margin: 0.75rem 0 1.5rem;
    border-radius: 2px;
}

.home-project.alt .proj-rule {
    background: linear-gradient(to right, rgba(175, 147, 81, 0.7), transparent);
}

.home-project .proj-img {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #34403f;
    flex-shrink: 0;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
    position: relative;
}

.home-project.alt .proj-img {
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.45);
}

.home-project .proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-project .proj-img:hover img {
    transform: scale(1.03);
}

/* -- Responsive -- */
@media only screen and (max-width: 1400px) {
    .home .hero .latest .label {
        padding: 1.75rem 2rem 0.75rem;
    }

    .home .hero .latest .item {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1100px) {
    .home .hero .boxbox .hero-col {
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home .hero h1 {
        margin: 0 auto;
        text-align: center;
    }

    .home .hero .boxbox {
        flex-direction: column;
    }

    .home .hero .boxbox .continue {
        display: none;
    }

    .home .hero .latest {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 900px) {
    .home-about .boxbox,
    .home-project .boxbox {
        flex-direction: column;
    }

    .home-about .halfgap,
    .home-project .halfgap {
        width: 100%;
    }

    .home-project.alt .proj-img {
        order: -1;
    }

    .home-project .proj-img {
        aspect-ratio: 16 / 9;
    }

    .home-about,
    .home-project {
        padding: 4rem 0;
    }

    .home-about .about-text-col {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid rgba(175, 147, 81, 0.45);
        padding-top: 1.5rem;
    }
}

/* #endregion */

/* #region Footer */
#footer {
    background: #1e2a2a;
}


#footer form {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(175, 147, 81, 0.18);
    border-radius: 0.75rem;
}

#footer form h3 {
    color: #fff;
}

#footer form input[type="submit"] {
    background-color: #af9351;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

#footer form input[type="submit"]:hover {
    background-color: #c8a85a;
}

#footer .quicklinks {
    border-left: 1px solid rgba(175, 147, 81, 0.2);
    padding-left: 2rem;
}

#footer .quicklinks h5 {
    color: #af9351 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem;
}

#footer .subfooter {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#footer .subfooter .boxbox {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

#footer .subfooter a {
    color: #af9351;
}

#footer .info {
    max-width: 30rem;
}
/* #endregion */

/* #region Pagetop */
.pagetop {
    background-color: #333f3f;
}

.pagetop .under {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg_hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.33;
}
/* #endregion */

/* #region Subpage / Content Page */
.subpage h1 {
    font-size: 4rem;
}

.content {
    background-color: #1e2a2a;
}

.content h2 {
    color: #fff;
}

.content h3 {
    color: #fff;
}

.content h4 {
    color: #af9351;
}

.content p {
    color: rgba(255, 255, 255, 0.72);
}

.content form input,
.content form textarea {
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
}

.content form input::placeholder,
.content form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
/* #endregion */

/* #region Management Page */
#management .item {
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(175, 147, 81, 0.15);
    position: relative;
    overflow: hidden;
}

#management .item .portrait {
    background: linear-gradient(45deg, #af9351, #7a6535);
}

#management .item:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    background: linear-gradient(45deg, #af9351, #7a6535);
}
/* #endregion */

/* #region News Page */
#news .yearlist a {
    border-radius: 0.25rem;
}

#news .yearlist a.activeyear {
    background-color: #af9351;
    border-color: #af9351;
}

#news .item {
    border-radius: 0.5rem;
}

#news .item .title {
    color: #c8a85a;
}

#news .item .date {
    border-radius: 0.25rem;
}

#news .item .ogimage {
    background-color: #333f3f;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
/* #endregion */

/* #region Stock Page */
#stock .snapshot .label-dzbd7lyV {
    display: none !important;
}

#stock .structure .item .amount {
    color: #af9351;
    font-family: 'Adelphi';
}

#stock .structure .item .type {
    color: rgba(255, 255, 255, 0.55);
}

#stock .schedule .item table thead th {
    background-color: #af9351;
    color: #fff;
}

#stock .schedule .item table td {
    color: rgba(255, 255, 255, 0.72);
}

#stock .schedule .item table .total td {
    color: #af9351;
}
/* #endregion */

/* #region Contact Page */
#contact .info .icon {
    border-color: #af9351;
    color: #af9351;
}

#contact .info a {
    color: rgba(255, 255, 255, 0.85);
}

#contact .info a span {
    color: #af9351;
}
/* #endregion */

/* #region Subpop */
#subpop .item .image {
    background-image: url('images/bg_hero.jpg');
}

#subpop .item {
    background-color: #273535;
    border: 1px solid rgba(175, 147, 81, 0.2);
}
/* #endregion */

/* #region Project Page */
.content .project .overview {
    margin-bottom:2rem;
}

.content .project .overview .map {
    background-image: url('images/tripler_map.jpg');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

.content .project .breakthrough {
    background-color: rgba(0, 0, 0, 0.1);
}

.content .project .breakthrough img {
    width:50%;
    aspect-ratio: 1/1;
    border-radius:1rem;
    position:relative;
    align-self:center;
}

.content .project .breakthrough img:last-of-type {
    left:-2rem;
}

.content .project .highlights .small {
    border: 2px solid rgba(175, 147, 81, 0.25);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.content .project .highlights .small img {
    width:60px;
    height:auto;
}

.content .project .highlights h2 {
    text-align:center;
}

@media only screen and (max-width:1200px) {
    .content .project .overview .boxbox {
        flex-direction:column-reverse;
    }

    .content .project .overview .map {
        width:100%;
        aspect-ratio:16/9;
    }

    .content .project .overview .thirdgap {
        width:100%;
    }
}

@media only screen and (max-width:1000px) {
    .content .project .breakthrough .halfgap {
        width:100%;
    }
    .content .project .breakthrough .boxbox {
        flex-direction:column;
    }
}

@media only screen and (max-width:800px) {
    .content .project .highlights .small {
        width:calc(50% - 1rem);
    }
    .content .project .padtop2 {
        padding-top:2rem;
        padding-bottom:2rem;
    }
}

@media only screen and (max-width:500px) {
    .content .project .highlights .small {
        width:100%;
    }
}
/* #endregion */

/* #region Brady Project Page */
.brady-project .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #af9351;
    margin-bottom: 0.5rem;
}

.brady-hero {
    padding: 5rem 0 4rem;
}

.brady-hero h2 {
    font-size: 3.5rem;
    line-height: 1.05;
}

.proj-rule {
    width: 3rem;
    height: 0.1875rem;
    background: linear-gradient(to right, #af9351, transparent);
    margin: 0.75rem 0 1.5rem;
    border-radius: 0.125rem;
}

.brady-hero-map {
    position: relative;
}

.brady-hero-map img {
    width: 100%;
    border-radius: 0.75rem;
    display: block;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(175, 147, 81, 0.15);
}

.brady-caption {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.75rem;
    font-style: italic;
}

.brady-minerals {
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.brady-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(175, 147, 81, 0.3);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c8a85a;
    background: rgba(175, 147, 81, 0.06);
    white-space: nowrap;
}

.brady-geology {
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(175, 147, 81, 0.08);
    border-bottom: 1px solid rgba(175, 147, 81, 0.08);
}

.brady-geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.brady-geo-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(175, 147, 81, 0.12);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.brady-geo-card:hover {
    border-color: rgba(175, 147, 81, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.brady-geo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.brady-geo-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.brady-exploration {
    position: relative;
}

.brady-exp-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brady-exp-item {
    display: flex;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brady-exp-item:first-child {
    padding-top: 0;
}

.brady-exp-item:last-child {
    border-bottom: none;
}

.brady-exp-label {
    width: 14rem;
    flex-shrink: 0;
}

.brady-exp-label h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.brady-exp-loc {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #af9351;
    letter-spacing: 0.05em;
}

.brady-exp-body {
    flex: 1;
    min-width: 0;
}

.brady-exp-body p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.brady-highlights {
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.brady-hl {
    padding: 0.5rem 1rem;
    background: rgba(175, 147, 81, 0.08);
    border: 1px solid rgba(175, 147, 81, 0.2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.brady-hl strong {
    color: #c8a85a;
    font-size: 0.9375rem;
}

.brady-targets {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(175, 147, 81, 0.08);
}

.brady-targets .centertext .eyebrow {
    margin-bottom: 0.5rem;
}

.brady-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.brady-target-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(175, 147, 81, 0.12);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.brady-target-card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(175, 147, 81, 0.35);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
}

.brady-target-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(175, 147, 81, 0.1);
    border: 1px solid rgba(175, 147, 81, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.brady-target-icon .fa-solid {
    color: #af9351;
    font-size: 1.25rem;
}

.brady-target-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.brady-target-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media only screen and (max-width: 1200px) {
    .brady-hero .boxbox {
        flex-direction: column-reverse;
    }

    .brady-hero .halfgap {
        width: 100%;
    }

    .brady-hero-text {
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 1000px) {
    .brady-geo-grid {
        grid-template-columns: 1fr;
    }

    .brady-exp-item {
        flex-direction: column;
        gap: 1rem;
    }

    .brady-exp-label {
        width: 100%;
    }

    .brady-target-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .brady-hero h2 {
        font-size: 2.5rem;
    }

    .brady-target-grid {
        grid-template-columns: 1fr;
    }

    .brady-exp-item {
        padding: 1.5rem 0;
    }

    .brady-hl {
        font-size: 0.8125rem;
    }
}
/* #endregion */

/* #region 404 */
.four0four .img404 {
    background-image:url('https://www.midobi.com/mods/pages/404/images/404_A.png');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}
/* #endregion */

/* #region contact */
.contact .info p {
    line-height:2rem;
}

.contact .info .icon {
    border-radius:0.25rem;
    font-size:1.25rem;
    padding:0.5rem;
    border:1px solid;
    align-self:flex-start;
}

.contact .info h4 {
    margin-top:0.3rem;
}

.contact .info a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.contact .info a span {
    margin-right:0.5rem;
    font-size:1.25rem;
    width:2rem;
    text-align:center;
    display:block;
}

.contact .info .spacersmall:hover a {
    opacity:0.25;
}

.contact .info .spacersmall a:hover {
    opacity:1;
}

.contact .item.right {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(175, 147, 81, 0.15);
    border-radius: 1rem;
}

.contact form input {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
}

.contact form .full {
    width:100%;
}

.contact form input[type="checkbox"] {
    display:none;
}

.contact form .checktext {
    font-size:1rem;
    font-weight:600;
}

.contact form .check {
    display: block;
    position: relative;
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.25rem;
    padding: 0.25rem;
    margin-right: 0.5rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    transition: all 0.2s ease-in-out;
}

.contact form .check span {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    height:100%;
}

.contact form .check:hover {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact form .check.checked {
    color: #af9351;
    border-color: #af9351;
}

.contact form .check .line1,
.contact form .check .line2 {
    position: absolute;
    background-color: currentColor;
    border-radius: 999px;
    transform-origin: center;
}

.contact form .check .line1 {
    width: 35%;
    height: 3px;
    top: 54%;
    left: 16%;
    transform: rotate(45deg);
}

.contact form .check .line2 {
    width: 55%;
    height: 3px;
    top: 45%;
    left: 32%;
    transform: rotate(-45deg);
}

.contact .formsuccess {
    opacity:0.25;
    pointer-events:none;
}

.contact .sysmsg {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:9999;
    padding:1rem;
}

.contact .sysmsg .under {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#64af47;
    opacity:0.95;
    backdrop-filter:blur(10px);
}

.contact .sysmsg .maintext {
    text-align:center;
    position:relative;
    border:2px solid #fff;
    color:#fff;
}

.contact .sysmsg .maintext .icon {
    font-size:4rem;
}

.contact .sysmsg .maintext .closelink {
    cursor: pointer;
    font-size:1.25rem;
    font-weight:600;
    color:#221f1f;
    background-color:#fff;
    border:2px solid #fff;
    border-radius:0.5rem;
    padding:0.5rem 2rem;
    display:inline-block;
    transition:all 0.2s ease-in-out;
}

.contact .sysmsg .maintext .closelink:hover {
    background-color:transparent;
    color:#fff;
}

.contact .sysmsg .formhide {
    opacity:0;
    transform:translateY(3rem);
    pointer-events:none;
}

.contact .sysmsg .underhide {
    height:0;
    pointer-events:none;
}

.contact .sysmsg.bighide {
    opacity:0;
    pointer-events:none;
}

.contact.m1200 .buttonflex {
    flex-direction:column;
    align-items:flex-start;
}

.contact.m900 {
    flex-direction:column;
    align-items:flex-start;
    row-gap:2rem;
}

.contact.m900 .info {
    width:100%;
    display:flex;
    flex-wrap:wrap;
    row-gap:2rem;
    column-gap:2rem;
}

.contact.m900 .info .item {
    width:calc(50% - 1rem);
}

.contact.m600 .info {
    row-gap:1rem;
}

.contact.m600 .info .item {
    width:100%;
}

.contact.m600 .item .spacersmall {
    display:flex;
    flex-wrap:wrap;
}

.contact.m600 .item .spacersmall a {
    width:calc(50% - 0.5rem);
}

.contact.m600 .item h4 {
    width:100%;
}

.contact.m600 form input {
    width:100%;
}

.contact.m600 .buttonflex {
    width:100%;
}

.contact.m600 .buttonflex .mainlink {
    width:100%;
}

.contact.m450 .item .spacersmall a {
    width:100%;
}
/* #endregion */

/* #region menu */
.menu {
    max-width:1100px;
}

.noclip {
    overflow:visible;
}

.menu .menubox {
    display:none;
}

.noclip .menubox {
    display:flex;
}

.menu .minilink {
    color:#fff;
    font-size:3rem;
    display:none;
    cursor:pointer;
}

.menu .miniclose {
    color:#fff;
    font-size:3rem;
    position:fixed;
    top:30px;
    right:30px;
    z-index:10;
    display:none;
}

.menu .mainmenu {
    font-size:18px;
    font-weight:600;
    transition:all .3s;
    text-align:center;
    text-transform:uppercase;
    height:100%;
    color:#fff;
    position:relative;
}

.menu .mainmenu:first-of-type {
    margin-left:0;
}

.menu .mainmenu .top {
    cursor:default;
    transition:all .4s;
    height:100%;
    padding:10px 15px;
}

.menu .toplink {
    font-size:18px;
    font-weight:600;
    transition:all .3s;
    text-align:center;
    color:#fff;
    padding:10px 15px;
}

.menu .toplink:hover {
    background-color:#ebb22c;
    border-color:#ebb22c;
    color:#fff;
    box-shadow:0 2px 4px rgba(0,0,0,0.25);
}

.menu .sublink {
    font-size:18px;
    font-weight:600;
    transition:all .3s;
    text-align:center;
    text-transform:uppercase;
    color:#fff;
    padding:10px 15px;
    border:2px solid #fff;
    cursor:pointer;
    white-space: nowrap;
}

.menu .sublink:hover {
    background-color:#ebb22c;
    border-color:#ebb22c;
    color:#fff;
    box-shadow:0 2px 4px rgba(0,0,0,0.25);
}

.menu .mainmenu:hover .top {
    background-color:#fff;
    color:#222;
}

.menu .mainmenu .lower {
    height:0px;
    position:absolute;
    left:0;
    top:43px;
    opacity:0;
    transition:all .3s;
    pointer-events:none;
    width:300px;
}

.menu .mainmenu:hover .lower {
    opacity:1;
    height:auto;
    top:43px;
}

.scrolled nav .mainmenu .lower {
    top:60px;
}

.menu .mainmenu:hover .lower {
    pointer-events:all;
    opacity:1;
    background-color:#fff;
}

.menu .mainmenu .lower .active {
    background-color:#fff;
    border-bottom:0 !important;
    color:#fff;
}

.menu .mainmenu .lower a {
    color:#222;
    font-size:16px;
    padding:10px 15px;
    font-weight:600;
    opacity:.33;
    display:block;
    text-align:left;
}

.menu .mainmenu .lower a:not(:last-of-type) {
    border-bottom:1px solid rgba(0,0,0,.15);
}

.menu .mainmenu .lower a:hover {
    opacity:1;
    border-bottom-color:rgba(0,0,0,.05);
    color:#ebb22c;
}

.header .menu .contact {
    color:#0b0b0b;
    font-size:18px;
    font-weight:bold;
    padding:10px 15px;
    padding-top:15px;
    margin-left:60px;
    transition:all .4s;
}

.header .menu .contact:hover {
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
    background-color:#fff;
    color:#d7b033;
    padding-top:10px;
}

.header .menu .contact div {
    height:0px;
    width:100%;
    background-color:#d7b033;
    opacity:0;
    margin-top:8px;
    transition:all .4s;
}

.header .menu .contact:hover div {
    height:5px;
    opacity:1;
}

.menu .smallclose {
    display:none;
}

.header .smalltoggle {
    display:none;
    width:50px;
    position:relative;
    opacity:.9;
}

.header .smalltoggle:hover {
    opacity:1;
}

.header .smalltoggle div {
    height:5px;
}

.header .smalltoggle .line-1 {
    width:100%;
    margin-bottom:10px;
    background-color:#fff;
    transition:.3s all;
}

.header .smalltoggle:hover .line-1 {
    width:85%;
    margin-right:15%;
    background-color:#697865;
}

.header .smalltoggle .line-2 {
    width:60%;
    margin-left:40%;
    margin-bottom:10px;
    background-color:#fff;
    transition:.3s all;
}

.header .smalltoggle:hover .line-2 {
    margin-right:40%;
    margin-left:0;
    background-color:#697865;
}

.header .smalltoggle .line-3 {
    width:85%;
    margin-left:15%;
    background-color:#fff;
    transition:.3s all;
}

.header .smalltoggle:hover .line-3 {
    width:100%;
    margin-left:0;
    background-color:#697865;
}

.header .navbar {
    width:100%;
    height:0;
}

.header .smallmenu {
    display:none;
    color:#fff;
    font-size:42px;
    font-weight:bold;
    cursor:pointer;
}

.header .smallopen {
    display:none;
}

/* #region 900 Breakpoint */

.m900 .mainmenu, .m900 .toplink, .m900 .sublink {
    font-size:.8rem;
    margin-left:0;
}

.m900 .mainmenu .lower {
    top:36px;
}

.m900 .mainmenu:hover .lower {
    top:36px;
}

/* #endregion */

/* #region 760 Breakpoint */

.m760 {
    flex-grow:0;
}

.m760 .menubox {
    position:fixed;
    flex-direction:column;
    justify-content:center;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(39,51,83,0.98);
    z-index:9;
    opacity:0;
    pointer-events:none;
}

.m760 .menubox .mainmenu, .m760 .menubox .toplink, .m760 .menubox .sublink {
    width:100%;
    text-align:left;
    height:auto;
    font-size:2rem;
    display:block;
}

.m760 .menubox .mainmenu .top {
    display:block;
    height:auto;
}

.m760 .menubox .mainmenu .lower {
    position:static;
    width:100%;
    height:auto;
    top:0;
    opacity:1;
    display:none;
}

.m760 .menubox .mainmenu:hover .lower {
    opacity:1;
    height:auto;
    top:0;
}

.m760 .minilink {
    display:block;
}

/* #endregion */

.popped .menubox {
    opacity:1;
    pointer-events:all;
    transition:all .5s;
}

.popped .menubox .lower {
    transition:none;
}

.popped .menupop {
    background-color:#fff;
}

.popped .menupop .top {
    color:#222;
}

.popped .miniclose {
    display:block;
}
/* #endregion */

/* #region placeholder */
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(45deg, #eee, #fff);
}

.placeholder img {
    max-height:100px;
    width:auto;
}

.placeholder .maintext {
    max-width:800px;
}

.placeholder .contact a {
    color:#0056b3;
    display:block;
}

.placeholder .contact a span {
    margin-right:0.5rem;
}

.placeholder .contact a:hover {
    text-decoration:underline;
}

.placeholder .linklist a {
    padding:1rem;
    text-align:center;
    font-weight:bold;
    border:2px solid #aaa;
    color:#aaa;
    transition:all .2s;
    display:block;
    width:100%;
    border-radius:0.5rem;
}

.placeholder .linklist a:hover {
    background-color:#0056b3;
    border-color:#0056b3;
    color:#fff;
    transform:scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media screen and (max-width: 900px) {
    h1, h2, h3, h4, h5, h6 {
        text-align:center;
    }

    .placeholder .maintext {
        max-width: 100%;
        padding:0;
        text-align:center;
    }

    .placeholder .mainflex {
        display:block;
    }

    .placeholder img {
        max-height:100px;
        max-width:100%;
        width:auto;
        margin:auto;
        display:block;
    }

    .placeholder .container {
        width:100%;
        padding:2rem;
    }
}
/* #endregion */

/* #region subscribe */
.subscribe .icon {
    font-size:5rem;
    line-height:5rem;
    margin-right:30px;
}

.subscribe .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.subscribe .form-group label {
    display:block;
    font-weight: bold;
    color: #333;
}

.subscribe .form-group input[type="text"],
.subscribe .form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.subscribe .form-group input[type="text"]:focus,
.subscribe .form-group input[type="tel"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

/* #region 500 Breakpoint */

.m500 {
    display:block;
    text-align:center;
}

.m500 .icon {
    margin-right:0;
}

.m500 .iconflex {
    flex-direction:column;
    align-items:center;
}

/* #endregion */
/* #endregion */
