.tour-menu-block-container {
    /*background-color: #faf6e5;*/
}

.tour-menu-navbar-list {
    display: flex;
    padding: 0;
    margin: 0;
}

.tour-menu-navbar-items {
    padding-right: 12px;
    font-size: 17px;
}

.tour-menu-navbar-items:last-child {
    padding-right: 0;
}

.white-line:after {
    position: absolute;
    content: '';
    z-index: 2;
    height: 1px;
    width: 100%;
    top: 56px;
    left: 0;
    border-bottom: 1px solid white;
}


/*About tabs navigation*/
.openedTab {
    display: block;
}

.closedTab {
    display: none;
}

@media only screen and (max-width: 800px) {
    .tour-menu-navbar-list {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .white-line:after {
        display: none;
    }

    .tour-menu-navbar-list {
        flex-direction: column;
        background-color: white;
        padding-left: 0;
        padding-right: 0;
    }

    .tour-menu-navbar-items {
        border-bottom: 1px solid #999;
        padding: 0 15px;
    }
   
}