:root {
    --open-sans:"Open Sans", sans-serif;
    --nunito-sans: "Nunito", sans-serif;

    --accent-light: #FBB731;
    --accent-dark: #F37335;
    --dark: #443737;
    --light: #FFFFFF;
    --light-rgb: 255,255,255;
    --line: #DEDEDE;  

    --tr: .2s;
}
   
body {
    font-family: var(--open-sans)
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width:1182px;
    margin:0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* header*/
.header {
border-bottom: 1px solid #dedede;
}

.header-wrapper{
    display: flex;
    align-items: center;
    gap: 56px;
    padding-top: 26px;
    padding-bottom: 26px;
}

.burger-menu {
display: none;
width: 34px;
height: 22px;
background-image: url(../images/burger-menu.svg);
background-repeat: no-repeat;
background-size: contain;
background-color: transparent;
border: none;
}

.logo {
    display: block;
    width: 175.67px;
    height: 56px;
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.nav {
    flex-grow: 1;
    display: flex;
    gap: 47px;
    margin-left:min(10vw,140px);
}
.nav._modal {
display: none;
}
.nav-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 20px;
    transition: var(--tr);
}
.nav-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: transparent;
    border-radius: 1.5px;
}
.nav-link:hover:after{
    background-color: var(--accent-light);
}
.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    position: relative;
}

.cart::before {
    content: "";
    display: block;
    width: 30px;
    height: 26px;
    background-image: url(../images/cart.svg);
    background-repeat: no-repeat;
    background-size: contain;
}   
.cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    font-size: 10px;
    color: var(--light);
    background-color: var(--accent-dark);
    border-radius: 100%;
    position: absolute;
    left: 17px;
    bottom: 0;
}

.button-up {
position: fixed;
right: 10px;
bottom: 10px;
background-color: var(--accent-light);
color:rgba(68, 55, 55, 1) ;
font-family: var(--nunito-sans);
font-weight: 700;
font-size: 14px;
text-transform: uppercase;
text-decoration: none;
padding: 5px 10px;
text-align: center;
text-align: center;
border-radius: 5px;
border: none;
transition:var(--tr);
}

.button-up:hover{
background-color: var(--accent-dark);

}

.button-up.hidden {
opacity: 0;
}

.button-up.visible {
opacity: 1;
}
/*hero*/

.hero {
    background-image: url(../images/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    padding-top: 142px;
    padding-bottom: 142px;
}

.hero-contact{
    background-image: url(../images/hero-contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    padding-top: 142px;
    padding-bottom: 142px;
}


.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    list-style-type: none;
    padding-left: 0;
    color: rgba(var(--light-rgb), .5);
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 0;
}
.breadcrumbs-item{
position: relative;

}
.breadcrumbs-item:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -12px;
    color: var(--light);
}

.breadcrumbs-item:hover{
    color: var(--accent-light);
}


.breadcrumbs-link {
color: rgba(var(--light-rgb), .5);
transition: var(--tr);
}

.breadcrumbs-link:hover{
color: var(--accent-light);

}
.hero-title {
    color:var(--light);
    font-family:var(--nunito-sans);
    font-weight: 700;
    font-size: 79px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 10px;

}

.hero-discription{
    max-width:320px;
    margin: 0 auto;
    color: rgba(var(--light-rgb), .8);
    font-size: 15px;
    line-height: 160%;
}

/*banner*/

.banner {
margin-top: 140px;
}

.banner-title {
    color: var(--light);
    font-family: var(--nunito-sans);
    font-weight: 900;
    font-size: 60px;
    line-height: 126%;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 11px;

}

.banner-title span {
    display: block;
    background-color: var(--accent-dark);
    font-family: var(--open-sans);
    text-transform: uppercase;
    color: var(--light);
    font-weight: 600;
    font-size: 14px;
    max-width: 95px;
    border-radius: 14px;
    text-align: center;
    padding:  5px 0;
    margin-top: 4px;
    line-height: 128%;

}


.banner-wrapper {
    background-image: url(../images/banner.jpg);
    padding: 100px;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-description {
    font-family: var(--open-sans);
    font-style: normal;
    color:rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 15px;
    max-width: 328px;
    line-height: 160%;
    margin-top: 0;
    margin-bottom: 13px;
}


.button-btn {
    display: block;
    max-width: 170px;
    background-color: var(--accent-light);
    color:rgba(68, 55, 55, 1) ;
    font-family: var(--nunito-sans);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 22px 0px;
    text-align: center;
    text-align: center;
    border-radius: 5px;
    border: none;
    transition:var(--tr);
}

.button-btn:hover{
 background-color: var(--accent-dark);

}

.sort-select {
    border-radius: 15px;
    color:var( rgba(68, 55, 55, 1));
    font-size: 15px;
    appearance: none;
    font-style: normal;
    flex-basis: 279px;
    background-image:url(../images/chevron-down.svg);
    background-size: 14px 10px;
    background-repeat: no-repeat;
    background-position: 89% center;
    border: 1px solid #dedede;
    padding:  13px 30px;
    border-radius: 22px;
}

/* menu*/
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 34px;
    border-radius: 15px;
    font-family: var(--open-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.menu-title {
margin-top: 0;
margin-bottom: 0;
color: rgba(68, 55, 55, 1);
font-family: var(--nunito-sans);
font-weight: 700;
font-size: 44px;
text-transform: uppercase;
line-height: 127%;

}
.menu-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    gap: 50px 20px;
}

.menu-box._additionally {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    gap: 50px 20px;
}

.menu-item {
font-family: var(--nunito-sans);
text-align: center;

}
.menu-item._additionally {
font-family: var(--nunito-sans);
text-align: center;

}

.menu-thumb {
width: 100%;
height: 430px;
position: relative;
overflow: hidden;
margin-bottom: 20px;
}

.menu-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}

