@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --brandLight: rgb(93, 158, 255);
    --brand: rgb(13 110 253);
    --brandDark: rgb(0, 36, 50);
    --brandDarkest: rgb(0, 26, 40);
    --brandText: rgb(170, 176, 160);
    --brandTextTwo: rgb(180, 180, 180);
    --brandRgbZero: rgba(12, 15, 19, 0);
    --brandRgb: rgba(12, 15, 19, 1);
}

html {
    background: #000;
    transition: all 0.3s;
}

body {
    background: var(--brandDarkest);
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    text-transform: uppercase;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    background: var(--brandRgbZero);
}

#header select {
    background: #000;
    border: 0;
    color: #fff;
    padding: 12px 20px;
    margin-right: 13px;
}

.admin-bar #header {
    top: 32px;
}




#header #mainNav ul li a {
    color: #fff;
    position: relative;
    text-decoration: none;
}

#header #mainNav ul li a:hover,
#header #mainNav ul li.current-menu-item a {
    color: var(--brandLight);
}


.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 {
    display: flex;
    padding: 0;
    position: relative;
    margin-left: 10%;
    margin-right: 10%;
}

#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: 15px 40px;
    transition: all 0.3s;
}

#openMobileMenu img {
    filter: invert(1);
}

#mainNav .logoContainer li a {
    padding: 10px 50px 10px 0;
}


.logoContainer {
    justify-content: flex-start;
}

#mainNav .logoContainer li a {
    font-size: 12px;
    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;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.drmeBanner.lightBg {
    background: #1b2542;
}

.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;

}

.drmeBanner .mainImage.visible {
    opacity: 0.3;

}



.drmeBanner.small {
    width: 33.333%;
}

.drmeBanner .textBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
}


.drmeBanner .textBox .bigText {
    font-size: 14px;
    color: var(--brandLight);
    
    margin: 0;
    text-transform: uppercase;
}

.drmeBanner .textBox .smallText {
    font-size: 40px;
    color: #fff;
    margin: 20px 0 0 0;
    font-weight: 400;

    line-height: 1.2;

}

.drmeBanner .textBox .smallTextTwo {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1;
}

.textBox .btn {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 12px 30px 10px 30px;
    margin-top: 20px;
    border-radius: 50px;
    margin-right: 10px;
}

.textBox .btn:hover {
    background: #fff;
    color: #000;
}

.textBox .btn.btn-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.textBox .btn.btn-primary:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}



.bannerSlider {
    width: 100%;
    height: 800px;
    position: relative;

}

.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-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;
}

.serviceBox {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    flex-wrap: wrap;

    box-sizing: border-box;
}

.serviceBox h1 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.service-subtitle {
    width: 100%;
    text-align: center;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 14px;
    font-weight: 300;
}

.service {
    flex: auto;
    min-width: 200px;
    max-width: calc(20% - 20px);
    border: 1px solid var(--brand);
    border-radius: 10px;
    padding: 30px 20px 0 25px;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
    opacity: 0;
    transition: all 1s;
}

.service.visible {
    opacity: 1;
}

.servicePage .service {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.servicePage {
    height: auto;
}

.servicePage .serviceBox {
    position: static;
    padding: 100px 0;
    height: auto;
    transform: none;
}

.servicePage .howweworkBox .service {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.servicePage .service .btn {
    display: none;
}

.service svg {
    font-size: 30px;
    color: rgb(0, 166, 255);
    margin-bottom: 15px;
}

.service h3 {
    margin: 10px 0 0 0;
    font-size: 13px;
}

.service p {
    margin: 10px 0 0 0;
    font-size: 12px;
    transition: all 0.3s;
    text-align: justify;
}

.service .service-short {
    height: 95px;
}

.service .service-long {
    height: auto;
    padding-bottom: 30px;
}

.service .btn {
    background: #000;
    border-radius: 0;
    color: #fff;
    border: 0;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 1px solid var(--brand);
    margin-top: 30px;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px 25px;
    width: calc(100% + 45px);
    margin: 0 -25px;

}

.projectBox .service .btn {
    z-index: 100;
    position: absolute;
    bottom: 0;
    padding: 10px 0;
    width: 100%;
}

.service:hover {
    background: #fff;
    color: #000;
}

.service:hover .btn {

    background: var(--brand);
}

.howweworkBox .service {
    background: var(--brand);
    max-width: calc(25% - 15px);
}

.howweworkBox .service .btn {
    background: var(--brand);
    border: 0;
}

.howweworkBox .service svg {
    color: #fff;
}

.howweworkBox .service:hover {
    background: var(--brandDarkest);
    color: #fff;
}

.howweworkBox .service:hover svg {

    color: #fff;
}

.howweworkBox .service:hover .btn {
    background: var(--brandDarkest);
    color: #fff;
}

.projectBox .service {
    max-width: calc(33% - 40px);
    min-width: calc(33% - 40px);
    overflow: hidden;
    position: relative;
    height: 300px;
    display: flex;
    border: 0;
}

.projectBox .service:hover {
    background: var(--brandDarkest);
    color: #fff;
    border: 0;
}

.service .projectLogo {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 30%;
}

.service .projectBg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.5s;
    
}

.service:hover .projectBg {
    transform: translate(-50%, -50%) scale(1.1);

}

.contactBox {
    background: var(--brandDarkest);
    padding: 100px 0;
    width: 100%;
    color: #fff;
}

.contactMessage {
    font-size: 20px;
}

.contactInfo {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.contactFormBox {
    background: var(--brand);
    padding: 50px;
    border-radius: 20px;
}

.contactFormBox p {
    margin: 0;
}

.contactForm br {
    display: none;
}

.contactFormBox .form-control {
    margin-bottom: 5px;
    background: var(--brand) !important;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 20px 0;
}

.contactFormBox .btn {
    border-radius: 50px;
    padding: 10px 30px;
    background: var(--brandDarkest);
}

.contactFormBox .form-control::placeholder {
    color: #fff;
}

.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(--brand);
    color: #fff;
    width: 100%;
}

.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(--brandDarkest);
    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%;
}

.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;
}

.content h3 {
    color: #fff;
}

.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 {
    display: block;
    padding: 20px 0 0 0;
    color: var(--brandText);
    text-transform: uppercase;
}

.keyFacts .h5 {
    line-height: 1.8;
    font-size: 14px;
    color: #fff;
    text-transform: none;
}

.keyFacts .h5 span {
    display: block;
}

.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;
    }
}