@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: 'Honor';
    src: url('fonts/Honor.woff2') format('woff2'), url('fonts/Honor.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Global
--------------------------------------------- */

* {
    padding: 0;
    margin: 0;
}

body {
    background: #eaeaea;
    margin: 0;
    padding: 0;
    word-wrap: break-word !important;
    font-family: 'roboto', sans-serif;
    color: #333333;
    overflow-x: hidden;
}

a,
a:link,
a:active,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Honor', sans-serif;
    color: #202020;
    font-weight: 700;
}

p,
ul,
li {
    font-weight: 300;
}

.section {
    width: 100%;
    padding: 8vw 0 0 0;
    box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1);
}

.dots-bg {
    background: url(assets/bg.png) no-repeat center;
    background-size: cover;
}

.button {
    color: #202020;
    font-weight: 500;
    border: 3px solid #202020;
    padding: 15px;
    border-radius: 100px;
    font-size: 18px;
    margin: 2vw 0;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.button:hover {
    color: #e0e0e2;
    background-color: #202020;
}


/* Navigation
--------------------------------------------- */

nav {
    margin: 0;
    padding: 25px 0 0 0;
    /* background-color: #e0e0e2; */
    position: absolute;
    width: 100%;
    top: 0;
}

.home-nav {
    margin: 0;
    padding: 32px 0 0 0;
}

#logo {
    float: left;
    width: 300px;
    margin: 0 0 0.5vw 2vw;
}

#logo-home {
    float: left;
    width: 350px;
    margin: 0 0 0.5vw 2vw;
}

#mob-logo {
    display: none;
}

.smallnavbar {
    position: fixed;
    width: 100%;
    height: 30px;
    padding: 8px 0 0 0;
    background-color: black;
    transition: all 0.4s ease-out;
    z-index: 98;
    visibility: hidden;
    top: 0;
    left: 0;
    box-shadow: 0 1em 1em -1em rgba(15, 5, 68, 0.2);
}

.smallnavbar .smalllogo {
    position: relative;
    float: left;
    display: block;
    width: 50px;
    margin-left: 2.5vw;
    transition: all 0.4s ease-out;
    z-index: 99;
    visibility: hidden;
}

.smallnavbar a {
    line-height: 35px;
    font-size: 14px;
}

nav:after {
    content: "";
    display: table;
    clear: both;
}

nav ul {
    float: right;
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0 3vw 0 0;
    transition: all 0.3s ease-in-out;
    z-index: 9;
    top: -5px;
}

nav ul li {
    margin: 0px;
    display: inline-block;
    font-family: 'Honor';
}

nav a {
    display: block;
    padding: 0 20px 0;
    color: #7b7b7b;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    text-decoration: none;
    transition: color 0.4s ease;
}

nav ul li ul li a {
    color: #a8a8a8;
    transition: color 0.4s ease;
    line-height: 40px !important;
}

.smallnavbar ul li a:hover,
nav ul li ul li a:hover {
    color: white;
}

nav a:hover {
    color: black;
}

.light-nav a:hover {
    color: white;
}

nav ul ul {
    position: absolute;
    top: 90px;
    background: #202020;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity .4s ease, top .4s ease;
}

nav ul li:hover>ul {
    top: 35px;
    opacity: 1;
    visibility: visible;
    transition: 0.4s ease;
}

nav ul ul li {
    width: 140px;
    float: none;
    display: list-item;
    position: relative;
    border-bottom: 1px solid black;
}

li>a:after {
    content: ' +';
}

li>a:only-child:after {
    content: '';
}


/* FOOTER
--------------------------------------------- */

.footer {
    background: black;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 140px 0;
    width: 100%;
    position: relative;
    z-index: 10000;
}

.footer .footer-logo {
    width: 400px;
}

.footer h5 {
    color: #e0e0e2;
    font-size: 22px;
    margin-bottom: 10px;
}

.footer p {
    color: #7b7b7b;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    margin-top: 20px;
    line-height: 1.5;
}

.footer .footer-nav ul {
    color: #e0e0e2;
    list-style: none;
    padding: 0;
}

.footer a {
    color: #7b7b7b;
    font-size: 18px;
    transition: color .3s ease-in-out;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
}

.footer a:hover {
    color: white;
}

.footer h5 {
    font-size: 18px;
    letter-spacing: 1px;
}

.footer .footer-nav ul li {
    margin: 5px 0;
}

.footer .contact-social .social-icons {
    margin: 10px 0;
}

.footer .contact-social i {
    margin-right: 10px;
}

.footer .contact-social .social-icons a {
    font-size: 24px;
}

.footer .contact-social a {
    margin: 10px 0;
}

.copyright {
    background: black;
    padding: 20px;
    text-align: center;
    color: #7b7b7b;
}

@media (max-width:1500px) {
    .footer {
        padding: 10vw 0;
    }
    .footer .footer-logo {
        width: 27vw;
    }
    .footer h5 {
        font-size: 1.1vw;
        margin-bottom: 0.75vw;
    }
    .footer .contact-social a {
        margin: 0.5vw 0;
    }
    .footer a,
    .footer p {
        font-size: 1.1vw;
    }
    .footer .footer-nav ul li {
        margin: 0.3vw 0;
    }
}

@media (max-width:1250px) {
    .footer {
        padding: 8vw 0;
    }
    .footer .footer-logo {
        width: 25vw;
    }
    .footer a,
    .footer p {
        font-size: 15px;
    }
    .footer h5 {
        font-size: 15px;
    }
    .footer .contact-social .social-icons a {
        font-size: 20px;
    }
}

@media (max-width: 1000px) {
    .footer {
        padding: 8vw 0 3vw 0;
        flex-direction: column;
        align-items: center;
    }
    .footer .footer-logo {
        width: 300px;
    }
    .footer .contact-social .social-icons a {
        margin: 0 10px;
    }
    .footer h5 {
        font-size: 20px;
    }
    .footer a,
    .footer p {
        font-size: 18px;
    }
    .footer .contact-social {
        text-align: center;
        margin: 45px 0;
        align-items: center;
    }
    .footer .contact-social .social-icons {
        align-items: stretch;
    }
    .footer .footer-nav {
        display: none;
    }
}

@media (max-width:650px) {
    .spare-parts {
        width: 80%;
        margin: 30px auto;
    }
    .footer {
        padding: 10vw 0 3vw 0;
    }
    .footer .footer-logo {
        width: 45vw;
    }
    .footer a,
    .footer p {
        font-size: 14px;
    }
    .footer h5 {
        font-size: 18px;
    }
    .footer .contact-social {
        margin: 6vw 0;
    }
}


/* HOMEPAGE
--------------------------------------------- */

.home-header {
    width: 100%;
    height: 47vw;
    padding: 2vw 0 0 0 !important;
    background: url(assets/coffee-bg.png) no-repeat;
    background: ;
    background-size: 100% 120%;
    /* box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1); */
}

#homeSpacer {
    display: none;
}

.home-header .header-txt {
    width: 40%;
    top: 8vw;
    position: relative;
    left: 3vw;
}

.home-header .header-txt h1 {
    font-size: 2.5vw;
    margin: 1vw 0 0 0;
    line-height: 1.1;
}

.home-header .header-txt p {
    font-size: 1vw;
    text-align: justify;
    line-height: 1.5;
    margin-top: 1vw;
}

.home-header .header-txt p span {
    font-weight: 600;
    font-family: 'Honor', sans-serif;
}

.home-header img {
    position: absolute;
    right: 4vw;
    top: 7vw;
    width: 55%;
}


/* ==================================== */

.brands {
    width: 100%;
    padding: 6vw 0 10vw 0;
    background: url(assets/g2b-left-bg.png) no-repeat, url(assets/g2b-right-bg.png) no-repeat;
    background-size: auto 90%, auto 90%;
    background-position: left center, right center;
    /* box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1); */
}

#brandsLogo {
    width: 8%;
    margin: auto;
    display: block;
}

.brands h2 {
    text-align: center;
    font-size: 2.5vw;
    letter-spacing: -2px;
    display: none;
}

.brands .brand-links {
    display: flex;
    justify-content: space-evenly;
    margin: 0vw auto 5vw auto;
    width: 60%;
    flex-wrap: wrap;
}

.brands .brand-links a {
    width: 13vw;
    margin: 0 2vw -6vw 2vw;
    text-align: center;
    opacity: 0.5;
    transition: all .4s ease-in-out;
}

.brands .brand-links .brands-h5-mob {
    display: none;
}

.brands .brand-links a h5 {
    font-size: 0.8vw;
    top: -4.5vw;
    color: #202020;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    position: relative;
    font-weight: 500;
    transition: all .4s ease-in-out;
}

.brands .brand-links a:hover {
    opacity: 1;
    transform: scale(1.2, 1.2);
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .brands .brand-links a:hover {
        transform: scale(1.2, 1.2);
    }
}

.brands .brand-links a:hover h5 {
    opacity: 1;
    visibility: visible;
}

.brands .txt {
    width: 60%;
    margin: auto;
    text-align: center;
    line-height: 1.5;
}

.brands .txt h3 {
    font-size: 2vw;
    font-weight: 900;
    margin-bottom: 0;
}

.brands .txt p {
    font-size: 0.9vw;
    line-height: 1.8;
}


/* ==================================== */

.sourcing {
    width: 100%;
    padding: 8vw 0 0 0;
    /* background: url(assets/divider-1.png) right bottom no-repeat, url(assets/divider-2.png) left top no-repeat;
  background-size: contain, contain; */
    margin-bottom: -10vw;
}

.sourcing .sourcing-homepage {
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 90%;
    margin: 0 auto -1vw auto;
}

.sourcing .sourcing-homepage .image {
    width: 50%;
}

.sourcing .sourcing-homepage .text-n-button {
    width: 39%;
}

.sourcing .sourcing-homepage .text-n-button h2 {
    font-size: 3vw;
    line-height: 1.2;
    margin-bottom: 2vw;
    font-weight: 800;
}

.sourcing #shape .triangle-down {
    width: 0px;
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-top: 10vw solid #eaeaea;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

.sourcing .sourcing-icons {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    margin-top: 5vw;
    background: #DEDEE0;
    padding: 7vw 0 7vw 0;
    position: relative;
    top: -10vw;
    /* box-shadow: 0 2em 3em -1em rgba(99, 90, 145, 0.2); */
}

.sourcing .sourcing-icons .icon-box {
    width: 14vw;
    margin: 0 3vw;
    text-align: center;
    font-size: 1vw;
    line-height: 1.5;
    color: #202020;
    font-weight: 300;
}

.sourcing .sourcing-icons .icon-box h4 {
    font-size: 1.25vw;
    font-weight: 900;
    margin-top: 1vw;
}

.sourcing .sourcing-icons .icon-box p {
    font-size: 0.9vw;
}

#concept {
    width: 3.15vw;
    left: 0.5vw;
    position: relative;
}

#procure {
    width: 5vw;
}

#develop {
    width: 4.5vw;
    position: relative;
}

#deliver {
    width: 4.5vw;
}


/* ==================================== */

.packaging {
    width: 100%;
    height: 38vw;
    padding: 9vw 0 4vw 0;
    top: 0;
    position: relative;
    z-index: 5;
}

.packaging .text-n-button {
    width: 33%;
    left: 56vw;
    top: -35vw;
    position: relative;
}

.packaging .text-n-button h2 {
    font-size: 2.5vw;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 800;
}

.packaging .text-n-button p {
    font-size: 1vw;
    margin: 1vw 0 3vw 0;
    line-height: 1.5;
}

.packaging .img-link {
    position: relative;
    left: 6vw;
    top: -2vw;
}

.packaging .img-link img {
    width: 40%;
    transition: all 0.3s ease-in-out;
}

.packaging .img-link img:hover {
    transform: scale(1.1, 1.1);
}


/* ==================================== */

.quality {
    background: url(assets/woman-headphones.jpg) no-repeat;
    position: relative;
    padding-top: 12vw !important;
    height: 30vw;
    padding-top: 17vw !important;
    background-size: cover;
    background-position: bottom right;
}

.quality img {
    display: none;
}

.quality .text-n-button {
    width: 33vw;
    right: -9vw;
    float: left;
    position: relative;
    top: -6vw;
}

.quality .text-n-button h2 {
    font-size: 2.5vw;
    line-height: 1;
    margin-bottom: 0;
}

.quality .text-n-button p {
    font-size: 1vw;
    line-height: 1.4;
    margin: 1vw 0 3vw 0;
}


/* ENTITY ENTITY ENTITY ENTITY ENTITY  
--------------------------------------------- */

.entity-header {
    /* background: #00CBB7; */
    display: flex;
    align-items: center;
    padding-top: 2vw !important;
    /* background-color: #00CBB7; */
    background-image: url(assets/Entity-new-banner.png);
    background-repeat: no-repeat;
    background-size: 114%;
    background-position: right top;
    height: 40vw;
    box-shadow: none;
}

.entity-header .text {
    position: relative;
    width: 31%;
    right: -3vw;
    top: -8vw;
}

.entity-header .text p {
    color: #222;
    font-size: 1.1vw;
    line-height: 2;
    font-weight: 400;
    margin-top: 1.5vw;
}

#entity-header-img-mob {
    display: none;
}


/* ==================================== */

.divider-1 {
    position: absolute;
    z-index: -10;
    top: 49vw;
    width: 30vw;
    left: 53vw;
    /*! margin-bottom: 4vw; */
    margin-top: 0vw;
    /*! display: none; */
    /*! transform: rotate(-14deg); */
}

.windows-panel-1 {
    width: 100%;
    /* background: url(assets/coffee-bg180.png) no-repeat;
        background-position: 0vw -9vw;
        background-size: 100% auto; */
    /*! box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.2); */
    margin: 0;
    padding-top: 2.5vw;
    height: 35.5vw;
    /*! overflow-y: hidden; */
}

.windows-panel-1 .panel-1-container {
    float: right;
    position: relative;
    width: 43%;
    right: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 9vw;
}

.windows-panel-1 .panel-1-container .blurbs-box {
    justify-content: space-between;
    flex-direction: column;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb-2 {
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0vw !important;
    position: relative;
    left: -13vw;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb-2 img {
    width: 11%;
    margin-left: 2vw;
}

#windows {
    /* border: #0278d5 solid 5px; */
    border-radius: 30px;
    margin: 1vw 0 2vw 0;
}

#windows p {
    /* color: #0278d5; */
}

#office {
    /* border: #db4017 solid 5px; */
    border-radius: 30px;
    height: 13vw;
}

#office p {
    /* color: #db4017; */
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb .txt {
    width: 70%;
    align-self: flex-start;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb .txt p {
    font-size: 14px;
    font-weight: 300;
    text-align: justify;
    line-height: 1.75;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb .logo {
    width: 50%;
    margin-bottom: 1vw;
    align-self: flex-start;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb-2 {
    padding-top: 4vw;
}

.windows-panel-1 .panel-1-container .blurbs-box .blurb-2 h2 {
    font-size: 1.5vw;
}

#windows-panel-1-image {
    position: relative;
    top: -1vw;
    left: -3vw;
    width: 57%;
}


/* ==================================== */

.windows-panel-2 {
    background: url(assets/entity-laptop-front.png) no-repeat;
    background-size: 48% auto;
    background-position: 46vw 2vw;
    z-index: 13;
    height: 30vw;
    margin: 6vw 0;
    padding-top: 4vw;
    position: relative;
    /* box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.2); */
}

.windows-panel-2 .panel-2-container {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 4vw;
    top: 1vw;
    width: 43%;
    padding: 2vw 0 2vw 3vw;
    /* background: #ececec; */
}

.windows-panel-2 .blurbs-box {
    float: right;
    display: flex;
    width: 100%;
    justify-content: center;
}

.windows-panel-2 h2 {
    font-size: 2vw;
    font-weight: 900;
}

.windows-panel-2 h3 {
    font-size: 1.4vw;
    margin: 0.5vw auto;
}

.windows-panel-2 .blurbs-box .blurb {
    width: 9vw;
    margin: 1vw 1vw;
}

.windows-panel-2 .blurbs-box .blurb .txt ul {
    list-style: none;
    font-size: 1vw;
    font-weight: 400;
    margin-top: 1vw;
    padding-left: 0.5vw;
}

.windows-panel-2 .blurbs-box .blurb .txt ul li {
    margin: 0.3vw 0;
}

#entity-laptop-2 {
    display: none;
}


/* ==================================== */

.android-panel-1 {
    background: url(assets/tablet-left.png) no-repeat;
    background-size: 49% auto;
    background-position: -9vw -8vw;
    margin: 0;
    height: 36vw;
    /* box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.2); */
}

.divider-2 {
    position: absolute;
    z-index: -10;
    top: 131vw;
    width: 30vw;
    left: 50vw;
    margin-bottom: -1vw;
    /*! margin-top: 7vw; */
    /*! transform: rotate(-14deg); */
}

.android-panel-1 .panel-1-container {
    top: 10vw;
    width: 30%;
    position: relative;
    right: -50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.android-panel-1 .panel-1-container .blurb-box .blurb-1 p {
    font-size: 14px;
    margin-top: 1vw;
    font-weight: 300;
    text-align: justify;
    line-height: 1.5;
}

.android-panel-1 .panel-1-container .blurb-box .blurb-1 img {
    width: 70%;
}

.android-panel-1 .panel-1-container .blurb-box .blurb-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 2vw;
}

.android-panel-1 .panel-1-container .blurb-box .blurb-2 h2 {
    font-size: 1.5vw;
    line-height: 1;
    font-weight: 800;
    margin-right: 2vw;
}

.android-panel-1 .panel-1-container .blurb-box .blurb-2 img {
    width: 11%;
}

#android-tab-1 {
    display: none;
}


/* ==================================== */

.android-panel-2 {
    background: url(assets/tablet-right.png) no-repeat;
    background-size: 45% auto, 100% auto;
    background-position: 49vw -3vw;
    margin: 10vw 0 5vw 0;
    /*! padding-bottom: 22vw; */
    height: 39vw;
}

