.header__top {
    max-width:1450px;
    width:95%;
    margin:0 auto;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: "Inter";
    font-weight: 500;
    padding:40px;
}

.header-top-contacts__inline, .header-top-buttons__inline, .header-top-contacts-inline-phones {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-top-buttons__inline > button {
    margin-right: .4rem;
}

.header-top__contacts > p {
    color: var(--semiBlack);
    line-height:.9rem;
}

.header-top-contacts-inline-phones > span {
    margin-left: 1rem;
    font-weight: 700;
    color: #787878;
}

.header-top-contacts-inline-mail > a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.header-top-contacts-inline-mail > a:hover {
    text-decoration:none;
    cursor:pointer;
}

.link {
    color: var(--primary);
}

.header-top-buttons__inline {
    margin-bottom: 1rem;
}

.header-top-buttons__impaired-button {
    background: var(--secondary);
    height: 55px;
    width: 55px;
    border:none;
    border-radius: 4px;
    transition: .1s;
}

.header-top-buttons__impaired-button:hover {
    background: #e0e0e0;
    cursor:pointer;
}

.header-top-buttons-inline__button {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    height: 55px;
    display:flex;
    width: 170px;
    justify-content:center;
    align-items:center;
    border-radius: 4px;
    font-size:20px;
    transition: .1s;
}

.header-top-buttons-inline__button:hover {
    background: var(--lightPrimary);
    cursor: pointer;
}

.header-top-buttons__social-icon {
    width: 30px;
    height: 30px;
    margin: 5px 2px;
    border-radius: 50%;
    transition: .1s;
    opacity: .2;
}

.header-top-buttons__social-icon:hover {
    opacity: .4;
    cursor:pointer;
}

.header__bottom {
    background: var(--semiWhite);
}

.header-bottom__wrapper {
    max-width:1450px;
    width:95%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-bottom__navbar > menu, .header-bottom__navbar > menu > ul {
    display:flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
    margin:0;
}

.header-bottom-navbar__link {
    font-family: "Inter";
    font-weight: 500;
    text-transform: uppercase;
    color: #535353;
    height: 45px;
    padding:0 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-decoration:none;
    border-bottom: 2px solid transparent;
    transition: .15s;
}

.header-bottom-navbar__link:hover {
    color: var(--semiBlack);
    cursor:pointer;
    background: var(--secondary);
    border-color: var(--primary);
}

.header-bottom-searchbar__input {
    height:47px;
    border:none;
    background:none;
    font-family:'Inter';
    font-weight:500;
    padding-left:1em;
    outline:none;
}

.header-bottom-searchbar__icon {

}

.header-bottom__searchbar > form > label {
    display:flex;
    flex-direction:row;
    align-items:center;
}

.header-bottom__navbar > menu > ul > li {
    position: relative;
}

.header-bottom-navbar__dd {
    background: var(--white);
    position:absolute;
    padding: 1.5em;
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    display:none;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-bottom-navbar__dd-sub {
    background: var(--white);
    position:absolute;
    padding: 1.5em;
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    display:none;
    z-index: 1001;
    left: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-bottom__navbar > menu > ul > li:hover .header-bottom-navbar__dd {
    display: flex;
}

.header-bottom-navbar-dd-col__link-ddable:hover ~ .header-bottom-navbar__dd-sub, .header-bottom-navbar__dd-sub:hover {
    display: flex;
}

.header-bottom-navbar-dd__col {
    padding: 0;
    list-style-type: none;
    min-width: 300px;
    max-width: 500px;
}

.header-bottom-navbar-dd__col > li {
    margin: .2em 0;
}

.header-bottom-navbar-dd-col__link {
    font-family: "Inter";
    color: var(--semiBlack);
    font-weight: 500;
    text-decoration: none;
    font-size:.9rem;
}

.header-bottom-navbar-dd-col__link:hover {
    color: var(--primary);
}

.header-top__mobile-btn {
    display: none;
    height: 45px;
    width: 45px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: "Inter";
    font-weight: 500;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: .6rem;
}

.header-mobile {
    background:#fff;
    position: absolute;
    width: 300px;
    box-shadow:0 0 100vw rgba(0,0,0, .3);
    height: 100%;
    overflow: hidden;
    z-index: 10000;
    transition: .6s;
}

.header-mobile__body > menu {
    list-style-type: none;
    padding: 0;
    display:flex;
    flex-direction: column;
}

.header-mobile__body > menu > a {
    padding:.8em;
    border-left:2px solid var(--semiWhite);
    transition: .15s;
}

.header-mobile__body > menu > a:hover {
    border-color: var(--primary);
}

.header-mobile-body__link {
    font-family: "Inter";
    font-weight: 500;
    color: var(--semiBlack);
    text-decoration:none;
    transition: .15s;
}

.header-mobile-body__link:hover {
    text-shadow: 0 2px 4px rgba(0,0,0, .2);
}

.header-top__logotype img {
    height: 100px;
    width: auto;
}

@media screen and (max-width: 1135px) {
    .header-top__contacts, .header-bottom__searchbar {
        display:none;
    }
}

@media screen and (max-width: 860px) {
    .header__bottom, .header-top__buttons {
        display:none;
    }

    .header-top__logotype > a > img, .header-top__logotype {
        height: 70px;
    }

    .header__top {
        padding: 1rem;
        align-items: center;
    }

    .header-top__mobile-btn {
        display:flex;
    }
}
