header ul {
    padding: 0;
}

.menu {
    justify-content: space-between;
    align-items: flex-start;
    padding: 22px 0px 15px 0px;
    position: relative;
}

.menu-container {
    padding: 20px 0px;
    position: relative;
}

header .nav-list {
    font-size: 17px;
    line-height: 25px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
}

header .nav-list li {
    margin-right: 43px;
}

.nav-list li a,
.designedBy a {
    -webkit-transition: color 0.35s ease-in-out;
    -o-transition: color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out;
}

.nav-list li a:hover,
.designedBy a:hover,
#footer .current-menu-item a {
    color: var(--orange);
}

header .current-menu-item {
    position: relative;
}

header .current-menu-item:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -5px;
    left: 0;
    background-color: var(--orange);
}

/* search form  */

.searchForm {
    display: none;
    position: absolute;
    padding: 25px;
    width: 100%;
    top: 100%;
    max-width: 693px;
    background-color: var(--lightgrey);
    right: 0;
    z-index: 999;
}



.searchItems {
    display: flex;
}

.searchfield {
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #707070;
    color: var(--grey);
    font-size: 17px;
    line-height: 21px;
    font-weight: 500;
    margin-left: 10px;
}

#navbar .searchfield {
    margin-right: 24px;
}

.searchfield:focus {
    outline: none !important;
}

header .clear {
    display: none;
}

#searchsubmit {
    display: block;
    padding: 7px 22px 6px 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 46px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    border: none;
    background-color: var(--orange);
    color: var(--white);
}




/* FOOTER CSS */
#footer {
    overflow: hidden;
}

.MainFooter {
    padding: 47px 0px 127px 0px;
    border-top: 1px solid var(--border);
    position: relative;
}

.MainFooter::before,
.subFooter::before {
    content: '';
    position: absolute;
    top: -1px;
    right: auto;
    left: -300%;
    width: 300%;
    height: 1px;
    background-color: var(--border);
}

.MainFooter::after,
.subFooter::after {
    content: '';
    position: absolute;
    top: -1px;
    left: auto;
    right: -300%;
    width: 300%;
    height: 1px;
    background-color: var(--border);
}

.MainFooter .col_1_1 .col {
    padding: 0;
}

.footer_logo a {
    display: block;
}

.footer_logo a:not(:last-child) {
    margin-bottom: 45px;
}

.MainFooter .flexWrap {
    justify-content: space-between;
}

.MainFooter ul {
    padding: 0;
    flex-direction: column;
}

.MainFooter #nav-list {
    font-size: 18px;
    line-height: 26px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.011em;
    text-transform: uppercase;
}


.MainFooter #nav-list li:not(:last-child) {
    padding-bottom: 9px;
}

.MainFooter #footer_nav {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}

.MainFooter #footer_nav li {
    padding-top: 5px;
}

.MainFooter #footer_nav li:not(:last-child) {
    padding-bottom: 11px;
}

.socialLinks {
    align-items: center;
}

.socialLinks a:first-child {
    margin-right: 31px;
}

.subFooter {
    font-size: 12px;
    line-height: 24px;
    font-weight: normal;
    border-top: 1px solid var(--border);
    padding-top: 23px;
    padding-bottom: 30px;
    justify-content: space-between;
    position: relative;
}

.subFooter .flexWrap {
    justify-content: space-between;
}

#legalicy_nav {
    padding: 0;
    justify-content: flex-start !important;
}

#legalicy_nav li {
    display: block;
    margin-right: 80px;
}