.menu-name {
display: block;
font-size: 30px;
font-weight: 600;
line-height:126%;
color: rgba(68, 55, 55, 1);
margin-top: 0; /* сборос*/
margin-bottom: 28px; 


}

.menu-price{
display: block;
color: rgba(68, 55, 55, 0.5);
font-size: 20px;
font-weight: 700;
margin-top: 0;
margin-bottom: 20px;
}

.menu-btn {
    display: flex;
    background-color: var(--accent-light);
    justify-content: center;
    color:  rgba(68, 55, 55, 1);
    border-radius: 5px;
    margin: 0 auto;
    font-family: var(--nunito-sans);
    font-size: 14px;
    font-weight: 500;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    gap: 10px;
    padding: 11px 32px;
    transition: var(--tr);
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  object-fit: contain;
  padding-right: 5px;
  position: relative;

}
.menu-btn:hover {
 background-color: var(--accent-dark);
}

/*footer*/
.footer{
    background-color:rgba(30, 47, 64, 1);
    /*background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;*/
    padding-top: 110px;
    margin-top: 140px;
    padding-bottom: 120px;
}
.footer-wrapper {
display: flex;
justify-content: space-between;
gap: 15px;
/*align-items: flex-start;*/
}

.footer-logo {
display: block;
background-image: url(../images/logo-light-min.svg);
width: 63px;
height: 56px;
background-repeat: no-repeat;
background-size: contain;
}

.footer-item {
display: flex;
flex-direction: column;  
}

.footer-title {
color: var(--light);
font-family: var(--nunito-sans);
font-weight: 800;
font-size: 20px;
text-transform: uppercase;
line-height: 190%;
margin-top: 0;
margin-bottom: 13px;
}

.footer nav {
display: flex;
flex-direction: column;
gap: 9px;
transition: var(--tr);
}
.footer-nav a {
/*display: flex;
flex-direction: column;*/
color:rgba(255, 255, 255, 0.9);
/*font-family: var(--open-sans);
font-weight: 400;
font-style: normal;*/
font-size: 15px;
line-height: 160%;
/*text-decoration: none;
padding: 9px;*/
}

.footer-nav a:hover{
color: var(--accent-light);
}


.footer-list {
list-style-type: none;
padding-left: 0;
margin: 0;

}
.footer-list li {
color: var(--light);
font-family: var(--open-sans);
font-weight: 700;
font-style: Bold;
font-size: 15px;
padding: 12px;
list-style: none;
}

.footer-list span{
display: block;
color:rgba(255, 255, 255, 0.9) ;
font-family: var(--open-sans);
font-weight: 400;
font-style: normal;
font-size: 15px;
}
.footer-list-item :not(:last-child) {
margin-bottom: 14px;
}

.footer-item:last-child {
flex-basis: 194px;
}

.footer-tel{
display: block;
color: var(--accent-light);
font-family: var(--nunito-sans);
font-weight: 800;
font-size: 20px;
text-transform: uppercase;
margin-top: 12px;
transition: var(--tr);
text-align: right;
}

.footer-tel._mobile {
display: none;
}

.footer-tel:hover{
    color: var(--light);
}

/* Contacts*/
.contact-main {
display: flex;
align-items: center;
gap: 20px;
max-width: 1057px;
margin: 140px auto 60px;
}


.contact-map {
flex-basis: 680px;
}

.contact-adress {
flex-basis: calc(100% - 680px - 20px);
list-style-type: none;
padding-left: 0;
}
.contact-adress > li:not(:last-child) {
margin-bottom: 26px;
 }


.contact-adress > li > span {
display: block;
font-size: 15px;
line-height: 160%;
 }


.contact-adress > li > span:first-child {
font-family: var(--nunito-sans);
font-size: 20px;
font-weight: 700;
line-height: 190%;
text-transform: uppercase;
margin-left: 3px;
margin-bottom: 4px;
 }

.contact-adress > li > span:last-child {
font-weight: 700;
margin-top: 10px;
}


.contact-additionally {
display: flex;
justify-content: space-between;
gap: 20px;
max-width: 1057px;
list-style-type: none;
padding-left: 0;
margin: 0 auto;
}

.contact-additionally > li {
font-size: 15px;
display: flex;
align-items: center;
 gap: 15px;
}
.contact-additionally > li::before {
content: '';
display: block;
width: 80px;
height: 80px;
background-repeat: no-repeat;
background-size: cover;
 }