.android-panel-2 .panel-2-container {
    position: relative;
    width: 45%;
    left: 7vw;
    top: 2vw;
}

.android-panel-2 .panel-2-container .blurb-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2vw auto;
}

.android-panel-2 .panel-2-container .blurb-box .blurb {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    height: 12vw;
    margin: 0 1vw;
    justify-content: center;
    background: rgb(255, 255, 255, 0.4);
    border-radius: 10px;
    box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.1);
}

.android-panel-2 .panel-2-container .cpu-options {
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 1vw;
}

.android-panel-2 .panel-2-container .cpu-options h2 {
    font-size: 2vw;
    margin-bottom: 1vw;
    font-weight: 900;
}

.android-panel-2 .panel-2-container .cpu-options h3 {
    font-size: 1.4vw;
}

.android-panel-2 .panel-2-container .blurb-box .blurb img {
    margin-bottom: 1vw;
    width: 70%;
    text-align: center;
}

.android-panel-2 .panel-2-container .blurb-box .blurb p {
    font-size: .9vw;
    text-align: center;
    font-weight: 500;
    margin: 0.3vw 0;
}

#mediatek {
    margin-bottom: 1vw;
}

.android-panel-2 .panel-2-container .jdwilliams {
    width: 80%;
    position: relative;
    text-align: center;
    margin: auto;
}

.android-panel-2 .panel-2-container .jdwilliams p {
    font-weight: 500;
    font-size: 1.2vw;
    margin-bottom: 0.5vw;
}

.android-panel-2 .panel-2-container .jdwilliams img {
    width: 100%;
}

#android-tab-2 {
    display: none;
}


/* ==================================== */

.divider-3 {
    position: absolute;
    width: 90vw;
    left: 5vw;
    /*! transform: rotate(-14deg); */
    top: 204vw;
    /*! opacity: 1; */
    /*! display: none; */
}

.jd-williams-panel {
    width: 100%;
    height: 32vw;
    /*! background: url(assets/coffee-bg180.png); */
    background-position: center -1vw;
}

.jd-williams-panel .jdwilliams-text {
    margin-bottom: 2vw;
    width: 30%;
    position: relative;
    float: right;
    top: 4vw;
    left: -13vw;
}

.jd-williams-panel .jdwilliams-text .available {
    margin-bottom: 1vw;
}

.jd-williams-panel .jdwilliams-text .available p {
    color: #222;
    font-size: 1.75vw;
    margin: 2vw;
    font-weight: 300;
    text-align: center;
    font-family: 'Honor';
}

.jd-williams-panel .jdwilliams-text .available img {
    width: 100%;
    margin: 0.5vw auto;
    display: none;
}

.jd-williams-panel .jd-logo {
    width: 100%;
    display: block;
    margin: auto;
    transition: transform 0.3s ease-in-out;
}

.jd-williams-panel .jd-logo:hover {
    transform: scale(1.1, 1.1);
}

#jd-img-mob {
    width: 47%;
    position: relative;
    top: -10vw;
}


/* PRIZM PRIZM PRIZM PRIZM PRIZM
--------------------------------------------- */

.prizmPgLogo {
    margin: 0 0 0.5vw 1vw !important;
}

.prizm-header {
    width: 100%;
    height: 58vw;
    padding: 0 !important;
    margin-bottom: -20px;
    position: relative;
    z-index: -1;
}

.prizm-header img {
    width: 100%;
    position: absolute;
    bottom: 0;
}


/* =================================================== */

.prizmSubHead {
    display: flex;
    background-color: #0a0a0f;
    font-family: 'Honor', inherit sans-serif;
    padding: 10vw 5vw 0vw 5vw !important;
    margin-bottom: -2vw;
    background-image: url(assets/SubHeader.jpg);
    background-size: cover;
    background-position: bottom;
}

.prizmSubHead span,
.prizmAccessories span,
.prizmTMT span {
    font-size: 14px;
    font-family: 'roboto';
    vertical-align: super;
}

.prizmSubHead .tNlContainer {
    width: 55%;
}

.prizmSubHead .tNlContainer #txtNlogo {
    position: relative;
    width: 65%;
    margin-bottom: 1vw;
    bottom: 0vw;
    padding-left: 4vw;
}

.prizmSubHead .tNlContainer #txtNlogo img {
    width: 45%;
    margin-bottom: 20px;
}

.prizmSubHead .tNlContainer #txtNlogo p {
    font-size: 1vw;
    line-height: 2;
    letter-spacing: 1px;
    color: white;
}

#peripherals {
    display: flex;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0vw;
}

#prizmPhones {
    width: 25%;
}

#prizmKeyboard {
    width: 30%;
}

#prizmMouse {
    width: 30%;
}

#mixedBag {
    position: relative;
    bottom: 6vw;
    left: -1vw;
    width: 35%;
}

#mixedBag img {
    width: 100%;
}


/* =================================================== */

.prizmAccessories {
    display: flex;
    width: 100%;
    margin: 0;
    justify-content: center;
    padding: 0 !important;
    background-color: #e0e0e2;
}

.prizmAccessories .panel {
    height: 49vw;
    overflow: hidden;
}

.prizmAccessories .infoPanel {
    width: 45%;
    background-image: url(assets/prizmbg2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.prizmAccessories .panel .logoHead {
    width: 50%;
    margin: 5vw 0 0 4vw;
}

.prizmAccessories .panel .logoHead img {
    width: 50%;
}

.prizmAccessories .panel .logoHead h1 {
    font-family: 'Honor', sans-serif;
    font-size: 2vw;
}

.prizmAccessories .infoPanel .text {
    width: 75%;
    margin: 5vw 0 0 4vw;
}

.prizmAccessories .infoPanel .text p {
    font-size: .9vw;
    line-height: 1.8;
}

.prizmAccessories .cfAnimation {
    width: 60%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.prizmAccessories .cfAnimation img {
    position: absolute;
    width: 100%;
    right: 0;
    -webkit-transition: opacity 2s ease-in-out;
    -moz-transition: opacity 2s ease-in-out;
    -o-transition: opacity 2s ease-in-out;
    transition: opacity 2s ease-in-out;
    animation-name: crossfade;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 15s;
}


/* For "n"(3) images You must define:
a=presentation time for one image {3s)
b=duration for cross fading(2s)
Total animation-duration is of course t=(a+b)*n (5*3=15s}

animation-delay = t/n or = a+b 6s

Percentage for keyframes:

1  0%
2 a/t*100%  22%
3 (a+b)/t*100% = 1/n*100% 33%
4 100%-(b/t*100%) 89%
5 100% */

@keyframes crossfade {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    87% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#bigPhones {
    animation-delay: 10s;
    top: -40px;
    right: 0;
    width: 97%;
}

#bigKeyboard {
    animation-delay: 5s;
}

#bigMouse {
    top: -70px !important;
    animation-delay: 0;
}


/* =================================================== */

.prizmTMT {
    width: 100%;
    background-color: #0a0a0f;
    padding: 6vw 0 8vw 0;
}

.prizmTMT .logoHead {
    width: 30vw;
    margin: auto;
}

.prizmTMT .logoHead img {
    width: 40%;
    display: block;
    margin: auto;
}

.prizmTMT .logoHead h1 {
    font-family: 'Honor';
    color: #c2009b;
    text-align: center;
    font-size: 2vw;
    margin: 1vw;
}

.prizmTMT .flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.prizmTMT .flex .tmt {
    width: 17vw;
    margin: 0 4vw;
}

#prizscision img,
#prizound img {
    width: 80%;
    margin: auto;
    display: block;
}

#prizscision h3,
#prizound h3 {
    margin: 10px 0 10px 0 !important;
}

.prizmTMT .flex .tmt h3 {
    color: #d4fec5;
    text-align: center;
    font-size: 22px;
    margin: -30px 0 10px 0;
}

.prizmTMT .flex .tmt p {
    color: #95ffff;
    text-align: center;
    font-size: 14px;
    line-height: 1.75;
    margin: auto;
}


/* =================================================== */

.prizmFurniture {
    width: 100%;
    height: 46vw;
    padding: 0;
    margin: 0;
    background-image: url(assets/prizmbg3.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom center;
    padding-top: 80px;
}

.prizmFurniture input {
    display: none;
}

.prizmFurniture .logoNtxt {
    width: 40vw;
    margin: auto;
}

.prizmFurniture .logoNtxt img {
    width: 30%;
    margin: 0 auto 10px auto;
    display: block;
}

.prizmFurniture .logoNtxt h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.prizmFurniture .logoNtxt p {
    font-size: 1vw;
    line-height: 1.5;
    text-align: center;
}

.prizmFurniture .furnitureFlex {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 30vw;
    align-items: center;
}

.prizmFurniture .furnitureFlex .cfContainer {
    width: 25%;
    height: 100%;
}

.prizmFurniture .furnitureFlex .cfContainer .cf {
    position: relative;
    height: 100%;
}

#tTable,
#zTable,
#blackChair,
#greyChair {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

#tTable {
    width: 110%;
}

#tTableCheck:checked~#tTable,
#zTableCheck:checked~#zTable,
#greyCheck:checked~#greyChair,
#blackCheck:checked~#blackChair {
    opacity: 1;
}

.prizmFurniture .furnitureFlex .cfContainer .chairCf img {
    width: 90% !important;
    margin: auto;
}

.prizmFurniture .furnitureFlex .cfContainer .deskCf img {
    top: 20%;
}

.prizmFurniture .furnitureFlex .cfContainer .cf label {
    width: 5px;
    height: 5px;
    background-color: #dddddf;
    border: 2px solid darkslategray;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 1s ease-in-out;
}

#tTableLabel,
#greyLabel {
    position: absolute;
    bottom: 3vw;
    left: 40%;
}

#zTableLabel,
#blackLabel {
    position: absolute;
    bottom: 3vw;
    left: 45%;
}

#tTableCheck:checked~#tTableLabel,
#zTableCheck:checked~#zTableLabel,
#greyCheck:checked~#greyLabel,
#blackCheck:checked~#blackLabel {
    background-color: darkslategray;
}


/* =================================================== */

.prizmLifestyle {
    display: flex;
    width: 100%;
    margin: 0;
    justify-content: center;
    padding-top: 7vw;
    /* background-image: url(assets/prizmbg2.png);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: bottom center; */
}

.prizmLifestyle .panel {
    height: 43vw;
    overflow: hidden;
}

.prizmLifestyle .infoPanel {
    position: relative;
    top: -1vw;
    left: 5vw;
    width: 45%;
}

.prizmLifestyle .panel .logoHead {
    width: 25vw;
    margin: 50px auto 0 auto;
}

.prizmLifestyle .panel .logoHead img {
    width: 50%;
    margin: auto;
    display: block;
}

.prizmLifestyle .panel .logoHead h1 {
    font-family: 'Honor', sans-serif;
    text-align: center;
    margin: 10px 0;
    font-size: 2.5vw;
}

.prizmLifestyle .infoPanel .text {
    width: 70%;
    margin: 1vw auto 2vw auto;
}

.prizmLifestyle .infoPanel .text p {
    font-size: 1vw;
    line-height: 1.8;
    text-align: justify;
}

.prizmLifestyle .img {
    width: 30%;
    position: relative;
    left: 2vw;
}

.prizmLifestyle .img img {
    width: 100%;
}


/* AUDIAL AUDIAL AUDIAL AUDIAL AUDIAL
--------------------------------------------- */

#audialBody {
    background: #e2e2e4;
}

.audial-header {
    width: 100%;
    background: url(assets/audial-bg-header.png) no-repeat, url(assets/audial-banner.jpg) no-repeat;
    background-size: auto 100%, 127% auto;
    background-position: right, -12vw -1vw;
    height: 50vw;
}

.audial-header .text-box {
    position: relative;
    width: 40%;
    left: 53vw;
    top: 16vw;
}

.audial-header .text-box img {
    width: 65%;
}

.audial-header .text-box p {
    font-size: 1.25vw;
    margin-top: 2vw;
    color: #7b7b7b;
    padding-left: 2vw;
    line-height: 1.5;
}

#audial-mobile {
    display: none;
}


/* =================================================== */

.audial-anc-panel {
    width: 100%;
    background: url(assets/audial-bg-l.png) no-repeat;
    background-size: auto 100%;
    background-position: left;
    display: flex;
    justify-content: space-evenly;
    position: relative;
    z-index: 50;
    padding-bottom: 4vw;
}

.audial-anc-panel .blurb-box {
    width: 30%;
    position: relative;
    left: 4vw;
    top: 14vw;
}

.audial-anc-panel .blurb-box h2 {
    font-size: 1.465vw;
    line-height: 1.25;
}

.audial-anc-panel .blurb-box p {
    font-size: 14px;
    line-height: 1.75;
    margin: 1vw 0;
    text-align: justify;
}

.audial-anc-panel .blurb-box .icon-box {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 2vw;
}

.audial-anc-panel .blurb-box .icon-box .icon {
    width: 19%;
}

.audial-anc-panel .blurb-box .icon-box .icon img {
    width: 35px;
}

.audial-anc-panel .blurb-box .icon-box .icon h5 {
    font-size: 0.76vw;
    margin: 1vw 0 0.5vw 0;
    line-height: 1.5;
    letter-spacing: 1px;
}

.audial-anc-panel .blurb-box .icon-box .icon p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.audial-anc-panel .images {
    width: 40%;
    position: relative;
    top: 3vw;
}

.audial-anc-panel .images #anc-cf-image {
    width: 60%;
    display: block;
    margin: auto;
    height: 42vw;
}

.audial-anc-panel .images #anc-cf-image img {
    position: absolute;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.audial-anc-panel .images #anc-cf-image img.top:hover {
    opacity: 0;
}

.audial-anc-panel .images-2 {
    display: none;
}


/* =================================================== */

.audial-earbuds-panel {
    width: 100%;
    background: url(assets/audial-bg-r.png) no-repeat;
    background-size: auto 100%;
    background-position: right;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row-reverse;
    height: 40vw;
}

.audial-earbuds-panel .blurb-box {
    width: 30%;
    position: relative;
    right: 9vw;
    top: 7vw;
}

.audial-earbuds-panel .blurb-box h2 {
    font-size: 1.8vw;
    line-height: 1;
}

.audial-earbuds-panel .blurb-box p {
    font-size: 14px;
    line-height: 1.75;
    margin: 1vw 0;
    text-align: justify;
}

.audial-earbuds-panel .blurb-box .icon-box {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 2vw;
}

.audial-earbuds-panel .blurb-box .icon-box .icon {
    width: 20%;
}

.audial-earbuds-panel .blurb-box .icon-box .icon img {
    width: 35px;
}

.audial-earbuds-panel .blurb-box .icon-box .icon h5 {
    font-size: 0.76vw;
    margin: 1vw 0 0.5vw 0;
    line-height: 1.5;
    letter-spacing: 1px;
}

.audial-earbuds-panel .blurb-box .icon-box .icon p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.audial-earbuds-panel #earbuds-cf-image {
    width: 45%;
    display: block;
    position: relative;
    top: -6vw;
    right: 4vw;
}

.audial-earbuds-panel #earbuds-cf-image img {
    position: absolute;
    left: 2vw;
    width: 80%;
    transition: opacity 0.3s ease-in-out;
    top: 3vw;
}

.audial-earbuds-panel #earbuds-cf-image img.top:hover {
    opacity: 0;
}

#earbuds-image-2 {
    display: none;
}


/* =================================================== */

.jd-williams-audial-panel {
    background-color: #a6a6a6;
    display: flex;
    justify-content: start;
    align-items: center;
}

#jd-audial-img {
    width: 40%;
    padding: 2vw 0;
    position: relative;
    right: -5vw;
}

.jd-williams-audial-panel .jdwilliams-text-audial {
    width: 27%;
    text-align: center;
    position: relative;
    top: -3vw;
    right: -14vw;
}

.jd-williams-audial-panel .jdwilliams-text-audial .available .audial-logo-jd {
    width: 80%;
}

.jd-williams-audial-panel .jdwilliams-text-audial a img {
    transition: all 0.3s ease-in-out;
}

.jd-williams-audial-panel .jdwilliams-text-audial a img:hover {
    transform: scale(1.1, 1.1);
}

.jd-williams-audial-panel .jdwilliams-text-audial .available p {
    font-size: 2vw;
    margin: 1.5vw 0;
    font-family: 'Honor';
}


/* B-AKTIV B-AKTIV B-AKTIV B-AKTIV B-AKTIV
--------------------------------------------- */

.b-aktiv-header {
    width: 100%;
    background: url(assets/b-aktiv-banner.jpg) no-repeat;
    background-size: 101% auto;
    background-position: 0vw 56%;
    height: 50vw;
}

.b-aktiv-header .text {
    width: 30%;
    position: relative;
    left: 8vw;
    top: 8vw;
}

.b-aktiv-header .text img {
    width: 70%;
}

.b-aktiv-header .text p {
    color: white;
    font-size: 16px;
    width: 100%;
    margin-top: 2vw;
    line-height: 1.75;
}

#b-aktiv-header-mob {
    display: none;
}


/* =================================================== */

#baktivBody {
    background: #e0e0e2;
}

.b-aktiv-cam-panel {
    width: 100%;
    background: url(assets/b-aktiv-overlay.png) no-repeat;
    background-size: 34% auto;
    background-position: 51.5vw 10vw;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row-reverse;
    height: 40vw;
}

.b-aktiv-cam-panel .blurb-box,
.b-aktiv-watch-panel .blurb-box {
    width: 35%;
    position: relative;
}

.b-aktiv-cam-panel .blurb-box {
    right: 3vw;
    top: 16vw;
}

.b-aktiv-cam-panel .blurb-box h2,
.b-aktiv-watch-panel .blurb-box h2 {
    font-size: 1.8vw;
    line-height: 1;
}

.b-aktiv-cam-panel .blurb-box p,
.b-aktiv-watch-panel .blurb-box p {
    font-size: 14px;
    line-height: 1.75;
    margin: 2vw 0;
}

