/*
    Theme Name: Carbon Framework
    Theme URI: https: //cultureinspired.com
    Description: Lightweight starter theme with WooCommerce support.
    Version: 1.8.6 Beta
    Framework Version: 1.8.6 Beta
    Author: Culture Inspired
    Author URI: https: //cultureinspired.com
*/


/*** BASE ***/

/* Fonts */

/*
@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto-Bold.ttf') format('ttf'),
         url('./assets/fonts/Roboto-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto-Medium.ttf') format('ttf'),
         url('./assets/fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto-Regular.ttf') format('ttf'),
         url('./assets/fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Archivo';
    src: url('./assets/fonts/Archivo-VariableFont_wdth,wght.ttf') format('tff'),
         url('./assets/fonts/Archivo-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Archivo';
    src: url('./assets/fonts/Archivo-Italic-VariableFont_wdth,wght.ttf') format('ttf'),
         url('./assets/fonts/Archivo-Italic-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
}
*/


/* Variables */

:root {

    /* Colors */
    --cl-white-100: #fff;
    --cl-black-100: #000;
    --cl-grey-100: #757575;

    /* Font Sizes */
    --fs-trippleXL: 4rem;        /* 64px */
    --fs-doubleXL: 2.5rem;       /* 40px */
    --fs-extraLarge: 2rem;       /* 32px */
    --fs-large: 1.5rem;          /* 24px */
    --fs-medium: 1.25rem;        /* 20px */
    --fs-regular: 1rem;          /* 16px */
    --fs-small: 0.875rem;        /* 14px */

    --clamp-rem-48: clamp(48px, 3rem, 3rem);
    --clamp-rem-32: clamp(32px, 2rem, 2rem);
    --clamp-rem-24: clamp(16px, 1.5rem, 1.5rem);
    --clamp-rem-16: clamp(16px, 1rem, 1rem);
    --clamp-rem-12: clamp(12px, 0.75rem, 0.75rem);
    --clamp-rem-8: clamp(8px, 0.5rem, 0.5rem);
    --clamp-rem-6: clamp(6px, 0.375rem, 0.375rem);
    --clamp-rem-4: clamp(4px, 0.25rem, 0.25rem);

    /* Dimensions & Calculations */
    --siteMaxWidth: 1920px;
    --mainNavBarHeight: clamp(94px, 6.52vw, 125px);
    --bottomToolbarHeight: 50px; /* Chrome on Andriod */

}


/* Global */

.otgs-development-site-front-end,
.grecaptcha-badge {
    display: none !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media screen and (min-width: 2000px) {
    html {
        font-size: 18px;
    }
}

body {
    /* font-family: 'Roboto', sans-serif; */
    font-size: var(--clamp-rem-16);
    line-height: 1.15;
    color: var(--cl-black-100);
}

h1 {

}

h2 {

}

h3 {

}

p, 
span,
a {
    font-weight: inherit;
}

strong,
b {
    font-weight: 700;
}

ul,
li,
article {
    box-sizing: border-box;
}

.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}


/* Common Components */

.pageSection {
    position: relative;
    float: left;
    width: 100%;
}

.pageContent {
    position: relative;
    width: 92%;
    margin: auto;
}

.pageContent__superTitle {

}

.pageContent__heading {

}

.pageContent__heading span {
    font-weight: inherit;
}

.pageContent__text {

}


/* Buttons */

.btn {
    position: relative;
    display: inline-block;
    margin: auto;
    border-radius: 32px;
    padding: var(--clamp-rem-16) var(--clamp-rem-48);
    box-sizing: border-box;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    opacity: 1 !important;
}

.btn--solidBlack {
    background: var(--cl-black-100);
    border: 1.5px solid var(--cl-black-100);
    color: var(--cl-white-100);
}

.btn--solidBlack:hover {
    background: var(--cl-black-100);
    border: 1.5px solid var(--cl-black-100);
}

.btn--solidWhite {
    background: var(--cl-white-100);
    border: 1.5px solid var(--cl-white-100);
    color: var(--cl-black-100);
}

.btn--solidWhite:hover {
    background: var(--cl-white-100);
    border: 1.5px solid var(--cl-white-100);
}


/* Inputs */

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='number'],
textarea,
select {
    border-radius: clamp(8px, 0.55vw, 10.5px);
    border: 1px solid var(--cl-black-100);
    padding: clamp(12px, 0.83vw, 16px) clamp(16px, 1.11vw, 21.25px);
    color: var(--cl-black-100);
}

input[type='submit'] {

}

@media screen and (min-width: 600px) {
    input[type='submit'] {
        width: auto;
    }
}

::placeholder {
    color: var(--cl-grey-100) !important;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: var(--cl-grey-100);
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: var(--cl-grey-100);
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: var(--cl-grey-100);
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: var(--cl-grey-100);
}


