
.header-screen {
    padding: 32px 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}
.header-screen>button {
    display: flex;
    flex-direction: column;
}
.header-screen>button>div {
    margin-top: 8px;
}
.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}
header nav a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #211A19;
    text-decoration: none;
    padding-top: 8px;
    padding-bottom: 8px;
}
header nav a:not(:nth-child(1)) {
    margin-left: 32px;
}
header nav a:hover {
    color: #B7201E;
}
.header-btns {
    margin-left: 40px;
    display: flex;
    align-items: center;
}
.header-btns button:nth-child(2) {
    margin-left: 8px;
}
.header-btns button:first-child img {
    margin-right: 8px;
}
#menu-icon {
    display: none;
}
.header-content-mobile {
    display: none;
}

.divider-header {
    height: 1px;
    width: 100%;
    background: rgba(18, 17, 39, 0.16);
    margin-bottom: 16px;
}

.selected {
    color: #B7201E;
}

@media (max-width: 1500px) {
    .header-screen {
        padding: 32px 40px;
    }
}
@media (max-width: 1300px) {
    #menu-icon {
        display: flex;
        padding: 4px;
    }
    .header-content {
        display: none;
    }
    .header-content-mobile {
        display: none;
    }
    .visible {
        position: absolute;
        top: 96px;
        background-color: #FFFFFF;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        z-index: 99;
    }
    .header-nav-mobile, .header-btns-mobile {
        display: flex;
        flex-direction: column;
    }
    .header-nav-mobile a:not(:nth-child(1)) {
        margin-left: 0;
    }
    .header-nav-mobile a {
        padding: 16px 40px;
    }
    .header-btns-mobile {
        padding: 24px 40px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 400px) {
    .header-screen {
        padding: 32px 16px;
    }
}