* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--mainFontColor);
}
:root {
    --mainColor: #FCC647;
    --secondColor: #fffbf3;
    --mainFontColor: #3C3C3C;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px gray;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--mainColor);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #c99b30;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* Small */
@media (min-width: 768px){
    .container {
        width: 750px;
    }
}
/* Medium */
@media (min-width: 991px){
    .container {
        width: 970px;
    }
}

/* large */
@media (min-width: 1200px){
    .container {
        width: 1170px;
    }
}
/* Header */
main{
    background-color: var(--secondColor);
    min-height: 100vh;
}
header {
    font-weight: 700;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}
header .logo {
    font-size: 32px;
    line-height: 38.73px;
    padding: 5px;
    color: var(--mainFontColor);
}
@media (min-width: 763px) and (max-width: 990px){
    header .logo {
        flex: 1;
        text-align: center;
    }
}
header .logo span {
    color: var(--mainColor);
}
header .list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .list .item {
    padding: 5px 10px;
    margin: 0 30px;
    font-size: 15px;
    line-height: 26.6px;
}
header .list .item a {
    text-decoration: none;
    color: var(--mainFontColor);
    padding: 3px;
}
header .list .item a:hover {
    color: var(--mainColor);
    border-bottom: 3px solid var(--mainColor);
}
header .list .active a {
    color: var(--mainColor);
    border-bottom: 3px solid var(--mainColor);
}
header .menu-list {
    display: none;
}
header .list .close-bar {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 26px;
    cursor: pointer;
}
@media (max-width: 762px){
    header {
        padding-left: 30px;
        padding-right: 30px;
    }
    header .menu-list {
        display: block;
    }
    header .list {
        display: flex !important;
        flex-direction: column;
        justify-content: space-evenly !important;
        position: fixed;
        width: 85%;
        height: 100vh;
        top: 0;
        right: -100%;
        background-color: var(--secondColor);
        margin: 0 !important;
        transition: 0.3s ease-in-out;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
}
header .list .close-bar {
    display: block !important;
}
    header .list .item {
        max-width: fit-content;
        font-size: 20px;
}
}
header .menu-list .menu-bar {
    font-size: 25px;
    cursor: pointer;
}

/* Home */
.home .container,
.ourTarget .container,
.discount-app .container{
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
.home .images {
    width: 50%;
    position: relative;
}
@media (max-width: 1199px){
    .home .images {
        display: none;
    }
    .home .container,
    .ourTarget .container,
    .footer .container {
        padding-left: 45px;
        padding-right: 45px;
    }
}
.home .images .brush-img {
    right: -108px;
}
.home .images img {
    position: absolute;
}
.home .images .salad-img{
    z-index: 100;
    right: -5px;
}
.home .images .vector-img {
    top: -30px;
    left: -95px;
}
.home .images .vector2-img {
    top: 335px;
    left: -95px;
}
.home .images .arrow-img {
    top: 170px;
    left: -115px;
    width: 265px;
}
.home .images .shape {
    top: 295px;
    left: -170px;
}
.home .description,
.ourTarget .description,
.discount-app .description {
    flex: 1;
}
.home .description .note,
.ourTarget .description .note {
    padding: 7px 15px;
    background-color: #FFF2D4;
    max-width: fit-content;
    border-radius: 5px;
    color: var(--mainColor);
    font-weight: 600;
    margin: 15px 0;
}
.home .description .text,
.ourTarget .description .text,
.discount-app .description .text,
.discount-app .description .text{
    font-size: 48px;
    color: var(--mainFontColor);
    font-weight: 700;
    margin: 20px 0;
}
.home .description .text span {
    color: var(--mainColor);
}
.home .description .descrip,
.discount-app .description .descrip{
    color: #667085;
    line-height: 32px;
}
.home .more,
.discount-app .down-links {
    display: flex;
    align-items: center;
    margin: 45px 0;
}
.home .more .start,
.ourTarget .description .order-now {
    background-color: #FFC12F;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 25px;
    color: white;
    font-size: 18px;
    margin-right: 40px;
    cursor: pointer;
}
.home .more .start:active,
.ourTarget .description .order-now:active {
    background-color: #b6881e;
    transform: scale(0.96);
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -o-transform: scale(0.96);
}
.home .more .information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.home .more .information:active p {
    transform: scale(0.96);
}
.home .more .information i {
    font-size: 24px;
    color: var(--mainColor);
    padding: 7px;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
}
.home .more .information p {
    font-weight: 500;
}

/* How it works */

.works,
.deliciousDishes,
.ourTarget,
.discount-app{
    width: 100%;
    margin: 50px 0;
    min-height: calc(100vh - 50px);
    padding: 30px 0;
}
.works .container h2:first-of-type,
.deliciousDishes .container h2:first-of-type {
    text-align: center;
    font-size: 36px;
    line-height: 47.88px;
    font-weight: 700;
    margin: 0 auto 20px;
    padding: 20px 10px 10px;
}
.works .container .parg,
.deliciousDishes .container .parg {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}
.works .properties {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.works .properties .prop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 100px 30px 25px;
}
.works .properties .prop .small-img {
    width: 88px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 30px 15px;
}
.works .properties .order .small-img {
    background-color: #335DFF;
}
.works .properties .delivery .small-img{
    background-color: #F6CA00;
}
.works .properties .payment .small-img{
    background-color: #0BD28E;
}
.works .properties .order,
.works .properties .payment,
.works .properties .delivery {
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
}
.works .properties .order::after {
    content: url(../dashed2.png);
    position: absolute;
    top: 30%;
    left: 72%;
    width: 50px;
    height: 50px;
}
.works .properties .delivery {
    top: 50px;
}
.works .properties .delivery::after {
    content: url(../dashed2.png);
    transform: scaleY(-1);
    position: absolute;
    top: 10%;
    left: 73%;
    width: 50px;
    height: 50px;
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
}
@media (max-width: 990px) {
    .works .properties .delivery {
        position: unset !important;
    }
    .works .properties .order::after,
    .works .properties .delivery::after {
        display: none !important;
    }
}
.works .properties .prop h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin: 10px auto;
}
.works .properties .prop p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}
@keyframes animate-properties {
    to {
        opacity: 1;
    }
}
.animate {
    opacity: 1;
    animation: animate-properties 0.5s forwards ease-in-out;
    -webkit-animation: animate-properties 0.5s forwards ease-in-out;
}

