/*-----------
Header START
------------*/

header {
    position: relative;
    z-index: 10;
}

.header-top {
    background: #f5f5f5;
    transition: 0.5s;
}

.header-top .section-wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.header-top__left {
    font-size: 14px;
    line-height: 143%;
    color: #404040;
}

.header-main>.section-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 87px;
}

.header-main {
    position: relative;
    background: #fff;
    transition: 0.5s;
}

.header-main__menu {
    margin: -12px 0;
}

.header-main__menu nav {
    display: inline-flex;
    height: 100%;
    align-items: center;
    gap: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #3f3f3f;
}

.header-main__menu nav a.main-menu-link {
    padding-top: 14px;
    display: inline-flex;
    align-items: start;
    position: relative;
    color: #3f3f3f;
    height: 90px;
    gap: 8px;
}

.header-main__menu nav a.main-menu-link svg {
    margin-top: 3px;
    transition: 0.3s;
}

.header-main__menu nav a.main-menu-link:after {
    position: absolute;
    content: '';
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: 0.4s;
    transform: scale(0, 1);
    transform-origin: left center;
}

.header-main__menu nav a.main-menu-link:hover:after {
    transform: scale(1, 1);
    background: #000;
}

.header-main__menu nav a.main-menu-link:hover svg {
    transform: rotate(180deg);
}

.header-main__logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-main .section-wrap {
    padding: 0;
    padding-top: 24px;
    position: static;
    display: flex;
    height: 102px;
    max-width: 1400px;
    align-items: start;
    gap: 12px;
    flex-wrap: nowrap;
    border-bottom: 1px solid #e6e6e6;
}

.burger--wrap {
    display: none;
}

.nav__dropdown {
    position: relative;
    height: 100%;
}

.nav__dropdown--wrap {
    padding: 16px;
    position: absolute;
    left: 0;
    transform: translateY(10px);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    background: #fff;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.nav__dropdown--wrap a {
    position: relative;
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    text-wrap: nowrap;
}

.nav__dropdown--wrap a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 1px;
    transition: 0.4s;
    background: #0b0b0b;
}

.nav__dropdown--wrap a:hover {
    color: #0b0b0b;
}

.nav__dropdown--wrap a:hover:after {
    width: 100%;
}

.nav__dropdown__menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.nav__dropdown:hover .nav__dropdown--wrap {
    opacity: 1;
    visibility: visible;
}

/*-----------
Header END
------------*/

/*-----------
Breadcrump START
------------*/

.breadcrump {
    margin: 24px auto 48px;
}

.breadcrump__wrap {
    margin: 0 -20px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.breadcrump__divider {
    display: flex;
    align-items: center;
}

.breadcrump__wrap::-webkit-scrollbar {
    display: none;
}

.breadcrump__wrap {
    scrollbar-width: none;
}

/*-----------
Breadcrump END
------------*/


/*-----------
Mobile menu START
------------*/

.mobile-menu-wrapper {
    display: none;
}

.burger--wrap {
    padding: 1px;
    transition: 0.3s;
}

.burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    width: 20px;
    height: 12px;
}

.burger__line {
    width: 20px;
    height: 1px;
    transform: scale(1, 1.2);
    background: #404040;
    transition: 0.3s;
}

header.hovered .burger__line {
    background: #D4D4D4;
}

.burger--wrap.active .burger__line:nth-child(1) {
    transform: scale(1, 1) translate(0, 5px) rotate(45deg);
}

.burger--wrap.active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger--wrap.active .burger__line:nth-child(3) {
    transform: scale(1, 1) translate(0, -5px) rotate(-45deg);
}

.burger--wrap.active .burger--inner {
    background: #fff;
}

.burger--wrap.active .burger__line {
    background: #404040;
}

.header-main__menu-mobtitle {
    display: none;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    color: #171717;
}

.header-main__menu--mobwrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

