.header {
    width: 100%;
    z-index: 99;
    box-shadow: 0 1px 2px rgb(0 0 0 / 18%);
    display: flex;
    padding-left: 15%;
    padding-right: 15%;
    height: 80px;
    background-color: #fff;
    align-items: center;
    top: 0;
    justify-content: space-between
}

.header.sticky {
    position: fixed;
    top: 0;
}

.header>.left {
    display: flex;
    align-items: center;
}

.header>.left .logo {
    height: 56px;
}

.header>.left .logo>.desktop {
    display: block;
}

.header>.left .logo>.mobile {
    display: none;
}

.header>.left .logo>img {
    height: 56px;
}

.header>.left>.hamburger {
    width: 32px;
    margin-left: 15px;
}

.header>.left>.hamburger>img {
    width: 100%;
}

.header>.right>ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.header>.right>ul>li {
    padding-left: 10px;
    padding-right: 10px;
}

.header>.right>ul>li>.topMenu {
    color: #000;
    font-weight: bold;
    font-size: 1.6rem;
    display: flex;
}

.header>.right>ul>li>.topMenu>.icon>img {
    height: 14px;
}

.header>.right>ul>li>.topMenu>.icon {
    margin-right: 5px;
    height: 14px;
}

.header>.right>ul>li>.topMenu>.chevron>img {
    height: 10px;
}

.header>.right>ul>li>.topMenu>.chevron {
    margin-left: 5px;
    height: 10px;
}

.header>.right>ul>li>.signUp {
    background-color: #41009a;
    font-size: 14px;
    border-radius: 25px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
}

.footer>.rowBar {
    width: 100%;
    height: 25px;
    margin-top: 30px;
    background-color: #41009a;
}

