html, body {
    font-family: "Open Sans";
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0
}

.header {
    z-index: 1000;
    top: 0;
    left: 0;
    width: 99.5%;
    max-width: 2000px !important;
    height: 85px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box
}

@media screen and (max-width: 980px) {
    .header {
        height: 53px
    }
}

.header ::before, .header ::after, .header * {
    box-sizing: content-box
}

.header .header-content {
    max-width: calc(1510px - 16px * 2);
    padding: 0 16px;
    width: calc(100% - 16px * 2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000
}

    .header .header-content .logo-wrapper {
        background-color: white
    }

        .header .header-content .logo-wrapper img {
            width: 126px
        }

@media screen and (max-width: 980px) {
    .header .header-content .logo-wrapper img {
        width: 96px
    }
}

.header .header-content .navigation {
    display: flex;
    align-items: center;
    justify-content: center
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation {
        position: absolute;
        top: 53px;
        left: 0;
        width: calc(100% - 30px * 2);
        height: 0px;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 40px 30px 20px;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        transition: all 0.25s ease
    }

        .header .header-content .navigation.active {
            height: calc(100vh - 53px - 40px - 20px);
            overflow: auto;
            padding-top: 40px;
            padding-bottom: 20px;
            z-index:100;

        }
}

.header .header-content .navigation .navigation-item {
    position: relative
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item {
        width: 100%;
        text-align: right
    }
}

.header .header-content .navigation .navigation-item .navigation-first-level {
    transition: all 0.25s ease;
    text-transform: uppercase
}

    .header .header-content .navigation .navigation-item .navigation-first-level.non-active {
        opacity: 0.3
    }

        .header .header-content .navigation .navigation-item .navigation-first-level.non-active:hover {
            opacity: 1
        }

.header .header-content .navigation .navigation-item p {
    margin: 0;
    /*font-weight: bold;*/
    font-size: 15px;
    display: inline-block;
    position: relative;
    cursor: pointer
}

    .header .header-content .navigation .navigation-item p a {
        color: #000 !important;
        text-decoration: none
    }

    .header .header-content .navigation .navigation-item p::before {
        content: "";
        position: absolute;
        bottom: 2px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #000;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: all 0.25s ease
    }

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item.expandable p {
        display: flex;
        flex-direction: row-reverse;
        text-align: right;
        margin-right: 0
    }
}

.header .header-content .navigation .navigation-item.expandable img.arrow {
    position: relative;
    top: -3px;
    transition: all 0.25s ease;
    margin-left: 4px
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item.expandable img.arrow {
        top: unset;
        margin-right: 6px
    }
}

.header .header-content .navigation .navigation-item.expandable.submenu-active img.arrow-menu {
    transform: rotate(180deg)
}

.header .header-content .navigation .navigation-item:hover:not(.expandable) p::before {
    opacity: 1;
    bottom: -5px
}

.header .header-content .navigation .navigation-item.active p::before {
    opacity: 1;
    bottom: -5px
}

.header .header-content .navigation .navigation-item:not(:nth-last-of-type(1)) {
    margin-right: 80px
}

@media screen and (max-width: 1240px) {
    .header .header-content .navigation .navigation-item:not(:nth-last-of-type(1)) {
        margin-right: 20px
    }
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item:not(:nth-last-of-type(1)) {
        margin-right: 0;
        margin-bottom: 30px
    }
}

.header .header-content .navigation .navigation-item .submenu {
    position: absolute;
    top: 54px;
    width: 350px;
    transition: all 0.25s ease;
    transform-origin: top;
    transform: scaleY(0)
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item .submenu {
        position: relative;
        width: 100%;
        top: 10px;
        text-align: right;
        transform: scaleY(1);
        overflow: hidden;
        max-height: 0
    }
}

.header .header-content .navigation .navigation-item .submenu.active {
    transform: scaleY(1)
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item .submenu.active {
        max-height: 1200px
    }
}

.header .header-content .navigation .navigation-item .submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300vw;
    transform: translateX(-100vw);
    height: 100%;
    padding-bottom: 20px;
    background: #fff
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item .submenu::before {
        display: none
    }
}

.header .header-content .navigation .navigation-item .submenu a {
    position: relative;
    display: inline-block
}

    .header .header-content .navigation .navigation-item .submenu a::before {
        content: "";
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        position: absolute;
        left: 2px;
        opacity: 0;
        border-radius: 50%;
        background: #000;
        transition: all 0.25s ease
    }

    .header .header-content .navigation .navigation-item .submenu a:hover::before {
        left: -10px;
        opacity: 1
    }

.header .header-content .navigation .navigation-item .submenu p {
    font-weight: 400;
    display: inline-block;
    cursor: unset
}

    .header .header-content .navigation .navigation-item .submenu p:not(:nth-last-of-type(1)) {
        margin-bottom: 14px
    }

    .header .header-content .navigation .navigation-item .submenu p .submenu-collapsable {
        cursor: pointer;
        display: inline-block
    }

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item .submenu p .submenu-collapsable {
        display: inline-flex;
        flex-direction: row-reverse
    }
}

.header .header-content .navigation .navigation-item .submenu p .submenu-collapsable img {
    transition: all 0.25s ease
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item .submenu p .submenu-collapsable img {
        margin-right: 6px
    }
}

