/* header */
header {
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 10;
    position: fixed;
    background-color: transparent;
}

header .logo {
    width: 14.375em; /* 230px */
    height: 2.125em; /* 34px */
    z-index: 10000;
}
header .logo .box {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* transition: 3s all ease; */
}

header .logo .box {
    background-image: url('../img/logo-b.webp');
}
.fp-viewing-firstPage > header .logo .box {
    background-image: url('../img/logo-w.webp');
    /* transition: 3s all ease; */
}
.fp-viewing-secondPage > header .logo .box {
    background-image: url('../img/logo-b.webp');
    /* transition: 5s all ease;    */
}
.fp-viewing-secondPage > header .logo.is-active .box {
    background-image: url('../img/logo-w.webp');
    /* transition: 5s all ease;    */
}

.fp-viewing-3rdPage > header .logo .box {
    background-image: url('../img/logo-w.webp');
    /* transition: 3s all ease;  */
}

.fp-viewing-4thPage > header .logo .box {
    background-image: url('../img/logo-b.webp');
    /* transition: 5s all ease; */
}
.fp-viewing-4thPage > header .logo.is-active .box {
    background-image: url('../img/logo-w.webp');
    /* transition: 5s all ease; */
}

.fp-viewing-5thPage > header .logo .box {
    background-image: url('../img/logo-w.webp');
    /* transition: 3s all ease; */
}
.fp-viewing-6thPage > header .logo .box {
    background-image: url('../img/logo-w.webp');
}

