.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 102;
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.header.is-scrolled {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
}

.header__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .header__container {
        height: 64px;
        max-width: 100% !important;
    }
}

@media (min-width: 992px) {
    .header__container {
        justify-content: unset;
    }
}

@media (min-width: 1200px) {
    .header__container {
        padding: 0 26px 0 40px !important;
        justify-content: unset;
    }
}

.header__box, .header__desktop {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .header__box.is-right {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .header__logo {
        margin-right: 16px;
    }
}

.header__logo img:not(.mobile) {
    max-width: 152px;
    max-height: 29px;
}

@media (max-width: 992px) {
    .header__logo img:not(.mobile) {
        display: none;
    }
}

@media (min-width: 992px) {
    .header__logo img:not(.mobile) {
        max-width: 130px;
    }
}

@media (min-width: 1200px) {
    .header__logo img:not(.mobile) {
        max-width: 152px;
    }
}

.header__logo .mobile {
    display: block;
}

@media (min-width: 992px) {
    .header__logo .mobile {
        display: none;
    }
}

.header__navigation {
    display: none;
    flex-direction: column;
}

@media (min-width: 768px) {
    .header__navigation:not(.mobile) {
        display: flex;
        flex-shrink: 0;
        flex-direction: row;
        margin-right: 16px;
    }
}

@media (min-width: 1200px) {
    .header__navigation:not(.mobile) {
        padding-left: 10px;
        margin-left: 30px;
        flex-direction: row;
    }
}

.header__navigation__item {
    display: block;
    position: relative;
    font-size: 18px;
    cursor: pointer;
    color: #1D1D20;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    margin-bottom: 18px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.header__navigation__item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header__navigation__item.dropdown:after {
    content: '';
    height: 6px;
    width: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 4L9 1' stroke='%231D1D20' stroke-width='1.2'/%3E%3C/svg%3E%0A");
    background-size: cover;
    transition: background-image .3s ease-in-out, transform .3s ease-in-out;
    display: block;
    margin-left: 6px;
}

.header__navigation__item.dropdown.show {
    color: #40944a;
}

.header__navigation__item.dropdown.show:after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 4L9 1' stroke='%2340944a' stroke-width='1.2'/%3E%3C/svg%3E%0A");
    transform: translateY(-2px) scale3d(1, -1, 1);
}

.header__navigation__item.dropdown.show > .header__navigation__item-dropdown-menu {
    z-index: 1;
    opacity: 1;
    height: auto;
}

.header__navigation__item.dropdown.show > .header__navigation__item-dropdown-menu {
    pointer-events: all;
    padding-top: 14px;
}

@media (min-width: 768px) {
    .header__navigation__item.dropdown {
        padding-right: 16px;
    }
}

.header__navigation__item-dropdown-menu {
    order: 3;
    min-width: 170px;
    width: 100%;
    opacity: 0;
    z-index: -2;
    pointer-events: none;
    transition: opacity .35s ease-in-out, padding-top .35s ease-in-out;
    height: 0;
    top: 100%;
}

.header__navigation__item-dropdown-menu ul {
    padding: 0 16px;
    background-color: #FFFFFF;
    list-style-type: none;
}

.header__navigation__item-dropdown-menu ul li {
    display: block;
}

.header__navigation__item-dropdown-menu ul li:not(:last-child) {
    margin-bottom: 18px;
}

.header__navigation__item-dropdown-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    display: block;
    color: #1D1D20;
    transition: color 0.3s ease-in-out;
    white-space: nowrap;
}

.header__navigation__item-dropdown-menu ul li a:hover {
    color: #40944a;
}