.b-aktiv-cam-panel .blurb-box .icon-box,
.b-aktiv-watch-panel .blurb-box .icon-box {
    display: flex;
    justify-content: space-between;
}

.b-aktiv-cam-panel .blurb-box .icon-box .icon img,
.b-aktiv-watch-panel .blurb-box .icon-box .icon img {
    width: 30px;
    margin: auto;
    display: block;
}

.b-aktiv-cam-panel .blurb-box .icon-box .icon h5,
.b-aktiv-watch-panel .blurb-box .icon-box .icon h5 {
    font-size: 12px;
    margin: 1vw 0 0.5vw 0;
    letter-spacing: 2px;
    text-align: center;
}

.b-aktiv-cam-panel .blurb-box .icon-box .icon p,
.b-aktiv-watch-panel .blurb-box .icon-box .icon p {
    font-size: 10px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.b-aktiv-cam-panel #cam-cf-image {
    width: 35%;
    display: block;
    position: relative;
    top: 8vw;
    right: 1vw;
    transform: rotate(-3deg);
}

.b-aktiv-cam-panel #cam-cf-image img {
    position: absolute;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.b-aktiv-cam-panel #cam-cf-image img.top:hover {
    opacity: 0;
}

#cam-image-mob {
    display: none;
}


/* =================================================== */

.b-aktiv-watch-panel {
    width: 100%;
    background: url(assets/b-aktiv-overlay.png) no-repeat;
    background-size: 34% auto;
    background-position: 14vw 8vw;
    display: flex;
    justify-content: space-evenly;
    height: 45vw;
}

.b-aktiv-watch-panel .blurb-box {
    left: 4vw;
    top: 7vw;
}

.b-aktiv-watch-panel #watch-cf-image {
    width: 35%;
    display: block;
    position: relative;
    top: -3vw;
    left: 5vw;
}

.b-aktiv-watch-panel #watch-cf-image img {
    position: absolute;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.b-aktiv-watch-panel #watch-cf-image img.top:hover {
    opacity: 0;
}

#watch-image-2 {
    display: none;
}


/* =================================================== */

.b-aktiv-available {
    width: 100%;
    height: 50vw;
    background: url(assets/b-aktiv-available.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.b-aktiv-available .info {
    width: 30%;
    text-align: center;
    position: relative;
    left: 8vw;
    top: 15.5vw;
}

.b-aktiv-available .info p {
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Heebo';
    font-size: 1.1vw;
    margin: 1vw 0;
    letter-spacing: 9px;
    color: #202020;
    width: 70%;
    margin: 1vw auto 2vw auto;
    font-family: 'Honor';
}

.info>p:nth-child(4) {
    margin: 1vw auto 1vw auto !important;
}

#b-aktiv-dark {
    width: 42%;
}

.b-aktiv-available .info a img {
    transition: all 0.3s ease-in-out;
    width: 65%;
}

.b-aktiv-available .info a img:hover {
    transform: scale(1.1, 1.1);
}

#b-aktiv-available-mob {
    display: none;
}


/* KOTI KOTI KOTI KOTI KOTI KOTI KOTI
--------------------------------------------- */

.white-menu li a {
    color: white;
}

.koti-header {
    width: 100%;
    background: url(assets/koti-banner.jpg) no-repeat;
    background-size: cover;
    height: 45vw;
}

.koti-header .text {
    width: 38%;
    position: relative;
    left: 48vw;
    top: 6vw;
}

.koti-header .text p {
    font-size: 3vw;
    text-align: center;
    font-weight: 800;
    color: white;
}

.text>p:nth-child(3) {
    font-size: 2vw;
    font-weight: 500;
    margin: 1vw auto;
}

.koti-header .studio-logo {
    transition: all 0.3s ease-in-out;
    width: 30%;
    background-color: white;
    padding: 7px 30px;
    border: 5px solid #1f0382;
    border-radius: 120px;
    margin: 0vw auto;
    display: block;
}

.koti-header .studio-logo:hover {
    transform: scale(1.1, 1.1);
}

.koti-header #koti-image-mob {
    display: none;
}


/* =================================================== */

.koti-security-panel {
    width: 100%;
    background: url(assets/koti-overlay.png) no-repeat;
    background-size: auto 46%;
    background-position: 9vw 23vw;
    display: flex;
    justify-content: space-evenly;
    height: 45vw;
}

.koti-security-panel .blurb-box {
    width: 30%;
    position: relative;
    left: 5vw;
    top: 7vw;
}

.koti-security-panel .blurb-box h2 {
    font-size: 1.45vw;
    line-height: 1;
}

.koti-security-panel .blurb-box p {
    font-size: 14px;
    line-height: 1.75;
    margin: 2vw 0;
    text-align: justify;
}

.koti-security-panel .blurb-box .icon-box {
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 120%;
    position: relative;
    left: -3vw;
}

.koti-security-panel .blurb-box .icon-box .icon {
    width: 25%;
}

.koti-security-panel .blurb-box .icon-box .icon img {
    width: 35px;
}

.koti-security-panel .blurb-box .icon-box .icon h5 {
    font-size: 12px;
    letter-spacing: 2px;
    margin: 1vw 0 0.5vw 0;
}

.koti-security-panel .blurb-box .icon-box .icon p {
    font-size: 10px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.koti-security-panel #koti-cf-image {
    width: 45%;
    display: block;
    position: relative;
    top: 2vw;
    left: 3vw;
}

.koti-security-panel #koti-cf-image img {
    position: absolute;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}


/* COSMOS COSMOS COSMOS COSMOS COSMOS COSMOS
--------------------------------------------- */

.cosmos-header {
    background: url(assets/cosmosPyxis2.png) no-repeat, url(assets/cosmos-new-header-final.jpg) no-repeat;
    background-size: 85%, 107%;
    background-position: 30vw -6vw, top center;
    height: 49.75vw;
    padding-top: 2vw;
}

#pyxisMob {
    display: none;
}

.cosmos-header .flexContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: auto;
}

.cosmos-header .flexContainer .logoNtxt {
    width: 38%;
    position: relative;
    /*! top: -5vw; */
    float: left;
    padding-top: 10vw;
    margin-bottom: 4vw;
}

.cosmos-header .flexContainer .logoNtxt img {
    width: 50%;
    margin-bottom: 2vw;
}

.cosmos-header .flexContainer .logoNtxt h1 {
    font-size: 1.75vw;
    color: #8646a8;
    margin-bottom: 1vw;
}

.cosmos-header .flexContainer .logoNtxt p {
    font-size: 14px;
    color: #bbb;
    font-weight: 300;
    text-align: justify;
    line-height: 1.8;
}

.cosmos-header .flexContainer .image {
    width: 74%;
    position: relative;
    left: 5vw;
}

.cosmos-header .flexContainer .image img {
    width: 100%;
}

.cosmos-header .subFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 40%;
    height: 6vw;
    position: relative;
    left: 8vw;
}

.cosmos-header .subFlex img {
    height: 70px;
}

#qc {
    height: 70px;
    box-shadow: 0 0 1em 0.1em red;
}


/* =================================================== */


/* .cosmos-panel-1 {
        background: url(assets/cosmos-bg.jpg) no-repeat;
        background-size: 100%;
    } */

.cosmos-panel-2 {
    margin: 7vw 0;
}

.cosmos-panel-1 .panel-1-container {
    display: flex;
    justify-content: space-between;
    height: 47vw;
}

.cosmos-panel-2 .panel-2-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.cosmos-panel-1 .blurb-box {
    width: 34%;
    position: relative;
    left: 11vw;
    top: 11vw;
}

.cosmos-panel-2 .blurb-box {
    width: 35%;
    position: relative;
    left: -14vw;
    top: 12vw;
}

.cosmos-panel-1 .blurb-box h2,
.cosmos-panel-2 .blurb-box h2 {
    font-size: 1.7vw;
    line-height: 1;
}

.cosmos-panel-1 .blurb-box p,
.cosmos-panel-2 .blurb-box p {
    font-size: 14px;
    line-height: 1.8;
    margin: 2vw 0;
    text-align: justify;
}

.cosmos-panel-1 .blurb-box .icon-box,
.cosmos-panel-2 .blurb-box .icon-box {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.cosmos-panel-1 .blurb-box .icon-box .icon,
.cosmos-panel-2 .blurb-box .icon-box .icon {
    width: 20%;
}

.cosmos-panel-1 .blurb-box .icon-box .icon img,
.cosmos-panel-2 .blurb-box .icon-box .icon img {
    width: 40%;
}

.cosmos-panel-1 .blurb-box .icon-box .icon h5,
.cosmos-panel-2 .blurb-box .icon-box .icon h5 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 8px;
}

.cosmos-panel-1 .blurb-box .icon-box .icon p,
.cosmos-panel-2 .blurb-box .icon-box .icon p {
    font-size: 1vw;
    font-weight: 500;
    margin: 0;
}

.cosmos-panel-1 .blurb-box .colours,
.cosmos-panel-2 .blurb-box .colours {
    padding-top: 4vw;
    display: flex;
    align-items: center;
}

.cosmos-panel-1 .blurb-box .colours h5,
.cosmos-panel-2 .blurb-box .colours h5 {
    font-size: 14px;
    margin-right: 20px;
}

.cosmos-panel-1 .blurb-box .colours img,
.cosmos-panel-2 .blurb-box .colours img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0 0.5vw;
}

.cosmos-panel-1 .panel-1-container .cosmos-image {
    width: 27%;
    position: relative;
    top: 6vw;
    left: -9vw;
}

.cosmos-panel-2 .panel-2-container .cosmos-image {
    left: 8vw;
    width: 25%;
    position: relative;
    top: 6vw;
}

.cosmos-panel-1 .panel-1-container .cosmos-image img,
.cosmos-panel-2 .panel-2-container .cosmos-image img {
    /*! margin-bottom: -4px; */
    width: 100%;
    box-shadow: 1em 1em 1.5em rgba(0, 0, 0, 0.5);
}

.cosmos-panel-3 {
    margin: 15vw auto 9vw auto;
}


/* =================================================== */

.studio-panel {
    background: url(assets/cosmos-studio.jpg) no-repeat;
    background-size: 100%;
    background-position: top left;
    height: 50vw;
}

.studio-panel .studio-text {
    width: 60%;
    left: 42vw;
    position: relative;
    top: 13vw;
    text-align: center;
}

.studio-panel .studio-text .available img {
    width: 50%;
}

.studio-panel .studio-text .available p {
    text-align: center;
    font-size: 2vw;
    color: white;
    margin: 2vw 0;
    font-family: 'Honor';
}

.studio-panel .studio-text a img {
    transition: all 0.3s ease-in-out;
    width: 30%;
    background-color: white;
    padding: 7px 30px;
    border: 5px solid #1f0382;
    border-radius: 120px;
}

.studio-panel .studio-text a img:hover {
    transform: scale(1.1, 1.1);
}

#studio-guys {
    display: none;
}


/* SOURCING SOURCING SOURCING SOURCING
   QA QA QA QA QA QA QA QA QA QA QA QA 
--------------------------------------------- */

.sourcing-header {
    width: 100%;
    background: url(assets/sourcing-banner.jpg) no-repeat;
    background-size: 100%;
    background-position: center left;
    height: 50vw;
    box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1);
}

.sourcing-header img {
    display: none;
}

.sourcing-header .text {
    width: 35%;
    position: relative;
    top: 10vw;
    left: 4vw;
}

.sourcing-header .text h1 {
    color: white;
    font-size: 5vw;
    font-weight: 700;
    line-height: 1.6;
}

.sourcing-header .text p {
    font-size: 14px;
    line-height: 1.75;
    color: white;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: justify;
}

.qa-header {
    width: 100%;
    background: url(assets/quality-assurance-header.jpg) no-repeat;
    background-size: 100%;
    height: 50vw;
    background-position: center left;
}

.qa-header .text {
    width: 35%;
    position: relative;
    top: 10vw;
    left: 4vw;
}

.qa-header .text h1 {
    color: white;
    font-size: 3.9vw;
}

.qa-header .text p {
    color: white;
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
    margin: 1vw auto;
}

.qa-header img {
    display: none;
}

.branding-header {
    width: 100%;
    background: url(assets/packaging-banner.jpg) no-repeat;
    background-size: 100%;
    background-position: center left;
    height: 50vw;
    box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1);
}

.branding-header img {
    display: none;
}

.branding-header .text {
    width: 35%;
    position: relative;
    top: 12vw;
    left: 5vw;
}

.branding-header .text h1 {
    color: #3e3b38;
    font-size: 3vw;
    font-weight: 800;
}

.branding-header .text p {
    color: #202020;
    font-size: 14px;
    line-height: 1.75;
    margin: 1vw auto;
    text-align: justify;
}


/* =================================================== */

.sourcing-panel,
.qa-panel,
.branding-panel {
    display: flex;
    padding: 8vw 3vw;
    align-items: flex-end;
    /*! box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1); */
}

.sourcing-panel-b,
.qa-panel-b,
.branding-panel-b {
    flex-direction: row-reverse;
}

.sourcing-panel-b .image img {}

.sourcing-panel .image,
.qa-panel .image,
.branding-panel .image {
    width: 50%;
}

.sourcing-panel .image img,
.qa-panel .image img,
.branding-panel .image img {
    width: 80%;
    margin: auto;
    display: block;
    box-shadow: 1em 1em 1em rgba(0, 0, 0, 0.2);
}

.sourcing-panel .text-box,
.qa-panel .text-box,
.branding-panel .text-box {
    top: -5vw;
    position: relative;
    width: 50%;
}

.sourcing-panel .text-box .text,
.qa-panel .text-box .text,
.branding-panel .text-box .text {
    width: 80%;
    margin: auto;
}

.sourcing-panel .text-box .text img,
.qa-panel .text-box .text img,
.branding-panel .text-box .text img {
    width: 30%;
    margin-bottom: 1vw;
}

.sourcing-panel .text-box .text h3,
.qa-panel .text-box .text h3,
.branding-panel .text-box .text h3 {
    font-size: 3vw;
    font-weight: 900;
    line-height: 1;
}


/* .sourcing-panel .text-box .text .small,
.branding-panel .text-box .text .small,
.qa-panel .text-box .text .small {
    font-size: 4.5vw !important;
}

.sourcing-panel .text-box .text .medium,
.branding-panel .text-box .text .medium,
.qa-panel .text-box .text .medium {
    font-size: 5.4vw !important;
}

.sourcing-panel .text-box .text .large,
.branding-panel .text-box .text .large,
.qa-panel .text-box .text .large {
    font-size: 6vw !important;
} */

.sourcing-panel .text-box .text p,
.qa-panel .text-box .text p,
.branding-panel .text-box .text p {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
    margin-top: 1vw;
    padding-bottom: 2vw;
}

#bottom-panel {
    margin-bottom: 10vw;
    box-shadow: none;
}

.branding-panel .image #create-brand {
    box-shadow: none !important;
    width: 55% !important;
    position: relative;
    left: -3vw;
}


/* PRIVACY POLICY
--------------------------------------------- */

.privPolicyWrap {
    margin: 200px auto 200px 100px;
    width: 1000px;
}

.privPolicyWrap h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

.privPolicyWrap h2 {
    margin: 80px 0 20px 0;
    font-size: 34px;
}

.privPolicyWrap p,
.privPolicyWrap ul {
    margin-bottom: 20px;
    line-height: 1.5;
    list-style: circle;
}

.privPolicyWrap ul li {
    margin: 5px auto;
}


/* CONTACT CONTACT CONTACT CONTACT CONTACT
--------------------------------------------- */

.contact {
    width: 100%;
    padding: 9vw 0 3vw 0;
}

.contact h1 {
    font-size: 2.5vw;
    margin-left: 5.2vw;
    font-weight: 900;
}

.contact .contact-flex {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.contact .contact-flex .contact-blurb {
    width: 35%;
    margin: 0;
    position: relative;
    right: -1vw;
    top: -1vw;
}

.contact .contact-flex .contact-blurb p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.contact .contact-flex .contact-blurb .contact-info {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1vw;
    align-items: center;
    padding-left: 1vw;
}

.contact .contact-flex .contact-blurb .contact-info .address {
    padding-right: 4vw;
    border-right: 3px dotted #7b7b7b;
}

.contact .contact-flex .contact-blurb .contact-info .links {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: space-evenly;
    height: 8vw;
    padding-left: 3vw;
}

.contact .contact-flex .contact-blurb .contact-info .links a i {
    margin-right: 10px;
}

.contact .contact-flex .contact-blurb .contact-info .links a {
    color: #202020;
    margin-right: 1vw;
}

.contact .contact-flex .contact-blurb .contact-info .links .social-icons a {
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.contact .contact-flex .contact-blurb .contact-info .links .social-icons a:hover {
    opacity: 1;
}

#map {
    height: 620px;
    width: 54vw;
    margin: 0 0vw 0 0;
    border: 3px solid #202020;
    box-shadow: -7px 7px 1em rgb(0, 0, 0, .2);
    right: 0vw;
    top: -4.5vw;
}

#contact fieldset {
    border: none;
    width: 90%;
}

#contact fieldset input,
#contact fieldset textarea {
    width: 100%;
    padding: 7px 15px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 3px solid #202020;
    border-radius: 5px;
    background-color: #e0e0e2;
    color: #202020;
    font-size: 14px;
    font-family: 'Heebo', sans-serif;
    transition: all 0.3s ease-in-out;
}

#contact fieldset input::placeholder,
#contact fieldset textarea::placeholder {
    color: #202020;
    opacity: 1;
}

#contact fieldset input:focus,
#contact fieldset input:hover,
#contact fieldset textarea:focus,
#contact fieldset textarea:hover {
    background-color: #ececec;
    border-color: #7b7b7b;
}

#contact>fieldset:nth-child(5)>textarea:nth-child(1) {
    height: 130px;
}

