@font-face {
    font-family: 'Montserrat'; /* A name you choose to use later in your CSS */
    src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}
@font-face {
    font-family: 'Labor Union'; /* A name you choose to use later in your CSS */
    src: url("../fonts/LaborUnion-Regular.otf") format("truetype");
}

body {
    margin: 0;
}
::selection {
  background-color: #ff400c;
  color: #ffffff;
}
.hero {
    /* min-height: 100% !important; */
    background:
        linear-gradient(
            to bottom,
            rgba(18, 18, 18, 0.2) 0%,
            rgba(18, 18, 18, 0.25) 50%,
            rgba(18, 18, 18, 1) 99%
        ),
        url("../img/butylochnaya/butilochnaya-back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    
}
/* .header {
    padding: 9px 26px 0 26px;
} */
.header {
    margin: 0;
    padding: 9px 26px 0 26px;
    display: flex;
    justify-content: space-between;
    height: 42px;
    align-items: center;
}
.unselectable {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari, Chrome */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+ and Edge */
    user-select: none; /* Standard syntax */
}
p, span, div, h3, a {
    font-family: "Montserrat";
    font-weight: 500;
    color: #ffffff;
}

.header span {
    color: #BFBFBF;
}

.header a {
    color: #ffffff;
    text-decoration: none;
}

.tel-contact {
}
.schedule {
}
.days {
}
.day {
    font-family: "Labor Union";
    cursor: pointer;
    font-size: 20px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    opacity: 0.5;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
.bt-link {
    transition: 0.3s ease-out, transform 0.3s ease-out; 
}
.bt-link:hover {
    opacity: 0.5;
}
.day {
    transition: 0.3s ease-out, transform 0.3s ease-out; 
}
.day:hover {
    opacity: 1;
}
.active {
    color: #ff400c;
    opacity: 1;

    transition: 0.3s ease-out, transform 0.3s ease-out; 
}
.time {
    font-size: 20px;
    padding-left: 2px;
    display: flex;
}

.hero .container {
    padding-top: 27px;
    padding-left: 26px;
    max-width: 1004px;
}
.promo img {
    width: 600px;
}
.promo {
    padding-bottom: 17px;
}
.promo-text p {
    color: #ffffff;
    font-size: 22px;
}
.kitchen {
    background:
        linear-gradient(
            to bottom,
            rgba(18, 18, 18, 1) 0%,     /* 100% */
            rgba(18, 18, 18, 0.25) 50%, /* 25% */
            rgba(18, 18, 18, 1) 100%    /* 100% */
        ),
        url("../img/butylochnaya/butilochnaya-back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.menu .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.block-heading {
    font-family: "Labor Union";
    font-size: 90px;
    margin: 0;
    padding: 0;
}
.menu img {
    padding: 6px 0 114px 0;
}
.menu .block-heading {
    padding-top: 48px;
    max-width: 662px;
    text-align: center;
}
.drinks {
    background:
        linear-gradient(
            to bottom,
            rgba(18, 18, 18, 1) 0%,     /* 100% */
            rgba(18, 18, 18, 0.25) 50%, /* 25% */
            rgba(18, 18, 18, 1) 100%    /* 100% */
        ),
        url("../img/butylochnaya/drinks-back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 920px) {
    .tel-contact, .schedule {
        display: none;
    }
    .header {
        justify-content: center;
    }
    .promo img {
        max-width: 90%;
    }

    .promo-text {
        font-size: 18px;
        max-width: 90%;
        padding: 0 10px;
    }

    .hero {
        background-position: center top;
    }
    .hero .container {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        align-items: center;
    }

    .promo-text p {
        font-size: 18px;
        font-weight: 400;
    }

    .block-heading {
        font-size: 60px;
    }

    .event-heading .event-count {
        font-size: 27px;
    }

    .menu img {
        max-width: 80%;
        padding: 0 0 60px 0;
    }
    
}