﻿@charset "UTF-8";

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: visible;
    }
}

@-moz-keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: visible;
    }
}

@keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: visible;
    }
}

.navBackLayer {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 237, 239, 0.85);
    z-index: 1;
}

    .navBackLayer.open {
        opacity: 1;
        visibility: visible;
        transform: opacity 0.15s ease-in-out;
    }


.cd-dropdown-content > li > a {
    font-size: 0.875rem;
    font-weight: 700;
}


.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
    color: #2D2C42;
}


.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
    padding: 0 20px;
}

.cd-dropdown {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 375px;
    height: 100%;
    background-color: #111433;
    color: #ffffff;
    visibility: hidden;
    /* Force Hardware Acceleration */
    /*   -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
  transition: transform 0.5s 0s, visibility 0s 0.5s; */
}

    .cd-dropdown h2 {
        /* dropdown title - mobile version only */
        position: relative;
        z-index: 1;
        color: #585a70;
        background-color: #111433;
        border-bottom: 1px solid #242643;
    }

    .cd-dropdown .cd-close {
        /* 'X' close icon - mobile version only */
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
        height: 50px;
        width: 50px;
        /* image replacement */
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        color: transparent;
    }

        .cd-dropdown .cd-close::after, .cd-dropdown .cd-close::before {
            /* this is the 'X' icon */
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            bottom: auto;
            right: auto;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            height: 20px;
            width: 2px;
            background-color: #ffffff;
        }

        .cd-dropdown .cd-close::after {
            -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform: translateX(-50%) translateY(-50%) rotate(45deg);
        }

        .cd-dropdown .cd-close::before {
            -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
            -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
            -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
            -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
            transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        }

    .cd-dropdown.dropdown-is-active {
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        /*   -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0s;
  transition: transform 0.5s 0s, visibility 0s 0s; */
    }



.cd-dropdown-content, .cd-dropdown-content ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.15s;
    -moz-transition: -moz-transform 0.15s;
    transition: transform 0.15s;
}

    .cd-dropdown-content a, .cd-dropdown-content ul a {
        display: block;
        color: #ffffff;
        /* truncate text with ellipsis if too long */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border-top-width: 1px;
        border-color: #242643;
        border-style: solid;
    }

    .cd-dropdown-content li:first-of-type > a, .cd-dropdown-content ul li:first-of-type > a {
        border-top-width: 0;
    }

    .cd-dropdown-content li:last-of-type > a, .cd-dropdown-content ul li:last-of-type > a {
        border-bottom-width: 1px;
    }

    .cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #0b0e23;
        font-size: 1.1rem;
        font-weight: bold;
        letter-spacing: 1px;
        color: #585a70;
        text-transform: uppercase;
    }

        .cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
            border-top-width: 0;
        }

    .cd-dropdown-content a, .cd-dropdown-content .cd-search, .cd-dropdown-content .cd-divider, .cd-dropdown-content ul a, .cd-dropdown-content ul .cd-search, .cd-dropdown-content ul .cd-divider {
        /* Force Hardware Acceleration */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        -moz-transition: opacity 0.3s, -moz-transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
    }

    .cd-dropdown-content.is-hidden, .cd-dropdown-content ul.is-hidden {
        /* push the secondary dropdown items to the right */
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

        .cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
            /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
            opacity: 0;
        }

    .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
        /* push the dropdown items to the left when secondary dropdown slides in */
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }


.dropdown-is-active .cd-dropdown-content, .dropdown-is-active .cd-dropdown-content ul {
    -webkit-overflow-scrolling: touch;
}





.cd-dropdown-content .see-all a {
    /* different style for the See all links */
    color: #3f8654;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    /* items with picture (or icon) and title */
    height: 80px;
    line-height: 80px;
}

    .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item h3, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
        /* truncate text with ellipsis if too long */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding-left: 90px;
}

