main {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-column: 1 / span 12;
    position: relative;
}



.heading-section {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    background-image: url("/assets/images/dish-bg-image-1.jpg");
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.heading-section .heading-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.247);
    backdrop-filter: blur(10px);
    color: white;
}

.heading-section .heading-wrapper span {
    font-size: 12px;
}

.heading-section .heading-wrapper h1 {
    font-size: 25px;
    color: white;
}

.about-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.banner-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    background-image: url("/assets/images/arbic-style-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.banner-wrapper>* {
    z-index: 1;
}

.banner-wrapper .blurFx {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.247);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.banner-wrapper img {
    height: 80%;
    width: auto;
    align-self: flex-end;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.banner-content h1 {
    font-size: 20px;
    color: white;
}

.banner-content span {
    font-size: 12px;
    color: white;
}

.paragraph-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
}

.paragraph-section:nth-child(odd)>.paragraph-img-wrapper {
    order: 1;
}

.paragraph-section:nth-child(odd)>.paragraph-content-wrapper {
    order: 2;
}

.paragraph-section:nth-child(:last-child) {
    border-bottom: none;
}

.paragraph-img-wrapper {
    flex-shrink: 0;
    order: 1;
    width: 300px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.paragraph-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    transition: 1s ease-in-out;
}

.paragraph-img-wrapper:hover img {
    transform: scale(1.05);

}

.paragraph-content-wrapper {
    order: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.paragraph-content-wrapper>h2 {
    font-size: 20px;
    color: dimgray;
}

.paragraph-content-wrapper>i {
    font-size: 14px;
    color: gray;
    line-height: 1.5;
    letter-spacing: 0.9px;
    word-wrap: break-word;
}

.multi-paragraph-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 0px;
}

.multi-paragraph-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #e9e9e9;
    padding: 30px;
}

.multi-paragraph-content-wrapper:last-child {
    border-bottom: none;
}

.multi-paragraph-content-wrapper>h2 {
    font-size: 20px;
    color: dimgray;
}

.multi-paragraph-content-wrapper>i {
    font-size: 14px;
    color: gray;
    line-height: 1.5;
    letter-spacing: 0.9px;
}

.general-paragraph-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-top: 1px solid #e9e9e9;
}

.general-paragraph-section .paragraph-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.general-paragraph-section .paragraph-content-wrapper>h2 {
    font-size: 20px;
    color: dimgray;
}

.general-paragraph-section .paragraph-content-wrapper>i {
    font-size: 14px;
    color: gray;
    line-height: 1.5;
    letter-spacing: 0.9px;
    text-align: center;
}

.footer-section {
    width: 100%;
    display: flex;
    border-top: 1px solid #e9e9e9;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    .mobile-header-gap {
        display: none;
    }

    .pc-header-gap {
        display: flex;
    }

    /* .heading-section {
        aspect-ratio: 16/4.5;
    }

    .heading-section .heading-wrapper h1 {
        font-size: 52px;
    } */
    .banner-content h1 {
        font-size: 52px;
    }

    .banner-content span {
        font-size: 16px;
    }

    .paragraph-section {
        width: 80%;
        flex-direction: row;
    }

    .paragraph-section:nth-child(odd)>.paragraph-img-wrapper {
        order: 2;
    }

    .paragraph-section:nth-child(odd)>.paragraph-content-wrapper {
        order: 1;
    }

    .paragraph-img-wrapper {
        width: 200px;
    }

    .multi-paragraph-section {
        width: 80%;
        flex-direction: row;
    }

    .multi-paragraph-content-wrapper {
        border-right: 1px solid #e9e9e9;
        border-bottom: none;
    }

    .multi-paragraph-content-wrapper:last-child {
        border-right: none;
    }

    .general-paragraph-section {
        width: 80%;
    }
}