.header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 500;
}
.header_container {
    padding: 0 115px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    width: 145px;
}
.header_reservation {
    font-family: "roboto", sans-serif;
    font-size: 14px;
    width: 100%;
    max-width: 143px;
    height: 40px;
    border: 1px solid #A1B5A4;
	background-color: rgba(238, 244, 232, 0.6);
    display: grid;
    place-items: center;
    border-radius: 40px;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .header {
        top: 3%;
    }
    .header_container {
        padding: 0 24% 0 4.7%;
    }
    .header_logo {
        width: 37%;
    }
    .header_reservation {
        font-size: 3.255813953488372vw;
        width: auto;
        height: auto;
        border: none;
		background: transparent;
    }
}