.header-main__mob-profile {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-main__mob-btns {
    display: none;
    flex-direction: column;
    gap: 8px;
}

.header-main__mob-btns .btn {
    font-size: 18px;
    height: 48px;
    line-height: 156%;
}

.header-main__mob-info {
    display: none;
}

.header__mobile--wrap {
    position: relative;
    padding: 0 20px;
    margin: 0 -20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    width: calc(100% + 40px);
    z-index: 5;
    transition: 0.5s;
}

.header-main__menu--mobwrap::-webkit-scrollbar {
    width: 0; 
}

.header-main__menu--mobwrap {
    -ms-overflow-style: none;
}

.main-menu-link__arrow {
    display: none;
}

.nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.header-main__menu-mobtitle span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #404040;
}

header.hovered .burger--inner {
    background: #5D5D5D;
}

/*-----------
Mobile menu END
------------*/

@media screen and (max-width: 1440px) {
	.header-main__menu nav {
		gap: 18px;
	}
}

@media screen and (max-width: 1400px) {
    .header-main .section-wrap {
        padding: 24px 20px 0;
    }

	.header-main .section-wrap {
		gap: 0;
	}
}

@media screen and (max-width: 1280px) {

}

@media screen and (max-width: 1080px) {
    .header-main__menu nav a.main-menu-link svg {
        transform: rotate(-90deg);
    }

    .header-main__menu nav a.main-menu-link:hover svg {
        transform: rotate(-90deg);
    }

    .header-main__menu nav a.main-menu-link {
        height: auto;
    }

    .header-main__logo,
    .header-main__menu nav a.main-menu-link:hover:after {
        display: none;
    }

    .header-top,
    .header-main__btns,
    .header-main__menu {
        display: none;
    }

    .header__mobile--wrap {
        display: flex;
    }

    .header-main--right .header-main__logo {
        display: none;
    }

    .burger--wrap {
        display: flex;
    }

    header .header__mobile--wrap {
        background: #fff;
    }

    header.hovered .header__mobile--wrap {
        background: #5D5D5D;
    }

    header.open .header__mobile--wrap {
        background: #fff;
    }

    .header-main {
        padding: 0;
    }

    header.open .header-main {
        background: #fff;
    }

    header.open svg.header-main__logo--text path {
        fill: #000002;
    }

    .header-main__logo svg:first-child {
        width: 40px;
        height: 40px;
    }

    .header-main__logo svg.header-main__logo--text {
        height: 20px;
        width: 58px;
    }

    .header-main__menu {
        transform: translateY(-106%);
        /*transform: translateY(0%);*/
        position: fixed;
        top: 53px;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        z-index: 0;
        transition: 0.5s;
    }

    .header-main__menu.active {
        transform: translateY(0%);
    }

    .header-main__menu nav {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        height: auto;
        gap: 24px;
    }

    .nav__dropdown {
        height: unset;
    }

    .header-main__menu nav a {
        font-size: 24px;
        line-height: 133%;
    }

    .header-main__menu-mobtitle {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .header-main__menu--mobwrap {
        padding: 70px 20px;
        overflow-y: scroll;
    }

    .header-main__mob-btns {
        display: flex;
    }

    .header-main__mob-info {
        padding: 24px 20px;
        margin: 0 -20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        background: #f5f5f5;
    }

    .header-main__mob-info .header-top__right {
        gap: 16px;
        flex-direction: column;
    }

    header .header-main__mob-info .header-top__right-phone a,
    header .header-main__mob-info .header-top__right .text-iconed,
    header .header-main__mob-info .header-top__left {
        color: #404040;
    }

    header .header-main__menu nav a.main-menu-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .main-menu-link__arrow {
        display: block;
    }

    .header-main__mob-info .text-iconed {
        align-items: start;
    }

    .nav__dropdown--wrap {
        display: none;
        position: fixed;
        top: 0;
        opacity: 1;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

    .nav__dropdown--wrap .section-wrap {
        padding: 0;
        flex-direction: column;
        align-items: start;
        gap: 24px;
    }

    .nav__dropdown--wrap .section-wrap svg {
        display: none;
    }

    .nav__dropdown:hover .nav__dropdown--wrap {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .header-main__mob-btns {
        align-items: center;
    }

    .header-main__mob-btns .btn--wrapper:not(.btn--profile) {
        width: 100%;
    }
}


