
/*<!--------------------------------HEADER------------------------------------->*/

.header {
    display: flex;
    padding: 58px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.header_wrapper {
    display: flex;
    align-items: center;
}

.header_logo {
    margin: 0 24px 0 0;
}

.header_title {
    color: rgba(0, 0, 0, 0.30);
    font-family: Sans-500, sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 14px; /* 116.667% */
    margin: 0;
}

.header_nav {
    display: flex;
    margin: 0 0 0 auto;
}
.header_nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.header_nav ul li {
    padding: 0 18px;
    box-sizing: border-box;
}
.header_nav ul li a {
    color: #000;
    font-family: Sans-500, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    text-decoration: none;
}

.header_nav ul li button {
    margin: 0 12px;
    border-radius: 16px;
    background: #000;
    padding: 10px 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 16px 0px rgba(255, 255, 255, 0.25);
    color: #FFF;
    text-align: center;
    font-family: Sans-700, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media all and (max-width: 1024px){
    .header {
        padding: 40px 0;
    }
    .header_logo {
        width: 83px;
        height: auto;
    }
    .header_nav ul li {
        padding: 0 12px;
    }
    .header_nav ul li button {
        margin: 0 0 0 12px;
        border-radius: 100px;
    }
}

@media all and (max-width: 767px){
    .header {
        padding: 20px 0;
    }
    .header_nav li:nth-child(1) {
        display: none;
    }
    .header_nav li:nth-child(2) {
        display: none;
    }
    .header_title {
        display: none;
    }
}