/* Our Delicious Dishes */

.deliciousDishes .dishes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    margin: 50px 0;
}
.deliciousDishes .dishes .dish {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #70707033;
    margin: 10px 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.deliciousDishes .dishes .dish:hover {
    border-color: #F9A755;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    box-shadow: -10px 20px 15px #ebe3e3;
}
.deliciousDishes .dishes .dish img:first-of-type {
    align-self: center;
}
.deliciousDishes .dishes .dish .rating {
    padding: 5px;
}
.deliciousDishes .dishes .dish .rating i {
    color: #F9A755;
    font-size: 15px;
    cursor: pointer;
}
.deliciousDishes .dishes .dish h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22.36px;
    padding: 5px;
}
.deliciousDishes .dishes .dish p {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}
.deliciousDishes .dishes .dish .buy-dish {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.deliciousDishes .dish .buy-dish .price {
    font-size: 16px;
    font-weight: 600;
    line-height: 20.97px;
}
.deliciousDishes .buy-dish .buy img {
    cursor: pointer;
}
.deliciousDishes .buy-dish .buy img:hover,
.discount-app .description .down-links img:active,
.footer .section1 .description .social-links i:hover {
    transform: scale(0.96);
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -o-transform: scale(0.96);
}
.deliciousDishes .pages {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
}
.deliciousDishes .pages i,
.deliciousDishes .pages .numbers span {
    color: #FEB918;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #EAECED;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 15px;
    cursor: pointer;
}
.deliciousDishes .pages i:hover,
.deliciousDishes .pages .numbers span:hover {
    transform: scale(0.96);
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -o-transform: scale(0.96);
    transition: transform 1s;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
}
.deliciousDishes .pages .numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
}
.deliciousDishes .pages .numbers span {
    color: #667085;
}
.deliciousDishes .pages .numbers .active2,
.deliciousDishes .pages .numbers span:hover {
    background-color: #FEB918;
    color: white;
}
@media (max-width: 549px) {
    .deliciousDishes .numbers .hide {
        display: none !important;
    }
}

