/* FONT */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* BASE CSS */

:root {
    /* COLORS */
    --logo--color: #D92D17;
    --button--color: #62FF02;
    --services--color: #D20505;
    --headline--color: #000000;
    --card--color: #D9D9D9;
    --white--color: #FFFFFF;
    --nav--hover--color: bisque;
    --button--hover--color: #5bb829;
    --gallery--button--hover: #555;
    /* FONT */
    --h1--size: 3rem;
    --h2--size: 1.25rem;
    --h3--size: 1rem;
    --normal--font--size: 0.9rem;
    --small--font--size: 0.8rem;
    --smaller--font--size: 0.75rem;
    /* FONT WEIGHT */
    --font--regular: 400;
    --font--medium: 500;
    --font--semibold: 700;
    /* TOOLTIP */
    --z--tooltip: 10;
    --z--fixed: 100;
}

/* BASE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

a{
    text-decoration: none;
}

.container{
    margin-inline: 1.5rem;
}

.grid{
    display: grid;
    gap: 1.5rem;
}

.section{
    padding: 5rem 1rem;
}

.section-title{
    text-align: center;
    font-size: var(--h1--size);
    margin-bottom: 1.5rem;
}

.main{
    overflow: hidden;
}




.logo{
    font-size: 20px;
    padding: 0px;
    display: flex;
    height: 100%;
    align-items: center;
}

.logo-title {
    font-size: 20px;
    margin: 0;
    padding-left: 10px;
    font-weight: 700;
    color: var(--white--color);
}

.header {
    width: 100%;
    background-color: var(--logo--color);
    text-align: center;
    position: fixed;
    z-index: 999;
    height: 60px;
    align-items: center; 
    justify-content: center; 
    display: flex;
}

.nav-toggle{
    display: none;
}

.nav-toggle-label{
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 3em;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--white--color);
    height: 3px;
    width: 1.5em;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}


.nav-menu{
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: rgba(255, 25, 2, 0.85);
    width: 100%;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
}

.nav-menu .links{
    margin: 20px;
    padding: 20px;
    list-style: none;
}

.nav-menu li{
    text-align: center;
    margin-bottom: 1em;
    margin-left: 0em;
    font-weight: 700;
}

.nav-menu a{
    color: var(--white--color);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 50ms ease-in-out;
}

.nav-toggle:checked ~ .nav-menu{
    transform: scale(1, 1);
}

.nav-toggle:checked ~ .nav-menu a{
    opacity: 1;
    transition: opacity 50ms ease-in-out 50ms;
}

/* RESPONSIVE NAVIGATION */

@media screen and (max-width: 1023px) {
    .nav-menu{
        transition: none;
    }
}

@media screen and (min-width: 1024px) {
    .nav-toggle-label{
        display: none;
    }
    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px;
    }
    .logo{
        padding-left: 30px;
        font-size: 20px;
    }
    .nav-menu{
        all: unset;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-grow: 1;
    }
    .nav-menu .links{
        display: flex;
        list-style: none;
    }
    .nav-menu li{
        margin: 0 1rem;
        font-weight: 700;
    }
    .nav-menu a{
        opacity: 1;
        transition: none;
    }
}


/* SCROLL UP */
.scrollup {
    position: fixed;
    right: 2rem;
    bottom: 3rem;
    background-color: var(--white--color);
    padding: 6px;
    display: inline-flex;
    color: var(--logo--color);
    text-decoration: none;
    border-radius: 25px;
    border: solid 2px var(--logo--color);
    font-size: 2rem;
    transition: visibility 0.4s, opacity 0.4s, transform 0.4s;
    visibility: hidden; 
    opacity: 0; 
    align-items: center;
    justify-content: center;
}

.scrollup:hover {
    transform: translateY(-0.25rem);
}

.show-scroll {
    visibility: visible; 
    opacity: 1; 
}

/* HOME PAGE */