/* Animations */

.wordWrapper {
    opacity: 0;
}

.wordWrapper--ready {
    opacity: 1;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.3em);
    -moz-transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.word--animated {
    opacity: 1;
    transform: translateY(0);
}

.state-pre-animated {
    opacity: 0 !important;
    transform: translateY(48px) !important;
    -moz-transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    -webkit-transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    -o-transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.state-pre-animated-multi-item {
    opacity: 0 !important;
    transform: translateY(48px) !important;
    -moz-transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    -webkit-transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    -o-transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.state-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none;
}

.hvr-push {
    /* display: inline-block; */
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-push:hover, 
.hvr-push:focus, 
.hvr-push:active {
    -webkit-animation-name: hvr-push;
    animation-name: hvr-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes hvr-push {
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
}

@keyframes hvr-push {
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
}


/* Utility & State Classes */

.ut-example {

}

.state-example {

}


/*** LAYOUTS ***/

/* The Footer */

.footer {
    position: relative;
    float: left;
    width: 100%;
}

.copyright {
    display: block;
    margin: auto;
    text-align: center;
    padding: 16px 0;
}


/*** WORDPRESS TEMPLATE CONTENT ***/

/* The Loop */

.loopContent {

}

.loop {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

@media screen and (min-width: 600px) {
    .loop {
        flex-direction: row;
    }
}

.loop article.post {
    position: relative;
    width: 100%;  /* 1 column loop */
    box-shadow: 0 0.2em 1em 0 rgba(0,0,0,0.15);
}

@media screen and (min-width: 600px) {
    .loop article.post {
        width: 49%; /* 2 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 0% 2% 0%;
    }
}

@media screen and (min-width: 1000px) {
    .loop article.post {
        width: 32%; /* 3 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(3n+3) {
        margin: 0% 0% 2% 0%;
    }
}

@media screen and (min-width: 1160px) {
    .loop article.post {
        width: 23.5%; /* 4 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(3n+3) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(4n+4) {
        margin: 0% 0% 2% 0%;
    }
}

.postFeaturedImage {

}

.postFeaturedImage__link {
    display: block;
}

.postFeaturedImage__link img {
    width: 100%;
}

.loopInfo {

}

.loopInfo__title {

}

.loopInfo__title a {

}

.publishingInfo {

}

.publishingInfo__info {

}

.loopInfo__excerpt {

}

.post-categories {
    display: inline-block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.post-categories li {
    display: inline-block;
}

.pagination {
    float: right;
    clear: both;
}

.pagination > span,
.pagination > p,
.pagination > a {

}

.pagination > .current {

}


/* The Single Post */

.featImageContainer {
    margin: 0 0 24px 0;
}

.featImageContainer img {
    width: 100%;
}

.socialSharing {
    list-style-type: none;
    padding: 0;
    clear: both;
}

.socialSharing li {
    display: inline-block;
    width: 32px;
    margin: 0 7px 0 0;
}

.socialSharing li:last-of-type {
    margin: 0;
}

.postNavWrap {
    width: 100%;
    float: left;
}

.postNavWrap__item--left {
    float: left;
}

.postNavWrap__item--right {
    float: right;
}

.post-edit-link {
    float: left;
    clear: both;
}


/*** PAGES & CATEGORIES ***/

/* Home */

.pageSection--homeHero {
    /*
    background-image: url('./assets/images/bg_home_hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    */
}


/*** PLUGIN STYLING ***/

/* Photoswipe Masonry Gallery by Web Design Gold Coast */

.pswp__top-bar,
.pswp__caption {
    background: transparent !important;
}

.pswp__bg {
    background: rgba(0,0,0,0.95) !important;
}

.psgal figure.msnry_item {
    display: none !important;
}

.psgal figure.msnry_item:first-of-type {
    display: block !important;
    width: 100%;
    height: 520px;
    padding: 0;
    opacity: 0;
}

.pswp__item {
    opacity: 0 !important;
}

.pswp__item.opaque {
    opacity: 1 !important;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 600px) {
    .pswp__img {
        margin-top: 0;
    }
}

.pswp__zoom-wrap {
    z-index: 999;
}

.pswp__button {
    /* background-color: #fff !important; */
}

.pswp__share--download,
.pswp__button--share {
    display: none !important;
}

.pswp__caption__center {
    text-align: center;
    max-width: 92%;
    margin: 12px auto 10px auto;
    font-size: 15px;
    padding: 0;
    line-height: 20px;
    color: #fff;
}

.pswp__button--arrow--right:before {
    right: 120px;
    transform: scale(2);
    background-color: transparent !important;
}

.pswp__button--arrow--left:before {
    left: 120px;
    transform: scale(2);
    background-color: transparent !important;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 1 !important;
}


/* Contact Form 7 */

.wpcf7 {
    width: 100%;
    margin: auto !important;
}

.wpcf7 form {
    width: 100%;
    float: left;
}

.wpcf7 label {
    width: 100%;
    display: block;
}

.wpcf7 p {
    margin: 0;
}

.wpcf7 figure {
    width: 100%;
    margin: 0 0 16px 0;
    float: left;
}

.wpcf7 figure.wpcf7_email_newsletter {
    width: calc(75% - clamp(6px, 0.416667vw, 8px));
}

@media screen and (min-width: 600px) {
    .wpcf7 figure.wpcf7_field_first_name,
    .wpcf7 figure.wpcf7_field_last_name,
    .wpcf7 figure.wpcf7_field_email,
    .wpcf7 figure.wpcf7_field_phone,
    .wpcf7 figure.wpcf7_field_company,
    .wpcf7 figure.wpcf7_field_inquiry_type {
        width: 49%;
    }
    .wpcf7 figure.wpcf7_field_first_name,
    .wpcf7 figure.wpcf7_field_email,
    .wpcf7 figure.wpcf7_field_company {
        margin: 0 2% 16px 0;
    }
}

.wpcf7 figure h4 {
    margin: 0 auto 4px auto;
}

.wpcf7 input[type='submit'] {
    float: right;
    width: 100%;
    margin-bottom: 0;
    border-radius: clamp(8px, 0.55vw, 10.5px);
    border: none;
    padding: clamp(12px, 0.83vw, 16px);
    background-color: var(--cl-black-100);
    color: var(--cl-white-100);
}

.wpcf7 input[type="file"] {
    /* color: #fff; */
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7 .wpcf7-response-output {
    width: 100%;
    margin: 8px auto auto auto !important;
    padding: 12px !important;
    box-sizing: border-box;
    float: left;
    text-align: center;
    font-size: 0.8em;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
    color: #398f14;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #398f14;
    color: #398f14;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #ffb900;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28;
    color: #f56e28;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: block;
    width: 100%;
    margin: 12px 0 16px 7px;
    float: left;
    box-sizing: border-box;
    text-align: left;
    text-decoration: underline;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
    display: block !important;
    width: 100%;
    float: left;
    color: red;
    border-color: red;
    box-sizing: border-box;
    text-align: center;
}

.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
    display: block !important;
    width: 100%;
    margin-bottom: 32px;
    float: left;
    box-sizing: border-box;
    text-align: center;
}


/* Lightslider.js */

.lSSlideOuter {
    margin: auto;
    /* width: 80%; */
    /* padding: 8vw 0 8vw 0; */
}

.lslide {

}

.lSSlideOuter .lSPager.lSpg {
    display: block;
    position: relative;
    z-index: 1;
}

.lSAction {
    /* display: none !important; */
}

.lSAction > .lSPrev {
    display: block;
    width: 16px;
    height: 32px;
    /* margin-top: -40px; */
    background-image: url('./assets/svgs/arrow_left.svg');
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.lSAction > .lSNext {
    display: block;
    width: 16px;
    height: 32px;
    /* margin-top: -40px; */
    background-image: url('./assets/svgs/arrow_right.svg');
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.lSSlideOuter .lSPager.lSpg > li {
    padding: 0 10px;
}

.lSSlideOuter .lSPager.lSpg > li a {
    width: 12px;
    height: 12px;
    background-color: #000;
}


.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #ccc;
}


/* slickslider.js */

.slick-loading .slick-list {
    background: #fff url('./assets/images/ajax-loader.gif') center center no-repeat;
}

.slick-prev, 
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover, 
.slick-prev:focus, 
.slick-next:hover, 
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before, 
.slick-prev:focus:before, 
.slick-next:hover:before, 
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before, 
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before, 
.slick-next:before {
    /* font-family: 'slick'; */
    /* font-size: 20px; */
    /* line-height: 1; */
    /* color: white; */
    display: block;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    /* content: '←'; */
    content: "";
    width: 24px;
    height: 45px;
    background-image: url('./assets/svgs/arrow_left.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

[dir='rtl'] .slick-prev:before {
    /* content: '→'; */
    background-image: url('./assets/svgs/arrow_right.svg');
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    /* content: '→'; */
    content: "";
    width: 24px;
    height: 45px;
    background-image: url('./assets/svgs/arrow_right.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

[dir='rtl'] .slick-next:before {
    /* content: '←'; */
    background-image: url('./assets/svgs/arrow_left.svg');
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover, 
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before, 
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}


/* Simple Responsive Lightbox by WPGrand */

.lg-outer .lg-thumb-outer {
    display: none;
    background: rgba(13, 10, 10, 0.7);
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
    height: 93%;
    top: 4%;
}

.lg-progress-bar .lg-progress {
    background-color: #fff !important;
}

#lg-download {
    display: none !important;
}