header ul {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    width: calc(100% + -50vw);
    margin-left: -2%;
    z-index: 1001;
    height: 100%;
}
header ul.is-active {
    z-index: 0;
}
header ul li {
    padding-left: 10%; /* 84px */
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header ul li:first-child {
    padding-left: 0;
}
header ul li a {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    /* transition: 0; */
    /* transition: 2s all ease; */
    display: block;
}
/* header ul li:hover a {
    color: #22C5D2;
} */
.fp-viewing-firstPage > header ul li a {
    color: #fff;
}
.fp-viewing-secondPage > header ul li a {
    color: #000;
}
.fp-viewing-3rdPage > header ul li a {
    color: #fff;
}
.fp-viewing-4thPage > header ul li a {
    color: #000;
}
.fp-viewing-5thPage > header ul li a {
    color: #fff;
}
.fp-viewing-6thPage > header ul li a {
    color: #fff;
}
.fp-viewing-3rdPage > header ul li:hover a {
    color: #000;
}
.fp-viewing-firstPage > header ul li:hover a,
.fp-viewing-secondPage > header ul li:hover a,
.fp-viewing-4thPage > header ul li:hover a,
.fp-viewing-5thPage > header ul li:hover a,
.fp-viewing-6thPage > header ul li:hover a {
    color: #22C5D2;
}
/* header */

/* mega menu header */
header.header-bg {
    background-color: #fff;
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
header.header-bg .logo .box {
    background-image: url(../img/logo-b.webp);
}
header.header-bg ul li a {
    color: #000;
}
header.header-bg .hamburger .hamburger--container .hamburger--bars, 
header.header-bg .hamburger .hamburger--container .hamburger--bars::before, 
header.header-bg .hamburger .hamburger--container .hamburger--bars::after {
    background-color: #000;
}

/* mega menu */
.mega-menu {
    display: none;
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    background-color: #fff;
    height: auto;
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
header.header-bg ul li:hover .mega-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
}
header.header-bg ul li:hover a {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    color: #000;
}
header.header-bg ul li:hover a:hover {
    color: #22C5D2;
}
header.header-bg ul li:hover a::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #1BCCA5;
    position: absolute;
    bottom: -2px;
    z-index: 2;
}

.mega-menu li {
    padding: 40px 0;
    display: inline-flex;
    margin: 0;
    height: 100%;
}
.mega-menu li:first-child {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
    /* position: relative; */
    /* border-bottom: 1px solid rgba(112, 112, 112, 0.15); */
}
.mega-menu li:first-child span {
    font-size: 40px;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-transform: uppercase;
}

.mega-menu li:last-child {
    width: 70%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.mega-menu li:last-child::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: rgba(112, 112, 112, 0.15);
    position: absolute;
    left: 0;
}
.mega-menu li:last-child a {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    margin-top: 25px;
    text-transform: capitalize;
}
.mega-menu li:last-child a:hover {
    color: #1BCCA5;
}
.mega-menu li:last-child a:first-child {
    margin-top: 0;
}
.mega-menu li:last-child a::after {
    display: none;
}
.mega-menu li:last-child.products-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.mega-menu li:last-child a {
    width: 24.063rem;
}

.acc__card, .acc__container {
    display: none;
}

.fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .list--item:last-child {
    flex-direction: column;
}
.fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child .list--item:last-child .fsmenu--list-element.viewlist:first-child {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
}
.fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child .list--item:last-child .fsmenu--list-element.viewlist:first-child > div {
    width: 50%;
}

@media all and (max-width: 1560px) {
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .fsmenu--list-element {
        height: 6.5em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .fsmenu--list-element a span {
        font-size: 4em;
    }
    .fsmenu .fsmenu--container {
        padding: 12.625em 11em 8.438em;
    }
    .acc__card, .acc__container {
        display: none;
    }
}
@media all and (max-width: 1320px) {
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .fsmenu--list-element {
        height: 5.2em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .fsmenu--list-element a span {
        font-size: 3.3em;
    }
    .fsmenu .fsmenu--container {
        padding: 12.625em 7em 8.438em;
    }
    .acc__card, .acc__container {
        display: none;
    }
}
@media all and (max-width: 1214px) {
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:first-child {
        width:40%;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child {
        width:60%;
        padding-left: 4.563em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .list--item:first-child .fsmenu--list-element.viewlist:last-child {
        margin-left: -3.187em;
    }
}
@media all and (max-width: 1200px) {
    header {
        padding: 0 30px;
    }
    .acc__card, .acc__container {
        display: none;
    }
}
@media all and (max-width: 1110px) {
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child {
        width: 100%;
        padding-left: 4.563em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .list--item:first-child .fsmenu--list-element.viewlist:last-child {
        margin-left: 0.813em;
    }
}
@media all and (max-width: 1024px) {
    header {
        padding: 0 20px;
    }
    header ul {
        display: none;
    }
    .acc__card, .acc__container {
        display: none;
    }
}
@media all and (max-width: 920px) {
    .fsmenu .fsmenu--container {
        padding: 9.625em 7em 8.438em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .list--item:first-child {
        display: none;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container {
        flex-direction: column;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child .list--item:last-child {
        margin-top: 18px;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child {
        padding-left: 3.563em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list.m-menu,
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list {
        display: none;
    }

    .acc__container {
        display: block;
        position: relative;
        height: auto;
        width: 100%;
    }
    .set {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 20px;
        /* cursor: pointer; */
    }
    .set:first-child {
        margin-top: 0;
    }
    .set > .a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width:100%;
        color:#fff;
        transition: 0.2s ease;
        z-index: 1002;
        font-size:3.3em;
        font-weight: bold;
        letter-spacing: -0.01em;
        text-transform: capitalize;
        line-height: 1;
        font-family: 'Montserrat', sans-serif;
        position: relative;
    }
    .set > .a > a {
        color:#fff;
    }
    .set > .a > a:hover, .set > .a > a:active {
        color: #22C5D2;
    }
    .set > .a.has-active {
        color: #22C5D2;
    }
    .set > .a i{
        float: right;
        margin-top: 2px;
        font-size: 18px;
    }
    .acc__content {
        background-color: transparent;
        display: none;
        padding: 22px 5px;
        margin: 0;
    }
    .acc__content p {
        /* padding: 10px 15px;
        margin: 0; */
        color: #333;
    }
    .acc__content a {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        font-size: 22px;
        font-weight: 400;
        text-transform: capitalize;
        font-family: 'Montserrat', sans-serif;
        margin-top: 13px;
    }
    .acc__content a:hover {
        color: rgba(255, 255, 255, 0.9);
    }
    .acc__content a:first-child {
        margin-top: 0;
    }
    .acc__content a:active {
        color: #22C5D2;
    }
}
@media all and (max-width: 820px) {
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child {
        padding-left: 2.063em;
        margin-top: 20px;
    }
}
@media all and (max-width: 620px) {
    .fsmenu .fsmenu--container {
        padding: 7.625em 2em 8.438em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .fsmenu--list-element {
        height: 3.2em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list .fsmenu--list-element a span {
        font-size: 2.3em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child {
        padding-left: 1.563em;
    }
}

@media all and (max-width: 460px) {
    header {height:54px;}
    header .logo {
        display:flex; justify-content:flex-start; align-items:center;
    }
    header .logo .box {
        width:140px; height:21px;
    }

    .set {
        margin-top: 15px;
    }
    .set > .a {
        font-size:35px;
    }
    .acc__content {
        padding: 10px 5px;
    }
    .acc__content a {
        font-size: 15px;
    }

    .fsmenu .fsmenu--container {
        padding: 6.625em 1.3em 2.438em;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child {
        height: auto;
        padding-left: 0;
        margin-top: 30px;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container .fsmenu--list:last-child:before {
        display: none;
    }
    .fsmenu .fsmenu--container .fsmenu--text-block .fsmenu--text-container {
        justify-content: flex-start;
        height: 100%;
    }
}

@media all and (max-width: 320px) {
    .fsmenu .fsmenu--container {
        padding: 4.625em 1.3em 2.438em;
    }
    .set {
        margin-top: 11px;
    }
    .set > .a {
        font-size: 30px;
    }
    .acc__content a {
        margin-top: 9px;
    }
}