#contact-submit {
    color: #202020;
    font-weight: 600;
    border: 3px solid #222;
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 14px;
    margin: 15px 0;
    transition: all 0.4s ease-in-out;
    font-family: 'Heebo';
    background-color: #e0e0e2;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

#contact-submit:hover {
    color: #e0e0e2;
    background-color: #202020;
}

.spare-parts {
    width: 30%;
    margin: 0 0 7vw 5vw;
}

.spare-parts h2 {
    font-size: 2vw;
    font-weight: 900;
}

.spare-parts p {
    font-size: 14px;
    line-height: 1.75;
}


/* MESSAGE SENT MESSAGE SENT MESSAGE SENT MESSAGE SENT
--------------------------------------------- */

.message-sent {
    width: 100%;
    padding-bottom: 10vw;
}

.message-sent img {
    width: 760px;
    margin: auto;
    display: block;
    padding-top: 10vh;
}

.message-sent p {
    text-align: center;
    font-size: 26px;
    width: 760px;
    margin: 0 auto 30px auto;
    font-weight: 400;
}

.message-sent a {
    text-align: center;
    margin: auto;
    display: block;
}

@media (max-width: 1300px) {
    .message-sent img {
        width: 60%;
    }
    .message-sent p {
        width: 50%;
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .message-sent img {
        padding-top: 3vh;
        width: 80%;
    }
    .message-sent p {
        width: 80%;
        font-size: 16px;
    }
}


/* MEDIA QUERIES MEDIA QUERIES MEDIA QUERIES
--------------------------------------------- */

@media all and (max-width: 1550px) {
    nav {
        padding: 15px 0 0 0;
    }
    .sourcing .sourcing-icons {
        justify-content: center;
        padding: 6vw 0 2vw 0;
    }
    .sourcing .sourcing-icons .icon-box {
        width: 20vw;
        margin: 0 8vw 3vw 8vw;
        font-size: 1.2vw;
    }
    .b-aktiv-cam-panel #cam-cf-image {
        top: 9vw;
    }
    .b-aktiv-cam-panel {
        background-size: 40% auto;
        background-position: 48.5vw 10vw;
    }
    .b-aktiv-cam-panel .blurb-box h2 {
        font-size: 2.1vw;
        line-height: 1;
    }
    .b-aktiv-watch-panel .blurb-box h2 {
        font-size: 1.575vw;
        line-height: 1;
    }
    .b-aktiv-watch-panel {
        background-size: 41% auto;
        background-position: 12vw 8vw;
    }
    .b-aktiv-cam-panel .blurb-box,
    .b-aktiv-watch-panel .blurb-box {
        width: 40%;
        position: relative;
    }
    .contact .contact-flex .contact-blurb .contact-info .address {
        padding-right: 2vw;
        border-right: 3px dotted #7b7b7b;
    }
    .contact .contact-flex .contact-blurb .contact-info .links {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        justify-content: space-evenly;
        height: 8vw;
        padding-left: 2vw;
    }
}

@media (max-width:1500px) {
    .button {
        padding: 10px;
        font-size: 14px;

    }
    .home-header .header-txt p {
        font-size: 1.2vw;
    }
    .brands .brand-links a h5 {
        font-size: 1vw;
        top: -4vw;
    }
    .brands .txt p {
        font-size: 1vw;
    }
    .sourcing .sourcing-icons {
        justify-content: center;
        padding: 6vw 0 4vw 0;
    }
    .sourcing .sourcing-icons .icon-box {
        width: 21vw;
        margin: 0 8vw 3vw 8vw;
        font-size: 1.2vw;
    }
    .sourcing .sourcing-icons .icon-box p {
        font-size: 1.1vw;
    }
    .packaging .text-n-button p {
        font-size: 1.2vw;
        margin: 1vw 0 3vw 0;
        line-height: 1.5;
    }
    .quality .text-n-button p {
        font-size: 1.2vw;
    }
    .cosmos-panel-1 .blurb-box,
    .cosmos-panel-2 .blurb-box {
        width: 40%;
    }
    .prizmTMT .flex .tmt {
        width: 19vw;
        margin: 0 4vw;
    }
    .koti-security-panel .blurb-box {
        width: 35%;
        position: relative;
        left: 3vw;
        top: 7vw;
    }
    .koti-security-panel .blurb-box h2 {
        font-size: 1.7vw;
        line-height: 1;
    }
    .koti-security-panel #koti-cf-image {
        width: 40%;
        top: 4vw;
    }
}

@media all and (max-width: 1400px) {
    #logo {
        width: 250px;
    }
    .entity-header .text {
        width: 33%;
    }
    .entity-header .text p {
        font-size: 1.25vw;
    }
    .prizmAccessories .infoPanel .text p {
        font-size: 1vw;
        line-height: 1.8;
    }
    .prizmTMT .flex .tmt {
        width: 19vw;
        margin: 0 4vw;
    }
    .prizmTMT .flex .tmt h3 {
        font-size: 20px;
    }
    .cosmos-header {
        background-size: 80%, 107%;
        background-position: 35vw -3vw, top center;
        height: 44.75vw;
    }
    .cosmos-header .flexContainer .logoNtxt {
        width: 48%;
    }
    .audial-anc-panel .blurb-box {
        width: 35%;
    }
    .audial-anc-panel .blurb-box h2 {
        font-size: 1.69vw;
    }
    .audial-earbuds-panel .blurb-box {
        width: 35%;
        top: 6vw;
    }
    .audial-anc-panel .blurb-box .icon-box .icon h5 {
        font-size: 0.8vw;
    }
    .audial-earbuds-panel .blurb-box .icon-box .icon h5 {
        font-size: 0.8vw;
    }
    .audial-earbuds-panel .blurb-box h2 {
        font-size: 2.15vw;
    }
    .sourcing-panel .text-box,
    .qa-panel .text-box,
    .branding-panel .text-box {
        top: -3vw;
    }
}

@media all and (max-width: 1300px) {
    nav {
        margin: 0;
        padding: 1vw 0 0 0;
    }
    .home-nav {
        margin: 0;
        padding: 10px 0 0px 0;
    }
    nav a {
        color: #bdbdbd;
        font-size: 16px;
        padding-left: 30px;
        font-weight: 400;
        line-height: 35px;
    }
    nav a:hover {
        color: white;
    }
    .smallnavbar a {
        font-size: 16px;
    }
    nav ul {
        float: none;
        max-height: 0;
        clear: both;
        overflow-y: hidden;
        margin: 0;
    }
    #logo {
        width: 250px;
    }
    #logo-home {
        width: 250px;
        margin: 0 0 15px 15px;
    }
    nav .toggle-1 {
        position: relative;
        padding: 15px 20px 0 0;
        float: right;
        right: 10px;
        width: 22px;
        height: 22px;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }
    #main-toggle {
        display: block;
        position: relative;
        float: right;
        right: 10px;
        top: 5px;
        cursor: pointer;
    }
    #main-toggle-small {
        display: block;
        position: relative;
        padding: 5px;
        float: right;
        right: 25px;
        top: 6px;
        cursor: pointer;
    }
    nav .toggle-1 .nav-icon,
    nav .toggle-3 .nav-icon {
        display: block;
        position: relative;
        background: #202020;
        height: 2px;
        width: 20px;
        border-radius: 3px;
        transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
    }
    nav .toggle-1 .nav-icon-white,
    nav .toggle-3 .nav-icon-white,
    nav .toggle-1 .nav-icon-white::before,
    nav .toggle-3 .nav-icon-white::before,
    nav .toggle-1 .nav-icon-white::after,
    nav .toggle-3 .nav-icon-white::after {
        background: white !important;
    }
    nav .toggle-1 .nav-icon::before,
    nav .toggle-3 .nav-icon::before {
        content: "";
        position: absolute;
        display: block;
        background: #202020;
        height: 100%;
        width: 100%;
        border-radius: inherit;
        top: -6px;
    }
    nav .toggle-1 .nav-icon::after,
    nav .toggle-3 .nav-icon::after {
        content: "";
        position: absolute;
        display: block;
        background: #202020;
        height: 100%;
        width: 100%;
        border-radius: inherit;
        top: 6px;
    }
    nav .toggle-3 .nav-icon,
    nav .toggle-3 .nav-icon::before,
    nav .toggle-3 .nav-icon::after {
        background: #e0e0e2 !important;
    }
    #drop:checked,
    #drop-2:checked {
        background: transparent;
    }
    /* #drop:checked~nav .toggle-1 .nav-icon::before,
    #drop-2:checked~nav .toggle-3 .nav-icon::before {
        transform: rotate(-45deg);
        top: 0;
    }
    #drop:checked~nav .toggle-1 .nav-icon::after,
    #drop-2:checked~nav .toggle-3 .nav-icon::after {
        transform: rotate(45deg);
        top: 0;
    } */
    nav .menu .toggle-2 {
        display: block;
        padding: 0 0 0 30px;
        color: #bdbdbd;
        font-size: 16px;
        font-weight: 400;
        line-height: 35px;
        text-decoration: none;
        transition: color 0.4s ease;
        cursor: pointer;
    }
    .toggle-2+a,
    .toggle-4+a {
        display: none;
    }
    nav .menu .toggle-2:hover {
        color: white;
    }
    nav.menu,
    #drop:checked~ul,
    #drop-2:checked~ul {
        display: block;
        max-height: 700px;
        width: 200px;
        float: right;
        position: relative;
        right: 25px;
    }
    #drop-1:checked~ul,
    #drop-3:checked~ul {
        display: block;
        max-height: 400px;
        width: 200px;
    }
    [id^=drop-2]:checked~ul {
        display: block;
        max-height: 700px;
        position: fixed;
        width: 20px;
        top: 8px;
    }
    .smallnavbar ul li .toggle-4 {
        display: block;
        padding: 0 0 0 30px;
        color: #bdbdbd;
        font-size: 16px;
        font-weight: 400;
        line-height: 35px;
        text-decoration: none;
        transition: color 0.4s ease;
        cursor: pointer;
    }
    .smallnavbar ul li .toggle-4:hover {
        color: white;
    }
    nav ul {
        width: 200px;
        float: right;
        position: relative;
        right: 25px;
    }
    nav ul li {
        display: block;
        width: 100%;
        background: #202020;
        border-bottom: solid 1px black;
    }
    nav ul ul {
        float: none;
        position: static;
        color: #bdbdbd;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow-y: hidden;
        transition: all 0.4s ease-in-out;
    }
    nav ul ul a {
        background-color: #2d2d2d;
        padding: 0 30px;
        font-size: 16px;
    }
    .smallnavbar ul ul a {
        background-color: #2d2d2d;
        padding: 0 30px;
        font-size: 16px;
    }
    nav ul li ul li a {
        color: #939393;
        line-height: 35px !important;
    }
    .smallnavbar ul li ul li a {
        color: #939393;
        line-height: 35px !important;
    }
    nav ul ul .sub-koti {
        border-bottom: none !important;
    }
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }
    nav ul ul li {
        display: block;
        width: 100%;
    }
    #no-border-bottom {
        border-bottom: none !important;
    }
    #drop,
    #drop-1,
    #drop-2,
    #drop-3 {
        display: none;
    }
    .brands .txt p {
        font-size: 1.2vw;
    }
    .brands .txt {
        width: 70%;
    }
    .brands .brand-links {
        width: 70%;
    }
    .brands .brand-links a {
        width: 14vw;
    }
    .sourcing .sourcing-homepage .text-n-button {
        width: 37%;
    }
    .sourcing .sourcing-homepage .text-n-button h2 {
        font-size: 3.5vw;
        line-height: 1.2;
        margin-bottom: 2vw;
        font-weight: 800;
    }
    .divider-2 {
        top: 129vw;
    }
    .android-panel-1 .panel-1-container {
        top: 8vw;
    }
    .android-panel-2 .panel-2-container {
        top: 0vw;
    }
    .cosmos-header {
        padding-top: 0;
        background-position: 35vw -5vw, top center;
    }
    .cosmos-header .subFlex img {
        height: 60px;
    }
    #qc {
        height: 60px;
        box-shadow: 0 0 1em 0.1em red;
    }
    .cosmos-panel-1 .blurb-box {
        left: 10vw;
        top: 13vw;
    }
    .cosmos-panel-2 .blurb-box {
        left: -11vw;
    }
    .cosmos-panel-1 .blurb-box p,
    .cosmos-panel-2 .blurb-box p {
        font-size: 12px;
    }
    .cosmos-panel-1 .blurb-box h2,
    .cosmos-panel-2 .blurb-box h2 {
        font-size: 2vw;
        line-height: 1;
    }
    .cosmos-panel-1 .panel-1-container .cosmos-image,
    .cosmos-panel-2 .panel-2-container .cosmos-image {
        width: 30%;
    }
    .prizm-header {
        height: 59vw;
    }
    .prizmSubHead .tNlContainer #txtNlogo {
        width: 70%;
    }
    .prizmSubHead .tNlContainer #txtNlogo img {
        width: 40%;
    }
    .prizmSubHead .tNlContainer #txtNlogo p {
        font-size: 1.15vw;
        line-height: 1.75;
        text-align: justify;
    }
    .prizmAccessories .infoPanel .text {
        margin: 4vw 0 0 4vw;
    }
    .prizmAccessories .infoPanel .text p {
        font-size: 1.1vw;
    }
    .prizmTMT .flex .tmt {
        width: 22vw;
        margin: 0 4vw;
    }
    .prizmFurniture {
        padding-top: 4vw;
        margin-bottom: 4vw;
        padding-bottom: 5vw;
    }
    .prizmFurniture .logoNtxt {
        width: 50vw;
        margin-bottom: 2vw;
    }
    .prizmFurniture .logoNtxt img {
        width: 25%;
    }
    .prizmFurniture .logoNtxt h1 {
        font-size: 2.75vw;
    }
    .prizmFurniture .logoNtxt p {
        font-size: 14px;
    }
    .prizmFurniture .furnitureFlex .cfContainer {
        width: 27%;
    }
    .prizmLifestyle {
        padding-top: 5vw;
        /* background-image: url(assets/prizmbg2.png);
        background-size: 40%;
        background-repeat: no-repeat;
        background-position: bottom center; */
    }
    .prizmLifestyle .infoPanel {
        width: 50%;
    }
    .prizmLifestyle .infoPanel .text p {
        font-size: 1.2vw;
    }
    #tTableLabel,
    #greyLabel {
        bottom: 2vw;
    }
    #zTableLabel,
    #blackLabel {
        bottom: 2vw;
    }
    .audial-header .text-box {
        top: 15vw;
    }
    .audial-header .text-box p {
        font-size: 1.3vw;
        line-height: 1.5;
    }
    .b-aktiv-header .text {
        width: 37%;
        left: 2vw;
    }
    .b-aktiv-header .text img {
        width: 60%;
    }
    .b-aktiv-cam-panel {
        background-position: 50.5vw 10vw;
    }
    .b-aktiv-cam-panel .blurb-box p,
    .b-aktiv-watch-panel .blurb-box p {
        font-size: 12px;
    }
    .b-aktiv-cam-panel #cam-cf-image {
        right: 2vw;
    }
    .b-aktiv-cam-panel .blurb-box {
        right: 1vw;
    }
    .koti-security-panel {
        background-size: 90% auto;
        background-position: 5vw 45vw;
        display: block;
        height: initial;
        padding: 10vw 0;
    }
    .koti-security-panel .blurb-box {
        width: 60%;
        position: relative;
        left: 0;
        top: 0;
        margin: auto;
    }
    .koti-security-panel .blurb-box h2 {
        font-size: 2.95vw;
        line-height: 1;
        text-align: center;
    }
    .koti-security-panel .blurb-box p {
        font-size: 14px;
        line-height: 2;
        margin: 2vw 0;
        text-align: center;
    }
    .koti-security-panel .blurb-box .icon-box {
        width: 110%;
        left: -2vw;
    }
    .koti-security-panel #koti-cf-image {
        width: 60%;
        top: 0;
        margin: 7vw auto 0 auto;
    }
    .koti-security-panel #koti-cf-image img {
        position: initial;
    }
    .sourcing-header .text {
        width: 40%;
    }
    .branding-panel .image #create-brand {
        width: 65% !important;
    }
    .sourcing-panel .text-box .text p,
    .qa-panel .text-box .text p,
    .branding-panel .text-box .text p {
        font-size: 14px;
        text-align: justify;
    }
    .sourcing-panel .text-box,
    .qa-panel .text-box,
    .branding-panel .text-box {
        top: -4vw;
    }
    #map {
        height: 620px;
        width: 47vw;
        margin: 0 0vw 0 0;
        border: 3px solid #202020;
        box-shadow: -7px 7px 1em rgb(0, 0, 0, .2);
        right: 0vw;
        top: -4.5vw;
    }
    .contact .contact-flex .contact-blurb {
        width: 40%;
        margin: 0;
        position: relative;
        right: 1vw;
        top: -1vw;
    }
    .contact h1 {
        font-size: 2.5vw;
        margin-left: 3.2vw;
        font-weight: 900;
    }
    #contact fieldset {
        border: none;
        width: 100%;
    }
    .spare-parts {
        width: 40%;
        margin: 0 0 7vw 4vw;
    }
    .privPolicyWrap {
        margin: 130px auto 150px auto;
        width: 85vw;
    }
    .privPolicyWrap h1 {
        font-size: 4.5vw;
        margin-bottom: 4vw;
    }
    .privPolicyWrap h2 {
        margin: 7vw 0 20px 0;
        font-size: 32px;
    }
}

@media (min-width: 1300px) {
    .toggle-1,
    .toggle-2,
    .toggle-4,
    #drop,
    #drop-1,
    #drop-2,
    #drop-3 {
        display: none;
    }
}

