* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/*  fonts  */

@font-face {
    font-family: "raleway-regular";
    src: url(../fonts/Raleway-Regular.ttf);
}

@font-face {
    font-family: "raleway-extrabold";
    src: url(../fonts/Raleway-ExtraBold.ttf);
}

@font-face {
    font-family: "raleway-medium";
    src: url(../fonts/Raleway-Medium.ttf);
}

@font-face {
    font-family: "raleway-bold";
    src: url(../fonts/Raleway-Bold.ttf);
}

@font-face {
    font-family: "raleway-semibold";
    src: url(../fonts/Raleway-SemiBold.ttf);
}

@font-face {
    font-family: "raleway-black";
    src: url(../fonts/Raleway-Black.ttf);
}

/* colors */

:root {
    --primary: #eebf00;
    --secondary: #232b38;
    --ternary: #6c6c6c;
    --danger: #fe4545;
    --pure: #fefefe;
    --light: #f0f0f0;
    --heaven: #ffffff;
    --footer: #2d333f;
}

body {
    --webkit-font-smoothing: alialiased;
    height: 4000px;
    font-family: 'Raleway-regular';
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 920px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1152px;
    }
}

header.topbar {
    background: var(--secondary);
    color: var(--pure);
    font-family: 'Raleway-semibold';
    padding: 0.75rem 0;
}

header.topbar .icons a {
    margin-right: 0.6rem;
}

header.topbar .auth>div a {
    color: var(--pure);
    text-decoration: none;

}

/* header.topbar .auth>div img{
    cursor: pointer;
} */

header.topbar .auth .divider {
    padding: 0 1rem;
}

header.topbar .auth>div img {
    margin: 0 0.35rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

nav .top {
    margin-top: 1rem;
}

nav .top .contact h5 {
    cursor: pointer;
}

nav .top .contact h6 {
    cursor: pointer;
}

nav .top .contact h5,
nav .top .time h5 {
    font-family: 'Raleway-black';
    margin-bottom: 0.25rem;
}

nav .top .contact h6,
nav .top .time h6 {
    font-family: 'Raleway-medium';
    letter-spacing: 0.02rem;
    font-size: 0.75rem;
    color: var(--ternary);
}

nav .top .contact img,
nav .top .time img {
    margin-right: 0.75rem;
}

.justify-center {
    justify-content: center;
}

nav .navbar a {
    text-decoration: none;
    font-family: 'Raleway-semibold';
    color: var(--secondary);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

nav .navbar a.active {
    background: var(--primary);
    color: var(--pure);
}

nav .navbar a:hover {
    background: var(--primary);
    color: var(--pure);
}

.magic-shadow {
    position: relative;
    background: var(--heaven);
}

.magic-shadow::after {
    content: '';
    display: block;
    width: 100%;
    height: 69px;
    background-image: url(../icons/shadow.svg);
    bottom: -22px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
}

.magic-shadow-sm {
    position: relative;
    background: var(--heaven);
}

.magic-shadow-sm::after {
    content: '';
    display: block;
    width: 100%;
    height: 69px;
    background-image: url(../icons/shadow-sm.svg);
    bottom: -20px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
}

header.hero {
    height: 600px;
    background-image: url(../images/hero.png);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    overflow: hidden;
}

header.hero .container {
    position: relative;
}

header.hero .welcome span {
    font-family: 'Raleway-bold';
    color: var(--primary);
    margin: 1rem;
    font-size: 1.5rem;
}

header.hero h1 {
    font-family: 'Raleway-extrabold';
    color: var(--secondary);
    font-size: 2rem;
    margin: 0.5rem 0;
}

header.hero h1 span {
    color: var(--primary);
}

header.hero p {
    font-size: 1rem;
    width: 50%;
    line-height: 1rem;
    font-family: 'Raleway-semibold';
}

.btn {
    font-size: 1.2rem;
    padding: 0.75rem 0.45rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    line-height: 0.8;
    transition: all 0.5s ease-in-out;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--pure);
}

.btn-primary:hover {
    background: var(--pure);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--pure);
}

.btn-secondary:hover {
    background-color: var(--pure);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}


header.hero button:first-child {
    margin-top: 0.5rem;
}

header.hero .hero-image {
    position: absolute;
    top: -11px;
    right: 40px;
}

section {
    padding: 4rem 0;
}

section.top-products {
    background: var(--light);
}

.section-heading {
    font-family: 'Raleway-bold';
    text-align: center;
    position: relative;
    margin-bottom: 6rem;
}

.section-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 30px;
    background: url(../icons/hr.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -40px;
}

section.top-products .food-slider .food-card {
    background: var(--heaven);
    padding: 1.5rem 0;
    border-radius: 4px;

}

section.top-products .food-slider .food-card .product-image img {
    object-fit: contain;
    width: 80%;
    height: 200px;
    padding: 1rem 0;
}

hr {
    border: 1px solid var(--light);
    opacity: 0.8;
    margin: 1rem 0;
}

section.top-products .food-slider .food-card h2 {
    font-family: 'Raleway-bold';
    font-size: 1.3rem;
    margin-bottom: 0.30rem;
}

.text-center {
    text-align: center;
}

section.top-products .food-slider .food-card .stars img {
    margin: 0.25rem;
}

section.top-products .food-slider .food-card .price {
    font-family: 'Raleway-medium';
    color: var(--danger);
    margin: 0.6rem;
}