.header .header-content .navigation .navigation-item .submenu p .submenu-collapsable.active img.arrow-submenu {
    transform: rotate(180deg)
}

.header .header-content .navigation .navigation-item .submenu .sub-submenu {
    display: block;
    padding-left: 40px;
    transform-origin: top;
    transition: all 0.25s ease;
    max-height: 0;
    overflow: hidden
}

@media screen and (max-width: 980px) {
    .header .header-content .navigation .navigation-item .submenu .sub-submenu {
        padding-left: 0;
        padding-right: 20px
    }
}

.header .header-content .navigation .navigation-item .submenu .sub-submenu.active {
    max-height: 1000px
}

.header .header-content .navigation .navigation-item .submenu .sub-submenu .sub-submenu-item {
    display: inline-block
}

    .header .header-content .navigation .navigation-item .submenu .sub-submenu .sub-submenu-item:not(:nth-last-of-type(1)) {
        padding-bottom: 10px
    }

    .header .header-content .navigation .navigation-item .submenu .sub-submenu .sub-submenu-item:nth-of-type(1) {
        padding-top: 10px
    }

.header .header-content .user-login-wrapper {
    display: flex;
    align-items: center
}

    .header .header-content .user-login-wrapper img {
        cursor: pointer;
        position: relative;
        top: 2px
    }

@media screen and (max-width: 980px) {
    .header .header-content .user-login-wrapper img {
        width: 18px;
        height: 18px;
        top: 0
    }
}

.header .header-content .user-login-wrapper .hamburger-wrapper {
    width: 24px;
    margin-left: 12px;
    cursor: pointer;
    display: none
}

@media screen and (max-width: 980px) {
    .header .header-content .user-login-wrapper .hamburger-wrapper {
        display: block
    }
}

.header .header-content .user-login-wrapper .hamburger-wrapper.active .line:nth-of-type(1) {
    width: 19px;
    margin-left: 2px
}

.header .header-content .user-login-wrapper .hamburger-wrapper.active .line:nth-of-type(2) {
    width: 19px;
    margin-top: 3px;
    margin-left: 5px
}

.header .header-content .user-login-wrapper .hamburger-wrapper.active .line:nth-of-type(3) {
    width: 17px;
    margin-top: 3px;
    margin-left: 0px
}

.header .header-content .user-login-wrapper .hamburger-wrapper .line {
    background-color: #000;
    height: 3px;
    border-radius: 4px;
    transition: all 0.25s ease
}

    .header .header-content .user-login-wrapper .hamburger-wrapper .line:nth-of-type(1) {
        width: 19px;
        margin-left: 5px
    }

    .header .header-content .user-login-wrapper .hamburger-wrapper .line:nth-of-type(2) {
        width: 19px;
        margin-top: 3px
    }

    .header .header-content .user-login-wrapper .hamburger-wrapper .line:nth-of-type(3) {
        width: 17px;
        margin-top: 3px;
        margin-left: 4px
    }

.header-spacer {
    height: 85px
}

@media screen and (max-width: 980px) {
    .header-spacer {
        height: 53px
    }
}

.footer {
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 70px;
    box-sizing: content-box
}

    .footer ::before, .footer ::after, .footer * {
        box-sizing: content-box
    }

    .footer .footer-content {
        max-width: calc(1510px - 16px * 2);
        padding: 0 16px;
        width: calc(100% - 16px * 2);
        display: flex;
        align-items: stretch;
        justify-content: space-between
    }

@media screen and (max-width: 1170px) {
    .footer .footer-content {
        flex-direction: column
    }
}

.footer .footer-content .links {
    line-height: 1.8
}

    .footer .footer-content .links a {
        text-decoration: none;
        color: #fff;
        position: relative
    }

        .footer .footer-content .links a:hover::after {
            right: -30px
        }

        .footer .footer-content .links a::after {
            pointer-events: none;
            content: "";
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -20px;
            width: 14px;
            height: 14px;
            background: url("../Images/right-arrow.svg") no-repeat center center;
            transition: all 0.25s ease
        }

    .footer .footer-content .links .country {
        display: inline-block;
        margin-right: 172px;
        width: 300px
    }

        .footer .footer-content .links .country:nth-of-type(1), .footer .footer-content .links .country:nth-of-type(2) {
            margin-bottom: 36px
        }

@media screen and (max-width: 1170px) {
    .footer .footer-content .links .country {
        margin-bottom: 36px
    }
}

.footer .footer-content .links .country h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0
}

.footer .footer-content .links .country p {
    margin: 0
}

.footer .footer-content .company {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column
}

@media screen and (max-width: 1170px) {
    .footer .footer-content .company {
        flex-direction: row;
        align-items: flex-start;
        margin-top: 30px
    }
}

@media screen and (max-width: 400px) {
    .footer .footer-content .company {
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

@media screen and (max-width: 1170px) {
    .footer .footer-content .company .logo {
        position: relative;
        top: 10px
    }
}

@media screen and (max-width: 400px) {
    .footer .footer-content .company .social {
        margin-top: 60px
    }
}

.footer .footer-content .company .social .item {
    margin-top: 12px
}

.footer .footer-content .company .social a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff
}

.footer .footer-content .company .social img {
    width: 19px;
    height: 19px;
    margin-right: 15px;
    position: relative
}

.footer .footer-content .company .social p {
    margin: 0
}