@media (max-width: 1150px) {
    .brands .brand-links a {
        width: 16vw;
        margin: 0 2vw -4vw 2vw;
        opacity: 1;
    }
    .brands .brand-links a h5 {
        visibility: visible;
        opacity: 1;
        font-size: 12px;
    }
    .brands .txt p {
        font-size: 14px;
    }
    .brands .txt h3 {
        font-size: 2.5vw;
    }
    .prizmTMT .flex .tmt {
        width: 24vw;
        margin: 0 4vw;
    }
    .cosmos-header {
        background-size: 75%, 107%;
        background-position: 40vw -3vw, top center;
        height: 47.75vw;
    }
    .cosmos-header .flexContainer .logoNtxt {
        width: 60%;
    }
    .cosmos-header .subFlex {
        width: 46%;
    }
    .cosmos-panel-1 .blurb-box {
        top: 11vw;
    }
    .cosmos-panel-1 .blurb-box .icon-box .icon h5,
    .cosmos-panel-2 .blurb-box .icon-box .icon h5 {
        font-size: 10px;
    }
    .audial-anc-panel .blurb-box {
        width: 40%;
        top: 12vw;
    }
    .audial-anc-panel .blurb-box h2 {
        font-size: 1.95vw;
    }
    .audial-earbuds-panel .blurb-box {
        width: 40%;
        top: 6vw;
    }
    .audial-earbuds-panel .blurb-box h2 {
        font-size: 2.45vw;
    }
    .audial-anc-panel .blurb-box .icon-box .icon h5 {
        font-size: 11px;
    }
    .audial-earbuds-panel .blurb-box .icon-box .icon h5 {
        font-size: 11px;
    }
    .b-aktiv-header .text p {
        line-height: 1.3;
    }
    .b-aktiv-watch-panel {
        margin-top: 8vw;
    }
    .b-aktiv-available .info {
        width: 40%;
        left: 3vw;
        top: 14.5vw;
    }
    .b-aktiv-header .text img {
        width: 65%;
    }
    .sourcing-header {
        height: 50vw;
    }
    .sourcing-panel .text-box .text,
    .qa-panel .text-box .text,
    .branding-panel .text-box .text {
        width: 90%;
        margin: auto;
    }
    .sourcing-panel .text-box,
    .qa-panel .text-box,
    .branding-panel .text-box {
        top: -3vw;
    }
    .sourcing-panel .image,
    .qa-panel .image,
    .branding-panel .image {
        width: 50%;
        position: relative;
        right: -2vw;
    }
    .sourcing-panel-b .image,
    .qa-panel-b .image,
    .branding-panel-b .image {
        right: 2vw;
    }
    #map {
        height: 570px;
        width: 47vw;
        margin: 0 0vw 0 0;
        border: 3px solid #202020;
        box-shadow: -7px 7px 1em rgb(0, 0, 0, .2);
        right: 0vw;
        top: -4.5vw;
    }
}

@media (max-width: 1050px) {
    #logo {
        float: left;
        width: 200px;
        margin: 8px 0 10px 16px;
    }
    .button {
        padding: 10px;
        font-size: 12px;
        border: 2px solid #202020;

    }
    .home-header img {
        right: 1vw;
        top: 8vw;
        width: 45%;
    }
    .home-header .header-txt {
        width: 47%;
        top: 11vw;
        left: 5vw;
    }
    .home-header .header-txt h1 {
        font-size: 3vw;
    }
    .home-header .header-txt p {
        font-size: 14px;
    }
    #brandsLogo {
        width: 12%;
    }
    .brands .brand-links {
        margin: 0vw auto 0vw auto;
        width: 80%;
    }
    .brands .brand-links a {
        margin: 0 1vw -2vw 1vw;
        width: 20vw;
    }
    .brands .brand-links a h5 {
        font-size: 12px;
        color: #202020;
        visibility: visible;
        opacity: 1;
        text-align: center;
        position: relative;
        font-weight: 500;
        transform: none;
        transition: none;
    }
    .brands .txt {
        width: 75%;
        margin: 4vw auto 0 auto;
    }
    .brands .txt h3 {
        font-size: 4vw;
    }
    .brands .txt p {
        font-size: 14px;
        text-align: justify;
    }
    .sourcing .sourcing-homepage .text-n-button {
        width: 40%;
        position: relative;
        top: 4vw;
    }
    .sourcing .sourcing-homepage .text-n-button h2 {
        font-size: 4vw;
    }
    .sourcing .sourcing-icons .icon-box {
        width: 25vw;
        margin: 0 8vw 6vw 8vw;
        font-size: 1.2vw;
    }
    .sourcing .sourcing-icons .icon-box h4 {
        font-size: 16px;
    }
    .sourcing .sourcing-icons .icon-box p {
        font-size: 12px;
        text-align: center;
    }
    #concept {
        width: 4.15vw;
    }
    #develop {
        width: 5.75vw;
        position: relative;
    }
    .packaging .text-n-button {
        width: 35%;
        left: 54vw;
    }
    #procure {
        width: 6vw;
    }
    #deliver {
        width: 5.5vw;
    }
    .packaging .text-n-button h2 {
        font-size: 3.5vw;
    }
    .packaging .text-n-button p {
        font-size: 14px;
        line-height: 1.5;
    }
    .quality {
        height: 34vw;
        background-position: bottom right;
    }
    .quality .text-n-button {
        width: 40vw;
        right: -7vw;
        top: -8vw;
    }
    .quality .text-n-button h2 {
        font-size: 3vw;
    }
    .quality .text-n-button p {
        font-size: 14px;
        text-align: justify;
    }
    .entity-header {
        padding-top: 4vw !important;
        background-image: url(assets/entity-header.png), url(assets/coffee-bg.png);
        background-repeat: no-repeat, no-repeat;
        height: 65vw;
        background-size: 75%, cover;
        background-position: 9vw 25vw, top left;
    }
    .entity-header .text {
        width: 60%;
        top: -19vw;
        right: -6vw;
    }
    .entity-header .text p {
        font-size: 1.75vw;
    }
    .entity-header .text img {
        width: 100%;
    }
    .divider-1 {
        position: absolute;
        z-index: -10;
        top: 69vw;
        width: 33vw;
        left: 34vw;
        margin-bottom: 0;
        margin-top: 0vw;
        display: block;
        /*! transform: rotate(-14deg); */
    }
    #windows {
        margin: 0 0 15px 0;
        height: initial;
    }
    .windows-panel-1 {
        width: 100%;
        /* background: url(assets/entity-bg-outline.png) no-repeat;
        background-position: -3vw 4vw;
        background-size: 42vw; */
        /* box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.2); */
        margin: 0;
        padding-top: 1.5vw;
        height: 36.5vw;
        overflow-y: initial;
    }
    .windows-panel-1 .panel-1-container {
        width: 45%;
        right: 12vw;
        top: 12vw;
    }
    #windows-panel-1-image {
        left: -10vw;
        width: 70%;
        position: absolute;
        top: 75vw;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .logo {
        width: 70%;
        margin-bottom: 10px;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .txt {
        width: 100%;
        align-self: flex-start;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 {
        left: 0;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 h2 {
        font-size: 20px;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 img {
        width: 18%;
    }
    .windows-panel-2 .blurbs-box .blurb {
        width: 16vw;
    }
    .windows-panel-2 {
        background-size: 57% auto;
        padding-bottom: 19vw;
        margin: 10vw 0;
    }
    .windows-panel-2 .panel-2-container {
        float: left;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        left: 0vw;
        top: 1vw;
        width: 45%;
        padding: 2vw 0 2vw 3vw;
        /* background: #ececec; */
    }
    .windows-panel-2 h2 {
        font-size: 3vw;
        font-weight: 900;
    }
    .windows-panel-2 h3 {
        font-size: 2.25vw;
    }
    .windows-panel-2 .blurbs-box .blurb .txt ul {
        list-style: none;
        font-size: 14px;
        font-weight: 400;
        margin-top: 1vw;
        padding-left: 2.5vw;
    }
    .windows-panel-2 .panel-2-container .blurb-box .blurb .logo img {
        width: 80%;
    }
    .divider-2 {
        top: 165vw;
        width: 33vw;
        left: 33vw;
    }
    .android-panel-1 {
        background-position: -14vw -8vw;
        background-size: 54% auto;
        padding-bottom: 4vw;
    }
    .android-panel-1 .panel-1-container {
        top: 7vw;
        left: 44vw;
        width: 40%;
    }
    .android-panel-1 .panel-1-container .blurb-box .blurb-2 h2 {
        font-size: 20px;
        line-height: 1;
        font-weight: 800;
        margin-right: 2vw;
    }
    .android-panel-2 {
        background-position: 48vw -5vw;
        background-size: 60% auto;
        margin: 7vw 0 5vw 0;
    }
    .android-panel-2 .panel-2-container {
        position: relative;
        width: 45%;
        left: 4vw;
        top: 2vw;
    }
    .android-panel-2 .panel-2-container .blurb-box .blurb {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 37%;
        height: 13vw;
        margin: 0 1vw;
        justify-content: center;
        background: rgb(255, 255, 255, 0.4);
        border-radius: 10px;
        box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.1);
    }
    .android-panel-2 .panel-2-container .blurb-box .blurb p {
        font-size: 12px;
        text-align: center;
        font-weight: 500;
        margin: 0.3vw 0;
    }
    .android-panel-2 .panel-2-container .cpu-options {
        width: 100%;
        position: relative;
        text-align: center;
        margin-bottom: 2vw;
    }
    .android-panel-2 .panel-2-container .cpu-options h2 {
        font-size: 3vw;
        margin-bottom: 1vw;
        font-weight: 900;
    }
    .android-panel-2 .panel-2-container .cpu-options h3 {
        font-size: 2.4vw;
    }
    .divider-3 {
        position: absolute;
        width: 70vw;
        left: 15vw;
        /*! transform: rotate(-14deg); */
        top: 274vw;
        /*! opacity: 1; */
        /*! display: none; */
    }
    .jd-williams-panel {
        height: initial;
    }
    .jd-williams-panel .jdwilliams-text {
        position: initial;
        width: 40%;
        margin: auto;
        padding: 12vw 0 1vw 0;
        float: unset;
    }
    .jd-williams-panel .jdwilliams-text .available {
        margin-bottom: 3vw;
    }
    .jd-williams-panel .jdwilliams-text .available p {
        font-size: 2.5vw;
    }
    #jd-img-mob {
        display: block;
        width: 60%;
        margin: auto;
        left: -3vw;
        top: 0vw;
    }
    .cosmos-header {
        background-position: 44vw -2vw, top center;
        height: 51.75vw;
    }
    .cosmos-header .flexContainer .logoNtxt {
        width: 60%;
        top: 3vw;
    }
    .cosmos-header .flexContainer .logoNtxt h1 {
        font-size: 2.75vw;
    }
    .cosmos-header .flexContainer .logoNtxt p {
        font-size: 12px;
    }
    .cosmos-header .subFlex {
        width: 65%;
        top: 5vw;
    }
    .cosmos-header .subFlex img {
        height: 50px;
    }
    #qc {
        height: 50px;
        box-shadow: 0 0 1em 0.1em red;
    }
    div.cosmos-panel-1:nth-child(5) {
        margin-top: 3vw;
    }
    .cosmos-panel-1 .panel-1-container {
        height: initial;
    }
    .cosmos-panel-1 .blurb-box,
    .cosmos-panel-2 .blurb-box {
        width: 49%;
    }
    .cosmos-panel-1 .blurb-box {
        top: 7vw;
        left: 6vw;
    }
    .cosmos-panel-2 .blurb-box {
        left: -5vw;
        top: 11vw;
    }
    .cosmos-panel-1 .panel-1-container .cosmos-image,
    .cosmos-panel-2 .panel-2-container .cosmos-image {
        width: 35%;
    }
    .cosmos-panel-1 .panel-1-container .cosmos-image {
        top: 3vw;
        left: -3.4vw;
    }
    .cosmos-panel-2 .panel-2-container .cosmos-image {
        left: 4vw;
    }
    .cosmos-panel-1 .panel-1-container .cosmos-image img,
    .cosmos-panel-2 .panel-2-container .cosmos-image img {
        box-shadow: none
    }
    .cosmos-panel-1 .blurb-box h2,
    .cosmos-panel-2 .blurb-box h2 {
        font-size: 2.5vw;
        line-height: 1;
    }
    .cosmos-panel-1 .blurb-box .icon-box .icon img,
    .cosmos-panel-2 .blurb-box .icon-box .icon img {
        width: 45%;
    }
    .cosmos-panel-1 .blurb-box .colours img,
    .cosmos-panel-2 .blurb-box .colours img {
        width: 2vw;
        height: 2vw;
    }
    .koti-security-panel {
        background-position: 5vw 51vw;
    }
    .koti-security-panel .blurb-box {
        width: 75%;
    }
    .koti-security-panel .blurb-box p {
        font-size: 14px;
        margin: 4vw 0;
    }
    .koti-security-panel .blurb-box h2 {
        font-size: 3.7vw;
    }
    .contact h1 {
        font-size: 5vw;
        width: 80%;
        margin: auto;
    }
    .contact .contact-flex {
        display: initial;
    }
    .contact .contact-flex .contact-blurb {
        width: 80%;
        margin: 0 auto 7vw auto;
    }
    #contact fieldset {
        border: none;
        width: 100%;
    }
    .contact .contact-flex .contact-blurb p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }
    .contact .contact-flex .contact-blurb .contact-info {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 5vw;
        align-items: center;
        margin-top: 3vw;
    }
    .contact .contact-flex .contact-blurb .contact-info .address {
        padding-right: 8vw;
        border-right: 3px dotted #7b7b7b;
    }
    .contact .contact-flex .contact-blurb .contact-info .links {
        font-size: 18px;
        height: 17vw;
        padding-left: 8vw;
    }
    #map {
        width: 80%;
        margin: auto;
    }
    .spare-parts {
        width: 80%;
        margin: 80px auto;
    }
    .spare-parts h2 {
        font-size: 6vw;
        font-weight: 900;
    }
    .spare-parts p {
        font-size: 16px;
        line-height: 1.75;
        margin: 3vw auto;
    }
    .prizmSubHead {
        padding: 10vw 5vw 2vw 5vw !important;
    }
    .prizmSubHead .tNlContainer #txtNlogo {
        width: 75%;
        margin-bottom: 0vw;
        top: -3vw;
    }
    .prizmSubHead .tNlContainer #txtNlogo img {
        width: 45%;
    }
    .prizmSubHead .tNlContainer #txtNlogo p {
        font-size: 1.5vw;
    }
    #peripherals {
        top: -3vw;
    }
    #prizmPhones {
        width: 30%;
    }
    #prizmKeyboard {
        width: 35%;
    }
    #prizmMouse {
        width: 36%;
    }
    #mixedBag {
        bottom: 5vw;
    }
    .prizmAccessories .panel {
        height: 50vw;
    }
    .prizmAccessories .cfAnimation {
        width: 40%;
        height: 40vw;
        top: 5vw;
    }
    .prizmAccessories .infoPanel {
        width: 50%;
    }
    .prizmAccessories .panel .logoHead {
        width: 60%;
        margin: 6vw 0 0 6vw;
    }
    .prizmAccessories .panel .logoHead h1 {
        font-size: 3vw;
    }
    .prizmAccessories .infoPanel .text {
        width: 80%;
        margin: 4vw 0 0 6vw;
    }
    .prizmAccessories .infoPanel .text p {
        font-size: 1.5vw;
    }
    #bigMouse {
        top: 0 !important;
    }
    #bigPhones {
        top: 0;
        width: 100%;
    }
    .prizmTMT {
        padding: 10vw 0 12vw 0;
    }
    .prizmTMT .logoHead {
        width: 40vw;
        position: relative;
        top: -2vw;
    }
    .prizmTMT .logoHead h1 {
        margin: 1vw;
        font-size: 2.8vw;
    }
    .prizmTMT .flex .tmt {
        width: 23vw;
        margin: 0 4vw;
    }
    .prizmTMT .flex .tmt h3 {
        font-size: 18px;
        margin: -30px 0 5px 0 !important;
    }
    #prizscision h3,
    #prizound h3 {
        margin: 10px 0 5px 0 !important;
    }
    .prizmTMT .flex .tmt p {
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
    }
    #prizmGlo img {
        position: relative;
        top: -1.5vw;
    }
    .prizmFurniture {
        height: initial;
        margin-bottom: 10vw;
        padding-bottom: 15vw;
        background-position: top center;
    }
    .prizmFurniture .logoNtxt {
        width: 70vw;
    }
    .prizmFurniture .logoNtxt h1 {
        font-size: 3.75vw;
    }
    .prizmFurniture .furnitureFlex .cfContainer {
        width: 35%;
    }
    #tTableLabel,
    #greyLabel {
        bottom: -6vw;
    }
    #zTableLabel,
    #blackLabel {
        bottom: -6vw;
    }
    .prizmLifestyle {
        padding-top: 0;
        padding-bottom: 10vw;
    }
    .prizmLifestyle .img {
        width: 30%;
        position: relative;
        left: 3vw;
        top: 4vw;
    }
    .prizmLifestyle .panel .logoHead {
        width: 32vw;
        margin: 2vw auto 0 auto;
    }
    .prizmLifestyle .panel .logoHead h1 {
        font-size: 4vw;
    }
    .prizmLifestyle .panel .logoHead img {
        width: 60%;
    }
    .prizmLifestyle .infoPanel .text p {
        font-size: 14px;
        line-height: 1.5;
    }
    .prizmLifestyle .infoPanel {
        width: 60%;
        position: relative;
        left: 3vw;
        top: 2vw;
    }
    .prizmLifestyle .infoPanel .text {
        width: 75%;
        margin: 1vw auto 2vw auto;
    }
    .audial-header .text-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    .b-aktiv-header {
        height: 60vw;
    }
    .b-aktiv-header .text {
        width: 42%;
        top: 10vw;
    }
    .branding-header .text {
        width: 40%;
        position: relative;
        top: 9vw;
        left: 4vw;
    }
    .branding-header .text h1 {
        color: #3e3b38;
        font-size: 4.45vw;
        font-weight: 800;
    }
}

