header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    padding: 0;
}

.header-sep {
    height: 40px;
}

/** header-top */
.header-top {
    box-shadow: 0 0 20px 0 #00000031;
}

.header-top .wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 5px 20px;
}

.header-contacts {
    display: flex;
    gap: 30px;
}

.header-contacts a {
    display: flex;
    gap: 3px;
    align-items: center;
    font-size: 14px;
    color: #4d4d4d;
}

.header-contacts a:hover {
    color: #e4142c;
}

.header-contacts a [class*="fa-"] {
    transform: translateY(2px);
    font-size: 20px;
    color: #e4142c;
}

.header-rs {
    display: flex;
    gap: 10px;
    align-items: center;
}

a.header-rs-item {
    position: relative;
    background-color: #e4142c;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    transition: all 200ms linear;
}

a.header-rs-item:hover {
    background-color: #ba0016;
}

a.header-rs-item [class*="fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #fff;
}

/** header-body */
.header-body .wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.header-logo a {
    display: block;
    width: fit-content;
}

/** HEADER SCROLL */
.header__scroll {
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.header__scroll .header-top {
    display: none;
}

.header__scroll .header-body .wrap {
    padding: 4px 0;
}

.header__scroll .header-logo img {
    height: 40px;
}

/** header-internas */
.header-internas {
    background-color: #f5f5f5;
}

@media screen and (max-width: 1100px) {
    .header-body .wrap {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {
    header {
        background-color: #f5f5f5;
    }

    .header-top {
        display: none;
    }

    .header-body .wrap {
        padding: 4px 20px;
    }

    .header-logo-img {
        height: 60px;
    }

    .header-sep {
        height: 68px;
    }
}