.cd-dropdown-content .cd-dropdown-gallery img {
    position: absolute;
    display: block;
    height: 40px;
    width: auto;
    left: 20px;
    top: 50%;
    margin-top: -20px;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    padding-left: 75px;
    position: relative;
}

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
        color: #111433;
        font-size: 1.3rem;
        /* hide description on small devices */
        display: none;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
        /* item icon */
        content: '';
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        margin-top: -20px;
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 40px 40px;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-1::before {
        background-image: url("../img/nucleo-icon-1.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-2::before {
        background-image: url("../img/nucleo-icon-2.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-3::before {
        background-image: url("../img/nucleo-icon-3.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-4::before {
        background-image: url("../img/nucleo-icon-4.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-5::before {
        background-image: url("../img/nucleo-icon-5.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-6::before {
        background-image: url("../img/nucleo-icon-6.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-7::before {
        background-image: url("../img/nucleo-icon-7.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-8::before {
        background-image: url("../img/nucleo-icon-8.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-9::before {
        background-image: url("../img/nucleo-icon-9.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-10::before {
        background-image: url("../img/nucleo-icon-10.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-11::before {
        background-image: url("../img/nucleo-icon-11.svg");
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-12::before {
        background-image: url("../img/nucleo-icon-12.svg");
    }






.has-children > a, .go-back a {
    position: relative;
}

    .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
        /* arrow icon in CSS - for element with nested unordered lists */
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -1px;
        display: inline-block;
        height: 2px;
        width: 10px;
        background: #ffffff;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .has-children > a::before, .go-back a::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .has-children > a::after, .go-back a::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.has-children > a {
    padding-right: 40px;
}

    .has-children > a::before, .has-children > a::after {
        /* arrow goes on the right side - children navigation */
        right: 20px;
        -webkit-transform-origin: 9px 50%;
        -moz-transform-origin: 9px 50%;
        -ms-transform-origin: 9px 50%;
        -o-transform-origin: 9px 50%;
        transform-origin: 9px 50%;
    }



.cd-dropdown-content .go-back a {
    padding-left: 40px;
}

    .cd-dropdown-content .go-back a::before, .cd-dropdown-content .go-back a::after {
        /* arrow goes on the left side - go back button */
        left: 20px;
        -webkit-transform-origin: 1px 50%;
        -moz-transform-origin: 1px 50%;
        -ms-transform-origin: 1px 50%;
        -o-transform-origin: 1px 50%;
        transform-origin: 1px 50%;
    }

.cd-main-content {
    background-color: #e6e6e6;
    min-height: calc(100vh - 100px);
    padding: 2em 5%;
    line-height: 2;
}

.no-js .cd-dropdown-wrapper:hover .cd-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.no-js .cd-dropdown-wrapper .cd-close {
    display: none;
}





.cd-dropdown {
    box-shadow: none;
    border-right: solid thin #e8e8e8;
}


/**************/
/*kyries categories*/
/**************/
.cd-dropdown-content {
    height: 100%;
    overflow-y: auto;
    padding: 4px 11px;
}

    .cd-dropdown-content a, .cd-dropdown-content ul a {
        border: none;
    }

    .cd-dropdown-content > .has-children > a.is-active, .no-touch .cd-dropdown-content > li > a:hover {
        box-shadow: none;
        color: #2C2D31;
        position: relative;
        background-color: #ffc500;
        border-radius: 4px;
    }


/**************/
/*sub-categories*/
/**************/
.cd-secondary-dropdown {
    box-shadow: none !important;
}

    .cd-secondary-dropdown.is-hidden {
        overflow-y: hidden;
    }

    .cd-secondary-dropdown.is-active {
        /*   height: calc(100vh - 100px);
  overflow-y: auto;

  width: calc(100vw - 401px) !important;
  padding: 20px 10px !important; */
    }

.cd-dropdown-content .cd-secondary-dropdown::before {
    content: none;
}

.cd-dropdown-content .cd-secondary-dropdown > li {
    /*   border: none;
  border-top:solid thin red;
  padding: 0;
  width: calc(16.66% - 20px);
  margin: 0 10px 20px 10px;
  float: left;
  height: 430px;
  background-color:#f2f2f2; */
}



    .cd-dropdown-content .cd-secondary-dropdown > li > a {
        color: #2e2c42;
    }

.cd-dropdown-content .cd-secondary-dropdown a {
    line-height: 26px;
    font-size: 14px;
}

    .cd-dropdown-content .cd-secondary-dropdown a:hover {
        color: #4960F2;
    }

.cd-dropdown-content .cd-secondary-dropdown .see-all > a {
    color: #2D2C42;
}

.cd-dropdown-content .cd-secondary-dropdown > li .categoryIcon {
    border-radius: 4px;
    padding: 0;
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color: #f7f7f9;
    background-position: top 0px left 0px;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

    .cd-dropdown-content .cd-secondary-dropdown > li .categoryIcon img {
        /*   position: absolute;
  right: 10px;
  bottom: 0;
  max-width: 150px; */
        width: auto;
        height: 100%;
    }








.cd-search input[type="search"] {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #242643;
    color: #ffffff;
    border: none;
    border-radius: 0;
}

    .cd-search input[type="search"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .cd-search input[type="search"]::-moz-placeholder {
        color: #ffffff;
    }

    .cd-search input[type="search"]:-moz-placeholder {
        color: #ffffff;
    }

    .cd-search input[type="search"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .cd-search input[type="search"]:focus {
        background: #ffffff;
        color: #111433;
        outline: none;
    }

        .cd-search input[type="search"]:focus::-webkit-input-placeholder {
            color: rgba(17, 20, 51, 0.4);
        }

        .cd-search input[type="search"]:focus::-moz-placeholder {
            color: rgba(17, 20, 51, 0.4);
        }

        .cd-search input[type="search"]:focus:-moz-placeholder {
            color: rgba(17, 20, 51, 0.4);
        }

        .cd-search input[type="search"]:focus:-ms-input-placeholder {
            color: rgba(17, 20, 51, 0.4);
        }



.cd-dropdown li.special {
    font-size: 1.25rem;
    padding: 0px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

    .cd-dropdown li.special a {
        font-size: 1.25rem;
        padding: 0.75rem 1rem;
        height: auto;
        line-height: 1.25;
    }

    .cd-dropdown li.special:first-of-type {
        border: none;
    }

    .cd-dropdown li.special a > span {
        display: block;
        font-size: 0.875rem;
    }


.cd-dropdown .subSection {
    margin: 0.8rem 0px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

    .cd-dropdown .subSection:last-child {
        margin-bottom: 5.5rem;
    }

    .cd-dropdown .subSection h3 {
        cursor: pointer;
        color: #8F9199;
        padding: 0px 22px;
        margin: 2rem 0px 1.5rem 0px;
    }

    .cd-dropdown .subSection.collapsed h3 {
        margin-bottom: 0.5rem;
    }

    .cd-dropdown .subSection ul {
        position: relative;
        top: auto;
        left: auto;
        overflow: hidden;
        display: block;
        height: auto;
        max-height: auto;
    }

    .cd-dropdown .subSection.collapsed ul {
        overflow: hidden;
        display: none;
        max-height: 0;
    }

    .cd-dropdown .subSection li {
        font-weight: 500;
        padding: 8px 22px 8px 22px;
    }

        .cd-dropdown .subSection li a {
            padding: 0px;
            font-size: 0.875rem;
            line-height: 1.25;
            height: auto;
            color: #2D2C42;
        }

.no-touch .cd-dropdown .subSection li a:hover {
    color: #4960F2;
}

.cd-dropdown .subSection span.underText {
    display: block;
    font-size: 0.75rem;
    color: #8F9199;
}

.cd-dropdown li a.flexAnchor {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2D2C42;
}

.cd-dropdown .subSection .leftText {
    flex: 0 1 auto;
}

.cd-dropdown .subSection .rightImg {
    height: auto;
    max-width: 20px;
    align-self: center;
    flex: 1 0 20px;
}





@media only screen and (min-width: 768px) {
    .cd-dropdown h2,
    .cd-dropdown-content a,
    .cd-dropdown-content ul a {
        height: 60px;
        line-height: 60px;
    }

    .cd-dropdown .cd-close {
        top: 5px;
    }

    .cd-dropdown-content, .cd-dropdown-content ul {
        /*     padding-top: 60px; */
    }

        .cd-dropdown-content a, .cd-dropdown-content ul a {
            font-size: 1.8rem;
        }
}





@media only screen and (min-width: 1025px) {

    .cd-dropdown-content .cd-secondary-dropdown > li {
        width: 33.33%;
    }

    .cd-dropdown-content .cd-secondary-dropdown li.mobileLink {
        display: none;
    }

    .homePage .mainHeader .cd-dropdown {
        top: 70px;
        height: calc(100vh - 140px);
    }

    .homePage .mainHeader.fixed .cd-dropdown {
        top: 50px;
        height: calc(100vh - 60px);
    }




    .cd-dropdown h2,
    .cd-dropdown-content a,
    .cd-dropdown-content ul a {
        height: 50px;
        line-height: 50px;
    }


    .cd-dropdown {
        position: absolute;
        top: 70px;
        /* reset style*/
        height: calc(100vh - 70px);
        border-right: 1px solid #EAEAED;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        background-color: #ffffff;
        opacity: 0;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
        transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
    }

    .mainHeader.fixed .cd-dropdown {
        top: 50px;
        /* reset style*/
        height: calc(100vh - 60px);
    }

    .cd-dropdown .subSection {
        display: none;
    }


    .open-to-left .cd-dropdown {
        /* use the .open-to-left class if you want to open the dropdown on the left */
        right: 0;
        left: auto;
    }

    .cd-dropdown h2, .cd-dropdown .cd-close {
        /* on desktop - hide title and 'X' */
        display: none;
    }

    .cd-dropdown.dropdown-is-active {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0.3s 0s, -moz-transform 0.3s 0s;
        transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
    }

    .cd-dropdown-content, .cd-dropdown-content ul {
        padding-top: 0;
        /*     overflow: visible; */
    }

        .cd-dropdown-content a, .cd-dropdown-content ul a {
            color: #2D2C42;
            height: 35px;
            line-height: 35px;
            font-size: 1.5rem;
            border-color: #ebebeb;
        }

        .cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
            background-color: transparent;
            color: #b3b3b3;
            border-top: 1px solid #ebebeb;
        }

            .cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
                border-top-width: 1px;
            }

        .cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
            /* reset mobile style */
            opacity: 1;
        }


    .cd-dropdown-content {
        /* reset mobile style */
        position: static;
        /*     height: auto; */
        width: 375px;
        padding-top: 1rem;
    }

        .cd-dropdown-content > li:last-of-type a {
            border-bottom: none;
        }

        .cd-dropdown-content > li:not(.has-children) a:hover {
            color: #4960F2;
            background-color: transparent;
        }

        .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider {
            /* reset mobile style */
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }

    .desktop .cd-dropdown-content .cd-secondary-dropdown,
    .desktop .cd-dropdown-content .cd-dropdown-gallery,
    .desktop .cd-dropdown-content .cd-dropdown-icons {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        left: 100%;
        height: auto;
        background-color: #ffffff;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    }

    .cd-dropdown-content .cd-secondary-dropdown::after, .cd-dropdown-content .cd-dropdown-gallery::after, .cd-dropdown-content .cd-dropdown-icons::after {
        clear: both;
        content: "";
        display: table;
    }

    .open-to-left .cd-dropdown-content .cd-secondary-dropdown, .open-to-left .cd-dropdown-content .cd-dropdown-gallery, .open-to-left .cd-dropdown-content .cd-dropdown-icons {
        /* use the .open-to-left class if you want to open the dropdown on the left */
        left: auto;
        right: 100%;
    }

    .cd-dropdown-content .cd-secondary-dropdown.is-hidden, .cd-dropdown-content .cd-dropdown-gallery.is-hidden, .cd-dropdown-content .cd-dropdown-icons.is-hidden {
        /* reset mobile style */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .cd-dropdown-content .cd-secondary-dropdown.fade-in, .cd-dropdown-content .cd-dropdown-gallery.fade-in, .cd-dropdown-content .cd-dropdown-icons.fade-in {
        /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
        -webkit-animation: cd-fade-in 0.2s;
        -moz-animation: cd-fade-in 0.2s;
        animation: cd-fade-in 0.2s;
    }

    .cd-dropdown-content .cd-secondary-dropdown.fade-out, .cd-dropdown-content .cd-dropdown-gallery.fade-out, .cd-dropdown-content .cd-dropdown-icons.fade-out {
        /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
        -webkit-animation: cd-fade-out 0.2s;
        -moz-animation: cd-fade-out 0.2s;
        animation: cd-fade-out 0.2s;
    }

    .cd-dropdown-content .cd-secondary-dropdown > .go-back, .cd-dropdown-content .cd-dropdown-gallery > .go-back, .cd-dropdown-content .cd-dropdown-icons > .go-back {
        display: none;
    }

    .cd-dropdown-content .cd-secondary-dropdown > .see-all, .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
        position: absolute;
        bottom: 20px;
        height: 45px;
        text-align: center;
    }

        .cd-dropdown-content .cd-secondary-dropdown > .see-all a, .cd-dropdown-content .cd-dropdown-gallery > .see-all a, .cd-dropdown-content .cd-dropdown-icons > .see-all a {
            margin: 0;
            height: 100%;
            line-height: 45px;
            background: #ebebeb;
            pointer-events: auto;
            -webkit-transition: color 0.2s, background-color 0.2s;
            -moz-transition: color 0.2s, background-color 0.2s;
            transition: color 0.2s, background-color 0.2s;
        }

    .no-touch .cd-dropdown-content .cd-secondary-dropdown > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-gallery > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-icons > .see-all a:hover {
        color: #ffffff;
        background-color: #111433;
    }

    .cd-dropdown-content .cd-secondary-dropdown .cd-dropdown-item, .cd-dropdown-content .cd-secondary-dropdown a, .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-gallery a, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons a {
        border: none;
    }

    .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
        padding: 20px 30px 100px;
    }

        .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
            width: calc(100% - 60px);
        }

    .desktop .cd-dropdown-content .cd-secondary-dropdown {
        overflow: auto;
        width: calc(100vw - 450px);
        height: 100%;
        padding: 20px;
    }

    .cd-dropdown-content .cd-secondary-dropdown::before {
        /* this is the separation line in the middle of the .cd-secondary-dropdown element */
        /*     position: absolute;
    content: '';
    top: 290px;
    left: 15px;
    height: 1px;
    width: 520px;
    background-color: #ebebeb; */
    }

    .cd-dropdown-content .cd-secondary-dropdown > li > a {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 30px;
        height: 30px;
        /*     pointer-events: none; */
    }

        /*   .cd-dropdown-content .cd-secondary-dropdown > li > a.categoryIcon{
    pointer-events:auto;
  } */

        .cd-dropdown-content .cd-secondary-dropdown > li > a::after, .cd-dropdown-content .cd-secondary-dropdown > li > a::before {
            /* hide the arrow */
            display: none;
        }

    .cd-dropdown-content .cd-secondary-dropdown.move-out > li > a {
        /* reset mobile style */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .cd-dropdown-content .cd-secondary-dropdown > li {
        margin: 0px 0px 1rem 0px;
        /*     border-right-width: 1px;
    border-color: #ebebeb;
    border-style: solid; */
        padding: 0 0.5rem;
        height: 430px;
        float: left;
    }

    .cd-dropdown-content li.no-height-children .cd-secondary-dropdown > li {
        height: auto;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li.bigMenu {
        height: 100%;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li:nth-of-type(2n) {
        border-right-width: 0;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li > ul {
        /* reset mobile style */
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
        position: relative;
        height: auto;
    }

        .cd-dropdown-content .cd-secondary-dropdown > li > ul > .go-back {
            display: none;
        }

    .cd-dropdown-content .cd-secondary-dropdown a {
        line-height: 25px;
        height: 25px;
        font-size: 0.875rem;
        padding-left: 0;
    }

    .no-touch .cd-dropdown-content .cd-secondary-dropdown a:not(.categoryIcon):hover {
        color: #4960F2;
        background: transparent;
    }

    .cd-dropdown-content .cd-secondary-dropdown ul {
        padding-bottom: 25px;
        overflow: hidden;
        height: auto;
    }

    .cd-dropdown-content .cd-secondary-dropdown .go-back a {
        padding-left: 20px;
        color: transparent;
    }

    .no-touch .cd-dropdown-content .cd-secondary-dropdown .go-back a:hover {
        color: transparent;
    }

    .cd-dropdown-content .cd-secondary-dropdown .go-back a::before, .cd-dropdown-content .cd-secondary-dropdown .go-back a::after {
        left: 0;
    }

    .cd-dropdown-content .cd-secondary-dropdown .see-all {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        font-weight: 600;
    }

    .cd-dropdown-content .cd-dropdown-gallery {
        width: 600px;
        padding-bottom: 100px;
    }

        .cd-dropdown-content .cd-dropdown-gallery > li {
            width: 48%;
            float: left;
            margin-right: 4%;
        }

            .cd-dropdown-content .cd-dropdown-gallery > li:nth-of-type(2n) {
                margin-right: 0;
            }

        .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
            padding: 0;
            height: auto;
            line-height: normal;
            color: #3f8654;
            margin-bottom: 2em;
        }

        .cd-dropdown-content .cd-dropdown-gallery > li:nth-last-of-type(2) a,
        .cd-dropdown-content .cd-dropdown-gallery > li:last-of-type a {
            margin-bottom: 0;
        }

        .cd-dropdown-content .cd-dropdown-gallery img {
            position: static;
            height: auto;
            width: 100%;
            margin: 0 0 0.6em;
        }

    .cd-dropdown-content .cd-dropdown-icons {
        width: 600px;
    }

        .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
            height: 80px;
            line-height: 1.2;
            padding: 24px 0 0 85px;
        }

            .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item:hover {
                background: #ebebeb;
            }

            .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
                color: #3f8654;
                font-weight: bold;
            }

            .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
                display: block;
                font-size: 1.2rem;
            }

            .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
                left: 25px;
            }

    .cd-dropdown-content > .has-children > ul {
        visibility: hidden;
    }

        .cd-dropdown-content > .has-children > ul.is-active {
            /* when hover over .cd-dropdown-content items - show subnavigation */
            visibility: visible;
        }

    .desktop .cd-dropdown-content > .has-children > .cd-secondary-dropdown.is-active > li > ul {
        /* if .cd-secondary-dropdown is visible - show also subnavigation */
        visibility: visible;
    }

    .desktop .cd-dropdown-content > .has-children > a.is-active {
        /* hover effect for .cd-dropdown-content items with subnavigation */
        /*     box-shadow: inset 2px 0 0 #3f8654;
    color: #3f8654; */
    }

        .desktop .cd-dropdown-content > .has-children > a.is-active::before, .cd-dropdown-content > .has-children > a.is-active::after {
            background: #2D2C42;
        }

    .desktop .open-to-left .cd-dropdown-content > .has-children > a.is-active {
        box-shadow: inset -2px 0 0 #3f8654;
    }

    .desktop .cd-search input[type="search"] {
        background-color: #ebebeb;
    }

        .desktop .cd-search input[type="search"]::-webkit-input-placeholder {
            color: #b3b3b3;
        }

        .desktop .cd-search input[type="search"]::-moz-placeholder {
            color: #b3b3b3;
        }

        .desktop .cd-search input[type="search"]:-moz-placeholder {
            color: #b3b3b3;
        }

        .desktop .cd-search input[type="search"]:-ms-input-placeholder {
            color: #b3b3b3;
        }

    .desktop .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
        background: #b3b3b3;
    }

    .desktop .open-to-left .cd-dropdown-content > .has-children > a {
        padding-left: 40px;
        padding-right: 20px;
    }

        .desktop .open-to-left .cd-dropdown-content > .has-children > a::before, .open-to-left .cd-dropdown-content > .has-children > a::after {
            right: auto;
            left: 20px;
            -webkit-transform-origin: 1px 50%;
            -moz-transform-origin: 1px 50%;
            -ms-transform-origin: 1px 50%;
            -o-transform-origin: 1px 50%;
            transform-origin: 1px 50%;
        }


    .desktop .cd-dropdown.dropdown-is-active {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }

    .desktop .cd-dropdown-content .cd-secondary-dropdown.is-hidden, .cd-dropdown-content .cd-dropdown-gallery.is-hidden, .cd-dropdown-content .cd-dropdown-icons.is-hidden {
        -webkit-transform: translateX(1px);
        -moz-transform: translateX(1px);
        -ms-transform: translateX(1px);
        -o-transform: translateX(1px);
        transform: translateX(1px);
    }

    ul.cd-dropdown-content > li:last-of-type a {
        margin-bottom: 50px;
    }
}


@media only screen and (min-width: 1400px) {

    .cd-dropdown-content .cd-secondary-dropdown > li {
        width: 25%;
    }
}

@media only screen and (min-width: 1600px) {

    .cd-dropdown-content .cd-secondary-dropdown > li {
        width: 20%;
    }
}

@media only screen and (min-width: 1681px) {

    .cd-dropdown-content .cd-secondary-dropdown > li {
        width: 16.66%;
    }
}



@media (max-width:1024px) {

    .homePage .mainHeader.fixed .cd-dropdown,
    .homePage .mainHeader .cd-dropdown {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .cd-dropdown {
        top: 70px;
        height: calc(100% - 70px);
        overflow: hidden;
        background: #fff;
    }

    .cd-dropdown-content {
        padding-top: 20px;
        margin-top: 0;
    }

        .cd-dropdown-content a {
            color: #2C2D31;
            transition: all linear 0.1s;
            border-radius: 4px;
            font-size: 16px;
            line-height: 45px;
            height: unset;
        }

        .cd-dropdown-content > li:not(.has-children) > a:hover,
        .cd-dropdown-content li.has-children a:hover {
            background-color: transparent;
            color: #2D2C42;
        }

    .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
        background-color: #4a4a4a;
    }

    .BigMenu {
        height: unset !important;
    }

    .cd-secondary-dropdown.is-active {
        width: 100%;
        padding: 0;
        padding-top: 20px;
        height: 100%;
        overflow-y: unset;
        z-index: 9999;
    }


    .cd-dropdown-content, .cd-dropdown-content ul {
        position: fixed;
        height: calc(100vh - 70px);
    }

        .cd-dropdown-content .cd-secondary-dropdown {
            background-color: #fff;
            z-index: 1;
        }

            .cd-dropdown-content .cd-secondary-dropdown > li {
                width: 100%;
                float: unset;
                height: auto;
                border: none;
                margin: 0;
            }

            .cd-dropdown-content .cd-secondary-dropdown a {
                font-size: 0.875rem;
                font-weight: 600;
                line-height: 45px;
                height: unset;
                color: #2C2D31;
            }

            .cd-dropdown-content .cd-secondary-dropdown > li .categoryIcon {
                display: none;
            }

            .cd-dropdown-content .cd-secondary-dropdown .see-all > a {
                display: none;
            }

    .move-out {
        overflow: hidden !important;
    }
}


@media (max-width:575px) {

    .cd-dropdown {
        width: 320px;
    }
}





@media only screen and (min-width: 1025px) {

    /*   .tablet .homePage .mainHeader.fixed .cd-dropdown{
    top:54px;
    height: calc(100vh - 54px);
  } */

    .tablet .cd-dropdown {
        overflow: hidden;
    }

    /*********************/

    .tablet .cd-dropdown-content {
        padding-top: 20px;
    }

        .tablet .cd-dropdown-content .cd-secondary-dropdown > .go-back,
        .tablet .cd-dropdown-content .cd-dropdown-gallery > .go-back,
        .tablet .cd-dropdown-content .cd-dropdown-icons > .go-back {
            display: block;
        }


        .tablet .cd-dropdown-content a {
            color: #2C2D31;
            transition: all linear 0.1s;
            border-radius: 4px;
            font-size: 16px;
            line-height: 45px;
            height: unset;
        }

        .tablet .cd-dropdown-content > li:not(.has-children) > a:hover,
        .tablet .cd-dropdown-content li.has-children a:hover {
            background-color: transparent;
            color: #2D2C42;
        }


    .tablet .BigMenu {
        height: unset !important;
    }

    .tablet .cd-secondary-dropdown.is-active {
        width: 100%;
        padding: 0;
        padding-top: 20px;
        height: 100%;
        overflow-y: unset;
        z-index: 9991;
    }

    .tablet .cd-dropdown-content .cd-secondary-dropdown > li > ul,
    .tablet .cd-dropdown-content,
    .tablet .cd-dropdown-content ul {
        position: fixed;
        height: calc(100vh - 54px);
    }


        .tablet .cd-dropdown-content,
        .tablet .cd-dropdown-content ul {
            top: 0;
            left: 0;
            width: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-transition: -webkit-transform 0.15s;
            -moz-transition: -moz-transform 0.15s;
            transition: transform 0.15s;
            background-color: #fff;
            z-index: 9992;
        }

            .tablet .cd-dropdown-content .cd-secondary-dropdown > li > ul > .go-back {
                display: block;
            }

            .tablet .cd-dropdown-content .cd-secondary-dropdown > li > ul {
                position: fixed;
                height: calc(100vh - 54px);
                top: 20px;
            }




            .tablet .cd-dropdown-content .cd-secondary-dropdown {
                background-color: #fff;
            }

                .tablet .cd-dropdown-content .cd-secondary-dropdown > li {
                    width: 100%;
                    float: unset;
                    height: auto;
                    border: none;
                    margin: 0;
                }

                .tablet .cd-dropdown-content .cd-secondary-dropdown a {
                    font-size: 0.875rem;
                    font-weight: 600;
                    line-height: 45px;
                    height: unset;
                    color: #2C2D31;
                }

                .tablet .cd-dropdown-content .cd-secondary-dropdown > li .categoryIcon {
                    display: none;
                }

                .tablet .cd-dropdown-content .cd-secondary-dropdown .see-all > a {
                    display: none;
                }

    .tablet .move-out {
        overflow: hidden !important;
    }

    .tablet .cd-dropdown-content .cd-secondary-dropdown {
        background-color: #fff;
        height: calc(100vh - 54px);
        padding-top: 34px;
        /*! z-index: 999; */
    }

    .tablet .cd-secondary-dropdown {
        visibility: visible !important;
    }

        .tablet .cd-secondary-dropdown ul.is-hidden,
        .tablet .cd-secondary-dropdown.is-hidden {
            visibility: hidden !important;
        }


    .tablet .cd-dropdown-content .cd-secondary-dropdown > li > a::after,
    .tablet .cd-dropdown-content .cd-secondary-dropdown > li > a::before {
        display: block;
    }

    .tablet .has-children > a,
    .tablet .go-back a {
        position: relative;
    }

        .tablet .has-children > a::before,
        .tablet .has-children > a::after,
        .tablet .go-back a::before,
        .tablet .go-back a::after {
            content: '';
            position: absolute;
            top: 50%;
            margin-top: -1px;
            display: inline-block;
            height: 2px;
            width: 10px;
            background: #4a4a4a;
            background-color: rgb(255, 255, 255);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .tablet .has-children > a::before,
        .tablet .has-children > a::after,
        .tablet .go-back a::before,
        .tablet .go-back a::after {
            background-color: #2C2D31;
        }

        .tablet .has-children > a::before,
        .tablet .go-back a::before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .tablet .has-children > a::before,
        .tablet .has-children > a::after {
            /* arrow goes on the right side - children navigation */
            right: 20px;
            -webkit-transform-origin: 9px 50%;
            -moz-transform-origin: 9px 50%;
            -ms-transform-origin: 9px 50%;
            -o-transform-origin: 9px 50%;
            transform-origin: 9px 50%;
        }


    .tablet .cd-dropdown-content .go-back a {
        padding-left: 40px;
    }

        .tablet .cd-dropdown-content .go-back a::before,
        .tablet .cd-dropdown-content .go-back a::after {
            /* arrow goes on the left side - go back button */
            left: 20px;
            -webkit-transform-origin: 1px 50%;
            -moz-transform-origin: 1px 50%;
            -ms-transform-origin: 1px 50%;
            -o-transform-origin: 1px 50%;
            transform-origin: 1px 50%;
        }




    .tablet .cd-dropdown-content.is-hidden,
    .tablet .cd-dropdown-content ul.is-hidden {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        position: fixed;
        height: calc(100vh - 70px);
    }


    .tablet .cd-dropdown h2,
    .tablet .cd-dropdown-content a,
    .tablet .cd-dropdown-content ul a,
    .tablet .cd-dropdown-content .cd-divider {
        padding: 0 20px;
    }

    .tablet .cd-dropdown .subSection {
        display: block;
    }

        .tablet .cd-dropdown .subSection ul {
            position: relative;
            top: auto;
            left: auto;
            overflow: hidden;
            display: block;
            height: auto;
            max-height: auto;
        }





    /**********/







}
