/***
====================================================================
  General
====================================================================
 ***/

@font-face {
    font-family: 'CoHeadlineRegular';
    font-style: normal;
    font-weight: normal;
    src: local('Co Headline Regular'), url('../fonts/CoHeadline.woff') format('woff');
}


@font-face {
    font-family: 'CoHeadlineLight';
    font-style: normal;
    font-weight: normal;
    src: local('Co Headline Light'), url('../fonts/CoHeadlineLight.woff') format('woff');
}


@font-face {
    font-family: 'CoHeadlineBold';
    font-style: normal;
    font-weight: normal;
    src: local('Co Headline Bold'), url('../fonts/CoHeadlineBold.woff') format('woff');
}

@font-face {
    font-family: 'Hacen Tehran';
    src: url('../fonts/HacenTehran.woff2') format('woff2'),
    url('../fonts/HacenTehran.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary: #ab4a42;
    --primary_hover: #701f18;
    --dark: #131313;
}


*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

html {
    direction: rtl;
    overflow-x: hidden !important;

}

body {
    font-family: "CoHeadlineRegular", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background: #FBEED0;
    position: relative;
    overflow-x: hidden !important;

}

html {
    position: relative;
}

html:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    background: #D9D9D9 url(../images/bg.jpg);

    opacity: 0.651;
    mix-blend-mode: multiply;

}

h1, h2, h3, h4, h5, h6 {
    font-family: "CoHeadlineBold", sans-serif;
    font-weight: 400;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

a, button, .btn {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
    color: inherit;
}

a:hover, a:active, a:focus, a:visited {
    text-decoration: none !important;
}

input, textarea, a, button {
    outline: none !important;
    text-decoration: none;
}


/* img hover */
.img-hover {
    overflow: hidden;
    display: block;
}

.img-hover > img {
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

img {
    max-width: 100%;
}

/* end img hover */
.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    display: flex;
    align-items: center;
    color: #FBEED0 !important;
    font-size: 53.34px;
    font-family: "CoHeadlineBold", sans-serif;
    border-radius: 0;
    line-height: 64px;
    padding-bottom: 25px;
}

.btn-primary:hover {
    background: var(--primary_hover);
    border-color: var(--primary_hover);

}


/***
====================================================================
  Loading Transition
====================================================================
 ***/
/* Preloader */
.ctn-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999999;
    background: #fff;
}

.txt-loading {
    direction: ltr;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 1px solid rgba(30, 181, 188, 0.15);
    border-top-color: #4168B1;
    height: 100px;
    margin: 0 auto 0 auto;
    width: 100px;
}

/* Texto cargando */

.ctn-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    color: #2196C6;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    line-height: 50px;
    position: absolute;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: 700;
    letter-spacing: 10px;
    display: inline-block;
    color: rgba(12, 58, 86, 0.15);
    position: relative;
    font-size: 50px;
    line-height: 50px;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 1.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    animation-delay: 1.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
    animation-delay: 2s;
}

.ctn-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

/* AnimaciĂłn del preloader */

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 80px;
        width: 80px;
    }

}

@media screen and (max-width: 500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 80px;
        width: 80px;
    }

    .ctn-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 5px;
    }
}


/*
====================================================================
Header section
====================================================================
*/
.container {
    max-width: 1200px;
}

.hero-section,
.menu-section,
.branch-section,
.delevery-section,
.ribbon-section,
footer {
    overflow: hidden;
}

.header {
    background: transparent;
    z-index: 10;
    transition: all 0.3s ease;
    padding-top: 40px;
}