@media screen and (max-width: 1080px) {

    .menu {
        flex-direction: row-reverse;
    }

    .hamburger {
        width: 21px;
        position: relative;
        cursor: pointer;
        z-index: 999;
        display: block;
        margin-top: 30px;
    }

    .hamburger .line {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        margin: 0px;
        background-color: var(--orange);
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .hamburger .line.one,
    .hamburger .line.two {
        margin-bottom: 6px;
    }

    .hamburger.active {
        z-index: 999;
    }

    .hamburger.active .line {
        background-color: var(--white);
    }

    .hamburger.active .one {
        -webkit-transform: translateY(10px) rotate(45deg);
        -ms-transform: translateY(10px) rotate(45deg);
        -o-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active .two {
        opacity: 0;
    }


    .hamburger.active .three {
        -webkit-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(6px) rotate(-45deg);
        -o-transform: translateY(-6px) rotate(-45deg);
        transform: translateY(-6px) rotate(-45deg);
    }

    header .menu-container {
        position: fixed;
        top: 0px;
        right: -100%;
        left: auto;
        width: 50%;
        height: 100%;
        z-index: 99;
        padding: 105px 45px;
        background: var(--orange);
        -webkit-transition: right 0.5s ease-in-out;
        -o-transition: right 0.5s ease-in-out;
        transition: right 0.5s ease-in-out;
        flex-direction: column;
        padding-top: 90px;
        flex-wrap: unset;
        overflow-y: auto;
        overflow-x: hidden;
        align-items: flex-start;
        justify-content: flex-start;
    }

    header .menu-container::before {
        content: '';
        display: block;
        width: 50%;
        height: 95px;
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        bottom: 0;
        background-color: var(--orange);
        z-index: 9999;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .nav-active header .menu-container::before {
        right: 0;
    }

    .nav-active {
        overflow: hidden;
    }

    .nav-active .menu-container {
        right: 0;
    }

    header .nav-list {
        font-size: 30px;
        line-height: 35px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: -0.01em;
        font-weight: 600;
        text-transform: uppercase;
        flex-direction: column;
        width: 100%;
    }

    header .nav-list li {
        margin-right: 0px;
        display: block;
        width: 100%;
    }

    header .nav-list li:not(:last-child) {
        padding-bottom: 20px;
    }

    header .nav-list li a {
        color: var(--white);
        display: block;
        width: 100%;
    }

    .nav-list li a:hover,
    .nav-list li.current-menu-item a,
    .designedBy a:hover,
    #footer .current-menu-item a {
        color: var(--darkgrey);
        transition: none !important;
    }

    .searchForm {
        padding: 25px 0px;
        display: block;
        position: relative;
        top: 0;
        background-color: transparent;
    }

    .searchHolder {
        border-bottom: 2px solid var(--white)
    }

    #navbar .searchfield {
        border: none;
        padding-bottom: 10px;
        margin: 0;
    }


    #searchsubmit {
        display: block;
        font-size: 0px;
        padding: 5px;
        border: none;
        width: 22px;
        height: 22px;
        background-color: transparent;
        background-image: url(../images/whitesearch.svg);
        background-repeat: no-repeat;
        background-position: center center;
    }

    .overlay {
        position: fixed;
        background: rgba(0, 33, 96, 0.01);
        z-index: 1;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out;
    }

    .nav-active .overlay {
        opacity: 1;
        visibility: visible;
    }

    header .nav-list>a.LinkedIn svg path,
    header .nav-list>a.Twitter svg path {
        fill: var(--white);
    }

    header .nav-list>a.LinkedIn {
        bottom: 35px;
        left: 45px;
        position: relative;
    }

}


@media screen and (max-width: 767px) {
    .HeaderLogo {
        max-width: 63px;
    }

    header .menu-container {
        width: 100%;
    }

    header .menu-container::before {
        width: 100% !important;
    }

    .nav-active .desktopNone {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .MainFooter {
        padding: 32px 0px 36px 0px;
    }

    .MainFooter .flexWrap,
    #legalicy_nav {
        flex-direction: column;
    }

    .footer_logo {
        margin-bottom: 36px;
    }

    .MainFooter #nav-list {
        margin-bottom: 26px;
    }

    .MainFooter #footer_nav {
        margin-bottom: 28px;
    }

    .subFooter {
        flex-wrap: nowrap;
    }

    .wrapper {
        max-width: 221px;
    }

    .socialLinks.flexWrap {
        flex-direction: row;
    }

    .hamburger {
        margin-top: 10px;
    }

    .cky-notice-des {
        max-height: 100% !important;
        overflow: unset !important;
        padding: 0 !important;
    }

    .cky-notice-des p br {
        display: none !important;
    }

    .cky-notice-btn-wrapper {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 0 !important;
    }

    .cky-btn.cky-btn-accept {
        width: auto !important;
    }

    .cky-notice-btn-wrapper {
        flex-direction: row !important;
        margin-top: 20px !important;
    }

    .cky-consent-container .cky-consent-bar {
        align-items: flex-start !important;
    }
}

@media screen and (min-width: 768px) {
    .desktopNone {
        display: none;
    }

}

@media screen and (min-width: 1081px) {
    .hamburger {
        display: none;
    }

    #navbar .searchForm .clear {
        display: none;
    }

}


/* SEARCH TO CLOSE */

#navbar .magic-icon-search {
    transition: 0.35s all ease-in-out;
    display: inline-block;
    width: 21px;
}

.magic-icon-search::before {
    content: url('../images/search.svg');
}

.magic-icon-search.close::before {
    content: url('../images/close.svg');
}

header .desktopNone {
    display: none;
    position: absolute;
    left: 17px;
    top: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out visibility 0.2s ease;
}