.header {
    position: fixed;
    display: flex;
    align-items: center;
    padding: 0 40px;
    width: 100%;
    min-height: var(--header-height);
    padding-left: 40px;
    background-color: var(--bg-body-color);
    border-bottom: 1px solid var(--color-black);
    transition: all .35s ease-out;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.header-lang__mobile {
    display: none;
}

.header__lang-body.large {
    padding: 0;
    background: var(--bg-body-color);
}

.header__burger {
    display: none;
    border: none;
    background: transparent;
}

.header__menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__menu-items {
    display: flex;
    gap: 40px;
}

.header__menu-item {
    display: block;
    line-height: 130%;
}

.header__menu-link {
    transition: all .5s ease-out;
}

.header__menu-link.active {
    color: var(--color-green);
}

.header__menu-link:hover {
    border-bottom: 1px solid var(--color-green);
    color: var(--color-green);
}

.header__menu-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__socials {
    display: flex;
    gap: 20px;
}

.header__social-link,
.footer__social-link,
.footer__link {
    transition: color .5s ease-out;
}

.header__social-link:hover,
.footer__social-link:hover,
.footer__link:hover {
    color: var(--color-green);
}

.header__social-link:active,
.footer__social-link:active,
.footer__link:active {
    color: var(--color-link-svg);
}

.header__lang {
    position: relative;
}

.header__lang-trigger {
    border: none;
    background: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--color-black);
    transition: color .3s ease-out;
}

.header__lang-trigger:hover {
    color: var(--color-green);
}

.header__lang-trigger.dropdown-toggle::after {
    display: none !important;
}

.header__lang-body {
    min-width: auto;
    padding: 6px 0;
    margin-top: 6px;
    background: transparent;
    border: none;
}

.header__lang-text,
.header__lang-body-item {
    line-height: 140%;
    text-transform: uppercase;
}

.header__lang-body-item {
    display: block;
    cursor: pointer;
    color: inherit;
}

.header__lang-body-item:hover {
    color: var(--color-green);
}

.header__lang-body-item.is-active {
    display: none;
}

.header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header__socials .icon {
   width: 26px;
   height: 26px;
}


.header__logo svg {
    max-width: 172px;
    transition: all .35s ease-out;
}

@media (max-width: 1199px) {
    .header {
        padding: 0 12px;
    }

    .header-wrapper {
        justify-content: space-between;
    }

    .header__menu.active {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden auto;
        flex-direction: column;
        justify-content: space-between;
        padding: 48px 12px 82px;
        background-color: var(--second-bg-color);
        display: none;
    }

    .header__menu-items, .header__menu-right {
        flex-direction: column;
        align-items: center;
    }

    .header__menu-items {
        gap: 48px;
    }

    .header__menu-item {
        font-family: 'Pragmatica Regular', sans-serif;
        font-size: 20px;
        line-height: 120%;
    }

    .header__menu-right {
        display: flex;
        flex: 1;
        margin-top: 48px;
    }

    .header__socials {
        margin: 32px 0 12px;
    }

    .header__social-link svg {
        width: 28px;
        height: 28px;
    }

    .header__menu .header__lang {
        position: static;
    }

    .header__menu .header__lang-trigger {
        pointer-events: none;
    }

    .header__menu .header__lang-body {
        position: static;
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 27px;
        padding: 0;
        margin: 0;
    }

    .header__menu .header__lang-body-item {
        display: inline-block;
        cursor: pointer;
        transition: all .3s ease-out;
    }

    .header__menu .header__lang-body-item:hover {
        color: var(--color-green);
    }

    .header__menu .header__lang-text {
        color: var(--color-black);
    }

    .header__menu .header__lang-body-item.is-active {
        display: block;
    }

    .header__menu .header__lang-trigger {
        display: none;
    }

    .header-lang__mobile {
        display: block;
    }

    .header__burger {
        display: block;
    }

    .header__burger .header__burger-close {
        display: none;
    }

    .header__burger.active .header__burger-show {
        display: none
    }

    .header__burger.active .header__burger-close {
        display: block;
    }
}

/* BreadCrumbs */

.breadcrumbs {
    padding-top: 40px;
}

.breadcrumbs__list {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.breadcrumbs__item-link {
    opacity: 0.6;
    transition: all .3s ease-out;
}

.breadcrumbs__item-link:not(.is-active):hover {
    color: var(--color-green);
    opacity: 1;
}

.breadcrumbs__item-link.is-active {
    opacity: 1; 
    pointer-events: none;
    cursor: default;
}

.breadcrumbs__item-icon {
    margin: 0 20px;
}

@media (max-width: 1199px) {
    .breadcrumbs {
        padding: 28px 0 0 12px;
    }
}