@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');
@font-face {
    font-family: Sunday_font;
    src: url(../Font/Sunday_Bold.ttf);
  }
@font-face {
    font-family: BebasNeue_font;
    src: url(../Font/BebasNeue-Regular.ttf);
  }
@font-face {
    font-family: Haglos_font;
    src: url(../Font/Haglos_Reguler.ttf);
  }
@font-face {
    font-family: Nunito_font_regular;
    src: url(../Font/Nunito_Sans/NunitoSans-Regular.ttf);
  }
@font-face {
    font-family: Nunito_font_bold;
    src: url(../Font/Nunito_Sans/NunitoSans-Bold.ttf);
  }

:root {
    --color_primary_red: #EC1E24;
    --color_secondry_yellow: #FAAB19;
    --color_third_blue: #283980;
    --color_cream: #FFEBCA;
    --color_skyBlue: #577FBF;
    --background_secondary: linear-gradient(221deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%), #C9C9C9;
    ;
    --font_family_header: Sunday_font, sans-serif;
    --font_family_subHeader: BebasNeue_font, sans-serif;
    --font_family_subHeader1: Haglos_font, sans-serif;
    --font_family_text: Nunito_font_regular, sans-serif;
}
* {
    font-family: var(--font_family_text);
}
a:hover{
    color: var(--color_primary_red) !important;
    cursor: pointer;
}
/* loader */
.loader-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color_cream);
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/**
  * Feeder
  *
  * @author jh3y - jheytompkins.com
*/

@keyframes fed {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-500%);
        transform: translateX(-500%);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(0) scale(2.5);
        transform: translateX(0) scale(2.5);
    }

    40%,
    60% {
        -webkit-transform: translateX(0) scale(1.5);
        transform: translateX(0) scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(500%);
        transform: translateX(500%);
    }
}

@-webkit-keyframes feed {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-500%);
        transform: translateX(-500%);
    }

    40% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(500%);
        transform: translateX(500%);
    }
}


.feeder {
    height: 20px;
    position: relative;
    width: 20px;
}

.feeder div {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: fed;
    animation-name: fed;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-delay: calc(var(--delay) * 1s);
    animation-delay: calc(var(--delay) * 1s);
    background-color: var(--color_primary_red);
    border-radius: 100%;
    height: 100%;
    position: absolute;
    width: 100%;
}

.feeder div:nth-child(2),
.feeder div:nth-child(3) {
    -webkit-animation-name: feed;
    animation-name: feed;
}

.feeder div:nth-child(2) {
    --delay: .25;
}

.feeder div:nth-child(3) {
    --delay: .5;
}


