@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Bebas+Neue&family=Fenix&family=Fleur+De+Leah&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lavishly+Yours&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "roboto", sans-serif;
}

body {
    background: var(--black);
}

:root {
    --black: #000;
    --white: #fff;
    --dark-pink: #ff2d55;
}

nav {
    margin-top: 15px;
    min-height: 4.5rem;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.logo img {
    height: 85px;
}

.navlist ul {
    display: flex;
    gap: 45px;
    margin-top: 25px;
    font-size: 20px;
    text-transform: uppercase;
}

.navlist ul li {
    list-style: none;
}

.navlist li a {
    position: relative;
}

.navlist li a::after,
.navlist li .active::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .20rem;
    width: 100%;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform .5s;
    transform-origin: right;
}

.navlist li a:hover::after,
.navlist li .active::after {
    transform: scale(1);
    transform-origin: left;
}


.navlist a {
    text-decoration: none;
    color: var(--white);
}

.icons {
    margin-top: 25px;
    display: flex;
    gap: 25px;
    font-size: 20px;
    color: var(--white);
}

.icons i:hover {
    color: var(--dark-pink);
}

.marquee-center {
    margin-top: 9px;
    text-align: center;
    color: var(--dark-pink);
    font-size: 20px;
    font-weight: bold;
}

/* section 1 complete */

/* section 2 start */
.slider-wrapper {
    margin-top: 10px;
}

.carousel-inner {
    height: 900px;
}

/* section 2 complete  */
.box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
}

.reorder {
    height: 41px;
    background: rgb(233, 21, 56);
    width: 42rem;
    text-align: center;
    border-radius: 6px;
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* menu-container */
.menu-container h2 {
    color: var(--white);
    margin-top: 3rem;
    margin-left: 10rem;
    font-size: 33px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
}

.menu-container h2::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 5rem;
    left: 0;
    bottom: -5px;
}

.menu-list {
    height: 350px;
    width: 100%;
    margin-top: 50px;
}

.boxes {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 80px;
}

.box-1 {
    height: 230px;
    width: 220px;
    background: rgb(31, 30, 30);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    position: relative;
}

.box-1 p::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 3.5rem;
    left: 0;
    bottom: 18px;
    margin-left: 80px;
    border-radius: 3px;
}

.box-1 img {
    height: 170px;
}

.box-1 p {
    color: var(--white);
    margin-left: 4rem;
    font-size: 20px;
    font-weight: bold;
}