.contact-additionally > li:nth-child(1):before {
background-image: url(../images/contact/contact\ 01.svg);
}
.contact-additionally > li:nth-child(2):before {
background-image: url(../images/contact/contact\ 02.svg);
}
.contact-additionally > li:nth-child(3):before {
background-image: url(../images/contact/contact\ 03.svg);
}

.contact-info,.contact-tel {
display: block;
color: var(--dark);
font-family: var(--nunito-sans);
font-size: 20px;
font-weight: 700;
line-height: 140%;
margin-top: 5px;
}
.contact-tel {
transition: var(--tr)
 }
.contact-tel:hover {
color: var(--accent-light);
 }

/* Media*/

@media (max-width: 1080px) {
    .header-wrapper{
        gap:40px;
    }
    .nav {
        display: none;
        margin-left: 0;
        gap: min(3vw,30px);
    }  
}

@media ( max-width:768px ) {

    .logo {
    width: 175.67px;
    height: 56px;}

    .header-wrapper{
        gap:45px;
    }

    .nav {
        gap:22px;

    }  

    .banner{
    margin-top:72px ;

}
    .banner-wrapper{
     padding: 100px 40px;
    }

    .menu-header {
    margin-top: 80px;

    }
    .menu-box{
    grid-template-columns: repeat(2, 1fr);
    
}
    .menu-box._additionally {
    grid-template-columns:1fr;

}
    .menu-item._additionally {
    display: flex;
    align-items: center;
    gap: 20px;
    }

    .menu-item._additionally .menu-thumb {
    flex-basis: calc(60% - 20px);
    height: 260px;
    margin-bottom: 0px;
}
    .menu-item._additionally .menu-info {
    flex-basis: 40%;

    }
    .footer{
    padding-top: 62px;
    padding-bottom: 71px;
    }

    .footer-nav {
    margin-bottom: 20px;
    }

    .footer-item:last-child {
    display: none;
    }

    .footer-tel._mobile {
    display: block;
    text-align: left;
    }
}

 @media ( max-width: 730px ) {
    
    .header-wrapper{
    gap: 21px;
    padding-top:19px;
    padding-bottom: 19px;
    }
    .nav {
    display: none;
    }

    .nav._modal {
    display: flex;
    flex-direction: column;

    }
    .nav-link::after {
    display: none;

    }
    .burger-menu {
    display: block;
    }
    .logo{
    width: 116px;
    height: 37px;
    flex-grow: 1;
    }

    .modal {
    width: 100%;
    max-width: 500px;
    background-color:rgba(255, 248, 220, 1) ;
    padding: 40px 15px;
    position: absolute;
    top:-400px;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    transition: var(--tr);
    }
    
    .modal-close {
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../images/close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border: none;
    position:absolute;
    top: 20px;
    right: 20px;
    }

    .hero {
    padding-top: 57px;
    padding-bottom: 55px;
    }
    .breadcrumbs {
    font-size: 14px;
    }
    .hero-title {
    font-size: 38px;
    margin-top: 28px;
    margin-bottom: 13px;
    }
    .hero-discription {
    font-size: 12px;
    list-style: 166%;
    }
    .banner {
    margin-top: 33px;
    }
    .banner-wrapper {
    padding: 36px 15px 30px 15px;
    }
    .banner-title {
      margin-bottom: 9px;
    }
    .banner-description {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 220px;
    }
    .banner-btn {
    max-width: 198px;
    }
    .menu-header{
    margin-top: 58px;
    margin-bottom: 30px;
    }
    .menu-title {
    font-size: 27px;
    }
    .sort-select{
    font-size: 12px;
    flex-basis: 136px;
    width: 136px;
    background-position: 93% center;
    padding: 13px 15px;
    }
    .menu-box{
    gap: 24px 20px;
    }
    .menu-thumb{
    height: 50vw;
    margin-bottom: 10px;
    }
    .menu-item._additionally .menu-thumb {
    height: 38vw;  
    }
    
    .menu-name {
    font-size: 13px;
    margin-bottom: 8px;
    }
    .menu-price {
    font-size: 12px;
    margin-bottom: 14px;
    }
    .menu-btn {
    padding: 11px 22px;
    }
    .footer {
    margin-top: 80px;
    }
    .footer-wrapper {
    flex-direction: column;
    gap: 35px;
    position: relative;
    }
    .footer-logo {
    margin-bottom: 9px;
    }
    .footer-tel._mobile {
    position: absolute;
    top: -13px;
    right: 0;
    }
    .footer-tel._mobile + .footer-tel._mobile {
    top: 24px;
    }
    .footer-title {
    font-size: 18px;
    }
    .footer-nav {
    margin-bottom: 0;
    }
  }
   @media (max-width: 450px) {
    .menu-item._additionally .menu-thumb {
    flex-basis: calc(100% - 130px - 20px);
    height: 38vw;  
    }
        .menu-item._additionally .menu-info
 {
        flex-basis: 130px;
    }
}
   

   

    
 