:root {
    /*--brand: #0b1015;*/
    /*--brandDark: #070a0d;*/
    /*--brandDarkest: #050709;*/
    /*--brandText: #ceae8a;*/

    --brand: #20252c;
    --brandDark: #181c21;
    --brandDarkest: #121519;
    --brandText: #812990;
    --brandRgbZero: rgba(12, 15, 19, 0);
    --brandRgb: rgba(12, 15, 19, 1);
}

html {
    background: var(--brand);
}

body {
    background: var(--brandDarkest);
    font-size: 12px;
    font-family: Mulish, sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--brandText);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s;
    background: var(--brandRgbZero);

    box-shadow: inset 0 70px 70px -70px rgba(0, 0, 0, 0.8);
}

#header select {
    background: #000;
    border: 0;
    color: #fff;
    padding: 12px 20px;
    margin-right: 13px;
}

.admin-bar #header {
    top: 32px;
}

.home #header {
    background: var(--brandRgbZero);
}

#header #mainNav ul li a {
    color: #fff;
    position: relative;
    text-decoration: none;

}

#header #mainNav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

#header #mainNav ul li a:hover::after {
    width: 100%;
}

.scrolled #header {
    background: var(--brandRgb);
}

.scrolled #header #mainNav ul li a {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.scrolled #header #mainNav .logoContainer li a {
    padding-top: 5px;
    padding-bottom: 5px;
}

#mainNav {
    width: 100%;
    display: flex;
    padding: 0;
    position: relative;

}

#mainNav ul {
    flex: 3;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;

}

#mainNav .categoryContainer {
    justify-content: flex-end;
}

#mainNav .logoContainer {
    flex: 1;
}

#mainNav .logoContainer img {
    height: 30px;
    margin: 0;
}

#mainNav ul li a {
    text-decoration: none;
    text-align: center;

    display: block;
    text-transform: uppercase;
    color: var(--brand);
    font-size: 12px;
    padding: 25px 40px;
    transition: all 0.3s;
}

#openMobileMenu img {
    filter: invert(1);
}

#mainNav .logoContainer li a {
    padding: 20px 50px;
}


.logoContainer {
    justify-content: flex-start;
}

#mainNav .logoContainer li a {
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 400;
}


#MainContent {
    margin-top: 50px;
}

.page-width {
    max-width: none !important;
}


.index #MainContent {
    margin-top: 0;
}

.bannerBox {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 100%;
}

.drmeBanner {
    display: flex;
    width: 100%;
    background: var(--brandDarkest);
    height: 910px;
    position: relative;
    justify-content: center;
    overflow: hidden;

}

.drmeBanner .logo {
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 150px;
}

.bannerSlider.small,
.bannerSlider.small .drmeBanner {
    height: 500px !important;
}

.drmeBanner .mainImage {
    object-fit: cover;
    flex-grow: 1;
    opacity: 0;
    transition: all 5s ease;
    transform: scale(1);
}

.drmeBanner .mainImage.visible {
    opacity: 0.8;
    transform: scale(1.2);
}



.drmeBanner.small {
    width: 33.333%;
}

.drmeBanner .textBox {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    opacity: 0;
}


.drmeBanner .textBox .bigText {
    font-size: 30px;
    color: #fff;
    font-weight: 900;
    margin: 0;

}

.textBox .btn {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 10px 30px;
    margin-top: 20px;
}

.textBox .btn:hover {
    background: #fff;
    color: var(--brand);
}

.bannerSlider {
    width: 100%;
    height: 800px;
    position: relative;
    background: var(--brand);
}

.bannerSlider .drmeBanner {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 3s;
}

.bannerSlider .drmeBanner.active {
    opacity: 1;
}


.product--stacked .product__media-item {
    max-width: none !important;
}

.textBanner {
    background-color: var(--brandDarkest);
    color: var(--brandText);
    width: 100%;
    padding: 0 50px;
    height: 150px;
    position: relative;
    overflow: hidden;
    line-height: 1.8;
    align-items: center;
    display: flex;
    /*background-image: url('/wp-content/themes/DrmeNvolution/img/nvolution-background-bright.jpg');*/
    background-size: cover;
    opacity: 0;
    transition: all 3s ease;
}

.textBanner.visible {
    opacity: 1;
}

.textBanner .textBox {
    flex: 3;
}

.textBanner p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.textBanner .row {
    display: flex;
    flex-grow: 1;
}

.textBanner .col {
    flex: 1;
}

.textBanner .h1 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--brandText);
}

.textBanner.products .col {
    text-align: justify;
}

.textBanner.products .h3 {
    margin-bottom: 20px;
}

.textBanner .row {
    gap: 30px;
}

.textBanner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 40%;
    max-height: none;
}

.textBanner p {
    position: relative;
    z-index: 10;
}

.textBanner.aboutUs .textBox {
    text-align: justify;
    column-count: 3;
    gap: 50px;
}

.textBanner.aboutUs h1 {
    text-align: left;
    margin-bottom: 30px;
}

.textBanner.aboutUs .textBox p {
    font-size: 14px;
    line-height: 1.8;
}

