    /*
    Theme Name: Marmo Design
    Theme URI: http://wordpress.org/themes/marmodesign
    Author: Ejeeban Design 
    Author URI: http://wordpress.org/
    Description: The 2023 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: black, white, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
    Text Domain: marmodesign
    */

    /*  --------------------------------------------------
        Generic CSS Setup
        -------------------------------------------------- */
    html{
        width: 100%;
        height: 100%;
        margin: 0;
    }
    body{
        position: relative;
        font-size: 14px;
        color: var(--black);
        line-height: 1.4;
        font-family: var(--publicsans);
        font-weight: 200;
        height: 100%;
        width: 100%;
        margin: 0;
        overflow-x: hidden;
    }
    .smooth-scroll{
        overflow: hidden;
    }
    .no-scroll{
        overflow: hidden;
    }
    :root{
        --lgrey: #bfbfbb;
        --black: #000000;
        --white: #ffffff;
        --border: rgba(0, 0, 0, 0.2);
        --publicsans: 'Public Sans', sans-serif;
        --padding: 0 10%;
        --top: 100px;
        --bottom: 100px;
    }
    img{
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    video{
        width: 100%;
    }
    button:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus{
        outline: none;
    }
    h1{
        font-size: 60px;
        font-weight: 400;
        line-height: 1;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .inner h1{
        font-size: 50px;
        line-height: 1.3;
    }
    h2{
        font-size: 40px;
        color: var(--black);
        margin-top: 0;
        margin-bottom: 20px;
        font-weight: 400;
    }
    h2 span{
        color: var(--lblue);
    }
    h3{
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    h4{
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    h5{
        font-size: 16px;
        font-weight: 200;
        margin-top: 0;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    h6{
        font-size: 14px;
        font-weight: 200;
        line-height: 1.6;
        margin-top: 0;
    }
    p{
        line-height: 1.6;
        color: #4d4d4d;
    }
    a{
        text-decoration: underline;
    }
    a,
    a:hover{
        color: inherit;
        transition: .2s;
    }
    button{
        appearance: none;
        -webkit-appearance: none;
        transition: .2s;
    }
    button:focus, input:focus, select:focus, textarea:focus{
        outline: none;
    }
    form{
        width: 100%;
    }
    form label{
        margin-bottom: 0;
    }
    input,
    select,
    textarea{
        font-family: var(--publicsans);
        color: var(--black);
        font-weight: 400;
        display: block;
        width: 100%;
        outline: 0;
        padding: 15px;
        margin: 0;
        border: none;
        background-color: rgba(255, 255, 255, 0.3);
        box-sizing: border-box;
    }
    .bg-dark input,
    .bg-dark select,
    .bg-dark textarea,
    .bg-dark ::placeholder{
        color: var(--white);
    }
    ::placeholder{
        font-family: var(--publicsans);
        font-size: 16px;
        font-weight: 200;
        color: var(--black);
    }
    textarea{
        height: 150px;
    }
    input[type="submit"]{
        margin: 0;
        padding: 0;
        min-width: 200px;
        width: auto;
        padding: 10px 40px;
        display: inline-block;
        border: 1px solid var(--white);
        color: white;
        font-size: 14px;
        font-weight: 200;
        text-decoration: none;
        text-transform: uppercase;
        font-family: 'Public Sans', sans-serif;
        background-color: black;
        color: white;
        margin-top: 40px;
        cursor: pointer;
        transition: .2s;
    }
    input[type="submit"]:hover{
        background-color: var(--white);
        color: var(--black);
    }
    select{
        font-family: var(--publicsans);
        font-weight: 200;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image:
            linear-gradient(45deg, transparent 50%, var(--black) 50%),
            linear-gradient(135deg, var(--black) 50%, transparent 50%);
        background-position:
            calc(100% - 20px) calc(10px + 20px),
            calc(100% - 15px) calc(10px + 20px),
            calc(100% - 2.5em) 1.5em;
        background-size:
            5px 5px,
            5px 5px,
            1px 1.5em;
        background-repeat: no-repeat;
        cursor: pointer;
    }


    /*  --------------------------------------------------
        Preloader
        -------------------------------------------------- */
    #preloader{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--black);
        z-index: 1100;
        width: 100%;
        height: 100%;
    }
    .ani-logo{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    /*  --------------------------------------------------
        Nav
        -------------------------------------------------- */
    header{
        position: relative;
        width: 100%;
        z-index: 2;
    }
    header nav{
        position: absolute;
        width: 100%;
        padding: 40px 6%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }
    header .nav-logo a:last-child{
        display: none;
    }
    header  .nav-logo a:first-child{
        display: block;
    }
    header .nav-logo img{
        width: 150px;
    }
    header .nav-menu{
        display: flex;
        align-items: center;
    }
    header .btn-search i {
        padding-right: 10px;
        font-size: 18px;
        line-height: 1;
        margin-right: 10px;
    }
    .menu{
        display: flex;
        list-style: none;
        padding-inline-start: 0px;
    }
    .menu li{
        position: relative;
        padding-right: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .menu li a{
        text-decoration: none;
        position: relative;
        transition: .2s;
    }
    .menu li:hover a{
        opacity: 0.6;
    }
    .menu li:last-child a{
        border: 1px solid rgba(0, 0, 0, 0.5);
        padding: 10px 30px;
        font-weight: 700;
    }
    .menu li:last-child:hover a{
        opacity: 1;
        background-color: var(--black);
        color: var(--white);
    }


    /*  --------------------------------------------------
        Nav Light
        -------------------------------------------------- */
    .nav-light header .btn-search i {
        color: var(--white);
    }
    .nav-light .nav-logo a:last-child{
        display: block;
    }
    .nav-light .nav-logo a:first-child{
        display: none;
    }
    .nav-light .menu li{
        color: white;
    }
    .nav-light #nav-toggle span,
    .nav-light #nav-toggle span:before,
    .nav-light #nav-toggle span:after{
      background: white;
    }

    .nav-light .menu li:last-child a{
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    .nav-light .menu li:last-child:hover a{
        background-color: var(--white);
        color: var(--black);
    }

    /*  --------------------------------------------------
        Mobile Menu
        -------------------------------------------------- */
    .main-menu{
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 6%);
        height: 100vh;
        background-color: var(--black);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6%;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        transition: .5s;
        overflow: hidden;
    }
    .main-menu.active{
        z-index: 500;
        opacity: 1;
        visibility: visible;
    }
    .btn-close-navi{
        background: transparent;
        position: absolute;
        z-index: 2;
        right: 10%;
        top: 9%;
        height: 50px;
        width: 30px;
        cursor: pointer;
    }
    .btn-close-navi span:before,
    .btn-close-navi span:after{
        border-radius: 1px;
        height: 2px;
        width: 20px;
        background: black;
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        content: '';
    }
    .btn-close-navi span:before{
        transform: rotate(135deg);
        background: white;
    }
    .btn-close-navi span:after{
        transform: rotate(-135deg);
        background: white;
    }
    .menu-logo{
        position: absolute;
        top: 0;
        left: 0;
        width: 150px;
        padding-top: 40px;
    }
    .menu-holder{
        width: 100%;
        height: 100%;
        padding-right: 45px;
        position: relative;
    }
    .menu-holder .menu-row{
        display: flex;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 65%;
    }
    .menu-holder a{
        color: var(--white);
        text-decoration: none;
    }
    .menu-info{
        height: inherit;
        width: 50%;
        position: relative;
        display: flex;
        align-items: center;
        color: var(--white);
    }
    .menu-info p{
        color: var(--white);
    }
    .side-menu{
        margin: 0;
    }
    .menu-nav{
        width: 40%;
        max-height: 100%;
        height: inherit;
        display: block;
    }
    .menu-nav ul{
        list-style: none;
    }
    .menu-nav li{
        padding: 10px 0;
        font-size: 25px;
    }
    .menu-nav ul li a{
        transition: .5s;
    }
    .menu-nav ul li a:hover{
        opacity: 60%;
    }
    .menu-copyright{
        position: absolute;
        bottom: 0;
        left: 0;
        padding-bottom: 45px;
    }
    .menu-copyright p{
        margin-bottom: 0;
    }
    #top-menu{
        display: none;
    }
    .btn-menu{
        position: relative;
        width: 30px;
        z-index: 502;
    }
    #nav-toggle{
        background: transparent;
        position: absolute;
        right: 0;
        top: 50%;
        height: 50px;
        width: 30px;
        cursor: pointer;
        transform: translate(0%, -50%);
    }
    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after{
        cursor: pointer;
        border-radius: 1px;
        height: 2px;
        width: 20px;
        background: black;
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        content: '';
    }
    #nav-toggle span:before{
        top: -8px;
    }
    #nav-toggle span:after{
        top: 8px;
    }
    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after{
        transition: all 0.5s ease-in-out;
    }
    #nav-toggle.active span{
        background-color: transparent;
    }
    #nav-toggle.active span:before,
    #nav-toggle.active span:after{
        top: 0;
    }
    #nav-toggle.active span:before{
        transform: rotate(135deg);
        background: white;
    }
    #nav-toggle.active span:after{
        transform: rotate(-135deg);
        background: white;
    }


    /*  --------------------------------------------------
        Search Results
        -------------------------------------------------- */
    .search-wrapper{
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 6%);
        height: 100vh;
        background-color: var(--black);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6%;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        transition: .5s;
        overflow: hidden;
    }
    .search-wrapper.active{
        z-index: 500;
        opacity: 1;
        visibility: visible;
    }
    .search-holder{
        width: 100%;
        height: 100%;
        padding-right: 45px;
        position: relative;
    }
    .btn-close-search{
        background: transparent;
        position: absolute;
        z-index: 2;
        right: 10%;
        top: 9%;
        height: 50px;
        width: 30px;
        cursor: pointer;
    }
    .btn-close-search span:before,
    .btn-close-search span:after{
        border-radius: 1px;
        height: 2px;
        width: 20px;
        background: black;
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        content: '';
    }
    .btn-close-search span:before{
        transform: rotate(135deg);
        background: white;
    }
    .btn-close-search span:after{
        transform: rotate(-135deg);
        background: white;
    }
    .search-input{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .search-input form input::placeholder{
        color: var(--white)!important;
        opacity: 0.6;
    }
    .search-wrapper form{
        width: 80%;
        display: flex;
        align-items: center;
    }
    .search-wrapper input{
        padding: 1rem 0;
        margin-right: 2rem;
        margin-bottom: 1rem;
        color: var(--white);
        font-size: 2rem;
        flex-grow: 1;
        height: 3rem;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
    .search-wrapper button{
        margin: 0;
        padding: 0;
        min-width: 200px;
        width: auto;
        padding: 10px 40px;
        display: inline-block;
        border: 1px solid var(--white);
        color: white;
        font-size: 14px;
        font-weight: 200;
        text-decoration: none;
        text-transform: uppercase;
        font-family: 'Public Sans', sans-serif;
        background-color: black;
        color: white;
        cursor: pointer;
        transition: .2s;
    }
    .sec-search-listing{
        position: relative;
        z-index: 2;
    }
    .search-listing-item .txt-container{
        padding: 30px 0;
        border-bottom: var(--border-dark);
    }
    .search-listing-item .txt-container h3{
        color: black;
    }


    /*  --------------------------------------------------
        Common
        -------------------------------------------------- */
    .reveal{
      position: relative;
      transform: translateY(150px);
      opacity: 0;
      transition: 2s all ease;
    }
    .reveal.active{
      transform: translateY(0);
      opacity: 1;
    }
    .bg-blue{
        background-color: var(--lblue);
    }
    .bg-grey{
        background-color: var(--lgrey);
    }
    .bg-dark{
        background-color: #000;
    }
    .bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h6, .bg-dark .btn-link a{
        color: var(--white);
    }
    .bg-dark p{
        color: var(--lgrey);
    }
    .top-section{
        padding-top: 250px !important;
    }
    .top-section .top-title-holder{
        width: 70%;
        margin-bottom: 70px;
    }
    .sec-banner{
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .sec-banner .slick-dots li {
        border: none;
        background-color: var(--white);
    }
    .intro-bg{
        height: 100%;
        position: relative;
    }
    .intro-bg img, 
    .intro-bg video{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.1);
        transition: transform 5s;
    }
    .intro-bg img{
        opacity: 0.8;
    }
    .intro-bg img.animate{
        transform: scale(1);
    }
    .intro-txt{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 10%;
        width: 50%;
    }
    .bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    .padding{
        padding: var(--padding);
    }
    .top{
        padding-top: var(--top);
    }
    .bottom{
        padding-bottom: var(--bottom);
    }
    .top-padding{
        padding-top: 200px;
    }
    .default {
        display: block;
    }
    .undefault {
        display: none;
    }
    .container-holder{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -2%;
        justify-content: space-between;
    }
    .container-holder .holder-left{
        width: 40%;
        padding: 0 2%;
    }
    .container-holder .holder-right{
        width: 52%;
        padding: 0 2%;
    }
    .img-holder{
        position: relative;
        overflow: hidden;
        background-color: black;
    }
    .img-holder img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }
    .img-holder:after{
        content: "";
        display: block;
        padding-bottom: 100%;
    }
    .btn-link{
        color: var(--black);
        border: 1px solid black;
        display: inline-block;
        padding: 10px 40px;
        transition: 0.3s;
        cursor: pointer;
        margin-top: 10px;
        text-align: center;
    }
    .btn-link a{
        text-decoration: none;
        align-items: center;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 200;
    }
    .btn-link:hover{
        background-color: var(--black);
        color: var(--white);
    }
    .btn-text:hover a{
        text-decoration: none;
    }
    .bg-dark .btn-link{
        color: var(--white);
        border: 1px solid white;
    }
    .bg-dark .btn-link:hover{
        background-color: var(--white);
    }
    .bg-dark .btn-link:hover a{
        color: var(--black);
    }
    .clear-both{
        clear: both;
    }
    .hover-a:hover .img-holder img{
        cursor: pointer;
        transform: scale(1.05);
    }
    .sec-content{
        padding: 100px 20%;
    }
    .item-holder{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 20px;
        justify-content: space-between;
    }


    /*  --------------------------------------------------
        Slick Slider
        -------------------------------------------------- */
    .slick-slider{
        cursor: grab;
    }
    .slick-list{
        margin: 0 -20px;
    }
    .slider-item{
        padding: 0 20px;
        display: inline-block !important;
        float: none;
        vertical-align: top;
    }
    .slick-track{
        margin: 0 auto;
        align-items: center;
        vertical-align: middle;
        margin-left: 0;
    }
    .slick-disabled{
        opacity: 0.5;
    }
    .slick-nav{
        display: flex;
    }
    .nav-btn{
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
        cursor: pointer;
        margin-right: 10px;
    }
    .nav-btn img{
        width: 7px;
    }
    .nav-btn:last-child{
        margin-right: 0;
    }
    .bg-dark .nav-btn{
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    .bg-dark .nav-btn img{
        filter: invert(1000%);
    }
    .slick-dots{
        position: absolute;
        list-style: none;
        padding-inline-start: 0px;
        top: 50%;
        transform: translateY(-50%);
        right: 2.5%;
        z-index: 2;
        margin: 0;
    }
    .slick-dots li{
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--black);
        border: 1px solid white;
        border-color: white;
        margin-bottom: 3vh;
        position: relative;
        z-index: 2;
        transition: .2s;
        cursor: pointer;
    }
    .slick-dots li:last-child{
        margin-bottom: 0;
    }
    .slick-dots li.slick-active{
        /*opacity: 0.5;*/
		border:2px solid #fff;
		background-color:transparent;
		margin-left:-2px;
    }
    .slick-dots button{
        position: absolute;
        top: 0;
        opacity: 0;
    }


    /*  --------------------------------------------------
        Home
        -------------------------------------------------- */
    .slick-active .zoom-out{
        -webkit-animation: mover 10s;
        animation: mover 10s;
    }

    @-webkit-keyframes mover {
        0% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }
    @keyframes mover {
        0% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    #home .sec-banner .slick-nav {
        position: absolute;
        z-index: 3;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        justify-content: space-between;
        align-items: center;
    }
    #home .sec-banner .slick-nav .slick-prev {
        margin-left: 4%;
        width: 40px;
        height: 40px;
        border-radius: 0px;
    }
    #home .sec-banner .slick-nav .slick-next {
        margin-right: 4%;
        width: 40px;
        height: 40px;
        border-radius: 0px;
    }
    #home .sec-banner .banner-item{
        position: relative;
        overflow: hidden;
    }
    #home .sec-banner .intro-bg{
        height: 100vh;
    }
    #home .sec-banner .intro-bg:before{
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
        z-index: 1;
    }
    #home .sec-banner .intro-bg video{
        opacity: 0.8;
    }
    #home .sec-banner .intro-txt{
        top: unset;
        transform: unset;
        bottom: 10%;
        z-index: 2;
    }
    #home .sec-banner .intro-txt sup{
        font-size: 17px;
        vertical-align: top;
    }
    #home .sec-intro{
        position: relative;
        overflow: hidden;
    }
    /* marquee div container */
    .marquee{
        font-size: 4vw;
        height: 4.5vw;
        font-weight: 400;
        color: #fff;
        overflow: hidden;
        position: relative;
        display:flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        min-width: 100%;
        opacity: 0.5;
    }
    .message{
        display: flex;
        flex-shrink: 0;
        align-items: center;
        padding: 0 20px;
        animation: slide-left 20s linear infinite;
    }
    @keyframes slide-left{
      from{
        -webkit-transform: translateX(0);
                transform: translateX(0);
      }
      to{
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
      }
    }
    #home .texture-slider img{
        height: 300px;
        object-fit: cover;
    }
    #home .item-holder .btn-link{
        margin-top: 0;
    }
    #home .sec-product .product-slider{
        margin-top: 50px;
    }
    #home .sec-product .product-slider .prod-item .img-holder:after{
        padding-bottom: 130%;
    }
    #home .sec-product .product-slider .slick-list{
        margin: 0 -10px;
    }
    #home .sec-product .prod-item{
        position: relative;
        padding: 0 10px;
    }
    #home .sec-product .prod-item a{
        text-decoration: none;
    }
    #home .sec-inspiration{
        position: relative;
    }
    #home .sec-inspiration .title-holder{
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translateY(-50%);
        z-index: 1;
        width: 30%;
    }
    #home .sec-inspiration .title-holder h2,
    #home .sec-inspiration .title-holder p{
        color: var(--white);
    }
    #home .sec-inspiration .title-holder .btn-link{
        color: var(--white);
        border: 1px solid white;
    }
    #home .sec-inspiration .title-holder .btn-link:hover{
        border: 1px solid black;
    }
    .bg-holder{
        position: relative;
        width: 100%;
        height: 100vh;
    }
    .bg-holder img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #home .sec-inspiration .bg-holder:before{
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 100%);
    }
    .sec-how{
        padding-left: 10%;
        overflow: hidden;
    }
    .sec-how .icon{
        position: relative;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #cf992b;
    }
    .sec-how .icon img{
        position: absolute;
        width: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .sec-how .timeline{
        position: relative;
    }
    .sec-how .timeline:after{
        content: '';
        position: absolute;
        bottom: 34px;
        width: 100%;
        border: 1px solid rgba(19,38,40,.1);
    }
    .sec-how .timeline .step-slider{
        padding-inline-start: 0;
        padding-inline-end: 40px;
        margin-top: 40px;
    }
    .sec-how .timeline li{
        position: relative;
        list-style: none;
        height: 400px;
    }
    .sec-how .timeline li:after{
        content: '';
        position: absolute;
        bottom: 30px;
        width: 10px;
        height: 10px;
        background: black;
        border-radius: 50%;
    }
    .sec-how .timeline li .step{
        position: absolute;
        bottom: 0px;
    }
    #home .sec-journal{
        overflow: hidden;
    }
    #home .sec-journal .title-holder{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1%;
        align-items: flex-start;
    }
    #home .sec-journal .title-holder h2{
        width: 40%;
        padding: 0 1%;
    }
    #home .sec-journal .title-holder p{
        width: 56%;
        padding: 0 1%;
        margin: 0;
    }
    #home .sec-journal .journal-slider{
        position: relative;
        padding-left: 10%;
        margin-top: 50px;
    }
    #home .sec-journal .journal-slider .slick-list{
        padding: 0 60% 0 0 !important;
    }
    #home .sec-journal .journal-slider .img-holder:after{
        padding-bottom: 60%;
    }
    #home .sec-journal .journal-slider a{
        position: relative;
    }
    #home .sec-journal .journal-slider .date-holder {
        position: absolute;
        z-index: 2;
        top: 10%;
        left: -15px;
        width: 30px;
        padding: 10px;
        text-align: center;
        background-color: var(--white);
        border: 2px solid var(--black);
        color: var(--black);
        text-transform: uppercase;
        line-height: 1.1;
    }
    #home .sec-journal .journal-slider .date-holder span{
        font-size: 20px;
        font-weight: 700;
        display: block;
    }
    #home .sec-company{
        position: relative;
    }
    #home .sec-company .content-holder{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 70%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    #home .sec-company .content-holder h2{
        font-size: 80px;
        -webkit-text-stroke: 1px var(--white);
        color: transparent;
        opacity: 1;
        line-height: 1;
        margin-bottom: 30px;
    }
    #home .sec-company .content-holder p{
        color: var(--white);
    }


    /*  --------------------------------------------------
        Footer
        -------------------------------------------------- */
    footer{
        padding: 0 6%;
    }
    footer .footer-holder{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 -1%;
        padding-bottom: 50px;
    }
    footer .footer-holder .footer-col:first-child{
        width: 23%;
    }
    footer .footer-holder .footer-col{
        width: 14%;
        padding: 0 1%;
    }
    footer .footer-col a{
        color: var(--lgrey);
    /*    text-decoration: none;*/
    }
    footer .footer-col ul{
        padding-inline-start: 0;
    }
    footer .footer-col ul li:first-child{
        padding-top: 0;
    }
    footer .footer-col ul li{
        padding: 5px 0;
    }
    footer .footer-col:last-child h6{
        margin: 0;
    }
    footer .footer-col:last-child h4:nth-of-type(2){
        margin-bottom: 0;
    }
    footer .copyright{
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }
    footer .copyright h6{
        text-transform: uppercase;
        color: var(--lgrey);
        margin: 0;
    }
    footer .copyright ul{
        padding-inline-start: 0;
        display: flex;
    }
    footer .copyright ul li{
        margin: 0 10px;
    }
    footer .copyright ul li:last-child{
        margin-right: 0;
    }
    footer .copyright ul li a{
        color: var(--lgrey);
    /*    text-decoration: none;*/
    }


    /*  --------------------------------------------------
        About
        -------------------------------------------------- */
    #about .intro-txt{
        top: unset;
        transform: unset;
        bottom: 10%;
        z-index: 2;
    }
    #about .sec-banner .intro-bg:before{
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        z-index: 1;
    }
    #about .sec-difference{
        position: relative;
        overflow: hidden;
    }
    .wording{
        position: relative;
        width: auto;
        height: 100%;
        margin-left: 9%;
        overflow: hidden;
    }
    .wording video{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .wording h2{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        font-weight: 400;
        font-size: 13vw;
        line-height: 13vw;
        mix-blend-mode: screen;
        background-color: #ffffff;
    }
    #about .sec-difference .container-holder{
        margin-top: 50px;
        padding-left: 10%;
    }
    #about .sec-difference .container-holder .holder-left{
        width: 30%;
    }
    #about .sec-difference .container-holder .holder-right{
        width: 62%;
    }
    #about .sec-difference .container-holder ul{
        list-style: none;
        padding-inline-start: 0;
        margin: 0;
    }
    #about .sec-difference .container-holder ul li{
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    #about .sec-difference .container-holder ul li:first-child .content{
        padding-top: 0;
    }
    #about .sec-difference .container-holder ul li .content{
        padding-right: 14%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #about .sec-difference .container-holder ul li:last-child{
        border-bottom: none;
    }
    #about .sec-difference .container-holder ul li:last-child .content{
        padding-bottom: 0;
    }
    #about .sec-difference .container-holder ul li .content h4{
        margin-top: 0;
    }
    #about .sec-difference .container-holder ul li .content p{
        margin-bottom: 0;
    }
    #about .sec-difference .container-holder .holder-left .img-holder{
        height: 100%;
    }

    .sec-gallery .title-holder{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }
    .sec-gallery .title-holder h2{
        margin-bottom: 0;
    }
    .sec-gallery .gallery-slider .slick-list{
        margin: 0 -10px;
    }
    .sec-gallery .gallery-item{
        position: relative;
        padding: 0 10px;
    }
    .sec-gallery .gallery-item .img-holder:after{
        padding-bottom: 130%;
    }

    .sec-showcase .title-holder{
        margin-bottom: 50px;
    }
    .sec-showcase .showcase-holder{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .sec-showcase .showcase-holder .gallery-item{
        width: calc(32% - 10px);
        padding: 0 10px;
        margin-bottom: 20px;
    }

    #about .sec-mission{
        position: relative;
    }
    #about .sec-mission .wording{
        margin-left: 1%;
    }
    #about .sec-mission .wording h2{
        text-align: right;
        mix-blend-mode: multiply;
        background-color: #000;
    }
    #about .sec-mission .container-holder{
        margin-top: 50px;
    }
    #about .sec-mission .container-holder .holder-left{
        width: 60%;
    }
    #about .sec-mission .container-holder .holder-right{
        width: 32%;
    }
    #about .sec-mission .container-holder .holder-right .img-holder:after{
        padding-bottom: 80%;
    }


    /*  --------------------------------------------------
        Products
        -------------------------------------------------- */
    #product .title-holder{
        margin-bottom: 50px;
        width: 60%;
    }
    #product .listing-holder{
        display: block;
        padding: 0 10%;
    }
    #product ul{
        list-style: none;
    }
    #product .container{
        display: flex;
        align-items: flex-start;
    }
    #product .prod-title{
        writing-mode: vertical-lr;
        transform: rotate(-180deg);
        white-space: nowrap;
        text-align: center;
    }
    #product .prod-title h4{
        margin-top: 0;
        margin-block-end: 0;
    }
    #product .listing-holder li a{
        text-decoration: none;
    }
    #product .listing-holder li .img-holder{
        width: 100%;
        height: 100%;
    }
    #product .listing-holder li .img-holder:after{
        padding-bottom: 120%;
    }
    #product .listing-holder li{
        position: relative;
        float: left;
        width: 45%;
        margin-top: 10%;
    }
    #product .listing-holder li:first-child{
        margin-top: 0;
    }
    #product .listing-holder li:nth-child(2){
        padding-top: 15%;
        margin-top: 0;
    }
    #product .listing-holder li:nth-child(2n){
        float: right;
    }

    /* Filtering */
    .filter-row{
        display: flex;
        margin-bottom: 30px;
    }
    .filter-col{
        flex-basis: 30%;
        margin-right: 30px;
    }
    .filter-col h4{
        margin: 0;
    }
    .filter-row select,
    .filter-row input{
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        background-color: transparent;
        margin-bottom: 0;
        padding-left: 0;
    }
    .bg-dark .filter-row select,
    .bg-dark .filter-row input{
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .bg-dark .filter-row select{
        background-image:
            linear-gradient(45deg, transparent 50%, var(--white) 50%),
            linear-gradient(135deg, var(--white) 50%, transparent 50%);
    }
    #product .list-holder ul{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1%;
        padding-inline-start: 0;
    }
    #product  .list-holder li{
        position: relative;
        width: 18%;
        padding: 0 1%;
        margin-top: 20px;
    }
    #product .list-holder li a{
        text-decoration: none;
    }
    #product .list-holder li .img-holder{
        border-radius: 100%;
    }
    #product .list-holder li .img-holder:after{
        padding-bottom: 100%;
        transition: all 0.3s;
    }
    #product .list-holder li h4{
        margin: 0;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    #product .list-holder li:hover h4{
        opacity: 1;
        visibility: visible;
    }
    #product .list-holder li:hover .img-holder:after{
        background-color: #000;
        opacity: 0.3;
    }
    #product .sec-banner{
        height: 80vh;
    }
    #product .sec-banner img{
        opacity: 0.6;
    }
    #product .sec-banner .intro-txt{
        width: 50%;
        top: unset;
        transform: unset;
        bottom: 15%;
        margin: 0;
    }
    #product .sec-details .content-holder {
        margin-bottom: 50px;
    }
    #product .sec-details h3{
        margin-bottom: 0;
    }
    #product .sec-details ul{
        padding-inline-start: 0;
        margin-top: 0px;
    }
    #product .sec-details ul li{
        padding: 30px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    #product .sec-details ul li h4, #product .sec-details ul li p{
        margin: 0;
    }
    #product .sec-details ul li{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    #product .sec-details ul li .details-title{
        width: 20%;
    }
    #product .sec-details ul li .details-content{
        width: 80%;
    }
    #product .sec-related li{
        margin-bottom: 50px;
    }

    .pagination{
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin-top: 50px;
    }
    .page-numbers.current{
        padding: 10px 15px;
        background-color: black;
        border-radius: 50%;
        color: white;
    }
    .page-numbers{
        margin: 0 10px;
        text-decoration: none;
        line-height: normal;
        display: inline-block;
    }


    /*  --------------------------------------------------
        Application
        -------------------------------------------------- */
    #application .sec-banner{
        height: 80vh;
    }
    #application .sec-customize .control-container{
        position: relative;
    }
    #application .sec-customize .control-container:after{
        content: '';
        position: absolute;
        bottom: 34px;
        width: 100%;
        border: 1px solid rgba(19,38,40,.1);
    }
    #application .sec-customize .control-container ul{
        list-style: none;
        padding-inline-start: 0;
        margin-top: 100px;
        display: flex;
    }
    #application .sec-customize .control-container li{
        position: relative;
        list-style: none;
        width: 100%;
        margin-right: 100px;
        height: 0px;
    }
    #application .sec-customize .control-container li:before{
        content: '';
        position: absolute;
        left: 0;
        bottom: 30px;
        width: 10px;
        height: 10px;
        background: black;
        border-radius: 50%;
    }
    #application .sec-customize .control-container li a{
        text-decoration: none;
    }

    #application .tab-content{
        margin-top: 100px;
    }
    #application .tab-content-holder{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -2%;
    }
    #application .tab-content-holder .content-holder-left {
        position: relative;
        width: 46%;
        margin: 0 2%;
    }
    #application .tab-content-holder .content-holder-right{
        width: 46%;
        padding: 0 2%;
    }
    #application .tab-content-holder .title-holder{
        margin-bottom: 50px;
    }
    #application .tab-content-holder .btn-show a{
        display: block;
    }
    #application .tab-content-holder .btn-link{
        display: block;
        min-width: 200px;
        width: 200px;
        text-align: center;
    }
    #application .tab-content-holder .btn-float{
        position: absolute;
        bottom: 0;
        left: 0;
    }
    #step-1 .btn-prev, #step-4 .btn-next{
        display: none !important;
    }
    #application .tab-content-holder .btn-next, #application .tab-content-holder .btn-show, #step-4 .btn-prev{
        background-color: var(--black);
        color: var(--white);
    }
    #application .tab-content-holder .btn-next:hover, #application .tab-content-holder .btn-show:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
    #application .tab-content>.tab-pane {
        display: none;
    }
    #application .tab-content>.active {
        display: block;
    }


    /*  --------------------------------------------------
        Inspiration
        -------------------------------------------------- */
    #inspiration .sec-visualizer{
        overflow: hidden;
    }
    
    #inspiration .visualizer-gallery-holder li .img-holder:after{
        padding-bottom: 50%;
    }
    #inspiration .visualizer-gallery-holder .visualizer-slider .img-holder:before{
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 100%);
        z-index: 1;
    }
    #inspiration .visualizer-gallery-holder .visualizer-slider img{
        opacity: 0.9;
    }
    #inspiration .visualizer-gallery-holder ul{
        padding-inline-start: 0;
        margin: 0;
        list-style: none;
        overflow: hidden;
    }
    #inspiration .sec-visualizer .slick-nav{
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        justify-content: space-between;
        align-items: center;
    }
    #inspiration .sec-visualizer .slick-nav .slick-prev{
        margin-left: -2%;
        width: 50px;
        height: 50px;
        background-color: var(--black);
        border: 2px solid var(--white);
    }
    #inspiration .sec-visualizer .slick-nav .slick-next{
        margin-right: -2%;
        width: 50px;
        height: 50px;
        background-color: var(--black);
        border: 2px solid var(--white);
    }
    #inspiration .sec-visualizer .slick-nav .nav-btn img{
        width: 10px;
    }
    #inspiration .sec-content-area{
        position: relative;
        width: 100%;
    }
    #inspiration .sec-content-area .title-holder {
        margin-bottom: 50px;
    }
    #inspiration .sec-content-area .title-holder h1{
        margin-bottom: 0;
    }
    #inspiration .sec-content-area .title-holder p{
        margin: 0;
        line-height: 1.2;
    }
    #inspiration .texture-wrapper{
        position: static;
        margin-top: 30px;
    }
    #inspiration .texture-wrapper h1{
        margin-bottom: 0;
    }
    #inspiration .texture-wrapper h3{
        margin-top: 0;
    }
    #inspiration .texture-control-holder{
        margin-top: 20px;
    }
    #inspiration .texture-control-holder ul{
        padding-inline-start: 0;
		text-align: center;
    }
    #inspiration .texture-control-holder li{
        width: 35px;
        height: 35px;
        display: inline-block;
        margin: 10px 15px 0px 15px;
    }
    #inspiration .texture-control-holder li a{
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        overflow: hidden;
        border-radius: 40px;
        border: 2px solid #ffffff;
        padding: 2px;
    }
    #inspiration .texture-control-holder li a.active{
        border: 2px solid var(--black);
    }
    #inspiration .texture-control-holder li a img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /*  --------------------------------------------------
        Journal
        -------------------------------------------------- */
    #journal .journal-holder{
        position: relative;
    }
    #journal .journal-holder ul{
        padding-inline-start: 0;
        list-style: none;
    }
    #journal .journal-holder ul li{
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 50px;
        margin-top: 50px;
    }
    #journal .journal-holder ul li:last-child{
        padding-bottom: 0;
        border-bottom: none;
    }
    #journal .journal-holder a{
        text-decoration: none;
    }
    #journal .journal-holder .content{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #journal .journal-holder .content .img-holder{
        width: 48%;
    }
    #journal .journal-holder .content .img-holder:after{
        padding-bottom: 60%;
    }
    #journal .journal-holder .content .content-holder{
        width: 48%;
        position: relative;
    }
    #journal .journal-holder .content-holder h4{
        margin-top: 0;
    }
    #journal .journal-holder .date{
        position: absolute;
        bottom: 0;
    }
    #journal .sec-banner{
        height: 80vh;
    }
    #journal .sec-banner img{
        opacity: 0.6;
    }
    #journal .sec-banner .intro-txt{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        top: unset;
        transform: unset;
        bottom: 15%;
        box-sizing: border-box;
        left: unset;
        align-items: flex-end;
    }
    #journal .sec-banner .intro-txt h1{
        width: 50%;
        padding-left: 10%;
        margin: 0;
    }
    #journal .sec-banner .intro-txt .date{
        width: 20%;
        text-align: right;
        padding-right: 10%;
        color: var(--white);
    }
    .sec-freetext{
        padding: 100px 10%;
    }
    .sec-freetext .paragraph{
        padding: 0 20%;
    }
    .sec-freetext img{
        width: 100%;
    }
    .related-list{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -2%;
        margin-top: 50px;
    }
    .related-list .related-item{
        width: 46%;
        padding: 0 2%;
    }
    .related-item .img-holder:after{
        padding-bottom: 60%;
    }


    /*  --------------------------------------------------
        Portfolio
        -------------------------------------------------- */
    #portfolio .title-holder{
        margin-bottom: 50px;
    }
    #portfolio .filter-row select,
    #portfolio .filter-row input{
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    #portfolio .filter-row select{
        background-image:
            linear-gradient(45deg, transparent 50%, var(--white) 50%),
            linear-gradient(135deg, var(--white) 50%, transparent 50%);
    }
    #portfolio .portfolio-list .portfolio-row{
        margin-bottom: 50px;
    }
    #portfolio .portfolio-list .portfolio-row:last-child{
        margin-bottom: 0;
    }
    #portfolio .portfolio-list ul{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1%;
        padding-inline-start: 0;
    }
    #portfolio .portfolio-list ul li{
        width: calc(24% - 1%);
        padding: 0 1%;
        margin-bottom: 20px;
    }
    #portfolio .portfolio-list .portfolio-wrap{
        position: relative;
    }
    #portfolio .portfolio-list .portfolio-wrap .img-holder:after{
        padding-bottom: 85%;
    }


    /*  --------------------------------------------------
        Form / Contact
        -------------------------------------------------- */
    form .col-holder{
        width: 100%;
    }
    .sec-cta .contact-wrapper{
        display: flex;
        justify-content: center;
    }
    .sec-cta .contact-holder{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .sec-cta .contact-holder .contact-item{
        width: 400px;
        height: 400px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
    }
    .sec-cta .contact-holder .contact-item:first-child{
        margin-right: 20px;
    }
    .sec-cta .contact-cont{
        padding: 0 50px;
        transition: all 0.5s;
    }
    .sec-cta .contact-item .btn-text{
        text-decoration: underline;
    }
    .sec-cta .contact-item:hover .btn-text{
        color: #fff;
        text-decoration: none;
    }
    .sec-cta .contact-item:hover .contact-cont{
        transform: translate(0, -5%);
        transition: all 0.5s;
    }
    #contact .sec-cta .contact-wrapper{
        justify-content: left;
    }
    #contact .sec-cta .contact-holder{
        margin-top: 20px;
    }


    #contact .sec-form{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1%;
        margin-top: 50px;
    }
    #contact .sec-form .col-holder{
        width: calc(49% - 1%);
        padding: 0 1%;
    }
    #contact .sec-form .col-holder.full{
        width: 100%;
    }
    #contact .sec-info .info-holder{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    #contact .sec-info .info-left{
        width: 44%;
    }
    #contact .sec-info .info-right{
        width: 43%;
    }
    #contact .info-holder{
        padding-right: 10%;
    }
    #contact .info-left{
        position: relative;
    }
    #contact .info-left .img1{
        position: relative;
        left: 0;
        z-index: 2;
        width: 80%;
    }
    #contact .info-left .img2{
        position: absolute;
        bottom: -10vw;
        right: -5vw;
        z-index: 2;
        border: 15px solid rgb(255, 255, 255);
        width: 60%;
    }
    #contact .info-list{
        margin-top: 13vw;
    }
    #contact .info-list ul{
        list-style: none;
        padding-inline-start: 0;
    }
    #contact .info-list ul li:first-child{
        padding-top: 0;
    }
    #contact .info-list ul li{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 30px 0;
    }
    #contact .info-list ul li:last-child{
        border-bottom: 0;
    }
    #contact .info-list .info-title{
        width: 15%;
    }
    #contact .info-list .info-content{
        width: 80%;
    }
    #contact .info-list .info-content p{
        font-size: 16px;
    }
    #contact .info-list ul li h4, #contact .info-list ul li p{
        margin: 0;
    }
    #contact .info-list a{
        color: #4d4d4d;
    }


    /*  --------------------------------------------------
        Ipad Pro Landscape
        -------------------------------------------------- */
    @media only screen and (min-width: 1366px) and (min-height: 1024px) {

    }

    /*  --------------------------------------------------
        Ipad Landscape
        -------------------------------------------------- */
    @media only screen and (max-width: 1200px) {

        #menu-primary{
            display: none;
        }
        #top-menu{
            display: block;
        }

    }

    /*  --------------------------------------------------
        Ipad Potrait
        -------------------------------------------------- */
    @media only screen and (max-width: 1025px) {

        .search-wrapper button{
            min-width: 150px;
        }
        #menu-primary{
            display: none;
        }
        .menu-holder .menu-row{
            width: 80%;
        }
        .sec-how .timeline li{
            height: 500px;
        }
        .inner .intro-txt{
            width: 80%;
        }
        .sec-cta .contact-holder .contact-item:first-child{
            margin-right: 0;
        }
        #product .title-holder{
            width: 80%;
        }
        #application .sec-banner, #journal .sec-banner, #product .sec-banner{
            height: 60vh;
        }
        #inspiration .visualizer-gallery-holder li .img-holder:after{
            padding-bottom: 70%;
        }
    }

    /*  --------------------------------------------------
        Ipad Potrait
        -------------------------------------------------- */
    @media only screen and (max-width: 991px) {

        :root{
            --padding: 0 6%;
        }
        #nav-toggle{
            height: 30px;
            width: 25px;
        }
        #nav-toggle span,
        #nav-toggle span:before,
        #nav-toggle span:after{
            width: 25px;
        }
        #nav-toggle span:before{
            top: -9px;
        }
        #nav-toggle span:after{
            top: 9px;
        }
        .main-menu{
            width: calc(100% - 10%);
            padding: 0 6%;
        }
        .main-menu .btn-close-navi{
            top: 7%;
        }
        .menu-holder{
            height: 100%;
            padding-right: 0;
            overflow-y: scroll;
        }
        .main-menu .menu-logo{
            position: static;
        }
        .menu-holder .menu-row{
            height: auto;
            display: block;
            padding:  0px;
            align-items: initial;
            left: unset;
            padding-top: 50px;
            position: relative;
            top: unset;
            transform: unset;
            width: 100%;
        }
        .menu-info{
            height: auto;
            width: 100%;
            padding-right: 0;
            position: static;
            display: block;
            margin-bottom: 50px;
        }
        .menu-nav{
            width: 100%;
            max-height: auto;
            height: auto;
            margin-bottom: 30px;
        }
        .menu-nav ul{
            padding-inline-start: 0;
        }
        .menu-nav li{
            font-size: 18px;
        }
        .menu-copyright p{
            margin-bottom: 0;
        }
        .search-wrapper form{
            width: 100%;
        }
        #home .sec-banner .intro-txt, .intro-txt{
            width: 80%;
            left: 6%;
        }
        #home .sec-inspiration .title-holder{
            width: 60%;
            left: 13%;
        }
        #home .sec-inspiration .bg-holder:before{
            background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);
        }
        .sec-how{
            padding-left: 6%;
        }
        .sec-how .timeline li{
            min-height: 400px;
            height: 400px;
        }
        .sec-cta .contact-holder .contact-item{
            width: 335px;
            height: 335px;
        }
        #home .sec-journal .title-holder{
            margin: 0;
        }
        #home .sec-journal .title-holder h2, #home .sec-journal .title-holder p{
            width: 100%;
            padding: 0;
        }
        #home .sec-journal .journal-slider{
            padding-left: 6%;
        }
        .container-holder .holder-left{
            width: 100%;
            margin-bottom: 50px;
        }
        .container-holder .holder-right{
            width: 100%;
        }
        footer .footer-holder .footer-col:first-child{
            width: 100%;
        }
        footer .footer-holder .footer-col{
            width: 31.33%;
        }
        footer .copyright{
            display: block;
        }
        footer .copyright ul li:first-child{
            margin-left: 0;
        }
        .sec-content{
            padding: 100px 15%;
        }
        .wording{
            margin: 0;
            margin: 0 6%;
        }
        #about .sec-difference .container-holder{
            padding: 0 6%;
        }
        #about .sec-difference .container-holder .holder-left, #about .sec-difference .container-holder .holder-right{
            width: 100%;
        }
        #about .sec-difference .container-holder ul li .content{
            padding-right: 0;
        }
        #about .sec-mission .wording{
            margin: 0;
        }
        #about .sec-mission .container-holder .holder-left, #about .sec-mission .container-holder .holder-right{
            width: 100%;
        }
        #product .listing-holder{
            padding: 0 6%;
        }
        #product .title-holder, #product .sec-details ul li .details-title, #product .sec-details ul li .details-content{
            width: 100%;
            box-sizing: border-box;
        }
        .filter-col{
            flex-basis: 45%;
        }
        #product .list-holder li{
            width: 31.33%;
            margin-bottom: 40px;
        }
        #product .list-holder li h4{
            position: relative;
            opacity: 1;
            visibility: visible;
            top: unset;
            left: unset;
            transform: unset;
            color: var(--black);
            margin-top: 20px;
        }
        #product .sec-related.bg-dark .list-holder li h4{
            color: var(--white);
        }
        #application .sec-customize .control-container ul{
            flex-wrap: wrap;
            margin-top: 50px;
        }
        #application .sec-customize .control-container li:before, #application .sec-customize .control-container:after{
            content: none;
        }
        #application .sec-customize .control-container li{
            margin-right: 0;
            height: auto;
        }
        #application .sec-customize .control-container li a{
            width: auto;
            display: block;
            padding: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        #application .tab-content{
            margin-top: 50px;
        }
        #application .tab-content-holder .content-holder-left{
            margin-bottom: 50px;
        }
        #application .tab-content-holder .content-holder-left, #application .tab-content-holder .content-holder-right{
            width: 100%;
        }
        #application .tab-content-holder .btn-float{
            position: static;
        }
        #inspiration .visualizer-gallery-holder li .img-holder:after{
            padding-bottom: 80%;
        }
        .sec-showcase .showcase-holder .gallery-item{
            width: calc(31.8% - 10px);
        }
        #portfolio .portfolio-list ul li{
            width: 48%;
        }
        #portfolio .portfolio-list .portfolio-wrap .img-holder:after{
            padding-bottom: 85%;
        }
        #journal .journal-holder .content .img-holder{
            width: 100%;
            margin-bottom: 50px;
        }
        #journal .journal-holder .content .content-holder, #journal .sec-banner .intro-txt h1, #journal .sec-banner .intro-txt .date{
            width: 100%;
        }
        #journal .sec-banner .intro-txt h1, #journal .sec-banner .intro-txt .date{
            padding: 0 6%;
        }
        #journal .sec-banner .intro-txt .date{
            text-align: left;
            margin-top: 30px;
        }
        #journal .journal-holder .date{
            position: relative;
            margin-top: 50px;
        }
        #contact .sec-cta .img-holder{
            display: none;
        }
        #contact .info-holder{
            padding: 0;
            padding: 0 6%;
        }
        #contact .sec-info .info-left{
            width: 100%;
            margin-bottom: 50px;
        }
        #contact .info-left .img1, #contact .sec-info .info-right, #contact .info-list .info-title, #contact .info-list .info-content{
            width: 100%;
        }
        #contact .info-left .img2{
            display: none;
        }
        #contact .info-list .info-title, .sec-details ul li .details-title{
            margin-bottom: 20px;
        }
    }


    /*  --------------------------------------------------
        Mobile Landscape
        -------------------------------------------------- */
    @media only screen and (max-height: 600px) {
        h1{
            font-size: 35px;
            margin-bottom: 10px;
        }
        .inner h1{
            font-size: 30px;
            margin-bottom: 10px;
        }
        h2{
            font-size: 20px;
            margin-bottom: 20px;
        }
        h3{
            font-size: 16px;
        }
        h4{
            font-size: 14px;
        }
        h5{
            font-size: 14px;
        }
        :root{
            --top: 70px;
            --bottom: 70px;
        }
        .main-menu .btn-close-navi{
            top: 17%;
        }
        #home .sec-company .content-holder{
            width: 90%;
            top: 40%;
        }
        #home .sec-company .content-holder h2{
            font-size: 90px;
            margin-bottom: 50px;
        }
        #application .sec-banner, #journal .sec-banner, #product .sec-banner{
            height: 100vh;
        }
        #inspiration .texture-control-holder li{
            width: 25px;
            height: 25px;
        }
        .container-holder .holder-left{
            margin-bottom: 0;
        }
    }

    @media only screen and (max-width: 600px) {

        h1{
            font-size: 35px;
            margin-bottom: 10px;
        }
        .inner h1{
            font-size: 30px;
            margin-bottom: 10px;
        }
        h2{
            font-size: 25px;
            margin-bottom: 20px;
        }
        h3{
            font-size: 16px;
        }
        h4{
            font-size: 14px;
        }
        h5{
            font-size: 14px;
        }
        :root{
            --top: 50px;
            --bottom: 50px;
        }
        input, select, textarea{
            padding: 20px 0;
        }
        .main-menu .btn-close-navi{
            top: 9%;
            right: 3%;
        }
        .main-menu .menu-copyright{
            position: relative;
        }
        .search-wrapper, .main-menu{
            width: auto;
        }
        .btn-close-search{
            right: 3%;
        }
        .search-holder{
            padding: 0;
        }
        .search-wrapper form{
            flex-wrap: wrap;
        }
        .search-wrapper input{
            margin-right: 0;
        }
        #home .sec-banner .intro-txt, .intro-txt{
            width: 100%;
            box-sizing: border-box;
            left: unset;
            padding: 0 10%;
        }
        #home .sec-company .bg-holder{
            height: 180vh;
        }
        #home .sec-inspiration{
            height: 600px;
            overflow: hidden;
        }
        #home .sec-inspiration .title-holder{
            width: 94%;
            left: unset;
            padding: 0 6%;
            box-sizing: border-box;
        }
        #home .sec-company .content-holder h2{
            font-size: 50px;
            margin-bottom: 30px;
        }
        #home .sec-journal .journal-slider .slick-list{
            padding: 0 30% 0 0 !important;
        }
        .sec-cta .contact-holder .contact-item{
            width: 100%;
            height: auto;
        }
        .sec-cta .contact-cont {
            padding: 30px 50px;
        }
        footer .footer-holder{
            padding-bottom: 10px;
        }
        footer .footer-holder .footer-col{
            width: 100%;
        }
        .inner .intro-txt{
            width: 100%;
        }
        .sec-content{
            padding: 50px 6%;
        }
        #product .listing-holder li{
            width: 100%;
            margin-top: 40px;
        }
        #product .listing-holder li:nth-child(2){
            padding-top: 0;
            margin-top: 40px;
        }
        #product .container{
            flex-wrap: wrap;
        }
        #product .prod-title{
            writing-mode: unset;
            transform: unset;
            margin-bottom: 20px;
        }
        .filter-row{
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .filter-col{
            flex-basis: 100%;
            margin-bottom: 30px;
            margin-right: 0;
        }  
        #product .list-holder ul{
            margin: 0 -2%;
        }
        #product .list-holder li{
            width: 46%;
            padding: 0 2%;
        }
        #journal .journal-holder ul li{
            margin-top: 30px;
        }
        #application .tab-content-holder .title-holder, #journal .journal-holder .content .img-holder{
            margin-bottom: 30px;
        }
        .sec-showcase .showcase-holder .gallery-item{
            width: 44%;
        }
        #inspiration .sec-visualizer .slick-nav .slick-prev{
            margin-left: -7%;
        }
        #inspiration .sec-visualizer .slick-nav .slick-next{
            margin-right: -7%;
        }
        #inspiration .texture-control-holder li{
            width: 25px;
            height: 25px;
        }
        #inspiration .visualizer-gallery-holder li .img-holder:after{
            padding-bottom: 70%;
        }
        #portfolio .portfolio-list ul li, #portfolio .portfolio-list li:first-child, #portfolio .portfolio-list li:nth-child(2){
            width: 100%;
            margin-top: 30px;
        }
        #portfolio .portfolio-list li:first-child{
            margin-top: 0;
        }
        #journal .journal-holder ul li{
            padding-bottom: 30px;
        }
        #journal .sec-banner .intro-txt h1, #journal .sec-banner .intro-txt .date{
            padding: 0;
        }
        .related-list .related-item{
            width: 100%;
        }
        #contact .sec-form .col-holder{
            width: 100%;
        }
    }