@font-face {
    font-family: 'MAV';
    src: url("../font/rostov.woff");
}
*{
    font-family: 'MAV';
}
#main{
    background: url('../img/bg2.png');
    background-repeat: no-repeat;
    background-size: cover;
}
body{
    background: #1A130C;
}
.color-a{
    color: #CD9139;
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 2rem;
}
.grid .col-1 {
    grid-column: span 1;
    min-width: 0;
}
.grid .row-1 {
    grid-row: span 1;
}
.grid .col-2 {
    grid-column: span 2;
    min-width: 0;
}
.grid .row-2 {
    grid-row: span 2;
}
.grid .col-3 {
    grid-column: span 3;
    min-width: 0;
}
.grid .row-3 {
    grid-row: span 3;
}
.grid .col-4 {
    grid-column: span 4;
    min-width: 0;
}
.grid .row-4 {
    grid-row: span 4;
}
.grid .col-5 {
    grid-column: span 5;
    min-width: 0;
}
.grid .row-5 {
    grid-row: span 5;
}
.grid .col-6 {
    grid-column: span 6;
    min-width: 0;
}
.grid .row-6 {
    grid-row: span 6;
}
.grid .col-7 {
    grid-column: span 7;
    min-width: 0;
}
.grid .row-7 {
    grid-row: span 7;
}
.grid .col-8 {
    grid-column: span 8;
    min-width: 0;
}
.grid .row-8 {
    grid-row: span 8;
}
.grid .col-9 {
    grid-column: span 9;
    min-width: 0;
}
.grid .row-9 {
    grid-row: span 9;
}
.grid .col-10 {
    grid-column: span 10;
    min-width: 0;
}
.grid .row-10 {
    grid-row: span 10;
}
.grid .col-11 {
    grid-column: span 11;
    min-width: 0;
}
.grid .row-11 {
    grid-row: span 11;
}
.grid .col-12 {
    grid-column: span 12;
    min-width: 0;
}
.grid .row-12 {
    grid-row: span 12;
}
.grid.gap-2 {
    grid-gap: 0.5rem;
}
.content{
    padding-top: 130px;
}
.header{
    position: relative;
}
.nav{
    position: fixed;
    right: -100%;
    width: 20%;
    z-index: 111;
    background: #65764C;
    padding: 110px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}