section.top-products .food-slider .food-card button {
    font-family: 'Raleway-medium';
    color: var(--secondary);
    background-color: var(--heaven);
    border: 2px solid var(--primary);
    border-radius: 4px;
    width: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
}

section.top-products .food-slider .food-card button:hover {
    background-color: var(--primary);
    color: var(--pure);
}

.food-slider .food-card button img {
    background-color: var(--primary);
    padding: 0.5rem;
    height: 35px;
    margin-right: 1rem;
}

.slick-slide {
    margin: 0 27px;
}

.slick-list {
    margin: 0 -27px;
}

.top-products .slider-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.top-products .slider {
    position: relative;
}

.prev-btn {
    position: absolute;
    top: 46%;
    z-index: 1;
    left: -3rem;
}

.next-btn {
    position: absolute;
    top: 46%;
    z-index: 1;
    right: -3rem;
}

.top-products .btn-wrapper {
    margin-top: 2rem;
}

.slick-track {
    padding: 1rem 0;
}

section.about-meal img {
    width: 85%;
}

.flex-1 {
    flex: 1;
}

section.about-meal h2 {
    font-family: 'Raleway-bold';
    font-size: 1.3rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 2rem;
}

section.about-meal p {
    font-family: 'Raleway-regular';
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 4rem;
}

section.our-services {
    background: var(--light);
}

section.our-services .card-wrapper .services-card {
    background: var(--heaven);
    padding: 2rem;
    margin-right: 1rem;
    position: relative;
}

section.our-services .card-wrapper .services-card img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

section.our-services .services-card h2 {
    font-family: 'Raleway-bold';
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

section.our-services .services-card p {
    font-family: 'Raleway-regular';
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.text-primary {
    color: var(--primary);
}

.text-pure {
    color: var(--pure);
}

section.big-deal {
    background: linear-gradient(rgba(35, 43, 56, 0.9),
            rgba(35, 43, 56, 0.9)), url(../images/food-table.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

section.big-deal .timer {
    display: flex;
    margin-right: -1rem;
}

section.big-deal .timer div {
    font-family: 'Raleway-bold';
    margin-right: 1rem;
    background: var(--primary);

    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

section.big-deal .timer div span:first-child {
    font-size: 2rem;
    font-family: 'Raleway-bold';
    margin-bottom: 0.05rem;
    color: var(--heaven);
}

section.big-deal .timer div span:last-child {
    font-size: 1rem;
    font-family: 'Raleway-semibold';
    color: var(--light);
}

section.lastest-news {
    background: var(--pure);
    position: relative;
    z-index: 0;
}

section.lastest-news {
    background: var(--light);
}

.lastest-news .article-wrapper {
    display: flex;
    margin-right: -2rem;
}

.lastest-news .article-wrapper .card {
    margin-right: 2rem;
    background: var(--heaven);
    border-radius: 4px;
}

.lastest-news .article-wrapper .card img {
    width: 100%;
}

.lastest-news .article-wrapper .card .card-content {
    padding: 2rem;
}

.lastest-news .article-wrapper .card .card-content .post-meta .comments-count {
    margin-left: 1rem;
}

.lastest-news .article-wrapper .card .card-content p {
    line-height: 1.6;
}

.lastest-news .article-wrapper .card .card-content h2 {
    font-family: 'Raleway-bold';
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.lastest-news .btn-wrapper {
    margin-top: 2rem;
}

section.subscribe {
    background: var(--primary);
    position: relative;
    z-index: 0;
}

section.subscibe .container>div:first-child img {
    width: 80%;
}

section.subscibe .container>div:first-child {
    flex: 1;
}

section.subscibe .container>div:last-child {
    flex: 1;
}

section.subscribe h1 {
    font-family: 'Raleway-bold';
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

section.subscribe p {
    font-family: 'Raleway-medium';
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

section.subscribe .input-wrap {
    background: var(--pure);
    border-radius: 4px;
    padding: .5rem;
    display: flex;
}

section.subscribe input {
    width: 100%;
    font-family: 'Ralway-medium';
    border: none;
    outline: none;
    font-size: 1.5rem;
}

section.contact-us {
    padding-top: 0%;
    padding-bottom: 0%;
}

section.contact-us .contact-info-wrapper {
    padding: 4rem 0;
    flex: 1;
}

section.contact-us .map {
    flex: 1;
}

section.contact-us .contact-info {
    display: flex;
    justify-content: center;
}

section.contact-us .contact-info>div>div {
    display: flex;
    align-items: center;
    margin: 2rem 2rem;
}

section.contact-us .contact-info>div>div img {
    margin-right: 1rem;
}

section.contact-us .contact-info>div>div>div {
    display: flex;
    flex-direction: column;
}

section.contact-us .contact-info>div>div>div span:first-child {
    font-family: 'Raleway-bold';
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

footer {
    background: var(--footer);
    padding: 4rem 0;
}

footer .container {
    display: flex;
    color: var(--pure);
}

footer .box {
    flex: 1;
    margin-right: 2rem;
    text-align: center;
}

footer .box ul {
    list-style: none;
    margin-top: 1rem;
}

footer .box ul li {
    margin: 0.5rem 0;
}

footer .box ul li a {
    text-decoration: none;
    color: var(--pure);
}

footer .box ul li a:hover {
    color: var(--primary);
    transition: all 0.3s ease-in;
}

footer .box h3 {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary);
}

footer .box p {
    line-height: 1.6;
    padding: 1rem 0;
}

footer .box:nth-child(3)>div {
    display: flex;
    justify-content: center;
}

footer .box:nth-child(3) {
    text-align: left;
}