*,::after,::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0 80px;
    background-color: hsl(0, 0%, 100%);
}

/* Menu */
.nav .logo img{
    width: 110px;
    border-radius: 50%;
    
}
.nav{
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 20px 0;
}

.nav ul{
    display: flex;
    list-style: none;
    margin-left: 20%;
}
.nav ul li{
    margin-right: 40px;
}
.nav ul li a{
    text-decoration: none;
    color: black;
    font-weight: 5500;
    font-family: 'Century Gothic';
    font-size: 17px;
    letter-spacing: .05rem;
    display: inline-block; 
    position: relative;
    opacity: 0.8;
}
.nav-link:hover {
    color: rgb(12, 23, 63);
    font-weight: 550;
  }
  
  .nav-link::before {
    transition: 300ms;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #031D44;
  }
  
  .nav-link-ltr::before {
    width: 0%;
    bottom: -1px;
  }
  
  .nav-link-ltr:hover::before {
    width: 100%;
  }


/* Input */

input{
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    border-radius: 1rem;
    border: none;
    color: #ffffff;
    background-color: #ff511c;
    
    
}
.signin{
    background: transparent;
    margin-left: 120px;
    border: none;
    color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.signup{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* CONTENT */
.content{
    display: flex;
    grid-template-columns: 50% auto;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.content .content-left{
    display: block;
    width: 100%;
    margin-top: -50px;
}
.content .content-left .info{
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.content .content-left .info h2{
    font-size: 60px;
    font-family: "Lucida Sans";
    margin-bottom: 30px;
}
.content .content-left .info h4{
    font-size: 30px;
    font-family: "Maiandra GD";
    margin-bottom: 30px;
    margin-left: 5px;
    color: #ff511c;
}
.content .content-left .info p{
    font-size: 23px;
    line-height: 2pc;
    margin-bottom: 30px;
    font-family: "Century Gothic";
}
.content .content-left button{
    padding: 10px 23px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    border-radius: 1rem;
    border: none;
    color: #ffffff;
    background-color: #ff511c;
}


.content .content-right{
    display: block;
    width: 70%;
}
.content .content-right img{
    width: 500px;
    height: auto;
    margin-top: -80px;
    padding-left: -10px;
    position: relative;
    transition: 5s;
    animation-name: change;
    animation-direction: alternate-reverse;
        animation-duration: 25s;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        animation-play-state: running;
        animation-timing-function: ease-in-out;
}
@keyframes change{
    50%
    {
       
    }
}

.category{
    width: 100%;
    display: flex;
    margin-bottom: 50px;
    justify-content: center;

}
.category .list-items{
    width: 95%;
    position: relative;
}
.category .list-items h3{
    font-size: 22px;
    font-weight: 600;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 40px;
    margin-left: -30px;
}
.category .list-items .card-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
}
.category .card-list .card{
    width: 200px;
    height: auto;
    display: block;
    padding: 10px;
    box-shadow: 0 3px 8px rgb(4, 4, 4);
    border-radius: 15px;
    position: relative;
    background:hsl(57, 100%, 82%);
}
.card:hover{
    transform: translateY(-10px);
}

.category .card-list .card img{
    width: 100px;
    height: auto;
    bottom: 150px;
    left: 50px;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgb(4, 4, 4);
    
}
.category .card-list .card .food-title{
    padding-top: 120px; 
}
.category .card-list .card .food-title h1{
    font-weight: bold;
    font-size: 20px;
    font-family: "Maiandra GD";
    color: #e65202;
    border: #000000;
    border-radius: 5px;
    margin-bottom: 10px;
}
.category .card .desc-food p{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: -10px;
    font-family: 'Century Gothic';
}
.category .card .price{
    font-size: 25px;
    align-items: center;
    justify-content: space-between;
}
.category .card .price span{
    font-weight: 600;
   
}
.category .card .price span .plus-icon{
    color: #e65202;
    font-size: 23px;
    cursor: pointer;
    margin-left: 90px;
    padding-top: 20px;
}
.plus-icon{
    padding-top: 10px;
}

.social{
    width: 100%;
    height: auto;
    position: absolute;
    margin: 0 -80px;
    z-index: 2;
    margin-top: 5%;
}

.social .connect{
    background: #0d1648;
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 20px;

}
.social .connect p{
    padding-right: 500px;
    padding-left: 80px;
    color: #ffffff;
    font-size: 18px;
    font-family: 'Century Gothic'
}
.social .connect .logo span{
    font-size: 20px;
    padding-left: 50px;
}
.social .connect .logo span i{
    padding-right: 20px;
    color: #ffffff;
}
.social .connect .logo span a :hover{
    text-decoration: none;
}



.footer {
    display: flex;
    flex-flow: row wrap;
    /* padding: 80px; */
    padding-right: 80px;
    padding-left: 80px;
    padding-bottom: 40px;
    color: #ffffff;
    background-color: #0d1648;
    border-top: 1px solid #e5e5e5;
    padding-top: 7%; 
    width: 100%;
    height: auto;
    position: absolute;
    margin: 0 -80px;
    margin-top: 5%;
  }
  
  .footer > * {
    flex:  1 100%;
  }
  
  .footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
  }
  
  .footer__logo {
    width: 100px;
    border-radius: 50%;
  }
  
  .footer__addr h2 {
    margin-top: 1.3em;
    font-size: 20px;
    font-weight: 400;
    font-family: "Maiandra GD";
  }
  
  .nav__title {
    font-weight: 550;
    font-size: 18px;
    font-family: "Maiandra GD";
  }
  
  .footer address {
    font-style: normal;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Century Gothic';
    margin-top: .7rem;
  }
  
  .footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(255, 255, 255);
    border-radius: 100px;
    color: #000000;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
  }
  
  .footer ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
  }
  
  .footer__nav {
    display: flex;
    flex-flow: row wrap;
  }
  
  .footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .nav__ul a {
    color: #ffffff;
  }
  
  .nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
  }
  
  .legal {
    display: flex;
    flex-wrap: wrap;
    color: #ffffff;
  }
    
  .legal__links {
    display: flex;
    align-items: center;
  }
  
  .heart {
    color: #ffffff;
  }
  
  @media screen and (min-width: 24.375em) {
    .legal .legal__links {
      margin-left: auto;
    }
  }
  
  @media screen and (min-width: 40.375em) {
    .footer__nav > * {
      flex: 1;
    }
    
    .nav__item--extra {
      flex-grow: 2;
    }
    
    .footer__addr {
      flex: 1 0px;
    }
    
    .footer__nav {
      flex: 2 0px;
    }
  }