.home{
    position: relative;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.home-container{
    position: relative;
    padding-top: 3rem;
    row-gap: 3rem;
}

.home-content{
    text-align: center;
}

.home-content h3{
    padding-top: 15px;
    font-weight: var(--font--regular);
}

.home-content .map-icon{
    font-size: 28px;
    color: var(--services--color);
}

.home-content p{
    font-weight: var(--font--regular);
    font-size: 20px;
    padding-top: 40px;
}

.home-content .brand-images{
    width: 80%;
    padding-top: 20px;
}

.home-title {
    font-size: var(--h1--size);
    display: grid;
    position: relative;
}

.home-title span{
    color: var(--logo--color);
}

.description{
    font-size: 20px;
    text-align: center;
}

.contact-button{
    background-color: var(--button--color);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 40px;
    padding: 10px 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 60px;
    padding: 10px 20px;
    height: 60px;
    width: 283px;
    box-shadow: 0px 4px 4px 0px #00000040 inset;
}

.contact-button:hover {
    background-color: var(--button--hover--color);
}

.whatsapp-logo {
    margin-right: 10px;
    margin-top: 0px;
    padding-top: 0%;
}

.contact-button span{
    font-weight: 700;
    font-size: 26px;
    color: var(--headline--color);
}

/* REVIEW */

.review{
    position: relative;
    margin: 0;
}

.review-container{
    position: relative;
    row-gap: 3rem;
    margin: 0;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.review-title {
    font-size: var(--h1--size);
    padding-bottom: 40px; 
    text-align: center; 
    display: block; 
    position: relative;
}

.review-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}


  

.review-image{
    display: none;
}


.review-slider {
    width: 350px;
    height: 480px;
    position: relative;
    border: solid 2px var(--headline--color);
    border-radius: 20px 20px 20px 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    overflow: hidden; 
}

.review-image {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: opacity 1s ease-in-out;
}

.review-image img {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  

.previous, .forward {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 20px;
    color: black;
    transform: translateY(-50%);
    background-color: rgba(234, 240, 239, 0.8);
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    user-select: none;
}

.previous{
    left: 0;
}

.forward{
    right: 0px;
}
 
.previous:hover, .forward:hover {
    background-color: rgba(145, 141, 141, 0.8);
}
  

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
  
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}



/* ORDERING STEPS */

.ordering-section{
    position: relative;
    background-color: var(--services--color);
    margin: 0;
    padding: 0;
}

.ordering-container{
    position: relative;
    row-gap: 3rem;
    margin: 0;
}

.ordering-title {
    text-align: center;
    padding-top: 10%;
    padding-bottom: 10%;
    color: var(--white--color);
    font-size: var(--h1--size);
    text-shadow: 1px 3px 6px var(--headline--color);
}

.ordering-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.steps{
    width: 275px;
    height: 384px;
    border-radius: 15px 15px 15px 15px;
    background: var(--white--color);
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.steps img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.steps h3 {
    margin: 10px 0;
}

.steps p {
    margin: 0;
}

.steps:last-child {
    margin-bottom: 30px;
}

/* BESTSELLER SECTION */

.bestseller{
    position: relative;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.bestseller-title {
    font-size: var(--h1--size);
    margin: 0 auto 40px; 
    text-align: center; 
    display: block; 
    position: relative;
}

.bestseller-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}

.bestseller-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bestseller-products{
    display: grid;
    margin: 0 auto;
    width: fit-content;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(3, auto);
    transform: translate(10%, 0%);
    grid-gap: 20px; 
    justify-items: center; 
    padding-bottom: 20px;
}

.products{
    width: 150px;
    height: 150px;
    border-radius: 36px 36px 36px 36px;
    background: var(--card--color);
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    padding: 20px;
    text-align: center;
}

/* FAQ SECTION */
.faq{
    position: relative;
}

.faq-container{
    position: relative;
    padding-top: 1rem;
    row-gap: 3rem;
    margin: 0;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}


.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.faq-title {
    font-size: var(--h1--size);
    margin: 0 auto 40px; 
    text-align: center; 
    display: block; 
    position: relative;
}

.faq-card {
    background-color: var(--logo--color);
    color: var(--white--color);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040 inset;
}

.faq-question {
    padding: 3px;
    text-align: center;
    margin-right: 30px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--logo--color);
    color: var(--white--color);
    transition: max-height 0.3s ease;
    font-weight: 500;
    padding: 0;
    font-size: 0;
    margin-top: 0;
    border-bottom: 0;
}

.faq-answer a{
    color: var(--button--color);
}

.faq-answer .fb{
    color: lightskyblue;
}

.dropdown-icon{
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-card.open .dropdown-icon{
    transform: translateY(-50%) rotate(45deg);
}

.faq-card.open .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s ease;
    padding: 16px;
    font-size: 20px;
    margin-top: -15px;
    margin-bottom: 0px;
}

/* LOCATION SECTION */
.location{
    position: relative;
    padding: 40px 20px;
}

.location-container{
    position: relative;
    padding-top: 0rem;
    row-gap: 3rem;
    margin: 0;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.location-title {
    font-size: var(--h1--size);
    margin: 0 auto 40px; 
    text-align: center;
    display: block;
    position: relative;
}

.location-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px; 
    background-color: var(--white--color);
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    padding: 20px;
    width: 100%;
    max-width: 700px; 
    margin: 0 auto; 
}

.location-map {
    width: 100%;
    border-radius: 20px 20px 0 0; 
    overflow: hidden; 
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.location-address {
    width: 100%;
    padding: 0px;
    text-align: center;
}

.location-address p {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 300;
}

.location-address .bold {
    font-weight: 700;
    margin-bottom: 10px;
}

footer{
    background-color: var(--logo--color);
    padding: 10px 10px;
    position: relative;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.footer-logo {
    height: 69px; 
    margin-right: 10px; 
}

.footer-details p{
    color: var(--white--color);
    margin: 0;
    font-size: 14px; 
    line-height: 1.2;
}

/* CATALOGUE PAGE */

.catalogue{
    position: relative;
}

.catalogue-container{
    position: relative;
    padding-top: 3rem;
    row-gap: 3rem;
    margin: 0;
}

.catalogue-container .contact-button{
    margin-top: 20px;
}

.catalogue-content h3{
    font-weight: var(--font--regular);
    font-size: 25px;
    padding-top: 20px;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.catalogue-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalogue-title {
    font-size: var(--h1--size);
    margin: 0 auto 40px; 
    text-align: center;
    display: block;
    position: relative;
}





/*.catalogue-photos {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 30px;
    padding: 20px;
  } */
  
  .photo {
    background-color: var(--white--color);
    padding: 0px;
    border: solid 2px var(--headline--color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 80px;
    cursor: pointer;
  }

  .photo img{
    max-width: 100px; 
    max-height: 120px;
    height: auto;
    margin: 10px; 
    
  }






.catalogue-photos{
    display: grid;
    width: fit-content;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(3, auto);
    justify-items: center; 
    gap: 20px;
}

.catalogue-photos img{
    background: var(--white--color);
}

 /*.photo{
    border-radius: 20px;
    border: solid 2px black;
    width: 200px;
    height: 65px;
} */




/* ABOUT US PAGE */
.aboutus{
    position: relative;
    padding: 60px 20px;
}

.aboutus-container{
    position: relative;
    padding-top: 0rem;
    margin: 0px;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.aboutus-title {
    font-size: var(--h1--size);
    margin: 40px; 
    text-align: center;
    display: block;
    position: relative;
}

.aboutus-content {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.aboutus-photo{
    width: 100%;
    border-radius: 20px 20px 20px 20px; 
    overflow: hidden; 
}

.aboutus-photo img {
    display: block;
    width: 100%;
    height: 200px;
}

.aboutus-story {
    display: block;
    width: 100%;
    padding: 0px;
    text-align: center;
}






.gallery{
    position: relative;
    padding: 20px;
}

.gallery-container{
    position: relative;
    padding-top: 0rem;
    row-gap: 3rem;
    margin: 0;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.bg-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) ;
}

.gallery-title {
    font-size: var(--h1--size);
    margin: 0 auto 40px; 
    text-align: center;
    display: block;
    position: relative;
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}


.gallery-slider {
    max-width: 100%;
    max-height: 80%;
    position: relative;
    border: solid 2px var(--logo--color);
    border-radius: 20px 20px 20px 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    overflow: hidden; 
}

.gallery-image {
    display: none;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
    transition: opacity 1s ease-in-out;
}

.gallery-image img {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.navigation{
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 50%;
    transition: background-color 0.6s ease;
    transform: translateX(-50%);
}
  
.gallery-slider .navigation .btn{
    background: rgba(255, 255, 255, 0.88);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.gallery-slider .navigation .btn.active {
    background-color: var(--logo--color);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.gallery-buttons {
    position: absolute;
    display: flex;
    top: 50%;
    width: 100%;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.prev, .next {
    cursor: pointer;
    padding: 20px;
    background-color: rgba(228, 95, 95, 0.5);
    color: var(--white--color);
    font-weight: bold;
    font-size: 24px;
    border: none;
    margin: 0 0px;
    pointer-events: auto;
    transition: background-color 0.6s ease;
}

.prev:hover, .next:hover {
    background-color: var(--logo--color);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}



/* BREAKPOINTS */



@media screen and (max-width: 320px) {

    

    .brand-images{
        width: 100%;
    }

}

@media screen and (max-width: 400px) {
    .home-container, .review-container, .bestseller-container, .faq-container, .location-container{
        margin-inline: 1rem;
        margin: 0;
    }

    .footer-content{
        grid-template-columns: max-content;
    }

    .logo{
        margin: 0px;
    }

}

@media screen and (max-width: 600px){
    .catalogue-photos{
        grid-template-columns: repeat(2, 125px); 
        gap: 4px;
    }

    .catalogue-content h3{
        padding-top: 20px;
    }


    .faq-question{
        padding: 3px;
        font-size: 16px;
    }

    .faq-card.open .faq-answer{
        font-size: 16px;
    }
}

@media screen and (min-width: 600px) {
    .faq-card{
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }
}

@media screen and (min-width: 768px) {
    .home-content .brand-images{
        width: 350px;
    }

    .review-title {
        font-size: var(--h1--size);
        padding-top: 10px; 
        text-align: center; 
        display: block; 
        position: relative;
    }
    
    .photo{
        height: 120px;
        width: 140px;
    }

    .gallery-slider, .review-slider{
        max-width: 90%;
    }

    .faq-question {
        padding: 10px;
    }


   
}



@media screen and (max-width: 768px) {
    .aboutus-photo {
        width: 100%;
        margin: 0 auto; 
    }

    .aboutus-photo img {
        width: 100%;
        height: auto;
    }

    .aboutus-story {
        width: 100%;
        margin: 0 auto; 
    }
    .aboutus-story p{
        font-weight: 300;
    }

    .ordering-title{
        padding-top: 20%;
        padding-bottom: 10%;
    }

    .review-slider {
        width: 280px;
        height: 420px;
    }

    .previous, .forward{
        padding: 20px;
        font-size: 18px;
    }


}




@media screen and (min-width: 769px) and (max-width: 1023px) {
    .aboutus-container{
        display: flex;
        flex-direction: column;
    }
    
    .aboutus-card{
        align-items: center;
        display: flex;
    }
    
    .aboutus-photo{
        height: 300px;
    }
    
    .aboutus-photo img{
        height: 300px;
        border-radius: 20px 20px 20px 20px;
    }

    .aboutus-story{
        width: 80%;
    }
    
    .aboutus-story p{
        text-align: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 300;
    }

    .aboutus-container{
        display: flex;
        flex-direction: column;
        margin: 40px;
    }
}



@media screen and (max-width: 1023px) {

    :root{
        --h1--size: 2rem;
        --h2--size: 1.25rem;
        --h3--size: 1rem;
        --normal--font--size: 0.9rem;
        --small--font--size: 0.8rem;
        --smaller--font--size: 0.75rem;
    }

    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px;
    }


    

}



@media screen and (min-width: 1024px) {

    .home-content .brand-images{
        width: 400px;
    }

    

    .home-content{
        padding: 50px;
    }


    
    

    /* ORDERING SECTION */

    .ordering-steps{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        gap: 50px;
    }

    .ordering-container{
        padding: 0px 0 60px 0;
    }


    .steps{
        display: flex;
        width: 275px;
        height: 324px;
        border-radius: 15px 15px 15px 15px;
        background: var(--white--color);
        box-shadow: 0px 4px 4px 0px #00000040 inset;
        padding: 20px;
        margin-top: 0;
    }
    
    .ordering-steps #image1{
        display: block;
        margin: auto;
        width: 184px;
        height: 179px;
    }
    
    .ordering-steps #image2{
        display: block;
        margin: auto;
        width: 80px;
        height: 178px;
    }
    
    .ordering-steps #image3{
        display: block;
        margin: auto;
        width: 128px;
        height: 178px;
    }

    .ordering-title{
        font-size: 50px;
        text-align: center;
        padding: 50px;
        color: var(--white--color);
        text-shadow: 1px 3px 6px var(--headline--color);
    }

    .ordering-steps h3{
        font-size: 20px;
        text-align: center;
    }
    
    .ordering-steps p{
        margin: 0 0 10px;
        font-size: 15px;
        padding: 0px 0px 0px 0px;
        text-align: center;
    }

    .steps:last-child {
        margin-bottom: 0px;
    }

    .faq-card{
        margin-left: auto;
        margin-right: auto;
        width: 70%;
    }

    .aboutus-container{
        display: flex;
        flex-direction: column;
        margin: 20px;
    }

    
    .aboutus-card{
        align-items: center;
        display: flex;
    }
    
    .aboutus-photo{
        height: 400px;
        width: 850px;
    }
    
    .aboutus-photo img{
        height: 400px;
        border-radius: 20px 20px 20px 20px;
    }

    .aboutus-story{
        width: 80%;
        padding: 20px;
    }
    
    .aboutus-story p{
        text-align: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 300;
    }
    
    
    

}


@media screen and (min-width: 1024px) and (max-width: 1279px){


    
    
}


@media screen and (min-width: 1280px){


    
}

