.header.fixed {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.site-logo a {
    display: flex;
}

.site-logo img {
    width: 197px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.header-social a {
    width: 41px;
    height: 41px;
    background-color: #FBEED0;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}


.header-social a:hover {
    background-color: var(--primary);
    color: #FBEED0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(172, 75, 66, 0.35);
}

.header-corner-bg {
    width: 1005px;
    height: 1005px;
    position: absolute;
    top: -178px;
    left: -367px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-image {
    display: flex;
    justify-content: flex-end
}

.hero-image img {
    max-width: 570px;
}

@media screen and (max-width: 1200px) {
    .header-corner-bg {
        width: 860px;
        height: 860px;
        top: -190px;
        left: -320px;
    }
}

.hero-txt h1 {
    font-size: 86.88px;
    color: var(--primary);
}

.hero-txt p {
    font-size: 34.92px;
    color: #474747;
    font-family: 'CoHeadlineLight', sans-serif;
    font-weight: 300;
    text-align: justify;
    line-height: 150%;
    margin-top: 30px;
    margin-bottom: 0;
}

.ribbon-section {
    padding-bottom: 50px;
}

.ribbon {
    background: var(--primary);
    color: #f3e9d8;
    padding: 20px 20px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.41);
    min-width: 590px;
    text-align: center;
    font-family: 'Hacen Tehran', sans-serif;
    font-size: 70.35px;
    line-height: 80px;
}

.ribbon.bottom {
    transform: rotate(-3deg);
}

.sp {
    display: flex;
    width: 100%;
    height: 35px;
    background: url(../images/sp.svg) center center no-repeat;
    margin: 65px auto;
}

.menu-section {
    position: relative;
    padding: 70px 0 0 0;
    background: url(../images/lines.svg) left bottom no-repeat;
}

.menu-section:after {
    position: absolute;
    content: '';
    right: 70px;
    top: 80px;
    width: 40px;
    height: 150px;
    background: url(../images/xx.svg) no-repeat top;
}

.meal-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meal-item .img {
    width: 310px;
    padding-top: 65px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: auto;
    position: relative;
}

.meal-item .img:after {
    width: 233px;
    height: 233px;
    border-radius: 50%;
    background: var(--primary);
    top: 0;
    right: auto;
    left: auto;
    margin: auto;
    content: '';
    position: absolute;
    z-index: 1;
}

.meal-item .img img {
    position: relative;
    z-index: 2;
    margin: auto;
}

.meal-item h3 {
    font-size: 49.8px;
    font-family: "CoHeadlineBold", sans-serif;
    text-align: center;
    color: var(--primary);
}

.meal-item p {
    font-size: 32.34px;
    font-family: "CoHeadlineLight", sans-serif;
    text-align: justify;
    color: #474747;
    max-width: 310px;
    margin: auto
}

.plus1 {
    position: absolute;
    top: 5px;
    left: 40px;
    background: #83A739;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 3;
    font-weight: 700;
    font-family: 'CoHeadlineBold', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.plus1:hover {
    background: #6c8f2f;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(131, 167, 57, 0.35);
}

.plus1 span {
    position: absolute;
    top: 5px;
    left: auto;
    width: 40px;
    height: 40px;
    line-height: 32px;
    margin: auto;
    right: auto;
    bottom: auto;
    display: flex;
    align-content: center;
    justify-content: center;
}

.branch-section {
    padding-bottom: 30px;
}

.menu-action {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.menu-action a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-action a span{
    margin-top: -5px;
}

.folow-us {
    padding: 60px 0 30px 0;
}

.folow-us h2 {
    font-size: 58.87px;
    color: var(--primary);
    text-align: center;
}

.folow-us-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 800px;
    margin: 40px auto auto auto;
}

.folow-us-links a {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBEED0;
    font-size: 60px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.folow-us-links a:hover {
    background: var(--primary_hover);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 16px 24px rgba(112, 31, 24, 0.35);
}


.section-title {
    font-size: 58.87px;
    color: var(--primary);
    text-align: center;
}

.branch-item {
    text-align: center;
    transition: transform 0.25s ease;
}

.branch-item h3 {
    color: var(--primary);
    font-size: 36.81px;
    margin-top: 20px;
}

.branch-item h4 {
    color: #474747;
    font-size: 36.81px;
    font-family: "CoHeadlineLight", sans-serif;
    font-weight: normal;

}

.branch-item .img {
    display: flex;
    justify-content: center;
}

.branch-item img {
    width: 157px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.branch-items {
    margin-top: 65px;
}

.branch-item:hover {
    transform: translateY(-6px);
}

.branch-item:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 18px rgba(172, 75, 66, 0.25));
}

.branch-item:hover h3 {
    color: var(--primary_hover);
}

.delevery-item {
    margin-top: 65px;
}

.delevery-item {
    display: flex;
    justify-content: center;
}

.delevery-item img {
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.delevery-item:hover img {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 24px rgba(112, 31, 24, 0.25);
}

.delevery-section {
    position: relative;
    background: url(../images/line2.svg) right center no-repeat;
}

.delevery-section:after {
    position: absolute;
    content: '';
    left: 70px;
    top: 80px;
    width: 40px;
    height: 150px;
    background: url(../images/xx.svg) no-repeat top;
}

footer {
    mix-blend-mode: multiply;
    padding-top: 100px;

}

footer img {
    width: 100%;
    object-fit: cover;
}

.delevery-items {
    padding-bottom: 30px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.header-left h2 {
    font-size:20px;
    color: #FBEED0;
    font-family: "CoHeadlineLight", sans-serif;
    font-weight: 400;
}

@media screen and (max-width: 1366px) {

}

@media screen and (max-width: 991px) {
    .header-corner-bg {
        width: 620px;
        height: 620px;
        top: -140px;
        left: -260px;
    }

    .site-logo img {
        width: 150px;
    }

    .header-social a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .hero-txt h1 {
        font-size: 56px;
    }

    .hero-txt p {
        font-size: 24px;
    }

    .ribbon {
        min-width: 100%;
        font-size: 44px;
        line-height: 54px;
        padding: 16px 20px;
    }

    .meal-item .img {
        width: 240px;
    }

    .meal-item h3 {
        font-size: 36px;
    }

    .meal-item p {
        font-size: 22px;
    }

    .btn-primary {
        font-size: 34px;
        line-height: 44px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .header {
        padding-top: 20px;
    }

    .content-header {
        flex-direction: row;
        gap: 0;
    }

    .header-corner-bg {
        width: 580px;
        height: 580px;
        top: -200px;
        left: -260px;
    }

    .hero-section {
        padding-top: 20px;
    }

    .hero-txt h1 {
        font-size: 46px;
        text-align: right;
    }

    .hero-txt p {
        font-size: 20px;
        text-align: justify;
        margin-top: 30px;
    }

    .hero-image {
        margin-top: 0;
        text-align: initial;
        position: static;
    }

    .hero-image:after {
        display: none;
    }

    .hero-image img {
        max-width: 100%;
        margin: 0;
    }

    .sp {
        margin: 65px auto;
    }

    .ribbon {
        font-size: 34px;
        line-height: 42px;
        padding: 14px 24px;
    }

    .menu-section {
        padding-top: 60px;
    }

    .menu-section .row {
        row-gap: 0;
    }

    .meal-item .img {
        width: 200px;
        padding-top: 40px;
    }

    .meal-item .img:after {
        width: 155px;
        height: 130px;
    }

    .plus1 {
        width: 46px;
        height: 46px;
        font-size: 36px;
        left: 20px;
        top: 0;
    }

    .plus1 span {
        width: 30px;
        height: 30px;
        line-height: 24px;
    }

    .meal-item h3 {
        font-size: 30px;
    }

    .meal-item p {
        font-size: 18px;
    }

    .menu-action {
        margin-top: 60px;
    }

    .btn-primary {
        font-size: 24px;
        line-height: 34px;
        padding: 12px 20px;
    }

    .folow-us h2,
    .section-title {
        font-size: 36px;
    }

    .folow-us-links {
        flex-wrap: nowrap;
        gap: 0;
    }

    .folow-us-links a {
        width: 72px;
        height: 72px;
        font-size: 38px;
    }

    .branch-items {
        margin-top: 65px;
        flex-wrap: nowrap;
    }

    .branch-items > div {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .branch-item img {
        width: 110px;
    }

    .branch-item h3,
    .branch-item h4 {
        font-size: 18px;
    }

    .delevery-item {
        margin-top: 65px;
    }

    .delevery-items {
        flex-wrap: nowrap;
    }

    .delevery-items > div {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .delevery-item img {
        max-width: 110px;
        width: 100%;
    }

    .delevery-section:after {
        left: 5px;
        width: 30px;
        background-size: contain;
    }


    footer {
        padding-top: 100px;
    }

    .ribbon-section {
        padding-bottom: 50px;
    }

    .header-corner-bg {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    .site-logo img {
        width: 110px;
    }

    .hero-txt h1 {
        font-size: 38px;
    }

    .hero-txt p {
        font-size: 18px;
    }

    .ribbon {
        font-size: 28px;
        line-height: 36px;
    }

    .meal-item h3 {
        font-size: 26px;
        max-width: 120px;
        margin-top: 15px;

    }

    .meal-item p {

        font-size: 13px;
        text-align: center;
        max-width: 125px;
    }

    .btn-primary {
        font-size: 20px;
        line-height: 28px;
    }

    .menu-section:after {
        right: 20px;
        top: 0;
        width: 15px;
        background-size: contain;
    }

    .delevery-section:after {
        left: 20px;
        top: 50px;
        width: 15px;
        background-size: contain;
    }

    .menu-section {
        padding-top: 0;
    }

    footer img {
        min-height: auto;
    }

    .header-left h2 {
        font-size: 14px;
        color: #FBEED0;
        font-weight: 400;

    }

    .sp {
        -webkit-background-size: contain;
        background-size: contain;
    }

    /*}*/
    /*@media screen and (max-width: 480px) {*/
    /*    .header-corner-bg {*/
    /*        width: 500px;*/
    /*        height: 500px;*/
    /*        top: -180px;*/
    /*        left: -250px;*/
    /*    }*/
    .site-logo img {
        width: 70px;
    }

    /*}*/
    /*@media screen and (max-width: 375px) {*/
    /*    .header-corner-bg {*/
    /*        width: 400px;*/
    /*        height: 400px;*/
    /*        top: -128px;*/
    /*        left: -206px;*/
    /*    }*/
    .header {
        padding-top: 16px;
    }

    .content-header {
        align-items: flex-start;
    }

    .header-left {
        align-items: flex-start;
        gap: 4px;
    }



    .header-social a {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .hero-section .row {
        align-items: flex-start;
    }

    .hero-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-image {
        text-align: left;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-txt {
        padding-top: 6px;
    }


    .ribbon {
        font-size: 23px;
        line-height: 26px;
        padding: 10px 10px;
    }

    .sp {
        margin: 15px auto;
        height: 25px;
    }

    .menu-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }

    .meal-item .img {
        width: 120px;
        padding-top: 20px;
    }

    .meal-item .img:after {
        width: 95px;
        height: 80px;
    }

    .plus1 {
        width: 28px;
        height: 28px;
        font-size: 20px;
        left: 8px;
        top: 0;
    }

    .plus1 span {
        width: 18px;
        height: 18px;
        line-height: 14px;
    }

    .meal-item h3 {
        font-size: 18px;
    }



    .menu-section {
        padding-top: 0;
        background-size: 75px;
        background-position: left center;
    }

    .btn-primary {
        font-size: 16px;
        line-height: 22px;
        padding: 10px 10px 10px 10px;
    }

    .menu-action {
        margin-top: 20px;
    }

    .folow-us {
        padding: 30px 0 0 0;
    }

    .folow-us-links {
        margin-top: 30px;
    }

    .branch-section {
        padding-bottom: 0;
    }

    .branch-items {
        margin-top: 30px;
        flex-wrap: nowrap;
    }

    .folow-us h2,
    .section-title {
        font-size: 20px;
    }

    .folow-us-links a {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .branch-item img {
        width: 70px;
    }

    .branch-item h3,
    .branch-item h4 {
        font-size: 10px;
    }

    .delevery-item img {
        max-width: 100px;
        border-radius: 10px;
    }

    footer {
        padding-top: 60px;
    }

    .delevery-item {
        margin-top: 30px;
    }

    .delevery-section {
        -webkit-background-size: 80px;
        background-size: 80px;
    }

    .header-corner-bg {
        width: 520px;
        height: 520px;
        top: -180px;
        left: -240px;
    }
}


@media screen and (max-width: 550px) {
    .hero-image img {
        max-width: 220px;
    }
}

@media screen and (max-width: 480px) {
    .header-corner-bg {
        width: 400px;
        height: 400px;
        top: -128px;
        left: -206px;
    }


    .hero-txt h1 {
        font-size: 22px;
    }

    .hero-txt p {
        font-size: 12px;
        line-height: 150%;
        margin-top: 8px;
    }

    .hero-image img {
        max-width: 100%;
    }
}