@media (max-width: 900px) {
    .prizmTMT .flex .tmt {
        width: 25vw;
        margin: 0 3vw;
    }
    .prizmTMT .flex .tmt p {
        text-align: center;
        font-size: 12px;
        line-height: 1.75;
    }
    .prizmSubHead span,
    .prizmAccessories span,
    .prizmTMT span {
        font-size: 10px;
        font-family: 'roboto';
        vertical-align: super;
    }
    .audial-anc-panel .blurb-box {
        width: 45%;
        top: 12vw;
    }
    .audial-anc-panel .blurb-box h2 {
        font-size: 2.2vw;
    }
    .audial-earbuds-panel .blurb-box {
        width: 45%;
        top: 6vw;
    }
    .audial-earbuds-panel .blurb-box h2 {
        font-size: 2.75vw;
    }
    .audial-anc-panel .blurb-box p {
        line-height: 1.5;
    }
    .audial-anc-panel .blurb-box .icon-box .icon {
        width: 20%;
    }
    .audial-earbuds-panel #earbuds-cf-image {
        top: -5vw;
    }
    .audial-anc-panel {
        padding-bottom: 6vw;
        margin-bottom: 12vw;
    }
    .audial-earbuds-panel {
        padding-bottom: 3vw;
    }
    .audial-anc-panel .images {
        top: 4vw;
    }
    .sourcing-header .text {
        width: 45%;
    }
    .sourcing-panel .text-box .text,
    .qa-panel .text-box .text,
    .branding-panel .text-box .text {
        width: 100%;
        margin: auto;
    }
    .sourcing-panel .text-box,
    .qa-panel .text-box,
    .branding-panel .text-box {
        top: -1vw;
        left: 1vw;
    }
    .sourcing-panel .image,
    .qa-panel .image,
    .branding-panel .image {
        right: -3vw;
    }
    .sourcing-panel-b .image,
    .qa-panel-b .image,
    .branding-panel-b .image {
        right: 3vw;
    }
}

@media (max-width: 850px) {
    #logo-home {
        width: 200px;
        margin: 0 0 15px 15px;
    }
    .home-header {
        height: 69vw;
        box-shadow: none;
        background-size: 100% 80%;
    }
    .home-header .header-txt {
        width: 80%;
        top: 57vw;
        left: 10vw;
    }
    .home-header .header-txt h1 {
        font-size: 4.5vw;
    }
    .home-header .header-txt p {
        line-height: 1.8;
    }
    .home-header img {
        right: 21vw;
        width: 60%;
    }
    .brands {
        padding: 22vw 0 10vw 0;
        background-size: auto 70%, auto 70%;
    }
    #brandsLogo {
        width: 13%;
    }
    .brands .brand-links {
        margin: 2vw auto 0vw auto;
    }
    .brands .txt h3 {
        font-size: 5vw;
        margin-bottom: 2vw;
    }
    .sourcing .sourcing-homepage .text-n-button {
        width: 42%;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .txt p {
        font-size: 1.7vw;
    }
    .audial-anc-panel .blurb-box {
        width: 50%;
        top: 12vw;
        left: 2vw;
    }
    .audial-anc-panel .blurb-box h2 {
        font-size: 2.4vw;
    }
    .audial-anc-panel .blurb-box .icon-box .icon h5 {
        font-size: 10px;
    }
    .audial-earbuds-panel .blurb-box {
        width: 50%;
        top: 1vw;
        left: -6vw;
    }
    .audial-earbuds-panel .blurb-box h2 {
        font-size: 3.1vw;
    }
    .audial-anc-panel .blurb-box p {
        font-size: 14px;
        line-height: 1.5;
        margin: 1vw 0;
        text-align: justify;
    }
    .audial-anc-panel .images {
        width: 35%;
        position: relative;
        top: 9vw;
    }
    .audial-anc-panel .blurb-box .icon-box .icon {
        width: 22%;
    }
    .audial-anc-panel .blurb-box .icon-box .icon h5 {
        font-size: 10px;
        margin: 1vw 0 0.5vw 0;
        line-height: 1.5;
        letter-spacing: 2px;
    }
    .audial-anc-panel .blurb-box .icon-box {
        display: flex;
        justify-content: space-between;
        text-align: center;
        margin-top: 4vw;
    }
    .audial-earbuds-panel .blurb-box p {
        line-height: 1.5;
    }
    .audial-earbuds-panel #earbuds-cf-image img {
        top: 2vw;
    }
    .audial-earbuds-panel {
        height: 42vw;
    }
    .b-aktiv-cam-panel {
        background-position: 44vw 8vw;
        background-position: 0vw 13%;
    }
    .b-aktiv-header .text {
        top: 10vw;
        width: 43%;
    }
    .b-aktiv-header .text p {
        font-size: 14px;
        margin-top: 2vw;
        line-height: 1.5;
    }
    .b-aktiv-header .text img {
        width: 70%;
    }
    .b-aktiv-cam-panel #cam-cf-image {
        right: 1vw;
    }
    .b-aktiv-cam-panel .blurb-box,
    .b-aktiv-watch-panel .blurb-box {
        width: 50%;
        position: relative;
    }
    .b-aktiv-cam-panel .blurb-box p,
    .b-aktiv-watch-panel .blurb-box p {
        font-size: 12px;
        text-align: justify;
    }
    .b-aktiv-cam-panel {
        background-size: 50% auto;
        background-position: 44.5vw 8vw;
    }
    .b-aktiv-cam-panel #cam-cf-image {
        top: 13vw;
    }
    .b-aktiv-cam-panel .blurb-box h2 {
        font-size: 2.75vw;
        line-height: 1;
    }
    .b-aktiv-watch-panel {
        margin-top: 13vw;
        background-size: 50% auto;
        background-position: 9vw 6vw;
    }
    .b-aktiv-watch-panel #watch-cf-image {
        top: -1vw;
    }
    .b-aktiv-available .info {
        width: 50%;
        left: 1vw;
        top: 12.5vw;
    }
    .koti-header .studio-logo {
        width: 40%;
        padding: 0.5vw 2vw;
        border: 0.35vw solid #1f0382;
    }
    .text>p:nth-child(3) {
        font-size: 3vw;
    }
    .koti-security-panel {
        background-position: 5vw 57vw;
    }
    .branding-header {
        width: 100%;
        background: url(assets/branding-header-bg.jpg) no-repeat;
        background-size: auto;
        background-position: initial;
        height: initial;
        box-shadow: 0 2em 3em -1em rgba(15, 5, 68, 0.1);
    }
    .branding-header img {
        display: block;
        width: 60%;
        margin: auto;
        position: relative;
    }
    .branding-header .text {
        width: 80%;
        position: relative;
        top: 11vw;
        left: 0;
        margin: 0 auto 15vw auto;
    }
    .branding-header .text h1 {
        font-size: 5.45vw;
    }
    .qa-header {
        width: 100%;
        background: none;
        height: 138vw;
    }
    .qa-header img {
        display: block;
        width: 190%;
        transform: rotate(90deg);
        position: absolute;
        top: -8vw;
        right: -45vw;
        z-index: -456;
    }
    .qa-header .text {
        width: 85%;
        margin: auto;
        left: 0;
    }
    .qa-header .text h1 {
        color: white;
        font-size: 8.9vw;
    }
    .qa-header .text p {
        font-size: 16px;
        font-weight: 400;
    }
    .contact {
        width: 100%;
        padding: 13vw 0 3vw 0;
    }
    .privPolicyWrap {
        margin: 100px auto 150px auto;
        width: 85vw;
    }
}