.header__navigation:not(.mobile) .header__navigation__item.dropdown {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .header__navigation:not(.mobile) .header__navigation__item.dropdown:after {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .header__navigation:not(.mobile) .header__navigation__item {
        font-size: 16px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .header__navigation:not(.mobile) .header__navigation__item:hover {
        color: #40944a;
        text-decoration: none;
    }

    .header__navigation:not(.mobile) .header__navigation__item:not(:last-child) {
        margin-right: 16px;
    }

    .header__navigation:not(.mobile) .header__navigation__item.dropdown:hover:after {
        background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 4L9 1' stroke='%2340944a' stroke-width='1.2'/%3E%3C/svg%3E%0A");
        transform: translateY(1px) scale3d(1, -1, 1);
    }
}

@media (min-width: 1200px) {
    .header__navigation:not(.mobile) .header__navigation__item {
        font-size: 18px;
    }

    .header__navigation:not(.mobile) .header__navigation__item:not(:last-child) {
        margin-right: 30px;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .header__navigation:not(.mobile) .header__navigation__item-dropdown-menu ul {
        padding: 12px 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 768px) {
    .header__navigation:not(.mobile) .header__navigation__item-dropdown-menu {
        position: absolute;
        width: auto;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .header__navigation:not(.mobile) .header__navigation__item-dropdown-menu {
        padding-top: 28px;
    }
}

.header__download-btn {
    width: 100%;
    flex-shrink: 0;
    transition: opacity .35s ease-in-out;
    max-width: 134px;
}

.header__download-btn:hover {
    opacity: .75;
}

@media (min-width: 768px) {
    .header__download-btn {
        max-width: 120px;
        margin-right: 16px;
        transform: none;
    }
}

@media (min-width: 1200px) {
    .header__download-btn {
        max-width: 134px;
        margin-left: 36px;
    }
}

.header__search {
    position: relative;
    max-width: 100%;
}

@media (min-width: 992px) {
    .header__search {
        max-width: 220px;
        margin-right: 16px;
    }
}

.header__search-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.header__search-icon:before {
    content: '?';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #FF6C6C;
    color: #FFFFFF;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 2px;
    margin-left: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__search-icon:hover + .header__search-tooltip {
    padding-top: 8px;
    z-index: 1;
    opacity: 1;
}

.header__search input {
    appearance: none;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #94939C;
    border-radius: 20px;
    height: 32px;
    padding: 0 26px 0 30px;
    line-height: 32px;
    font-size: 14px;
    color: #1D1D20;
    width: 100%;
    box-sizing: border-box;
}

.header__search input::placeholder {
    color: #94939C;
}

.header__search-tooltip {
    top: 100%;
    padding-top: 16px;
    min-width: 170px;
    opacity: 0;
    z-index: -2;
    position: absolute;
    pointer-events: none;
    transition: opacity .35s ease-in-out, padding-top .35s ease-in-out;
}

.header__search-tooltip p {
    background-color: #FFFFFF;
    padding: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 20px;
    color: #1D1D20;
}

.header__search-submit-btn {
    position: absolute;
    appearance: none;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L10.8583 10.8583M12.5556 6.77778C12.5556 9.96876 9.96876 12.5556 6.77778 12.5556C3.5868 12.5556 1 9.96876 1 6.77778C1 3.5868 3.5868 1 6.77778 1C9.96876 1 12.5556 3.5868 12.5556 6.77778Z' stroke='%2357B262' stroke-width='1.73333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: center center;
}

.header__login {
    position: relative;
    min-width: 0;
}

.header__login-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #40944A;
    text-decoration: none;
    margin-left: 16px;
    text-align: center;
}

.header__login-title {
    display: block;
    padding: 0 11px 0 19px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #40944A !important;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none !important;
}

@media (min-width: 1200px) {
    .header__login-title {
        max-width: 124px;
        font-size: 15px;
    }
}

.header__login-title .caret {
    display: none;
}

.header__login-title:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.1663 14.875V13.4583C14.1663 12.7069 13.8678 11.9862 13.3365 11.4549C12.8051 10.9235 12.0845 10.625 11.333 10.625H5.66634C4.91489 10.625 4.19422 10.9235 3.66287 11.4549C3.13152 11.9862 2.83301 12.7069 2.83301 13.4583V14.875' stroke='%2340944A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.50033 7.79167C10.0651 7.79167 11.3337 6.52314 11.3337 4.95833C11.3337 3.39353 10.0651 2.125 8.50033 2.125C6.93552 2.125 5.66699 3.39353 5.66699 4.95833C5.66699 6.52314 6.93552 7.79167 8.50033 7.79167Z' stroke='%2340944A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header__login-title:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 4L9 1' stroke='%2340944A' stroke-width='1.2'/%3E%3C/svg%3E%0A");
    position: absolute;
    width: 8px;
    height: 4px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

.header__login-menu,
.header__login-title ~ .dropdown-menu {
    opacity: 0;
    z-index: -2;
    transition: opacity .35s ease-in-out, margin-top .35s ease-in-out;
    height: 0;
    display: block;
    background-color: #FFFFFF;
    padding: 16px 16px 0;
    left: auto;
    border-radius: 0;
    border: none;
    float: none;
    visibility: hidden;
}

.header__login-menu li:not(:last-child), .header__login-title ~ .dropdown-menu li:not(:last-child) {
    margin-bottom: 18px;
}

.header__login-menu li.help a, .header__login-title ~ .dropdown-menu li.help a {
    color: #E4AA1F;
}

.header__login-menu li.help a:hover, .header__login-title ~ .dropdown-menu li.help a:hover {
    color: #E4AA1F;
}

.header__login-menu li a, .header__login-title ~ .dropdown-menu li a {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 17px;
    color: #1D1D20;
    text-decoration: none;
    padding: 0;
    white-space: nowrap;
    transition: color 0.3s ease-in-out;
}

.header__login-menu li a:hover, .header__login-title ~ .dropdown-menu li a:hover {
    color: #40944a;
    background-color: transparent;
}

.header__login-menu li a .icon, .header__login-title ~ .dropdown-menu li a .icon {
    width: 18px;
}

@media (min-width: 1200px) {
    .header__login-menu,
    .header__login-title ~ .dropdown-menu {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
        height: auto;
        position: absolute;
        right: 0;
        margin-top: 25px;
    }
}

.header__login + .language-select {
    margin-left: 8px;
}

.header__hamburger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    margin-left: 16px;
}

.header__hamburger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s ease-in-out;
}

.header__hamburger:after, .header__hamburger:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #000000;
    transition: all .3s ease-in-out;
}

.header__hamburger:before {
    top: 0;
}

.header__hamburger:after {
    bottom: 0;
}

.header__hamburger.is-open span {
    opacity: 0;
}

.header__hamburger.is-open:before {
    top: 10px;
    transform: rotate(45deg);
}

.header__hamburger.is-open:after {
    bottom: 8px;
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .header__hamburger {
        display: block;
    }

    .header .language-select,
    .header .header__login,
    .header .header__login-link {
        display: none;
    }

    .header__login-link {
        margin-left: 8px;
        line-height: 21px;
    }
}

@media (max-width: 768px) {
    .header .header__navigation,
    .header .header__search,
    .header .language-select,
    .header .header__login,
    .header .header__login-link {
        display: none;
    }
}

.language-select {
    width: 60px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.language-select__list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    z-index: 2;
    background-color: #ffffff;
    display: none;
}

.language-select__list a {
    text-decoration: none;
    font-style: normal;
    color: #242428;
}

@media (min-width: 1200px) {
    .language-select__list {
        margin-top: 16px;
        box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
    }
}

.language-select.is-show .language-select__list {
    display: block;
    animation-fill-mode: forwards;
    animation: fade--in 0.3s ease-in-out;
}

.language-select__box, .language-select__selected-item {
    height: 32px;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.language-select__box:hover {
    background-color: #f3f2f5;
}

.language-select__box:hover a {
    color: #40944a;
}

.language-select__item, .language-select__selected-item {
    padding-left: 6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.language-select__selected-item {
    padding: 0 10px 0 6px;
    overflow: hidden;
    position: relative;
}

.language-select__selected-item:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #1D1E20;
}

.language-select__img {
    width: 17px;
    height: 12px;
    margin-right: 8px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .language-select {
        margin-right: 16px;
    }
}

.btn-group.open .dropdown-menu {
    z-index: 1;
    opacity: 1;
    height: auto;
    visibility: visible;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FCFCFC;
    margin-top: 30px;
    padding: 30px 0 24px;
}

.footer__social {
    display: flex;
    justify-content: space-between;
    width: 260px;
    max-width: 260px;
    margin: 24px auto 14px;
}

.footer__social li {
    display: inline-block;
    vertical-align: top;
}

.footer__social li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #57b262;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer__social li a:hover {
    background-color: #40944A;
}

.footer__social li svg {
    width: 90%;
    height: 90%;
    min-width: 90%;
    padding: 5px;
    box-sizing: border-box;
}

.footer__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.225px;
    color: #1D1D20;
}

.footer__policies {
    display: flex;
    margin: 16px 0 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__policies a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.225px;
    color: #1D1D20;
    text-decoration: none;
}

.footer__policies a:hover {
    text-decoration: underline;
}

@media (min-width: 360px) {
    .footer__policies a:not(:last-child) {
        margin-right: 16px;
    }
}

.footer__btn {
    width: 152px;
    height: 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease-in-out;
}

.footer__btn + .footer__btn {
    margin-left: 8px;
}

.footer__btn.gold {
    background-color: #E4AA1F;
}

.footer__btn.blue {
    background-color: #22B8EC;
}

.footer__btn.blue img {
    margin-right: 6px;
}

.footer__btn:hover {
    opacity: .75;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 360px) {
    .footer__btn {
        width: 160px;
    }
}

.footer__buttons {
    display: flex;
}

.footer__copyright {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.225px;
    color: #6F6E77;
}

.footer__contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.footer__contacts a {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.225px;
    text-decoration: underline;
    color: #1D1D20;
    transition: opacity .35 ease-in-out;
}

.footer__contacts a:hover {
    opacity: .85;
}

.footer__contacts a:not(:last-child) {
    margin-right: 16px;
}

.mobile-menu {
    position: fixed;
    width: 320px;
    top: 64px;
    bottom: 0;
    right: 0;
    z-index: 101;
    transition: all 0.2s ease-in-out;
    transform: translateX(100%);
}

.mobile-menu.is-open {
    transform: translateX(0px);
}

.mobile-menu.is-open .mobile-menu__container {
    box-shadow: 20px 0px 18px -30px rgba(0, 0, 0, 0.75);
}

.mobile-menu__container {
    padding: 16px;
    height: 100%;
    background-color: #fff;
    box-shadow: 20px 0px 18px -30px rgba(0, 0, 0, 0);
    overflow-y: auto;
    transition: all 0.2s ease-out;
}

.mobile-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mobile-menu-botom {
    padding-top: 16px;
    border-top: 1px solid #F3F2F5;
}

.mobile-menu .dropdown-backdrop {
    display: none;
}

.mobile-menu .dropdown-menu {
    position: static;
    box-shadow: none;
}

.mobile-menu .header__search-tooltip p {
    box-shadow: none;
}

.mobile-menu .header__login-title {
    float: none;
    width: auto;
    border: none;
    display: inline-flex;
    padding: 0 14px 0 18px;
}

.mobile-menu .header__navigation {
    display: block;
}

.mobile-menu .header__navigation__item.dropdown.show {
    display: flex !important;
}

.mobile-menu .header__navigation__item.dropdown.show:after {
    transform: translateY(1px) scale3d(1, -1, 1);
}

@media (min-width: 992px) {
    .mobile-menu {
        top: 80px;
    }
}

.container-max {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@keyframes fade--in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
