.TopBar{
    display: flex;
    position: sticky;
    top: 0;
    height: 65px;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s;
}
.TopBarChild{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 10px;
}
.TopBar.ScrollComplete{
    background-color: rgba(0, 0, 27, 0.9);
}

.BarBrand{
    display: flex;
    align-items: center;
}
.Logo{
    height: 75px;
    width: auto;
    cursor: pointer;
    transition: 0.3s;
}

.BarButton{
    display: flex;
    align-items: center;
}
.Reserve{
    color: rgb(255, 255, 255);
    background-color: rgb(247, 90, 0);
    height: 40px;
    border: 2px solid rgb(247, 90, 0);
    padding: 0 20px;
    white-space: nowrap;
    font-size: 120%;
    transition: 0.3s;
    cursor: pointer;
}
.Reserve:hover{
    font-size: 120%;
    padding: 0 25px;
    transition: 0.3s;
}


.PromoContent{
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin-top: -65px;
}
.Promotion{
    width: 100%;
    height: 100%;
}
.Promotion img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: PromotionWheel 16s ease-in-out infinite;
}
.Promotion img:nth-child(1) {animation-delay: 0s;}
.Promotion img:nth-child(2) {animation-delay: 4s;}
.Promotion img:nth-child(3) {animation-delay: 8s;}
.Promotion img:nth-child(4) {animation-delay: 12s;}
@keyframes PromotionWheel {
    0% {opacity: 0;}
    6.25% {opacity: 1;}
    25% {opacity: 1;}
    31.25% {opacity: 0;}
    100% {opacity: 0;}
}


.OurCuisine{
    width: 100%;
    font-size: 250%;
    font-style: italic;
    text-align: center;
    margin: 100px 0 50px 0;
    color: rgb(255, 255, 255);
    margin-top: 100px;
    margin-bottom: 50px;
    width: 100%;
}
.AllCuisine{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    width: 100%;
    overflow: hidden;
}
.NIHome{
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%;
    margin-bottom: 60px;
}
.NICuisineGallery{
    position: relative;
    width: 65%;
    aspect-ratio: 1.64/1;
    flex-shrink: 0;
    overflow: hidden;
}
.NICuisine{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    animation: NICuisineWheel 16s infinite ease-in-out;
}
.NICuisineCard{
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
}
.North-India-TitleDAD{
    font-size: 20px;
    font-style: italic;
    margin: 0 0 0 0;
    color: rgb(255, 255, 255);
}
.North-India-Title{
    font-size: 60px;
    margin: 0 0 0 0;
    color: rgb(247, 90, 0);
}
.North-India-DescriptionI{
    font-size: 17px;
    margin: 10% 5% 10% 5%;
    text-justify: inter-word;
    line-height: 150%;
    color: rgb(255, 255, 255);
}
.North-India-DescriptionII{
    font-size: 17px;
    margin: 0% 0% 0 0%;
    text-justify: inter-word;
    color: rgb(255, 255, 255);
}
.North-India-Menu{
    position: relative;
    font-size: 20px;
    width: 220px;
    padding: 9px;
    margin: 5% 0 0 0;
    border: none;
    color: rgb(255, 255, 255);
    background-color: rgb(247, 90, 0);
    cursor: pointer;
    transition: 0.3s;
}
.material-symbols-outlined{
    position: absolute;
    font-size: 41px !important;
    opacity: 0;
    margin: -8.5px 0 0 -2px;
    transition: 0.3s;
}
.North-India-Menu:hover{
    width: 250px;
    padding-right: 20px;
    color: rgb(255, 255, 255);
    background-color: rgb(247, 90, 0);
    transition: 0.3s;
}
.North-India-Menu:hover .material-symbols-outlined{
    opacity: 1;
    transition: 0.3s;
}
.NICuisineGallery img:nth-child(1) {animation-delay: 0s;}
.NICuisineGallery img:nth-child(2) {animation-delay: 4s;}
.NICuisineGallery img:nth-child(3) {animation-delay: 8s;}
.NICuisineGallery img:nth-child(4) {animation-delay: 12s;}
@keyframes NICuisineWheel {
    0% {opacity: 0;}
    6.25% {opacity: 1;}
    25% {opacity: 1;}
    31.25% {opacity: 0;}
    100% {opacity: 0;}
}