@media (max-width: 750px) {
    nav {
        margin: 0;
        padding: 10px 0 0 0;
        z-index: 100;
    }
    nav .menu li a,
    nav .menu .toggle-2,
    nav ul ul a,
    nav ul li ul li a,
    .smallnavbar ul li ul li a,
    {
        font-size: 16px !important;
        padding-left: 20px;
        line-height: 35px;
    }
    nav .toggle-1 {
        padding: 14px 20px 0 0;
    }
    #logo {
        width: 180px;
        margin: 0 0 0.5vw 10px !important;
    }
    #main-toggle {
        right: 0;
        top: 0;
    }
    .header {
        box-shadow: none !important;
    }
    .smallnavbar {
        height: 25px;
        padding: 7px 0 4px 0;
    }
    .smallnavbar .smalllogo {
        margin-left: 20px;
        width: 45px;
    }
    #drop,
    #drop-2 #drop:checked~ul,
    #drop-2:checked~ul,
    [id^="drop-2"]:checked~ul {
        right: 15px;
        top: 4px;
    }
    #main-toggle-small {
        right: 15px;
    }
    #dt-logo {
        display: none;
    }
    #mob-logo {
        display: block;
    }
    #logo-home {
        width: 180px;
        margin: 0 0 0.5vw 2vw !important;
    }
    #logo {
        width: 205px;
        margin: 0 0 0.5vw 1vw !important;
    }
    .home-header {
        height: 81vw;
        background-size: 100% 70%;
    }
    #homeSpacer {
        display: block;
        height: 8vw;
        width: 100%;
        background: #cfcfcf;
    }
    .home-header .header-txt {
        width: 85%;
        top: 60vw;
        left: 7vw;
    }
    .home-header img {
        right: 16.5vw;
        top: 14vw;
        width: 70%;
    }
    .home-header .header-txt h1 {
        font-size: 5vw;
    }
    .brands {
        padding: 12vw 0 10vw 0;
    }
    .brands .brand-links {
        margin: 3vw auto 10vw auto;
        width: 90%;
    }
    .brands .brand-links a {
        margin: 0 1vw -2vw 1vw;
        width: 25vw;
    }
    .brands .brand-links a h5 {
        font-size: 14px;
        top: -6vw;
    }
    .brands .txt {
        width: 85%;
    }
    .section {
        box-shadow: none;
    }
    .sourcing .sourcing-homepage {
        margin: 0 auto 5vw auto;
    }
    .sourcing .sourcing-icons {
        box-shadow: none;
        padding: 10vw 0 4vw 0;
    }
    .sourcing .sourcing-icons .icon-box {
        width: 34vw;
        margin: 0 6vw 6vw 6vw;
    }
    #concept {
        width: 5.15vw;
        margin-bottom: 0.25vw;
    }
    #develop {
        width: 7.75vw;
        position: relative;
    }
    #procure {
        width: 7.75vw;
    }
    #deliver {
        width: 6.5vw;
    }
    .packaging .text-n-button {
        width: 40%;
    }
    .quality {
        height: 65vw;
        padding-top: 21vw !important;
        background-size: 230%;
    }
    .quality .text-n-button {
        width: 80vw;
        right: -7vw;
        top: -19vw;
    }
    .quality .text-n-button h2 {
        font-size: 4vw;
    }
    .entity-header {
        height: 80vw;
        background-size: 90%, cover;
        background-position: 2vw 39vw, top left;
    }
    .entity-header .text {
        width: 60%;
        top: -17vw;
    }
    .entity-header .text img {
        width: 100%;
    }
    .entity-header .text p,
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .txt p,
    .windows-panel-2 .blurbs-box .blurb .txt ul,
    .android-panel-1 .panel-1-container .blurb-box .blurb-1 p {
        font-size: 2.5vw;
        line-height: 1.5;
    }
    .divider-1 {
        display: none;
    }
    .windows-panel-1 {
        height: initial;
        margin: 0 auto -12vw auto;
        padding-top: 12.5vw;
    }
    .windows-panel-1 .panel-1-container {
        width: 85%;
        right: 0;
        top: -4vw;
        float: unset;
        margin: 0 auto 40px auto;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .logo {
        width: 70%;
        margin-bottom: 20px;
    }
    #windows {
        margin: 0 0 25px 0;
        height: initial;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 {
        justify-content: flex-start;
        left: 0;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 h2 {
        font-size: 20px;
        margin-right: 20px;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 img {
        width: 12%;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .txt {
        width: 100%;
        align-self: flex-start;
    }
    #windows-panel-1-image {
        width: 100%;
        display: block;
        margin: auto;
        left: 0vw;
        position: relative;
        top: -9vw;
    }
    .windows-panel-2 {
        background: none;
        height: initial;
        padding-top: 0;
        padding-bottom: 0;
        margin: 0;
    }
    .windows-panel-2 .blurbs-box {
        justify-content: center;
    }
    .windows-panel-2 .panel-2-container {
        float: none;
        position: initial;
        width: 90%;
        padding: 0;
        /* background: #ececec; */
        margin: auto;
    }
    .windows-panel-2 h2 {
        font-size: 26px;
    }
    .windows-panel-2 h3 {
        font-size: 18px;
        margin: 10px;
    }
    .windows-panel-2 .blurbs-box .blurb {
        width: 30vw;
    }
    #entity-laptop-2 {
        display: block;
        width: 80%;
        margin: 8vw auto 0 auto;
        position: relative;
        left: -1vw;
    }
    .divider-2 {
        position: relative;
        z-index: -10;
        top: -1vw;
        width: 50vw;
        left: 25vw;
        margin-bottom: 12vw;
        margin-top: 6vw;
    }
    .android-panel-1 {
        background: none;
        height: initial;
        margin-bottom: 30px;
    }
    .android-panel-1 .panel-1-container {
        top: 0;
        width: 85%;
        margin: auto;
        position: initial;
    }
    .android-panel-1 .panel-1-container .blurb-box .blurb-1 img {
        width: 70%;
        margin-bottom: 10px;
    }
    .android-panel-1 .panel-1-container .blurb-box .blurb-2 {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 20px;
    }
    .android-panel-1 .panel-1-container .blurb-box .blurb-2 h2 {
        font-size: 20px;
        margin-right: 20px;
    }
    .android-panel-1 .panel-1-container .blurb-box .blurb-2 img {
        width: 11%;
    }
    #android-tab-1 {
        display: block;
        position: relative;
        width: 100%;
        left: -20vw;
        top: -8vw;
    }
    .android-panel-2 {
        background: none;
        height: initial;
        margin: 0 0 5vw 0;
    }
    .android-panel-2 .panel-2-container {
        position: relative;
        width: 85%;
        left: 0;
        top: -10vw;
        margin: auto;
    }
    .android-panel-2 .panel-2-container .cpu-options {
        margin-bottom: 20px;
    }
    .android-panel-2 .panel-2-container .cpu-options h2 {
        font-size: 20px;
    }
    .android-panel-2 .panel-2-container .cpu-options h3 {
        font-size: 18px;
        margin-top: 10px;
    }
    .android-panel-2 .panel-2-container .blurb-box .blurb {
        width: 45%;
        padding: 46px 0;
    }
    #android-tab-2 {
        display: block;
        width: 100%;
        position: relative;
        left: 6vw;
        top: 10vw;
    }
    .divider-3 {
        position: relative;
        top: 4vw;
    }
    .jd-williams-panel .jdwilliams-text {
        position: initial;
        width: 55%;
        margin: auto;
        padding: 6vw 0 0 0;
        float: unset;
    }
    .jd-williams-panel .jdwilliams-text .available p {
        font-size: 20px;
    }
    .cosmos-header {
        background: url(assets/cosmos-new-header-final.jpg) no-repeat;
        background-size: cover;
        background-position: top center;
        height: initial;
        padding-bottom: 3vw;
        position: relative;
        z-index: -10;
        overflow-x: hidden;
    }
    #pyxisMob {
        display: block;
        width: 110%;
        margin: 0 auto -43vw auto;
        position: relative;
        top: -5vw;
        left: -4vw;
    }
    .cosmos-header .flexContainer {
        width: 90%;
        position: relative;
    }
    .cosmos-header .flexContainer .logoNtxt {
        width: 90%;
        margin: auto;
    }
    .cosmos-header .flexContainer .logoNtxt h1 {
        font-size: 4.25vw;
        text-align: center;
        margin: 4vw 0;
    }
    .cosmos-header .flexContainer .logoNtxt p {
        font-size: 14px;
    }
    .cosmos-header .flexContainer .logoNtxt img {
        width: 50%;
        margin: auto;
        display: block;
    }
    .cosmos-header .subFlex {
        width: 70%;
        left: 0;
        height: initial;
        margin: 9vw auto;
    }
    .cosmos-header .subFlex img {
        height: 50px;
    }
    #qc {
        height: 50px;
        box-shadow: 0 0 1em 0.1em red;
    }
    div.cosmos-panel-1:nth-child(5) {
        margin-top: 3vw;
        height: initial;
        padding: 4vw 0 10vw 0;
    }
    .cosmos-panel-1 .panel-1-container,
    .cosmos-panel-2 .panel-2-container {
        display: flex;
        justify-content: space-between;
        height: initial;
        flex-direction: column-reverse;
    }
    .cosmos-panel-1 .panel-1-container .cosmos-image,
    .cosmos-panel-2 .panel-2-container .cosmos-image {
        top: 0;
        left: 0;
        width: 300px;
        margin: auto;
    }
    .cosmos-panel-1 .blurb-box,
    .cosmos-panel-2 .blurb-box {
        top: 0;
        left: 0;
        width: 80%;
        margin: 7vw auto 0 auto;
    }
    .cosmos-panel-1 .blurb-box h2,
    .cosmos-panel-2 .blurb-box h2 {
        font-size: 4vw;
        line-height: 1;
    }
    .cosmos-panel-1 .blurb-box p,
    .cosmos-panel-2 .blurb-box p {
        font-size: 14px;
    }
    .cosmos-panel-1 .blurb-box .icon-box,
    .cosmos-panel-2 .blurb-box .icon-box {
        display: flex;
        justify-content: space-between;
        text-align: center;
        margin: 6vw auto;
    }
    .cosmos-panel-1 .blurb-box .colours h5,
    .cosmos-panel-2 .blurb-box .colours h5 {
        font-size: 16px;
        margin-right: 20px;
    }
    .cosmos-panel-1 .blurb-box .colours img,
    .cosmos-panel-2 .blurb-box .colours img {
        width: 3vw;
        height: 3vw;
    }
    .studio-panel {
        background: url(assets/cosmos-new-header-final-2.jpg) no-repeat;
        background-size: cover;
        background-position: bottom center;
        height: 110vw;
    }
    .studio-panel .studio-text {
        width: 90%;
        left: 0;
        margin: auto;
    }
    #studio-guys {
        display: block;
        width: 70%;
        margin: auto;
        position: relative;
        top: 23vw;
    }
    .studio-panel .studio-text .available p {
        font-size: 4vw;
    }
    .prizmAccessories {
        display: initial;
    }
    .prizmAccessories .panel {
        height: initial;
        padding-bottom: 15vw;
    }
    .prizmAccessories .infoPanel {
        width: 100%;
        background-size: 85%;
    }
    .prizmAccessories .panel .logoHead {
        width: 60%;
        margin: 13vw 0 0 8vw;
    }
    .prizmAccessories .infoPanel .text p {
        font-size: 14px;
    }
    .prizmAccessories .panel .logoHead h1 {
        font-size: 5vw;
    }
    .prizmAccessories .infoPanel .text {
        width: 85%;
        margin: 4vw 0 0 8vw;
    }
    .prizmAccessories .cfAnimation {
        width: 85%;
        height: 92vw;
        top: 0;
    }
    .prizmTMT .flex {
        display: block;
        width: 75%;
        margin: auto;
    }
    .prizmTMT .flex .tmt {
        width: 100%;
        margin: 40px auto;
    }
    .prizmTMT .flex .tmt h3 {
        font-size: 18px;
    }
    .prizmTMT .flex .tmt p {
        font-size: 12px;
        width: 80%;
    }
    #prizmGlo img {
        width: 210px;
        margin: auto;
        display: block;
    }
    .prizmTMT .logoHead {
        width: 100vw;
    }
    .prizmTMT .logoHead h1 {
        margin: 3vw;
        font-size: 5vw;
    }
    #prizscision img,
    #prizound img {
        width: 160px;
    }
    .prizmLifestyle {
        padding-top: 0;
        padding-bottom: 10vw;
        flex-direction: column-reverse;
    }
    .prizmLifestyle .img {
        width: 100%;
        position: relative;
        top: 5vw;
        left: 0;
    }
    .prizmLifestyle .img img {
        width: 60%;
        margin: auto;
        display: block;
    }
    .prizmLifestyle .panel {
        height: initial;
    }
    .prizmLifestyle .panel .logoHead {
        width: 75vw;
        margin: 2vw auto 0 auto;
    }
    .prizmLifestyle .panel .logoHead h1 {
        font-size: 26px;
    }
    .prizmLifestyle .panel .logoHead img {
        width: 50%;
        top: 5vw;
        margin: auto;
    }
    .prizmLifestyle .infoPanel {
        height: initial;
        width: 100%;
        margin: auto;
        background-size: 85%;
        top: 0;
        left: 0;
    }
    .prizmLifestyle .infoPanel .text {
        width: 85%;
        margin: 1vw auto 2vw auto;
    }
    .prizmLifestyle .infoPanel .text p {
        font-size: 14px;
        line-height: 1.75;
    }
    .prizmSubHead {
        padding: 16vw 0 6vw 0 !important;
    }
    .prizmSubHead .tNlContainer {
        width: 100%;
    }
    .prizm-header {
        height: 78vw;
        overflow-x: hidden;
    }
    .prizm-header img {
        position: relative;
        width: 130%;
        left: -13vw;
        top: -7vw;
        z-index: -1;
    }
    #peripherals {
        flex-direction: column;
        margin: auto;
        top: 0;
    }
    .prizmSubHead {
        padding: 16vw 0 6vw 0 !important;
    }
    .prizmSubHead .tNlContainer #txtNlogo {
        width: 75vw;
        margin: auto;
        padding-left: 0;
    }
    .prizmSubHead .tNlContainer #txtNlogo img {
        width: 60%;
        display: block;
        margin: 3vw auto 8vw auto;
    }
    .prizmSubHead .tNlContainer #txtNlogo p {
        width: 100%;
        font-size: 14px;
        margin-bottom: 10vw;
    }
    #prizmPhones {
        width: 55vw;
    }
    #prizmKeyboard {
        width: 75vw;
        display: none;
    }
    #prizmMouse {
        width: 70vw;
        position: relative;
        left: 2vw;
        top: -5vw;
        display: none;
    }
    #mixedBag {
        bottom: 5vw;
        display: none;
    }
    .prizmFurniture {
        padding-top: 10vw;
        background-size: 180%;
        background-position: top center;
    }
    .prizmFurniture .logoNtxt {
        width: 85vw;
    }
    .prizmFurniture .logoNtxt img {
        width: 140px;
        margin: 0;
    }
    .prizmFurniture .logoNtxt h1 {
        font-size: 26px;
        margin-top: 10px;
        text-align: initial;
    }
    .prizmFurniture .logoNtxt p {
        font-size: 14px;
        text-align: justify;
        line-height: 1.75;
    }
    .prizmFurniture .furnitureFlex {
        display: flex;
        height: 140vw;
        flex-direction: column;
    }
    .prizmFurniture .furnitureFlex .cfContainer {
        width: 60%;
        margin: auto;
    }
    .prizmFurniture .furnitureFlex .chairCfContainer {
        padding-top: 40px;
    }
    #tTable,
    #zTable,
    #blackChair,
    #greyChair {
        left: 3vw;
    }
    #tTableLabel,
    #greyLabel {
        bottom: 0vw;
        left: 45%;
    }
    #zTableLabel,
    #blackLabel {
        bottom: 0vw;
        left: 55%;
    }
    .audial-header {
        width: 100%;
        background: url(assets/audial-banner-mob.jpg) no-repeat;
        background-size: cover;
        background-position: center -35vw;
        height: 120vw;
    }
    .audial-header .text-box {
        top: 15vw;
        left: 8vw;
        width: 70%;
    }
    .audial-header .text-box p {
        font-size: 14px;
        line-height: 1.75;
        font-weight: 400;
        color: #b5b5b5;
    }
    .audial-anc-panel {
        display: block;
        background: none;
        height: initial;
        padding-bottom: 0vw;
    }
    .audial-anc-panel .blurb-box {
        width: 85%;
        top: 10vw;
        left: 0;
        margin: auto;
    }
    .audial-anc-panel .blurb-box h2 {
        font-size: 4vw;
    }
    .audial-anc-panel .blurb-box p {
        line-height: 1.75;
        margin: 4vw 0;
    }
    .audial-anc-panel .blurb-box .icon-box .icon {
        width: 23%;
    }
    .audial-anc-panel .blurb-box .icon-box .icon h5 {
        margin: 15px 0 0 0;
    }
    .audial-anc-panel .images {
        display: none;
    }
    .audial-anc-panel .images-2 {
        display: block;
        width: 65%;
        margin: 15vw auto 0 auto;
        position: initial;
    }
    #headphones-open {
        width: 100%;
    }
    .audial-earbuds-panel .blurb-box {
        width: 80%;
        top: 1vw;
        left: 0;
        margin: auto;
    }
    .audial-earbuds-panel #earbuds-cf-image {
        display: none;
    }
    #earbuds-image-2 {
        display: block;
        width: 65%;
        margin: 10vw auto;
        position: initial;
    }
    #earbuds-image-2>img:nth-child(1) {
        width: 100%;
    }
    .audial-earbuds-panel .blurb-box h2 {
        font-size: 4.9vw;
    }
    .audial-earbuds-panel .blurb-box p {
        margin: 5vw 0;
    }
    .audial-earbuds-panel {
        height: initial;
        background: none;
        display: block;
    }
    .jd-williams-audial-panel {
        flex-direction: column-reverse;
        height: 90vw;
        padding-top: 10vw;
    }
    #jd-audial-img {
        width: 60%;
        right: 0;
    }
    .jd-williams-audial-panel .jdwilliams-text-audial {
        width: 40%;
        top: 6vw;
        right: 0;
    }
    .jd-williams-audial-panel .jdwilliams-text-audial .available p {
        font-size: 2.75vw;
        margin: 2.5vw 0;
    }
    .b-aktiv-header {
        background: none;
        height: 90vw;
        overflow-y: hidden;
    }
    #b-aktiv-header-mob {
        display: initial;
        width: 100%;
    }
    .b-aktiv-header .text {
        top: 0;
        width: 100%;
        background: url(assets/b-aktiv-banner-mob-2.jpg) no-repeat;
        background-size: 100% auto;
        background-position: top left;
        left: 0;
        width: 90%;
        background-size: 100% auto;
        background-position: center bottom;
        padding: 15vw 5% 0vw 5%;
    }
    .b-aktiv-header .text img {
        width: 40%;
    }
    .b-aktiv-cam-panel,
    .b-aktiv-watch-panel {
        background-size: 85% auto;
        background-position: 7vw 7vw;
        height: initial;
        display: block;
        padding-top: 20vw;
    }
    .b-aktiv-cam-panel #cam-cf-image,
    .b-aktiv-watch-panel #watch-cf-image {
        top: 13vw;
        display: none;
    }
    .b-aktiv-cam-panel .blurb-box,
    .b-aktiv-watch-panel .blurb-box {
        width: 85%;
        position: initial;
        margin: 0 auto 5vw auto;
    }
    .b-aktiv-cam-panel .blurb-box p,
    .b-aktiv-watch-panel .blurb-box p {
        font-size: 14px;
        text-align: justify;
    }
    .b-aktiv-cam-panel .blurb-box h2,
    .b-aktiv-watch-panel .blurb-box h2 {
        font-size: 7.25vw;
        line-height: 1;
    }
    #cam-image-mob,
    #watch-image-2 {
        display: block;
        width: 100%;
    }
    #cam-image-mob img,
    #watch-image-2 img {
        width: 70%;
        display: block;
        margin: auto;
    }
    #watch-image-2 img {
        position: relative;
        left: 6vw;
    }
    .b-aktiv-cam-panel .blurb-box .icon-box,
    .b-aktiv-watch-panel .blurb-box .icon-box {
        display: flex;
        justify-content: space-between;
        margin-top: 7vw;
        flex-wrap: wrap;
    }
    .b-aktiv-cam-panel .blurb-box .icon-box .icon,
    .b-aktiv-watch-panel .blurb-box .icon-box .icon {
        width: 40vw;
        margin: 5vw 0;
    }
    .b-aktiv-available {
        height: 150vw;
        background: none;
        overflow-x: clip;
    }
    #b-aktiv-available-mob {
        display: block;
        width: 130%;
        position: relative;
        top: -21vw;
        z-index: -555;
        left: -5vw;
    }
    .b-aktiv-available .info {
        width: 70%;
        left: -6vw;
        top: 25.5vw;
    }
    .b-aktiv-available .info p {
        font-size: 10px;
    }
    .koti-security-panel {
        background-position: 5vw 60vw;
    }
    .koti-security-panel .blurb-box {
        width: 85%;
    }
    .koti-security-panel .blurb-box h2 {
        font-size: 4.2vw;
        text-align: center;
    }
    .koti-security-panel .blurb-box p {
        font-size: 14px;
        margin: 5vw 0;
        text-align: justify;
    }
    .koti-security-panel .blurb-box .icon-box {
        width: 100%;
        left: 0;
    }
    .sourcing-header {
        height: initial;
        background: #010c2d;
        overflow-x: clip;
    }
    .sourcing-header img {
        display: block;
        width: 100%;
    }
    .sourcing-header .text {
        width: 85%;
        padding: 1vw 0 15vw 0;
        left: 0;
        margin: auto;
    }
    .sourcing-header .text h1 {
        color: white;
        font-size: 9vw;
        font-weight: 700;
        line-height: 1.6;
    }
    .sourcing-panel,
    .qa-panel,
    .branding-panel {
        display: block;
        padding: 8vw 0;
        align-items: flex-end;
        box-shadow: none;
    }
    .branding-header .text {
        width: 85%;
        margin: 0 auto 20vw auto;
        padding-top: 7vw;
    }
    .branding-header .text h1 {
        font-size: 8vw;
    }
    .branding-header img {
        width: 80%;
        padding-bottom: 5vw;
    }
    .qa-header {
        width: 100%;
        background: none;
        height: 146vw;
        overflow: hidden;
        height: 178vw;
    }
    .qa-header .text {
        top: 15vw;
    }
    .qa-header .text p {
        font-size: 14px;
        font-weight: 400;
    }
    .qa-header img {
        display: block;
        width: 190%;
        transform: rotate(90deg);
        position: relative;
        top: -24vw;
        right: 45vw;
        z-index: -456;
    }
    .sourcing-panel .text-box,
    .qa-panel .text-box,
    .branding-panel .text-box {
        top: -1vw;
        left: 0;
        width: 90%;
        margin: auto;
    }
    .sourcing-panel .image,
    .qa-panel .image,
    .branding-panel .image {
        margin: auto;
        width: 95%;
        right: 0;
    }
    .sourcing-panel .image img,
    .qa-panel .image img,
    .branding-panel .image img {
        margin: 0;
        position: initial;
        box-shadow: none;
        width: 100%;
    }
    .branding-panel .image #create-brand {
        position: initial !important;
        margin: auto !important;
    }
    .sourcing-panel .text-box .text img,
    .qa-panel .text-box .text img,
    .branding-panel .text-box .text img {
        width: 20%;
        margin-bottom: 4vw;
    }
    .sourcing-panel .text-box .text h3,
    .qa-panel .text-box .text h3,
    .branding-panel .text-box .text h3,
    .sourcing-panel .text-box .text .small,
    .qa-panel .text-box .text .small,
    .branding-panel .text-box .text .small,
    .sourcing-panel .text-box .text .medium,
    .qa-panel .text-box .text .medium,
    .branding-panel .text-box .text .medium,
    .sourcing-panel .text-box .text .large,
    .qa-panel .text-box .text .large,
    .branding-panel .text-box .text .large {
        font-size: 8vw !important;
    }
    .sourcing-panel .text-box .text p,
    .qa-panel .text-box .text p,
    .branding-panel .text-box .text p {
        font-size: 14px;
        margin: 5vw auto;
    }
}

@media (max-width: 550px) {
    nav {
        margin: 0;
        padding: 10px 0 0 0;
    }
    #logo-home,
    #logo {
        width: 130px !important;
        margin: 0 0 0.5vw 10px !important;
    }
    .quality {
        height: 120vw;
        background-size: 250%;
    }
    .quality .text-n-button h2 {
        font-size: 22px;
    }
    .quality .text-n-button {
        width: 85vw;
        right: -7.5vw;
    }
    .quality .text-n-button p {
        margin: 20px auto;
    }
    #pyxisMob {
        display: block;
        width: 130%;
        margin: 0 auto -48vw auto;
        position: relative;
        top: -5vw;
        left: -13vw;
    }
    .cosmos-header .flexContainer .logoNtxt img {
        width: 60%;
        margin: auto;
        display: block;
    }
    .cosmos-header .flexContainer .logoNtxt h1 {
        font-size: 7.5vw;
        text-align: center;
        margin: 7vw 0;
    }
    .cosmos-header .subFlex {
        width: 80%;
        left: 0;
        height: initial;
        margin: 13vw auto;
    }
    .cosmos-header .subFlex img {
        height: 45px;
    }
    #qc {
        height: 45px;
        box-shadow: 0 0 1em 0.1em red;
    }
    .cosmos-panel-1 .panel-1-container .cosmos-image,
    .cosmos-panel-2 .panel-2-container .cosmos-image {
        top: 0;
        left: 0;
        width: 85%;
        margin: auto;
    }
    .cosmos-panel-1 .blurb-box,
    .cosmos-panel-2 .blurb-box {
        top: 0;
        left: 0;
        width: 90%;
        margin: 7vw auto 0 auto;
    }
    .cosmos-panel-1 .blurb-box h2,
    .cosmos-panel-2 .blurb-box h2 {
        font-size: 22px;
        line-height: 1.5;
        width: 95%;
        margin: auto;
    }
    .cosmos-panel-1 .blurb-box .icon-box,
    .cosmos-panel-2 .blurb-box .icon-box {
        display: flex;
        justify-content: space-between;
        text-align: center;
        margin: 30px auto;
    }
    .cosmos-panel-1 .blurb-box .icon-box .icon,
    .cosmos-panel-2 .blurb-box .icon-box .icon {
        width: 23%;
    }
    .cosmos-panel-1 .blurb-box .icon-box .icon img,
    .cosmos-panel-2 .blurb-box .icon-box .icon img {
        width: 60%;
    }
    .cosmos-panel-1 .blurb-box .colours,
    .cosmos-panel-2 .blurb-box .colours {
        padding-top: 4vw;
        display: flex;
        align-items: center;
        width: 95%;
        margin: auto;
    }
    .cosmos-panel-1 .blurb-box .colours h5,
    .cosmos-panel-2 .blurb-box .colours h5 {
        font-size: 18px;
        margin-right: 10px;
    }
    .cosmos-panel-1 .blurb-box .colours img,
    .cosmos-panel-2 .blurb-box .colours img {
        width: 15px;
        height: 15px;
    }
    .studio-panel {
        height: 130vw;
    }
    .studio-panel .studio-text {
        width: 100%;
    }
    .studio-panel .studio-text a img {
        width: 40%;
        padding: 7px 20px;
    }
    .studio-panel .studio-text .available p {
        font-size: 5vw;
        margin: 4vw 0;
    }
    .studio-panel .studio-text .available img {
        width: 60%;
    }
    #studio-guys {
        display: block;
        width: 75%;
        margin: auto;
        position: relative;
        top: 23vw;
        left: 2vw;
    }
    .koti-header {
        width: 100%;
        background: url(assets/koti-banner.jpg) no-repeat;
        background-size: 320% auto;
        height: 160vw;
        background-position: -21vw 0vw;
    }
    .koti-header .text {
        width: 90%;
        left: 0;
        top: 106vw;
        margin: auto;
    }
    .koti-header .text>img:nth-child(1) {
        width: 40%;
    }
    .koti-header .text p {
        font-size: 6vw;
        color: white;
        text-align: left;
    }
    .text>p:nth-child(3) {
        font-size: 5vw;
        margin: 2vw auto;
    }
    .koti-header .studio-logo {
        width: 35%;
        padding: 1vw 3vw;
        border: 0.5vw solid #1f0382;
        margin: 0;
    }
    .koti-security-panel {
        background-position: 5vw 153vw;
    }
    .koti-security-panel .blurb-box p {
        line-height: 1.75;
    }
    .koti-security-panel .blurb-box h2 {
        font-size: 7.2vw;
        text-align: left;
    }
    .koti-security-panel .blurb-box .icon-box {
        flex-wrap: wrap;
    }
    .koti-security-panel .blurb-box .icon-box .icon {
        width: 50%;
        margin: 5vw auto;
    }
    .koti-security-panel #koti-cf-image {
        width: 80%;
        top: 0;
        margin: 7vw auto 0 auto;
        left: 0;
    }
    .privPolicyWrap {
        margin: 80px auto 150px auto;
        width: 85vw;
    }
    .privPolicyWrap h1 {
        font-size: 18px;
        margin-bottom: 4vw;
    }
    .privPolicyWrap h2 {
        margin: 7vw 0 20px 0;
        font-size: 18px;
    }
    .privPolicyWrap p,
    .privPolicyWrap ul {
        margin-bottom: 20px;
        line-height: 1.5;
        font-size: 14px;
    }
}