/* Our Target */
.ourTarget {
    background-color: var(--secondColor);
    position: relative;
    overflow: hidden;
}
.ourTarget::after {
    position: absolute;
    content: '';
    width: 1000px;
    height: 1000px;
    top: -130px;
    left: -455px;
    display: block;
    border-radius: 50%;
    border: 1px solid #EF9737;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
@media (max-width: 1229px) {
    .ourTarget::after {
        display: none !important;
    }
}
.ourTarget .description .descrip {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}
.ourTarget .description .order-now {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    margin: 40px 0;
}
.ourTarget .image {
    max-width: 30%;
    margin-right: 200px;
    position: relative;
}
@media (max-width: 991px) {
    .ourTarget .image {
        display: none !important;
    }
}
.ourTarget .image .deliver {
    position: relative;
    top: 50%;
    left: -90%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: left 1s ease-in-out;
    -webkit-transition: left 1s ease-in-out;
    -moz-transition: left 1s ease-in-out;
    -ms-transition: left 1s ease-in-out;
    -o-transition: left 1s ease-in-out;
}
@keyframes fast-Delivery {
    to {
        left: 50%;
    }
}
.speed {
    animation: fast-Delivery 1s linear forwards,hide-and-seek 2s 1s ease-in-out infinite;
    -webkit-animation: fast-Delivery 1s linear forwards,hide-and-seek 2s 1s ease-in-out infinite;
}
@keyframes hide-and-seek {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Our Discount */
.discount-app {
    position: relative;
    overflow: hidden;
}
.discount-app .container {
    overflow: hidden;
}
.discount-app .description {
    align-self: center;
    opacity: 0;
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    margin: 30px 0;
    overflow: hidden;
}
.discount-app .description .text {
    font-size: 36px;
    line-height: 47.88px;
}
.discount-app .description .down-links {
    margin: 30px 0;
}
.discount-app .description .down-links img{
    margin-right: 20px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
.discount-app .phone-app {
    width: 50%;
    height: 90vh;
    position: relative;
    margin-left: 100px;
    overflow: hidden;
}
@media (max-width: 1199px){
    .discount-app .phone-app {
        margin-left: 20px;
}

}
.discount-app .phone-app .phone {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FEB918;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
@media (max-width: 990px) {
    .discount-app .phone-app .phone {
        background-color: unset;
    }
    .discount-app .phone-app .phone img:nth-child(2),
    .discount-app .phone-app .phone img:nth-child(3),
    .discount-app .phone-app .phone img:nth-child(4),
    .discount-app .phone-app .phone img:nth-child(5) {
        display: none;
    }
}
@media (max-width: 735px){
    .discount-app .phone-app {
        display: none !important;
    }
    .discount-app .description {
        text-align: center;
    }
    .discount-app .description .down-links
    {
        justify-content: center;
    }
}
.discount-app .phone-app .phone::after {
    content: '';
    width: 92%;
    height: 92%;
    border: 1px solid white;
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.discount-app .phone-app .phone .phn {
    position: absolute;
    top: 53%;
    left: -145%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    width: 321px;
    height: 526px;
    z-index: 100;
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}
.discount-app .phone-app .phone img:nth-child(2) {
    position: absolute;
    top: 110px;
    right: 90px;
    animation: hide-and-seek 0.5s ease-in-out infinite;
    -webkit-animation: hide-and-seek 0.5s ease-in-out infinite;
}
.discount-app .phone-app .phone img:nth-child(3) {
    position: absolute;
    top: 380px;
    left: 90px;
    animation: hide-and-seek 1s 0.5s ease-in-out infinite;
    -webkit-animation: hide-and-seek 1s 0.5s ease-in-out infinite;
}
.discount-app .phone-app .phone img:nth-child(4) {
    position: absolute;
    top: 195px;
    left: 65px;
    animation: hide-and-seek 0.5s ease-in-out infinite;
    -webkit-animation: hide-and-seek 0.5s ease-in-out infinite;
}
.discount-app .phone-app .phone img:nth-child(5) {
    position: absolute;
    top: 315px;
    right: 65px;
    animation: hide-and-seek 1s 0.5s ease-in-out infinite;
    -webkit-animation: hide-and-seek 1s 0.5s ease-in-out infinite;
}
@keyframes to-right {
    to {
        left: 45%;
    }
}
.to-right {
    animation: to-right 0.7s ease-in-out forwards;
    -webkit-animation: to-right 0.7s ease-in-out forwards;
}
@keyframes opacity {
    to {
        opacity: 1;
    }
}
.opacity {
    animation: opacity 0.7s 0.2s ease-in-out forwards;
    -webkit-animation: opacity 0.7s 0.2s ease-in-out forwards;
}

/* Footer */

.footer {
    margin-top: 150px;
    background-color: #232233;
    position: relative;
}
.footer .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .container .section1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 150px 0 30px;
}
.footer .section1 .description {
    margin: 20px;
}
.footer .section1 .text,
.footer .section1 .quick-links .text,
.footer .section1 .letter .text {
    color: white;
    font-weight: 700;
    font-size: 25px;
    line-height: 30.26px;
    margin: 15px 0;
}
.footer .section1 .text span {
    color: var(--mainColor);
}
.footer .section1 .description .descrip,
.footer .section1 .letter .descrip{
    color: white;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
}
.footer .section1 .description .social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    margin-top: 15px;
}
.footer .section1 .description .social-links i {
    padding-right: 20px;
    color: white;
    font-size: 24px;
    border-right: 1px solid white;
    cursor: pointer;
}
.footer .section1 .description .social-links i:not(:first-child) {
    padding-left: 20px;
}
.footer .section1 .description .social-links i:last-child{
    border: none;
}
.footer .section1 .description .social-links .active,
.footer .section1 .description .social-links i:hover,
.footer .quick-links .links .item a:hover {
    color: var(--mainColor);
}
.footer .section1 .quick-links {
    margin: 20px;
}
.footer .section1 .quick-links .text,
.footer .section1 .letter .text {
    text-transform: uppercase;
}
.footer .section1 .quick-links .links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
}
.footer .quick-links .links .item {
    margin: 7px 0;
}
.footer .quick-links .links .item a {
    color: white;
    text-decoration: none;
    padding: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.footer .section1 .letter {
    margin: 20px;
}
.footer .section1 .letter .send-email {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 2px;
    width: fit-content;
    margin-top: 15px;
}
.footer .letter .send-email .email {
    background: none;
    border: none;
    outline: none;
    padding: 5px 10px 5px 5px;
}
.footer .letter .send-email button {
    padding: 5px 8px;
    background-color: #FEB918;
    cursor: pointer;
    border: none;
} 
.footer .section2 {
    margin: 10px auto;
}
.footer .section2 p {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

/* Contact Us */
.footer .contact-us {
    width: calc(100% - 30vw);
    background-color: white;
    display: block;
    position: absolute;
    top: -8vh;
    left: 14vw;
    border-radius: 15px;
    box-shadow: 0px -16px 20px #c1c1c18f;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.footer .contact-us .email,
.footer .contact-us .tel {
    padding: 30px;
    font-weight: 600;
    font-size: 28px;
    line-height: 37.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.footer .contact-us i {
    color: white;
    padding: 1vw;
    background-color: #FEB918;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 10px;
}
@media (max-width: 1290px) {
    .footer .contact-us .email,
.footer .contact-us .tel {
    font-size: 22px;
    padding: 15px;
}
}
@media (max-width: 1011px) {
    .footer .contact-us .email,
.footer .contact-us .tel {
    font-size: 15px;
    padding: 7px;
}
}
@media (max-width: 734px){
    .footer .contact-us {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}