.footer>.whiteBar {
    width: 100%;
    padding-left: 15%;
    padding-right: 15%;
    display: flex;
    background-color: #f9f9f9;
    border-bottom: 1px solid #d0d0d0;
    z-index: 20;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer>.whiteBar>.left {
    flex-grow: 0;
    width: 120px;
    display: flex;
    align-items: center;
}

.footer>.whiteBar>.left>.logo>img {
    width: 120px;
}

.footer>.whiteBar>.right {
    flex-grow: 0;
    width: calc(100% - 120px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    margin-left: 20%;
}

.footer>.whiteBar>.right>.footerColum>.title {
    font-size: 16px;
}

.footer>.whiteBar>.right>.footerColum>.title:after {
    width: 38px;
    height: 3px;
    background-color: #410099 !important;
    content: " ";
    display: block;
}

.footer>.whiteBar>.right>.footerColum>ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer>.whiteBar>.right>.footerColum>ul>li:first-child {
    margin-top: 15px;
}

.footer>.whiteBar>.right>.footerColum>ul>li>a {
    font-size: 12px;
    text-decoration: none;
    color: #333
}

.footer>.grayBar {
    width: 100%;
    padding-left: 15%;
    padding-right: 15%;
    display: flex;
    background-color: #f2f2f2;
    z-index: 20;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center;
}

.footer>.grayBar>.left {
    width: 33.33%;
}

.footer>.grayBar>.middle {
    width: 33.33%;
}

.footer>.grayBar>.right {
    width: 33.33%;
    justify-content: flex-end;
    display: flex;
}

.footer>.grayBar>.left>.row {
    width: 100%;
    display: flex;
}

.footer>.grayBar>.left>.row>.paymetAccept {
    font-size: 12px;
    text-decoration: none;
    color: #333
}

.footer>.grayBar>.left>.row>.paymetAcceptIcon {
    display: flex;
    margin-left: 5px;
}

.footer>.grayBar>.left>.row>.paymetAcceptIcon>.icon {
    margin-right: 5px;
}

.footer>.grayBar>.left>.row>.paymetAcceptIcon>.icon>img {
    width: 20px;
}

.footer>.grayBar>.middle>.row {
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    color: #333
}

.footer>.grayBar>.right>.row {
    font-size: 12px;
    text-decoration: none;
    color: #333
}

.footer>.footerBottom {
    width: 100%;
    background-color: #dedede;
    border-top: 1px solid #f2f2f2;
}

.footer>.footerBottom>.row {
    padding: 8px;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    color: #333;
}

.menu-container {
    width: 100%;
    position: relative;
}

.menu-container .menu-Button {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.menu-container .menu-Button .menuTitle {
    color: #000;
    font-weight: bold;
    font-size: 1.6rem;
}

.menu-container .menu-Button .chevron {
    margin-left: 5px;
    height: 10px;
}

.menu-container .menu-Button .chevron>img {
    height: 10px;
}

.menu-container .menu {
    background: #ffffff;
    border-radius: 8px;
    position: absolute;
    top: 40px;
    left: -20%;
    width: 430px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 99;
}

.menu-container .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-container .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-container .menu li {
    border-bottom: 1px solid #dddddd;
    padding: 15px 20px;
}

.menu-container .menu li:last-child {
    border: 0;
}

.menu-container .menu li>div {
    text-decoration: none;
    display: block;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.header .LanguagePopup {}

.header .LanguagePopup>.LanguageList>.list ul {
    list-style-type: none;
    margin: 0;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
}

.header .LanguagePopup>.LanguageList>.list ul li {
    width: 100%;
    cursor: pointer;
    transition: .3s ease;
    display: flex;
    user-select: none;
}

.header .LanguagePopup>.LanguageList>.list ul li>.lngIcon {
    background-image: url("/Assets/img/icon/flags.png");
    width: 30px;
    height: 20px;
}

.header .LanguagePopup>.LanguageList>.list ul li>.engFlag {
    background-position: -65px -102px;
}

.header .LanguagePopup>.LanguageList>.list ul li>.deFlag {
    background-position: -97px -134px;
}

.header .LanguagePopup>.LanguageList>.list ul li>.ruFlag {
    background-position: -97px -77px;
}

.header .LanguagePopup>.LanguageList>.list ul li>.trFlag {
    background-position: -32px -6px;
}

.header .LanguagePopup>.LanguageList>.list ul li .lngText {
    font-size: 1.2rem;
    margin-left: 15px;
}

.header .CurrencyPopup {
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    border-radius: 7px;
    background-color: #fff;
    z-index: 10;
}

.header .CurrencyPopup>.icon {
    text-align: center;
}

.header .CurrencyPopup>.icon img {
    margin-top: 25px;
    width: 90px;
}

.header .CurrencyPopup>.currencyTitle {
    margin-top: 25px;
    margin-bottom: 5px;
    text-align: center;
    font-family: "Avenir LT Pro 65 Medium", Helvetica, Arial, Sans-Serif;
    font-size: 21px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f2f2f2;
    margin-right: 15px;
    margin-left: 15px;
}

.header .CurrencyPopup>.CurrencyList {
    display: flex;
}

.header .CurrencyPopup>.CurrencyList>.list ul {
    list-style-type: none;
    margin: 0;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
}

.header .CurrencyPopup>.CurrencyList>.list:first-child {
    border-right: 1px solid #f2f2f2;
}

.header .CurrencyPopup>.CurrencyList>.list ul li {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    transition: .3s ease;
    display: flex;
}

.header .CurrencyPopup>.CurrencyList>.list ul li:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    transition: .3s ease;
}

.header .CurrencyPopup>.CurrencyList>.list ul li .currencyIcon {
    font-size: 12px;
}

.header .CurrencyPopup>.CurrencyList>.list ul li .CurrencyText {
    font-size: 12px;
    margin-left: 5px;
    word-break: break-all;
}

.header>.right>ul>li>.topMenu a {
    color: #000;
    text-decoration: none;
}

@media (max-width: 1440px) {
    .header,
    .footer>.whiteBar,
    .footer>.grayBar {
        padding-left: 7%;
        padding-right: 7%;
    }
}

@media (max-width: 1337px) {
    .header,
    .footer>.whiteBar,
    .footer>.grayBar {
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media (max-width: 1140px) {
    .header>.right .topMenu>.menuTitle,
    .header>.middle {
        display: none;
    }
    .header>.left {
        justify-content: space-between;
    }
    .header .desktop {
        display: none !important;
    }
    .header .mobile {
        display: block !important;
    }
    .footer>.whiteBar {
        /*  flex-wrap: wrap;*/
    }
    .header>.right>ul>li>.topMenu>.icon>img {
        height: 18px;
    }
    .header>.right>ul>li>.topMenu>.icon {
        height: 18px;
    }
}