@media (max-width: 650px) {
    .brands .brand-links {
        width: 95%;
    }
    .sourcing .sourcing-icons .icon-box p {
        font-size: 14px;
    }
    .sourcing .sourcing-icons .icon-box h4 {
        font-size: 18px;
        margin: 5px 0;
    }
    .sourcing .sourcing-icons .icon-box {
        width: 40vw;
        margin: 5vw auto;
    }
    .sourcing .sourcing-icons {
        padding: 10vw 0;
        flex-direction: column;
        align-content: center;
    }
    #concept {
        width: 40px;
        margin-bottom: 0;
        left: 0;
    }
    #develop {
        width: 55px;
    }
    #procure {
        width: 55px;
    }
    #deliver {
        width: 50px;
    }
    .packaging {
        height: initial;
    }
    .packaging .img-link {
        position: initial;
        margin: auto;
        display: block;
    }
    .packaging .img-link img {
        width: 60%;
        display: block;
        margin: auto;
        position: relative;
        left: -3vw;
    }
    .packaging .text-n-button {
        width: 85%;
        position: initial;
        margin: 10vw auto;
    }
    .packaging .text-n-button h2 {
        font-size: 22px;
    }
    .packaging .text-n-button p {
        font-size: 14px;
        margin: 4vw 0 7vw 0;
    }
    .entity-header {
        height: 94vw;
        background-size: 90%, cover;
        background-position: 2vw 50vw, top left;
    }
    .entity-header .text {
        width: 85%;
        top: -17vw;
    }
    .entity-header .text img {
        width: 70%;
    }
    .entity-header .text p,
    .windows-panel-1 .panel-1-container .blurbs-box .blurb .txt p,
    .windows-panel-2 .blurbs-box .blurb .txt ul,
    .android-panel-1 .panel-1-container .blurb-box .blurb-1 p {
        font-size: 14px;
        line-height: 1.5;
        font-weight: 300;
    }
    .windows-panel-1 {
        overflow-x: hidden;
    }
    .windows-panel-1 .panel-1-container .blurbs-box .blurb-2 img {
        width: 20%;
    }
    #windows-panel-1-image {
        width: 120%;
        display: block;
        margin: auto;
        left: -11vw;
        position: relative;
        top: -9vw;
        overflow-x: hidden;
    }
    .windows-panel-2 .blurbs-box .blurb {
        width: 34vw;
    }
    #entity-laptop-2 {
        width: 100%;
    }
    .jd-williams-panel .jdwilliams-text {
        width: 75%;
    }
    #jd-img-mob {
        width: 80%;
    }
    .contact {
        width: 100%;
        padding: 20vw 0 3vw 0;
    }
    .contact .contact-flex .contact-blurb p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
    }
    .contact .contact-flex .contact-blurb .contact-info {
        display: block;
        justify-content: flex-start;
        margin-bottom: 5vw;
        align-items: center;
        margin-top: 8vw;
    }
    .contact .contact-flex .contact-blurb .contact-info .address {
        padding-right: 0;
        border-right: none;
    }
    .contact .contact-flex .contact-blurb .contact-info .links {
        font-size: 16px;
        height: 35vw;
        padding-left: 0;
    }
    .contact h1 {
        font-size: 8vw;
        width: 85%;
        margin: auto;
    }
    .contact .contact-flex .contact-blurb {
        width: 85%;
        margin: 0 auto 7vw auto;
    }
    #map {
        width: 90%;
        margin: auto;
        height: 400px;
    }
    .spare-parts {
        width: 80%;
        margin: 30px auto;
    }
}

@media (max-width: 550px) {
    .home-nav {
        margin: 0;
        padding: 10px 0 0px 0;
    }
    nav .menu {
        width: 180px;
        right: 15px;
        top: -5px !important;
    }
    #drop:checked~ul,
    #drop-2:checked~ul {
        width: 180px;
        right: 15px;
        top: -5px !important;
    }
    nav a {
        font-weight: 400;
        line-height: 30px;
        font-size: 16px;
        padding-left: 20px;
    }
    nav ul ul a {
        padding: 0 20px;
    }
    .smallnavbar ul li .toggle-4 {
        padding: 0 0 0 20px;
    }
    nav ul li ul li a {
        line-height: 30px !important;
    }
    nav .menu .toggle-2 {
        font-size: 16px;
        line-height: 35px;
        padding: 0 0 0 20px;
    }
    .prizmPgLogo {
        margin: 1vw 0 1vw 2vw !important;
    }
    #logo-home,
    #logo {
        width: 145px !important;
    }
    .smallnavbar .menu {
        top: 5px !important;
        right: 15px !important;
    }
    .smallnavbar ul ul a {
        padding: 0 30px;
        font-size: 16px;
    }
    [id^="drop-2"]:checked~ul {
        top: 4px;
        right: 15px !important;
    }
    #main-toggle {
        right: 0px;
        top: -8px;
    }
    nav .toggle-1 {
        padding: 17px 20px 0 0;
        width: 15px;
    }
    nav .toggle-1 .nav-icon,
    nav .toggle-3 .nav-icon {
        width: 17px;
    }
    nav .toggle-1 .nav-icon::before,
    nav .toggle-3 .nav-icon::before {
        top: -5px;
    }
    nav .toggle-1 .nav-icon::after,
    nav .toggle-3 .nav-icon::after {
        top: 5px;
    }
    #homeSpacer {
        height: 13vw;
    }
    .home-header {
        height: 125vw;
        background-size: 100% 40%;
        padding: 5vw 0 0 0 !important;
    }
    .home-header .header-txt {
        top: 58vw;
    }
    .home-header .header-txt h1 {
        font-size: 5.4vw;
        margin-bottom: 15px;
    }
    .home-header img {
        right: 14.5vw;
        top: 15vw;
        width: 75%;
    }
    #brandsLogo {
        width: 25%;
    }
    .brands {
        padding: 9vw 0 10vw 0;
        background: none;
        background: url(assets/coffee-bg180.png) no-repeat, url(assets/coffee-bg.png) no-repeat;
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
        background-size: 100%;
        background-position: center -8vw, center 114vw;
    }
    .brands .brand-links {
        margin: 9vw auto 10vw auto;
        padding-bottom: 10vw;
        position: relative;
        background-color: #cfcfcf;
        width: 100%;
    }
    .brands .brand-links a {
        margin: 0 2vw;
        height: 30vw;
        width: 40vw;
    }
    .brands .brand-links a h5 {
        font-size: 11px;
        top: -11vw;
    }
    .brands .txt {
        width: 85%;
        margin: 33vw auto 0 auto;
    }
    .brands .txt h3 {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .sourcing .sourcing-icons .icon-box {
        width: 60vw;
    }
    .sourcing .sourcing-homepage {
        display: initial;
    }
    .sourcing .sourcing-homepage .image {
        width: 70%;
        margin: auto;
    }
    .sourcing .sourcing-homepage .text-n-button {
        width: 70%;
        margin: auto;
        margin-bottom: 50px;
    }
    .sourcing .sourcing-homepage .text-n-button h2 {
        font-size: 7.7vw;
        margin-bottom: 20px;
    }
    .quality {
        padding-top: 30vw !important;
        background-color: #e0e0e2;
    }
    .android-panel-2 .panel-2-container .blurb-box .blurb p {
        font-size: 12px;
        margin: 1vw 0;
    }
    .sourcing-header img {
        display: block;
        width: 140%;
        margin: auto;
        position: relative;
        left: -20vw;
    }
    .audial-header {
        background-position: center 0vw;
        height: 170vw;
        height: 178vw;
    }
    .audial-header .text-box img {
        width: 55%;
    }
    .audial-header .text-box {
        top: 20vw;
        left: 8vw;
        width: 80%;
    }
    .audial-anc-panel .blurb-box h2 {
        font-size: 7vw;
    }
    .audial-anc-panel {
        display: block;
        background: none;
        height: initial;
    }
    .audial-anc-panel .blurb-box .icon-box {
        display: flex;
        justify-content: space-evenly;
        text-align: center;
        margin-top: 5vw;
        flex-wrap: wrap;
    }
    .audial-anc-panel .blurb-box .icon-box .icon {
        width: 40%;
        margin: 20px auto;
    }
    .audial-anc-panel .blurb-box .icon-box .icon h5 {
        font-size: 10px;
        margin: 1vw 0 0.5vw 0;
        line-height: 1.75;
        letter-spacing: 2px;
    }
    .audial-anc-panel .blurb-box p {
        line-height: 1.6;
        margin: 7vw 0;
    }
    .audial-anc-panel .images-2 {
        display: block;
        width: 70%;
        margin: 10vw auto 0 auto;
        position: initial;
    }
    .audial-earbuds-panel .blurb-box h2 {
        font-size: 7vw;
        line-height: 1.2;
    }
    .audial-earbuds-panel .blurb-box p {
        margin: 7vw 0;
        line-height: 1.6;
    }
    .audial-earbuds-panel {
        height: initial;
        background: none;
        display: block;
    }
    .audial-earbuds-panel .blurb-box .icon-box {
        display: flex;
        justify-content: space-evenly;
        text-align: center;
        margin-top: 3vw;
        flex-wrap: wrap;
        position: relative;
        top: 7vw;
    }
    .audial-earbuds-panel .blurb-box .icon-box .icon {
        width: 41%;
        margin: 20px auto;
    }
    .audial-earbuds-panel .blurb-box .icon-box .icon h5 {
        font-size: 10px;
        margin: 15px 0 0 0;
        line-height: 1.5;
        letter-spacing: 2px;
    }
    .audial-earbuds-panel .blurb-box .icon-box .icon img {
        width: 40px;
    }
    #earbuds-image-2 {
        display: block;
        width: 65%;
        margin: 15vw auto;
        position: initial;
    }
    .jd-williams-audial-panel {
        flex-direction: column-reverse;
        height: 120vw;
    }
    #jd-audial-img {
        width: 70%;
        right: 0;
        top: 12vw;
    }
    .jd-williams-audial-panel .jdwilliams-text-audial {
        width: 60%;
        top: 13vw;
        right: 0;
    }
    .jd-williams-audial-panel .jdwilliams-text-audial .available p {
        font-size: 16px;
        margin: 3.5vw 0;
    }
    .jd-williams-audial-panel .jdwilliams-text-audial .available .audial-logo-jd {
        width: 60%;
    }
    .b-aktiv-header {
        height: 96vw;
    }
}

    .shogun-header {
        width: 100%;
        background: none;
        height: 146vw;
        overflow: hidden;
        height: 178vw;
}

.shogun-header .text {
        top: 15vw;
    }
    .shogun-header .text p {
        font-size: 14px;
        font-weight: 400;
    }
    .shogun-header img {
        display: block;
        width: 190%;
        transform: rotate(90deg);
        position: relative;
        top: -24vw;
        right: 45vw;
        z-index: -456;
    }

    .shogun-header {
    width: 100%;
    background: url(assets/shogun-sakura.jpg) no-repeat;
    background-size: 100%;
    height: 50vw;
    background-position: center left;
}

.shogun-header .text {
    width: 35%;
    position: relative;
    top: 10vw;
    left: 4vw;
}

.shogun-header .text h1 {
    color: white;
    font-size: 3.9vw;
}

.shogun-header .text p {
    color: white;
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
    margin: 1vw auto;
    margin-bottom: 50px;
}

.shogun-header img {
    display: none;
}

.button2 {
    color: black;
    font-weight: 500;
    border: 3px solid #a5a5a5;
    padding: 15px;
    border-radius: 100px;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    margin-top: 180px;
     
}

.button2:hover {
    color: #e0e0e2;
    background-color: #a5a5a5;
}


/* new logo's
--------------------------------------------- */
.shogun-cam-panel {
    width: 100%;
    background: url(assets/shogun-home-logo.svg) no-repeat;
    background-size: 20% auto;
    background-position: 51.5vw 2vw;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row-reverse;
    height: 40vw;
}

.shogun-cam-panel .blurb-box,
.b-aktiv-watch-panel .blurb-box {
    width: 35%;
    position: relative;
}

.shogun-cam-panel .blurb-box {
    right: 3vw;
    top: 16vw;
}

.shogun-cam-panel .blurb-box h2,
.shogun-watch-panel .blurb-box h2 {
    font-size: 1.8vw;
    line-height: 1;
}

.shogun-cam-panel .blurb-box p,
.shogun-watch-panel .blurb-box p {
    font-size: 14px;
    line-height: 1.75;
    margin: 2vw 0;
}

.shogun-cam-panel .blurb-box .icon-box,
.shogun-watch-panel .blurb-box .icon-box {
    display: flex;
    justify-content: space-between;
}

.shogun-cam-panel .blurb-box .icon-box .icon img,
.shogun-watch-panel .blurb-box .icon-box .icon img {
    width: 30px;
    margin: auto;
    display: block;
}

.shogun-cam-panel .blurb-box .icon-box .icon h5,
.shogun-watch-panel .blurb-box .icon-box .icon h5 {
    font-size: 12px;
    margin: 1vw 0 0.5vw 0;
    letter-spacing: 2px;
    text-align: center;
}

.shogun-cam-panel .blurb-box .icon-box .icon p,
.shogun-watch-panel .blurb-box .icon-box .icon p {
    font-size: 10px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.shogun-cam-panel #cam-cf-image {
    width: 35%;
    display: block;
    position: relative;
    top: 8vw;
    right: 1vw;
    transform: rotate(-3deg);
}

.shogun-cam-panel #cam-cf-image img {
    position: absolute;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.shogun-cam-panel #cam-cf-image img.top:hover {
    opacity: 0;
}

#cam-image-mob {
    display: none;
}

.button3 {
    color: black;
    font-weight: 500;
    border: 3px solid black;
    padding: 15px;
    border-radius: 100px;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    margin-top: 40px;
    margin-bottom: 40px;
}

.button3:hover {
    color: #e0e0e2;
    background-color: #202020;
}

.shogun-available {
    width: 100%;
    height: 50vw;
    background: url(assets/shogun-hoover.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.shogun-available .info {
    width: 30%;
    text-align: center;
    position: relative;
    left: 8vw;
    top: 15.5vw;
}

.shogun-available  p {
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Heebo';
    font-size: 2.1vw;
    margin: 0vw 0;
    letter-spacing: 9px;
    color: #202020;
    width: 30%;
    margin: 3vw auto 2vw auto;
    position: left;
    font-family: 'Honor';
}

.info1>p:nth-child(4) {
    margin: 1vw auto 1vw auto !important;
}

#shogun-dark {
    width: 10%;
    margin: vw auto 2vw auto;
}

.shogun-available .info a img {
    transition: all 0.3s ease-in-out;
    width: 65%;
}

.shogun-available .info a img:hover {
    transform: scale(1.1, 1.1);
}

#shogun-available-mob {
    display: none;
}

.floor-header {
    width: 100%;
    background: url(assets/floormaster-banner.jpg) no-repeat, url(assets/floormaster-banner.jpg) no-repeat;
    background-size: auto 100%, 127% auto;
    background-position: right, -12vw -1vw;
    height: 50vw;
    
    padding-top: 50px;
    padding-left: 70px;
}

.floor-header .text-box {
    position: relative;
    width: 40%;
    left: 53vw;
    top: 16vw;
}

.floor-header .text-box img {
    width: 65%;
}

.floor-header .text-box p {
    font-size: 1.25vw;
    margin-top: 2vw;
    color: white;
    padding-left: 2vw;
    line-height: 1.5;
}

#floormaster-mobile {
    display: none;
}

.shogun1-header {
    width: 100%;
    background: url(assets/shogun-banner.jpg) no-repeat, url(assets/shogun-banner.jpg) no-repeat;
    background-size: auto 100%, 127% auto;
    background-position: right, -12vw -1vw;
    height: 50vw;
    margin-top: -50px;
}

.shogun1-header .text-box {
    position: relative;
    width: 40%;
    left: 53vw;
    top: 16vw;
}

.shogun1-header .text-box img {
    width: 65%;
}

.shogun1-header .text-box p {
    font-size: 1.25vw;
    margin-top: 2vw;
    color: white;
    padding-left: 2vw;
    line-height: 1.5;
}

.benew-header {
    width: 100%;
    background: url(assets/benew-banner.jpg) no-repeat, url(assets/be-banner.jpg) no-repeat;
    background-size: auto 100%, 127% auto;
    background-position: right, -12vw -1vw;
    height: 50vw;
    padding-top: 50px;
    padding-left: 90px;
}

.benew-header .text-box {
    position: relative;
    width: 40%;
    left: 53vw;
    top: 16vw;
}

.benew-header .text-box img {
    width: 65%;
}

.benew-header .text-box p {
    font-size: 1.25vw;
    margin-top: 2vw;
    color: white;
    padding-left: 2vw;
    line-height: 1.5;
}