.textBanner.products p {
    font-size: 16px;
}

.gallery {
    width: 100%;
    padding: 100px;
}

.galleryRow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.galleryImage {
    width: 100%;
    height: auto;
    display: block;
}

.logoBanner {
    width: 100%;
    background: var(--brandDark);
    text-align: center;
    color: #fff;
    padding: 130px 10% 150px 10%;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
}

.logoBanner .more {
    font-size: 20px;
    margin: 10px 0;
}

.logoBanner .description {
    max-width: 1000px;
    margin: 70px auto 20px;
    font-size: 20px;
    line-height: 1.8;
    text-align: justify;

}



.logoBanner .h3 {
    text-transform: uppercase;
    font-size: 16px;
    opacity: 0.7;
    color: #fff;
}

.logoBanner .logoRow {
    gap: 50px 50px;
    margin: 50px 0;
}

.logoBanner .logoCol {
    align-items: center;
    justify-content: center;
    display: flex;
}

.logoBanner img {
    filter: brightness(0.7);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto
}

.logoBanner a {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoBanner .alphabeticalRow {
    column-width: 250px;
    column-gap: 20px;
    text-align: left;
    display: block;
}

.logoBanner .alphabeticalRow a {
    display: block;
    margin: 5px 0;
}

.col {
    opacity: 0;
    transition: opacity 1s;
}

.col.visible {
    opacity: 1;
}

.logoBanner img:hover {
    filter: brightness(1);
}

.recentProjects {
    background: var(--brand);
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 50px 0;
}

.recentProjects .row {
    gap: 5px;
    padding: 0 20px;
}

.recentProjects .col {
    background: var(--brand);
    height: 500px;
    padding: 0;
    margin: 0;
    position: relative;
    filter: brightness(0.7);
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    object-fit: cover;
    justify-content: center;
    min-width: 24%;
    max-width: 25%;
    border-radius: 5px;
    height: 300px;
}

.recentProjects .col:hover {
    filter: brightness(1);
}


.recentProjects .col img {
    max-height: 500px;
}

.recentProjects .projectTitle {
    font-size: 18px;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    transition: all 0.3s;
    text-transform: uppercase;
    background: var(--brandDarkest);
    padding: 25px 40px;
    margin: 0;
    color: var(--brandText);
}

.recentProjects .projectTitle .title {
    color: #fff;
    font-weight: 900;
}

.recentProjects .projectTitle .readMore {
    color: #fff;
    display: block;
    text-transform: none;
}


#footer {
    background: var(--brandDarkest);
}

.footerNav {
    padding: 150px 100px;
    text-align: right;
}

.footerNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footerNav ul li a {
    padding: 20px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

#shopify-pc__banner {
    display: none !important;
}

#cart-notification {
    z-index: 9999;
    top: 100px;
}

.header-wrapper--border-bottom {
    border: 0 !important;
}

.card:not(.ratio) {
    border: 0 !important;
}

#mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;
}

#mobileMenu.visible {
    opacity: 1;
}

#mobileMenu ul {
    padding: 20px 0;
    margin: 0;
    flex-direction: column;
}

#mobileMenu li a {
    color: #fff;
    text-decoration: none;
    padding: 20px 50px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}

.card--card.gradient, .card__inner.gradient {
    height: 38vw;
}

.scrollIndicator {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    z-index: 999;
    transform: scale(0, 1);
    display: block;
    animation: scrollIndicator linear;
    animation-timeline: scroll();
}

.admin-bar .scrollIndicator {
    top: 32px;
}

.textBox {
    opacity: 0;
    transition: all 2s ease;
}

.content {
    width: 100%;
}

.page-id-20 .content {
    font-size: 18px;
    background: var(--brandDarkest);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.content h5 {
    text-transform: none;
}

.content .container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.round {
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    max-width: 100%;
    position: relative;
    top: -50px;
    width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.keyFacts {
    width: 100%;
    background: var(--brandDarkest);
    background-image: url('/wp-content/themes/DrmeNvolution/img/nvolution-background.jpg');
    background-size: cover;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.keyFacts .container {
    padding: 50px;
    color: #fff;
    font-size: 16px;

}

.keyFacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;

}

.keyFacts ul li {
    flex-grow: 1;
}

.keyFacts ul li span {
    font-weight: bold;
    display: block;
    padding: 20px 0 0 0;
    color: var(--brandText);
    text-transform: uppercase;
}

.keyFacts .h5 {
    line-height: 1.8;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: none;
}

.keyFacts .h5 span {
    display: block;
    font-weight: 900;
}

.content form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.content form p {
    flex: 1;
    min-width: 45%;
}

.content form label {
    width: 100%;
}

.content form .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.wpcf7-form-control {
    display: block;
    width: 100%;
}

.textBox.visible {
    opacity: 1;
}

.content form input, .content form textarea {
    background: var(--brand);
    border: 0;
    color: var(--brandText);
    padding: 10px 20px;
}

@keyframes scrollIndicator {
    to {
        transform: scale(1, 1);
    }
}

@keyframes fadeIn {
    to {
        top: 50%;
        opacity: 1;
    }
}

@keyframes fadeInTwo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
