@import url(./fonts/roboto.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #957554;
    font-size: 36px;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
}

a {
    text-decoration: none;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: #DFAA5B;
    padding: 24px 56px;
    border-radius: 10px;
    max-width: 418px;
    margin: 0 auto;
    transition: background-color 0.3s ease-in-out;
    border: none;
}

.btn:hover {
    background-color: rgba(168, 120, 49, 0.8);
}

.container {

}

.header {
    padding: 12px 8px;
}

.header__container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.header__contacts {
    position: absolute;
}

.header__contacts-item {
    display: flex;
    align-items: center;
}

.header__contacts-item span {
    margin-left: 2px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 200;
    color: #000;
}

.header__contacts-item:not(:last-child) {
    margin-bottom: 10px;
}

.header__logo {
    margin: 0 auto;
    width: 250px;
    display: block;
}

.header__logo-img {
    width: 100%;
}

.navbar {
    display: flex;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.navbar__item {
    position: relative;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #957554;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.navbar__item::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 2px;
    opacity: 0;
    background: #957554;
    transition: opacity 0.2s ease-in-out;
}

.navbar__item:hover::after {
    opacity: 100%;
}

.navbar__item.selected.navbar__item::after {
    opacity: 100%;
}

.footer {
    background: #111111;
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.footer__container {
    padding: 22px 10px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer__info-container {
    display: flex;
    margin-bottom: 32px;
}

.footer__logo {
    width: 92px;
    height: 81px;
    margin-bottom: 8px;
}

.footer-inform {
    font-weight: 500;
    line-height: 21px;
}

.footer-logo p {
    color: #fff;
}

.footer__links {
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.footer__links a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
}

.footer__links a:not(:last-child) {
    margin-bottom: 24px;
}

.footer__entrepreneur {
    font-size: 16px;
    font-weight: 200;
}

.footer__call {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    max-width: 372px;
    width: 100%;
}

.footer__call-title {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 2px 0;
    text-align: left;
}

.footer__call-input {
    height: 38px;
    padding-left: 15px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    border-radius: 10px;
    border: none;
    max-width: 372px;
    width: 100%;
    margin-bottom: 10px;
}

.footer__call-btn {
    font-size: 18px;
    width: 100%;
    padding: 16px 56px;
    cursor: pointer;
}

.request-to-call a {
    margin-top: 15px;
    background: #DFAA5B;
    border-radius: 10px;
    padding: 15px 90px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.reservation__title {
    margin-bottom: 14px;
}

.reservation__btn {
    margin: 0 auto;
}

.blackbar {
    padding: 16px 0;
    background-color: #111111;
}

.blackbar__title {
    font-family: 'Roboto', serif;
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 6px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}

.invisible {
    visibility: hidden;
}

@media screen and (max-width: 1092px) {
    .footer__container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer__call {
        margin-left: 0;
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 612px) {
    .footer__info-container {
        flex-direction: column;
    }

    .footer__contacts {
        margin-bottom: 32px;
    }

    .footer__links {
        margin-left: 0;
    }
}

.burger-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.burger,
.burger__menu {
    display: none;
}

.burger__container {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.burger {
    width: 30px;
    height: 4px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.burger::before,
.burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: all 0.3s ease;
}

.burger::before {
    top: -8px;
}

.burger::after {
    top: 8px;
}

.burger.open {
    background-color: transparent;
}

.burger.open::before {
    transform: rotate(45deg);
    top: 0;
}

.burger.open::after {
    transform: rotate(-45deg);
    top: 0;
}

.burger__menu {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 20px;
    background-color: #111111;
    z-index: 10000;
    font-size: 20px;
}

.burger__nav {
    display: flex;
    flex-direction: column;
}

.burger__nav-item {
    width: fit-content;
    position: relative;
    color: #FFFFFF;
}

.burger__nav-item::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 2px;
    opacity: 0;
    background: #FFFFFF;
}

.burger__nav-item.selected.burger__nav-item::after {
    opacity: 100%;
}

.burger__nav-item:not(:last-child) {
    margin-bottom: 16px;
}

.burger__contacts {
    margin-top: 60px;
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .btn {
        font-size: 20px;
        padding: 10px 29px;
    }

    .header__logo {
        margin: 0;
    }

    .header__container {
        justify-content: space-between;
        align-items: center;
    }

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

    .burger {
        display: block;
    }

    .navbar, .header__contacts {
        display: none;
        position: absolute;
        background-color: white;
        width: 100%;
        left: 0;
        top: 60px;
        z-index: 1000;
    }

    .header__container {
        position: relative;
    }
}

.ytp-cued-thumbnail-overlay-image {
    background-position: unset; !important;
}