.box-2 {
    height: 230px;
    width: 220px;
    background: rgb(31, 30, 30);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.box-2 img {
    height: 170px;
}

.box-2 p {
    color: var(--white);
    margin-left: 3rem;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.box-2 p::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 4rem;
    left: 0;
    bottom: -13px;
    margin-left: 40px;
    border-radius: 3px;
}

.box-3 {
    height: 230px;
    width: 220px;
    background: rgb(31, 30, 30);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.box-3 img {
    height: 170px;
}

.box-3 p {
    color: var(--white);
    margin-left: 3rem;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.box-3 p::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 4rem;
    left: 0;
    bottom: -13px;
    margin-left: 50px;
    border-radius: 3px;
}

.box-4 {
    height: 230px;
    width: 220px;
    background: rgb(31, 30, 30);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.box-4 img {
    height: 170px;
}

.box-4 p {
    color: var(--white);
    margin-left: 3rem;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.box-4 p::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 3.5rem;
    left: 0;
    bottom: -10px;
    margin-left: 50px;
    border-radius: 3px;
}

.box-5 {
    height: 230px;
    width: 220px;
    background: rgb(31, 30, 30);
    /* border: 1px solid white; */
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.box-5 img {
    height: 170px;
}

.box-5 p {
    color: var(--white);
    margin-left: 5.5rem;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.box-5 p::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 3rem;
    left: 0;
    bottom: -10px;
    margin-left: 14px;
    border-radius: 3px;
}

/* seller cards */

.seller {
    color: var(--white);
    margin-left: 10rem;
    font-size: 33px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    font-size: 34px;
}

.seller::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 5rem;
    left: 0;
    bottom: -5px;
}

.seller-container {
    height: 500px;
    width: 100%;
    margin-top: 3rem;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px;
    gap: 20px;
}

.card1 {
    height: 400px;
    width: 350px;
    background: rgb(31, 30, 30);
}


.card1 img {
    height: 280px;
    width: 299px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.price-ribbon {
    background-color: #e4002b;
    /* KFC red */
    color: #fff;
    display: inline-block;
    padding: 8px 20px 8px 30px;
    font-weight: bold;
    margin-left: 190px;
    margin-top: 15px;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

/* left arrow shape */
.price-ribbon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #e4002b;
    transform: translateX(-100%);
}


.dot-container {
    gap: 9px;
    display: flex;
    margin-left: 130px;
}

.dots {
    height: 29px;
    width: 17px;
    background: #e4002b;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.cards p {
    color: white;
    font-size: 27px;
    margin-top: 30px;
    margin-left: 2rem;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card2 {
    height: 400px;
    width: 299px;
    background: rgb(31, 30, 30);
}

.card2 img {
    height: 290px;
    width: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card3 {
    height: 400px;
    width: 299px;
    background: rgb(31, 30, 30);
}

.card3 img {
    height: 240px;
    width: 300px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card4 {
    height: 400px;
    width: 390px;
    background: rgb(31, 30, 30);
}

.card4 img {
    height: 290px;
    width: 299px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* seller section complete */

/* deals section start */
.name {
    color: var(--white);
    margin-left: 10rem;
    font-size: 33px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    font-size: 34px;
}

.name::after {
    content: "";
    background: var(--dark-pink);
    position: absolute;
    height: .2rem;
    width: 5rem;
    left: 0;
    bottom: -5px;
}

.deals-container {
    height: 550px;
    width: 100%;
    margin-top: 50px;
}

.deals {
    display: flex;
    justify-content: space-evenly;
    padding: 30px;
}

.card5 {
    height: 460px;
    width: 310px;
    border-radius: 13px;
    background: rgb(24, 23, 23);
}

.card5 img {
    height: 220px;
    width: 230px;
    background-position: center;
    margin-left: 40px;
}

.card5 .heading {
    color: white;
    font-size: 20px;
    margin-left: 20px;
    font-weight: bold;
    font-family: "poppins", sans-serif;
}

.card5 .para {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
}

.card5 .price {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
    margin-top: 45px;
}

.card5 .btn {
    color: white;
    background: #e4002b;
    margin-top: 20px;
    margin-left: 60px;
    padding: 10px 12px;
    border-radius: 7px;
    border: none;
    font-weight: bold;
    font-size: 17px;
    font-family: "poppins", sans-serif;
}

.card5 i {
    color: #e4002b;
    margin-left: 16rem;
    font-size: 28px;
}


.card6 {
    height: 460px;
    width: 310px;
    border-radius: 13px;
    background: rgb(24, 23, 23);
}

.card6 img {
    height: 220px;
    width: 230px;
    background-position: center;
    margin-left: 40px;
}

.card6 .heading {
    color: white;
    font-size: 20px;
    margin-left: 20px;
    font-weight: bold;
    font-family: "poppins", sans-serif;
}

.card6 .para {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
}

.card6 .price {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
    margin-top: 45px;
}

.card6 .btn {
    color: white;
    background: #e4002b;
    margin-top: 20px;
    margin-left: 60px;
    padding: 10px 12px;
    border-radius: 7px;
    border: none;
    font-weight: bold;
    font-size: 17px;
    font-family: "poppins", sans-serif;
}

.card6 i {
    color: #e4002b;
    margin-left: 16rem;
    font-size: 28px;
}

.card7 {
    height: 460px;
    width: 310px;
    border-radius: 13px;
    background: rgb(24, 23, 23);
}

.card7 img {
    height: 220px;
    width: 230px;
    background-position: center;
    margin-left: 40px;
}

.card7 .heading {
    color: white;
    font-size: 20px;
    margin-left: 20px;
    font-weight: bold;
    font-family: "poppins", sans-serif;
}

.card7 .para {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
}

.card7 .price {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
    margin-top: 45px;
}

.card7 .btn {
    color: white;
    background: #e4002b;
    margin-top: 20px;
    margin-left: 60px;
    padding: 10px 12px;
    border-radius: 7px;
    border: none;
    font-weight: bold;
    font-size: 17px;
    font-family: "poppins", sans-serif;
}

.card7 i {
    color: #e4002b;
    margin-left: 16rem;
    font-size: 28px;
}

.card8 {
    height: 460px;
    width: 310px;
    border-radius: 13px;
    background: rgb(24, 23, 23);
}

.card8 img {
    height: 220px;
    width: 230px;
    background-position: center;
    margin-left: 40px;
}

.card8 .heading {
    color: white;
    font-size: 20px;
    margin-left: 20px;
    font-weight: bold;
    font-family: "poppins", sans-serif;
}

.card8 .para {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
}

.card8 .price {
    color: white;
    margin-top: 7px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    font-family: "poppins", sans-serif;
    margin-top: 45px;
}

.card8 .btn {
    color: white;
    background: #e4002b;
    margin-top: 20px;
    margin-left: 60px;
    padding: 10px 12px;
    border-radius: 7px;
    border: none;
    font-weight: bold;
    font-size: 17px;
    font-family: "poppins", sans-serif;
}

.card8 i {
    color: #e4002b;
    margin-left: 16rem;
    font-size: 28px;
}

/* deals section complete */
.main-container {
    height: 900px;
    width: 100%;
    margin-top: 70px;
}

.cross-box1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.box-11 {
    height: 370px;
    width: 580px;
    border-radius: 15px;
}

.box-11 img {
    height: 370px;
    width: 580px;
    border-radius: 15px;
}

.box-12 {
    height: 370px;
    width: 580px;
    border-radius: 15px;
}

.box-12 img {
    height: 370px;
    width: 580px;
    border-radius: 15px;
}

.cross-box2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.box-13 {
    height: 370px;
    width: 580px;
    border-radius: 15px;
}

.box-13 img {
    height: 370px;
    width: 580px;
    border-radius: 15px;
}

.box-14 {
    height: 370px;
    width: 580px;
    border-radius: 15px;
    background: rgb(24, 23, 23);
}

.box-14 img {
    height: 150px;
    width: 270px;
    margin-left: 8.9rem;
    margin-top: 1rem;
}

.p4 {
    color: white;
    font-size: 24px;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    font-weight: bold;
}

.btnn {
    padding: 16px 45px;
    margin-left: 10rem;
    margin-top: 14px;
    border-radius: 10px;
    font-size: 22px;
    background: #e4002b;
    border: none;
    color: white;
    font-weight: bold;
}

/* footer */

.kfc-footer {
    background-color: rgb(24, 23, 23);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-logo {
    width: 90px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e4002b;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #e4002b;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    font-size: 14px;
}