/* FONT */
.heading_h1 {
    /* Heading/H1 */
    font-family: var(--font_family_header);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    /* line-height: normal; */
}
.heading_h2 {
    /* Heading/H2 */
    font-family: var(--font_family_header);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 57.6px */
    /* line-height: normal; */
}
.heading_h3 {
    /* Heading/H3 */
    font-family: var(--font_family_header);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    /* line-height: normal; */
}
.heading_h4 {
    /* Heading/H4 */
    font-family: var(--font_family_header);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.heading_h5 {
    /* Heading/H5 */
    font-family: var(--font_family_header);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
}
.heading_h6 {
    /* Heading/H6 */
    font-family: var(--font_family_header);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
}

.subHeading1_h1{
    /* Sub-Heading/H1 */
    font-family: var(--font_family_subHeader1);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.subHeading1_h2{
    font-family: var(--font_family_subHeader1);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.subHeading_h2{
    font-family: "Bebas Neue";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.subHeading_h3{
    font-family: var(--font_family_subHeader);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.subHeading_h4{
    font-family: var(--font_family_subHeader);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.text_medium_extraBold{
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
}
.text_medium_bold{
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
}
.text_medium_normal {
    /* Text/Medium/Normal */
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.text_regular_normal {
    /* Text/Regular/Normal */
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.text_regular_semiBold {
    /* Text/Regular/Semi Bold */
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.text_large_medium{
    font-family: var(--font_family_text);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.text_large_normal {
    /* Text/Large/Normal */
    font-family: var(--font_family_text);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 28px */
}
.text_large_extraBold{
    font-family: var(--font_family_text);
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 30px */
}
.text_small_normal{
    font-family: var(--font_family_text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.text_small_semiBold{
    font-family: var(--font_family_text);
    
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.btn-outline-primary {
    padding: 8px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    border: 1px solid var(--color_third_blue) !important;    
    text-decoration: none;  
    color: var(--color_third_blue) !important;
    /* background: var(--color_skyBlue); */
}   

.btn-outline-primary:hover {
    /* border: 1px solid var(--color_primary_red) !important;     */
    background-color: var(--color_third_blue) !important;
    color: var(--color_secondry_yellow) !important;
}  

.btn-primary{
    text-decoration: none;
    padding: 12px 24px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--color_primary_red) !important;
    border-radius: 20px;
    box-shadow: 0px 32px 64px -12px rgba(0, 0, 0, 0.14);
    /* border-color: var(--color_cream) !important; */
}

.btn-primary:hover{
    background: #e30910!important;
    color: var(--color_cream) !important;
}
.btn-primary:disabled {
    color: var(--color_white);
    background-color: #F69595 !important;
    cursor: not-allowed;
    border: none !important;
}


/* LOADER */
/* NAVIGATION */

.navbar-custom {
    color: var(--color_cream);
    transition: transform 0.2s;
    /* height: 72px !important; */
}
.navbar-custom1 {
    /* background: var(--color_third_blue); */
    border-bottom: 5px solid var(--color_third_blue);
    background: var(--color_secondry_yellow);
    box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.10) inset;
}

.navbar-brand img {
    width: auto;
    height: 85px;
    flex-shrink: 0;
}
.navbar-custom a {
    
}
.navbar-nav .nav-link {
    color: var(--color_third_blue);
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}
.navbar-nav .nav-link:hover{
    color: var(--color_primary_red);
}
.navbar-nav .nav-link.active{
    color: var(--color_third_blue);
    font-family: var(--font_family_text);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.navbar-toggler{
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #00000001!important;
    /* border: 1px solid var(--color_primary_red) !important; */
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
    color: var(--color_third_blue);
}

.navbar-toggler-icon{
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../Image/symbol/menu.png);
    background-size: 100%;
}

.navbar-hidden {
    transform: translateY(-100px);
    box-shadow: none;
}

.whatsapp_button img {
    width: 60px;
    cursor: pointer;
}

.whatsapp_button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}



/* HEADER */
.homepage-bg {
    background-image: url(../Image/asset/home2kentang.png), url(../Image/asset/home3kentang.png), url(../Image/asset/realpotato.png), url(../Image/asset/realpotato1.png), url(../Image/asset/wedges1.png), url(../Image/background/BG_Hero.jpg);
    background-size: 711px, 646px, 389px, 500px, 500px, cover;
    background-position: 85% -693%, 28% 513%, 91% 6%, -13% 108%, 112% 226%, 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}
.header_home{
    color: var(--color_cream);
    padding-top: 210px;
    padding-bottom: 208px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}
.header_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 482px;
}
.homepage-bg img{
    position: absolute;
    width: 539px;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
}

/* sauces */
.sauces_sec {
    background-image: url(../Image/asset/Lemon.png), url(../Image/asset/lm1.png), url(../Image/asset/onion.png), url(../Image/text/SAUCES.png), url(../Image/text/SAUCES1.png), url(../Image/background/CreamBg.jpg);
    background-size: 304px, 326px, 320px, 110px, 370px, cover;
    background-position: -6% -4%, 113% 9%, -9% 106%, 4% 48%, 102% 76%, 50% 50%;
    background-repeat: no-repeat;
}
.sauce_main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 85px;
    padding: 77px 0;
}
.sauce_main_text{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color_third_blue);
    max-width: 672px;
    position: relative;
}
.sauce_main_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    color: var(--color_third_blue);
}
.sauce_main_text h1{
    color: #FAAB19;
    text-align: center;
    font-family: var(--font_family_header);
    font-size: 128px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 153.6px */
}
.sauce_main_text h4{
    position: absolute;
    top: 150px;
}
.sauce_main_frame{
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 17px;
    flex-wrap: wrap;
}
.sauce_flavour{
    display: flex;
    width: 204px;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
}
.sauce_flavour img{
    max-width: 161px;
}
.sauce_flavour h3{
    padding: 0;
}

/* drink */
.drink_sec{
    background-image: url(../Image/Drink/beverage.jpg);
    height: 1100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.drink_carousel{
    background: url(../Image/background/bg_drinkCarousel.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 0;
    display: none;
}
.carousel-item img{
    height: 580px;
}
.drink_flav{
    width: 100%;
}
/* */
/* birthday */
.birthday_sec{
    background: url(../Image/booth/lengkung2.png), url(../Image/booth/booth1.png), url(../Image/background/BlueBG.jpg);
    background-size: 500px, 500px, cover;
    background-position: 110% center, -7% bottom, center;
    background-repeat: no-repeat;
    color: var(--color_cream);
    padding: 77px;
}
.birthday_package h1{
    color: var(--Canary-Ginger, #FAAB19);
    text-align: center;
    text-shadow: 8px 5px 0px #593A00;
}
.birthday_package{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 66px;
}
.birthday_form{
    display: flex;
    align-items: center;
    gap: 31px;
    align-self: stretch;
    flex-wrap: wrap;
    justify-content: center;
}
.birthday_card{
    display: flex;
    width: 380px;
    height: 553px;
    padding: 28px 63px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    position: relative;

    border-radius: 12px;
    background: rgba(87, 127, 191, 0.83);
    box-shadow: 0px 7px 11.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4.800000190734863px);
}
.birthday_card_text{
    display: flex;
    width: 294px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 31px;
}
.birthday_card_text_price{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    align-self: stretch;
}
.birthday_card img{
    position: absolute;
    width: 100%;
    bottom: 210px;
}

/* review */
.review_sec{
    background: var(--color_third_blue);
    display: flex;
    padding: 77px 85px;
    flex-direction: column;
    align-items: center;
    gap: 61px;
    flex-shrink: 0;
    color: var(--color_third_blue);
}
.review_sec h3{
    color: var(--color_cream);
}
.review_sec h2{
    color: var(--Canary-Ginger, #FAAB19);
    text-align: center;
    text-shadow: 8px 5px 0px #593A00;
}

.review_form{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    align-self: stretch;
    flex-wrap: wrap;
}
.review_card{
    display: flex;
    width: 408px;
    height: 782px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 15px;
    background: #F1E6E6;

    /* large */
    box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
}
.video{
    height: 495px;
}
.review_text{
    display: flex;
    height: 178px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
}
.review_ig{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}
.review_ig_avatar{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.ig_acc{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.review_ig img{
    max-width: 56px;
}






/* Privacy Police */
.privacy-police {
    padding: 100px 0px;
}


/* Instagram */
.instagramFeeds{
    background: var(--color_third_blue);
}
.instagramFeeds iframe{
    min-width: 290px !important;
    max-width: 1300px !important;
}

/* footer */

.container_footer {
    max-width: 1170px;
    margin: auto;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

ul {
    list-style: none;
    padding-left: 0 !important;
}

.footer {
    background-color: var(--color_cream);
    padding: 70px 0;
}

.footer-col {
    width: 250px;
    padding: 20px 15px;
    
}

.footer-col h4 {
    font-size: 18px;
    color: var(--color_third_blue);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    /* Text/Regular/Semi Bold */
    font-family: var(--font_family_text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    /* background-color: #3b3b3b; */
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
    color: var(--color_third_blue);
}

.footer-col ul li a {
    text-transform: capitalize;
    color: var(--color_third_blue);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;

    /* Text/Small/Normal */
    font-family: var(--font_family_text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-col ul li svg{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-col ul li a:hover {
    color: var(--color_third_blue);
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--color_primary_red);
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: var(--color_primary_red);
}

.footer-last {
    background-color: var(--color_cream);
    color: var(--color_third_blue);
    height: 100%;
}
.footer-last a{
    text-decoration: none;
    color: var(--Cobalt-Blue, #283980);
    transition: all 0.5s ease;
}

/*responsive*/
@media(max-width: 1200px) {
    
}

@media(max-width: 1624px) {
    .homepage-bg {
        background-image: url(../Image/asset/home2kentang.png), url(../Image/asset/home3kentang.png), url(../Image/asset/realpotato.png), url(../Image/asset/realpotato1.png), url(../Image/asset/wedges1.png), url(../Image/background/BG_Hero.jpg);
        background-size: 701px, 626px, 389px, 500px, 500px, cover;
        background-position: 89% -1332%, 26% 458%, 91% 6%, -28% 108%, 121% 230%, 50% 50%;
        background-repeat: no-repeat;
        /* height: 100vh; */
        position: relative;
    }
}

@media(max-width: 1440px) {
    .drink_sec {
        height: 880px;
    }
}
@media(max-width: 1400px) {
    .homepage-bg {
        background-image: url(../Image/asset/realpotato1.png), url(../Image/asset/wedges1.png), url(../Image/background/BG_Hero.jpg);
        background-size: 500px, 500px, cover;
        background-position: -14% 108%, 118% 230%, 50% 50%;
        background-repeat: no-repeat;
        /* height: 100vh; */
        position: relative;
        overflow: hidden;
    }
    .homepage-bg img {
        transform: rotate(20deg);
        width: 536px;
        top: 70px;
        left: 530px;
    }
}
@media(max-width: 990px) {
    .homepage-bg {
        background-image: url(../Image/asset/realpotato1.png), url(../Image/asset/wedges1.png), url(../Image/background/BG_Hero.jpg);
        background-size: 500px, 500px, cover;
        background-position: -78% 108%, 168% 230%, 50% 50%;
        background-repeat: no-repeat;
        /* height: 100vh; */
        position: relative;
        overflow: hidden;
    }
    .homepage-bg img {
        transform: rotate(20deg);
        width: 486px;
        top: 60px;
        left: 370px;
    }
    .sauce_main_text {
        max-width: 571px;
    }
    .sauce_main_text h1 {
        font-size: 87px;
    }
    .sauce_main_text h4 {
        top: 174px;
    }
    .sauces_sec {
        background-image: url(../Image/asset/Lemon.png), url(../Image/asset/lm1.png), url(../Image/asset/onion.png), url(../Image/text/SAUCES.png), url(../Image/text/SAUCES1.png), url(../Image/background/CreamBg.jpg);
        background-size: 304px, 326px, 320px, 110px, 370px, cover;
        background-position: -21% 3%, 137% 9%, -22% 97%, 4% 50%, 142% 76%, 50% 50%;
        background-repeat: no-repeat;
    }
    .drink_sec {
        background-image: url(../Image/Drink/beverage.jpg);
        height: 624px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .birthday_sec {
        background: url(../Image/booth/lengkung2.png), url(../Image/booth/booth1.png), url(../Image/background/BlueBG.jpg);
        background-size: 500px, 500px, cover;
        background-position: 110% center, -7% 74%, center;
        background-repeat: no-repeat;
    }
}

@media(max-width: 768px) {
    .homepage-bg {
        background-image: url(../Image/background/PotataHeroHomepage.jpg);
        background-size: cover;
        background-position: center;
        
    }
    .homepage-bg img {
        transform: rotate(0deg);
        width: 406px;
        top: 60px;
        left: 50%;
        transform: translateX(-53%);
    }
    .header_text {
        text-align: center;
        align-items: center;
    }
    .header_home{
        align-items: center;
        padding-top: 651px;
        padding-bottom: 88px;
    }
    .birthday_sec {
        background: url(../Image/background/BlueBG.jpg);
        background-size: cover;
        background-position: center;
    }
    .sauce_main_text h1 {
        font-size: 58px;
    }
    .heading_h2 {
        font-size: 34px;
    }
    .sauce_main_text h4 {
        top: 126px;
    }
    .subHeading1_h2 {
        font-size: 34px;
    }
    .sauces_sec {
        background-image: url(../Image/background/CreamBg.jpg);
        background-size: cover;
        background-position: 50% 50%;
    }
    .drink_sec{
        display: none;
    }
    .drink_carousel{
        display: block;
    }
}

@media(max-width: 574px) {
    .subHeading_h3 {
        font-family: var(--font_family_subHeader);
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-left: auto;
        margin-right: auto;
    }
    
    .header_home {
        padding-top: 590px;
        padding-bottom: 98px;
    }
}

@media(max-width: 450px) {
    .homepage-bg img {
        transform: rotate(0deg);
        width: 326px;
        top: 110px;
        left: 50%;
        transform: translateX(-53%);
    }
    .sauce_flavour {
        display: flex;
        width: 139px;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        flex-shrink: 0;
    }
    .heading_h1 {
        font-size: 32px;
    }
    .heading_h2 {
        font-size: 32px;
    }
    .header_home {
        padding-top: 586px;
        padding-bottom: 78px;
        gap: 33px;
    }
    .header_text{
        gap: 10px;
    }
    .birthday_sec{
        padding: 70px 0;
    }
    .birthday_card img {
        position: absolute;
        width: 100%;
        bottom: 140px;
    }
    .birthday_card {
        width: 266px;
        height: 379px;
    }
    .subHeading_h2 {
        font-size: 29px;
    }
    .review_sec {
        padding: 67px 20px;
    }
    .review_card {
        display: flex;
        width: 278px;
        height: 100%;
        padding: 20px;
    }
    .video {
        height: 325px;
    }
    .text_medium_normal {
        font-size: 14px;
    }
    .review_ig img {
        max-width: 32px;
    }
    .text_regular_semiBold {
        font-size: 13px;
    }
}