.nav ul li{
    list-style: none;
}
.nav ul li a{
    color: #FFF;
    font-size: 32px;
    margin-bottom: 32px;
}
.open-nav{
    right: 0px;
    transition: 0.3s;
}
.close-nav{
    position: absolute;
    right: 50px;
    top: 60px;
    cursor: pointer;
}
.menu-phone{
    color: #FFF;
    font-size: 24px;
}
.hamburger{
    position: absolute;
    right: 0px;
    top: 0px;
}
.hamburger .line{
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
    cursor: pointer;
}
#hamburger-1.is-active .line:nth-child(2){
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}
.header .logo .logo-head{
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.header .logo .logo-text{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 96%;
    color: #FFFFFF;
}
.swiper {
    width: 100%;
    height: 300px;
}
.swiper-pagination{
    margin-bottom: 10px;
}
.swiper-pagination-bullet{
    background: #D4D4D4 !important;
    opacity: 0.8 !important;
    cursor: pointer;
}
.swiper-pagination-bullet-active{
    background: #FFFFFF !important;
}
.main-banner{
    height: 930px;
    background: url(../img/main.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.main-banner .container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}
.main-banner-info{
    text-align: right;
    max-width: 840px;
}
.main-banner-info-text{
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.07em;
    color: #FFFFFF;
}
.main-banner-info-button{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 96%;
    color: #FFFFFF;
    padding: 32px 40px;
    background: linear-gradient(221.63deg, #CD9138 23.53%, rgba(205, 145, 56, 0) 164.45%);
    border-radius: 56px;
    float: right;
    cursor: pointer;
    margin-top: 32px;
    transition: 0.3s;
}
.main-banner-info-button:hover{
    background: linear-gradient(221.63deg, #CD9138 23.53%, rgba(205, 145, 56, 0) 164.45%);
    filter: drop-shadow(5px 15px 50px rgba(255, 152, 0, 0.4));
    transform: translate(0,-10px);
    transition: 0.3s;
}
.main-catalog-header{
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 72px;
    text-align: center;
}
.main-catalog-list{
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}
.main-catalog-list-el{
    border-radius: 20px;
    background: #65764C;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    margin-bottom: 16px;
    position: relative;
    justify-content: inherit;
    transition: 0.3s;
    overflow:hidden;
}
.main-catalog-list-el:hover{
    transform: translate(0,-10px);
    transition: 0.3s;
}
.main-catalog-list-el img{
    width: 100%;
    height: 280px;
    cursor: grab;
}
.catalog-list-el-list ul{
    padding: 0;
}
.catalog-list-el-name{
    text-align: center;
    margin-top: 24px;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 96%;
    color: #FFFFFF;
    max-width: 240px;
    margin: 24px auto 12px auto;
}

.catalog-list-el-list ul li{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    margin-left: 28px;
}
.catalog-list-el-places{
    text-align: center;
    padding: 16px;
    border: 1px solid #CD9139;
    max-width: 193px;
    margin: 0 auto 36px auto;
}
.catalog-list-el-places p{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.catalog-lise-el-button{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 96%;
    color: #fff;
    padding: 18px 16px;
    background: linear-gradient(221.63deg, #CD9138 23.53%, rgba(205, 145, 56, 0) 164.45%);
    filter: drop-shadow(0px -1px 100px rgba(0, 0, 0, 0.25));
    border-radius: 56px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}
.main-catalog{
    margin-bottom: 130px;
}
.main-catalog-food{
    display: flex;
    flex-direction: column;
    margin-bottom: 130px;
}
.main-catalog-food-info{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 24px;
}
.main-catalog-food-list{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1rem;
    margin-bottom: 45px;
}
.catalog-food-list-el-name{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 16px;
}
.main-catalog-food-text{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #FFFFFF;
}
.main-buy-button{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 96%;
    color: #FFFFFF;
    padding: 32px 40px;
    background: linear-gradient(221.63deg, #CD9138 23.53%, rgba(205, 145, 56, 0) 164.45%);
    border-radius: 56px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}
.main-buy-button:hover{
    background: linear-gradient(221.63deg, #CD9138 23.53%, rgba(205, 145, 56, 0) 164.45%);
    filter: drop-shadow(5px 15px 50px rgba(255, 152, 0, 0.4));
    transform: translate(0,-10px);
    transition: 0.3s;
}
.main-services{
    margin-bottom: 100px;
}
.main-services-list{
    grid-gap: 1rem;
    margin-bottom: 95px;
}
.services-list-el{
    background: linear-gradient(94.57deg, #6C804F 29.31%, #CD9138 142.17%);
    box-shadow: 0px 14px 34px rgba(46, 46, 46, 0.25);
    border-radius: 20px;
    padding: 45px 24px 15px 24px;
    position: relative;
}
.services-list-el img{
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: -50px;
}
.services-list-el-name{
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.services-list-el-text{
    font-family: 'Maven Pro', sans-serif;
    margin-bottom: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}
.services-list-el ul{
    margin-top: 16px;
}
.services-list-el ul li{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 118%;
    color: #FFFFFF;
}
.contact-header{
    margin-bottom: 16px;
}
.main-contact{
    padding-bottom: 130px;
}
.main-contact-info{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 72px;
}
.main-contact form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-contact form .datepicker{
    width: 100%;
}
.main-contact form .datepicker *{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.main-contact form div label{
    position: absolute;
    left: 36px;
    top: 8px;
    color: #fff;
    font-size: 18px;
}
.main-contact form input[type=text],.main-contact form input[type=date]{
    font-family: 'Maven Pro', sans-serif;
    padding: 35px;
    background: linear-gradient(180deg, #BA8C3C 0%, rgba(148, 145, 143, 0) 144.48%);
    border-radius: 52px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #D5D5D5;
    margin-bottom: 16px;
    border: 0px;
    outline: none;
}

.main-contact form input[type=date]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
}
.main-contact form div{
    position: relative;
}
.fa-calendar-days{
    width: 15px;
    height: 16px;
    position: absolute;
    font-size: 34px;
    top: 29px;
    right: 75px;
    color: #fff;
}
.main-contact form input[type=submit]{
    margin-top: 15px;
    border: 0px;
}
.main-contact form input::placeholder { /* Most modern browsers support this now. */
    color: #D5D5D5;
}
.footer{
    background: #18110B;
}
.footer-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 24px;
}
.menu-links li{
    margin-bottom: 16px;
}
.footer-info .footer-logo .logo-head{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.footer-social{
    margin-top: 24px;
}
.footer-social a{
    display: flex;
    float: left;
    margin-right: 10px;
    text-decoration: none;
}
.footer-info .footer-logo .logo-text{
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 96%;
    color: #FFFFFF;
    margin-bottom: 48px;
}
.footer-info-text{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 24px;
}
.footer-info-text ul{
    padding: 0px;
    margin-right: 50px;
}
.footer-info-text ul li{
    list-style: none;
    font-family: 'Maven Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #FFFFFF;
}
.footer-info-text ul li a{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 96%;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    text-decoration: underline;
}
.footer-info-text ul li a:hover{
    text-decoration: underline;
}
.footer-map{
    width: 55%;
}
.fa-instagram{
    color: #BAB8B6;
    font-size: 22px;
}
@media screen and (max-width:768px){
    .main-banner{
        height: 520px;
        padding: 20px 20px;
    }
    .main-banner-info-text {
        font-size: 18px;
    }
    .main-banner-info-button {
        padding: 22px 26px;
    }
    .nav .menu-phone{
        color: #fff !important;
    }
    .hamburger .line {
        width: 35px;
        height: 3px;
        background-color: #ecf0f1;
        display: block;
        margin: 6px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .header .logo .logo-head {
        font-size: 26px;
    }
    .header .logo .logo-text {
        font-size: 14px;
    }
    .main-catalog-list{
      flex-direction: column;
        align-items: center;
    }
    .main-catalog-food-list{
        overflow-x: scroll;
        grid-template-columns: repeat(3, 1fr);
    }
    .main-services .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .col-4,.col-8{
      width: 100% !important;
    }
    .grid .col-4 {
        grid-column: span 8;
        min-width: 0;
    }
    .main-services-list{
        margin-bottom: 0px;
    }
    .services-list-el{
        margin-bottom: 70px;
    }
    .main-contact form input, .main-contact form div{
        width: 100% !important;
    }
    .footer-container{
        flex-direction: column;
    }
    .footer-map {
        width: 100%;
    }
    .footer-social {
        margin-bottom: 24px;
    }
    .catalog-food-list-el img{
        width: 310px;
    }
    .main-catalog-header{
        font-size: 32px;
    }
    .main-contact-info{
        font-size: 18px;
    }
    .main-catalog-list {
        justify-content: space-between;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1rem;
    }
    .nav {
        width: 100%;
    }
}