* {
    margin: 0;
    padding: 0;
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

body {
    scroll-behavior: smooth;
}

a, button {
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 11px;
    height: 100%;
}

::-webkit-scrollbar-track {
    background: transparent; /* Цвет фона дорожки */
}

::-webkit-scrollbar-thumb {
    background-color: #C6B580; /* Цвет ползунка */
    border-radius: 7px;  /*Скругление углов ползунка */
    /* border: 3px solid transparent; */
    background-clip: content-box;
}

.logotype {
    width: 150px;
    height: 50px;
}

.logotype img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* #header {

} */

  #header.small {
    height: 20px;
    background-color: #002B2A;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    color: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #C6B580;
    transition: height 0.6s ease;
}

.header__header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    gap: 50%;
    z-index: 999;
}

.header_nav-ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

ul.header_nav-ul a {
    text-decoration: none;
    color: #fff;
}

ul.header_nav-ul li {
    list-style: none;
}

.banner {
    position: relative;
    background: url('../images/banner.png') center no-repeat;
    background-size: cover;
    width: 100%;
    height: 101vh;
    margin-top: -6px;
    /* margin-left: -15px; */
}

.banner__block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner__block h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 400;
}

a.banner__block-button button{
    background: transparent;
    color: #C6B580;
    border: 2px solid #C6B580;
    padding: 5px 15px;
    font-size: 26px;
}

#about, #contacts {
    background-color: #002B2A;
    padding: 10%;
}

.about__banner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about_banner-img {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about_banner-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.title {
    color: #C6B580;
    font-size: 42px;
}

.subtitle, .about-text {
    color: #fff;
    font-size: 22px;
}

ul.about-text {
    text-align: left;
    padding-left: 30px;
}

#menu, #menu-next {
    background: url('../images/menu-banner.png') center no-repeat;
    background-size: cover;
    padding: 10%;
}

.menu__block {
    text-align: center;
}

.menu_ul li {
    text-align: center;
    list-style-position: inside;
}

#contacts {
    padding: 10% 10% 0.1% 10%;
}

.contacts__block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.address_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
}

.address_block h3 {
    font-family: "Akshar", serif;
    opacity: 0.7;
}

.address_block h2 {
    margin-left: 15px;
}

.maps_block {
    width: 700px;
}

.maps_block img{
    width: 100%;
}

.copyright {
    width: 27%;
    text-align: center;
    border: 2px solid #fff;
    padding: 50px 70px;
    margin: 50px auto;
}