.SIHome{
    display: flex;
    flex-direction: row-reverse;
    height: auto;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 50px;
}
.SICuisineGallery{
    position: relative;
    width: 65%;
    aspect-ratio: 1.64/1;
    flex-shrink: 0;
    overflow: hidden;
}
.SICuisine{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    animation: SICuisineWheel 16s infinite ease-in-out;
}
.SICuisineCard{
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
}
.South-India-TitleDAD{
    font-size: 20px;
    font-style: italic;
    margin: 0 0 0 0;
    color: rgb(255, 255, 255);
}
.South-India-Title{
    font-size: 60px;
    margin: 0 0 0 0;
    color: rgb(7, 174, 17);
}
.South-India-DescriptionI{
    font-size: 17px;
    margin: 10% 5% 10% 5%;
    text-justify: inter-word;
    line-height: 150%;
    color: rgb(255, 255, 255);
}
.South-India-DescriptionII{
    font-size: 17px;
    margin: 0% 0% 0% 0%;
    text-justify: inter-word;
    color: rgb(255, 255, 255);
}
.South-India-Menu{
    position: relative;
    font-size: 20px;
    width: 220px;
    padding: 9px;
    margin: 5% 0 0 0;
    border: none;
    color: rgb(255, 255, 255);
    background-color: rgb(7, 174, 17);
    cursor: pointer;
    transition: 0.3s;
}
.South-India-Menu:hover{
    width: 250px;
    padding-right: 20px;
    color: rgb(255, 255, 255);
    background-color: rgb(7, 174, 17);
    transition: 0.3s;
}
.South-India-Menu:hover .material-symbols-outlined{
    opacity: 1;
    transition: 0.3s;
}
.SICuisineGallery img:nth-child(1) {animation-delay: 0s;}
.SICuisineGallery img:nth-child(2) {animation-delay: 4s;}
.SICuisineGallery img:nth-child(3) {animation-delay: 8s;}
.SICuisineGallery img:nth-child(4) {animation-delay: 12s;}
@keyframes SICuisineWheel {
    0% {opacity: 0;}
    6.25% {opacity: 1;}
    25% {opacity: 1;}
    31.25% {opacity: 0;}
    100% {opacity: 0;}
}
@media (max-width: 768px){
    .NIHome, .SIHome{
        flex-direction: column;
        margin-bottom: 10px;
    }
    .NICuisineGallery, .SICuisineGallery{
        width: 100%;
    }
    .OurCuisine{
        margin-top: 70px;
    }
    .NICuisineCard, .SICuisineCard{
        margin-top: 5%;
    }
    .North-India-DescriptionI, .South-India-DescriptionI{
        margin: 5%;
    }
}


.OurLocations{
    width: 100%;
    font-size: 250%;
    font-style: italic;
    text-align: center;
    margin: 100px 0 30px 0;
    color: rgb(255, 255, 255);
}
.LocationsGrid{
    display: grid;
    grid-template-columns: 40% 60%;
}
.Esaka, .HiHiTown{
    display: flex;
    height: 30vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.Esaka img, .HiHiTown img{
    width: 27%;
    object-fit: contain;
}
.EsakaText, .HiHiTownText{
    font-size: 8vw;
    font-weight: bold;
    color: rgb(255, 255, 255);
}
.EsakaImage, .HiHiTownImage{
    width: 100%;
    height: 30vw;
    object-fit: cover;
    display: block;
}
.EsakaInfo, .HiHiTownInfo{
    display: grid;
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
    color: rgb(255, 255, 255);
    font-size: 25px;
}
.EsakaAddress, .HiHiTownAddress,
.EsakaTime, .HiHiTownTime{
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 60px 0px 40px 0px;
}
.EsakaTelReserve, .EsakaParty{
    grid-column: span 1;
    text-align: center;
    font-style: italic;
    margin: 0px 0px 70px 0px;
}
.HiHiTownTelReserve{
    grid-column: span 2;
    text-align: center;
    font-style: italic;
    margin: 0px 0px 70px 0px;
}
@media (max-width: 768px){
    .LocationsGrid{
        display: flex;
        flex-direction: column;
    }
    .EsakaImage, .HiHiTownImage{
        height: 50vw;
        margin-bottom: 20px;
    }
    .EsakaText, .HiHiTownText{
        font-size: 15vw;
    }
    .EsakaInfo, .HiHiTownInfo{
        grid-template-columns: 1fr;
        padding: 0 5px 0 5px;
    }
    .EsakaAddress, .HiHiTownAddress,
    .EsakaTime, .HiHiTownTime{
        margin: 10px 0px 10px 0px;
    }
    .EsakaTelReserve{
        grid-column: span 1;
        margin: 10px 0px 10px 0px;
    }
    .HiHiTownTelReserve{
        grid-column: span 1;
        margin: 10px 0px 25px 0px;
    }
}


.TagLiner{
    display: flex;
    font-style: italic;
    font-size: 130%;
    width: 100%;
    margin: 80px auto 0 auto;
    gap: 10rem;
    letter-spacing: 3px;
    overflow: hidden;
    user-select: none;
}
.TagLiner ul{
    display: flex;
    flex-shrink: 0;
    margin: 0;
    padding: 20px 0;
    white-space: nowrap;
    justify-content: space-between;
    align-items: center;
    min-width: fit-content;
    gap: 10rem;
    list-style: none;
    color: rgb(255, 255, 255);
    animation: TagLinerRunner 9s linear infinite;
}
@keyframes TagLinerRunner{
    to{
        transform: translateX(calc(-100% - 10rem));
    }
}


.TheBoxes{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "BoxLeft BoxRight";
    gap: 2px;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    border-top: solid 2px rgb(247, 90, 0);
}
.Left, .Right{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 250px;
    font-size: 50px;
    font-weight: bold;
    gap: 25px;
    color: rgb(255, 255, 255);
}
.BoxSocials{
    height: 55px;
    width: 55px;
    color: rgb(255, 255, 255);
    fill: currentColor;
    transition: 0.3s;
}
.BoxSocials:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.Left{grid-area: BoxLeft}
.Right{grid-area: BoxRight}
@media (max-width: 768px){
    .TheBoxes{
        grid-template-columns: 1fr;
        grid-template-areas:
        "BoxLeft"
        "BoxRight"
    }
    .Left, .Right{
        height: 120px;
    }
}

.Marks{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    font-size: 100%;
    width: 100%;
    gap: 5vw;
    margin: 25px 0 50px 0;
    align-items: center;
    color: rgb(255, 255, 255);
}