* {
    margin: 0;
    color: #6B3717;
    padding: 0;
    font-weight: normal;
    transition: all 200ms ease-in;
    scroll-behavior: smooth;
}
section {
    position: relative;
}
.herosection{
    overflow: hidden;
}
@font-face {
    font-family: 'Hurson';
    src: url('assets/fonts/Hurson.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Astoria';
    src: url('assets/fonts/AstoriaLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Astoria';
    src: url('assets/fonts/AstoriaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Astoria';
    src: url('assets/fonts/AstoriaBold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'AstoriaRoman';
    src: url(assets/fonts/AstoriaRoman.ttf);
}
@font-face {
    font-family: "TT Polls Script Trial";
    src: url(assets/fonts/TT-Polls-Script-Trial-Light.otf) format('OpenType');
    font-weight: 300;
}
.hurson{
    font-family: "Hurson";
}
.beigetext {
    color: #EDE5D8;
}

.AstoriaRoman {
    font-family: "AstoriaRoman";
    font-weight: 200;
}

body {
    background: #EEC2DA;
    width: 100%;
    padding-top: 158px;
}

h1 {
    font-size: 64px;
    font-family: Hurson;
    font-weight: 400;
}

h2 {
    font-size: 54px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 20px;
    font-family: 'AstoriaRoman';
    font-size: 20px;
    font-weight: 200;
    letter-spacing: -0.2px;
}

.menucontainer {
    display: flex;
    height: 180px;
    width: 100%;
    padding: 38px 60px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 999;
}

.menu {
    width: 100%;
    box-sizing: border-box;
    max-width: 1280px;
    gap: 10px;
    display: flex;
    padding: 28px 100px;
    justify-content: space-between;
    align-items: center;
    border-radius: 58px;
    border: 2px solid #6B3717;
    background: #EDE5D8;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.05);
}

.menulogo {
    width: 54px;
    height: 39px;
}

.menu ul {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    max-width: 340px;
}

li {
    list-style-type: none;
}

.listitem {
    display: flex;
    /* height: 31px; */
    padding-top: 8px;
    flex-direction: column;
    gap: 8px;
    color: #6B3717;
    font-family: Hurson;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    text-wrap: nowrap;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.listitem div {
    height: 1px;
    background-color: #6B3717;
    width: 0;
    transition: all 200ms ease-in;
}

.listitem:hover div {
    width: 100%;
}

.listitem .star1 {
    position: absolute;
    right: calc(60% - 12px);
    top: 0;
    opacity: 0;
    transition: all 200ms ease-in;
}

.listitem:hover .star1 {
    top: -8px;
    opacity: 1;
}

.listitem .star2 {
    width: 7px;
    position: absolute;
    right: calc(50% - 12px);
    top: 4px;
    opacity: 0;
    transition: all 250ms ease-in;
}

.listitem:hover .star2 {
    top: -8px;
    opacity: 1;
}

.hero {
    height: 514px;
    width: 100%;
    max-width: 795px;
    margin: 0 auto;
    display: flex;
    position: relative;
    /* margin-top:180px;; */
}

.herocharacter {
    z-index: 2;
    position: relative;
    bottom: -124px;
    height: 333px;
}

.herocharacter img {
    width: 777px;
    height: auto;
    align-self: flex-start;
    animation: floatrotate 3s ease-in-out infinite;
}

@keyframes floatrotate {
    0% {
        transform: rotate(0) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(10px);
    }
    100% {
        transform: rotate(0) translateY(0);
    }
}

.centerflex {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.topcards {
    position: absolute;
    height: 87px;
    top: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

.topcards img {
    width: 400px;
}
.slogan{
    position: absolute;
    top: 45px;
    left: 18px;
    z-index: -1;
}
.slogan img{
    height: 186px;
}
.toprightcard{
    position: absolute;
    top: 42px;
    right: 0;
    justify-content: flex-end;
    animation: floatrotate 3s ease-in-out infinite;
}
.topleftcard{
    position: absolute;
    top: 42px;
    justify-content: flex-start;
}
.toprightcard img{
    height: 145px;
}
.mainbuttoncontainer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 78px;
}

.mainbutton {
    display: flex;
    max-width: 417px;
    padding: 16px 100px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #6B3717;
    background: #6B3717;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-wrap: nowrap;
}

.elipsehover1 {
    position: absolute;
    top: 100%;
    z-index: -1;
    border-radius: 690px;
    background: #EDE5D8;
    width: 417px;
    height: 417px;
    transition: all 250ms ease-in-out;
}
.mainbutton:hover {
    box-shadow: 2px 2px 8.9px 0 rgba(0, 0, 0, 0.15);;
}
.mainbutton:hover .elipsehover1 {
    top: -140px;
}

.mainbutton:hover h5 {
    color: #814022;
}

.flavour1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* height: 586px; */
    height: auto;
    /* max-width: 1280px; */
    padding: 76px 100px 0 100px;
    flex-shrink: 0;
    background: #814022;
    position: relative;
    overflow: hidden;
    z-index: 3;
    box-sizing: border-box;
}
.rectanglehover, .rectanglehover2 {
    width: 0;
    height: 100%;
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    opacity: 1;
    background: inherit;
    transition: all 350ms ease-in-out;
}
.flavour1 .rectanglehover {
    background-color: #EDE5D8;
}

.headingflex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    justify-self: center;
    text-align: center;
    gap: 3px;
    padding: 42px 22px;
    margin: 0 auto;
}
.character{
    position: absolute;
    opacity: 0;
    height: 400px;
    mix-blend-mode: normal;
    transform: rotate(0);
    transition: all 400ms ease-in-out 250ms;
    z-index: -1;
}
.character{
    position: absolute;
    opacity: 0;
    height: 400px;
    mix-blend-mode: normal;
    transform: rotate(0);
    transition: all 400ms ease-in-out 250ms;
    z-index: -1;
}
.characterflav1{
    height: auto;
    opacity: 0.2;
}
.flavour1 .character{
    position: absolute;
    right: -100px;
    width: 542px;
    transform: rotate(9deg);
    opacity: 0;
    top: 0;
}
.flavour_card{
    display: flex;
    align-items: center;
    gap: 10px;
}
.flavour1 .flavour_card{
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.flavour1:hover .flavour_card{
    /* opacity: 1; */
    left: 0;
}
.flavour_description_container{
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 48px;
    
}
.handscribble{
    position: relative;
    max-width: 100px;
    text-wrap: wrap;
    height: 21px;
    display: flex;
    gap: 4px;
    color: #6B3717;
    font-family: "TT Polls Script Trial";
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.1px;
}
.flavour_description{
    display: flex;
    max-width: 400px;
    flex-direction: column;
    /* margin: 21px 0 21px 0; */
    margin: 21px 0 0 0;
    gap: 12px;
}
.icecream{
    width: 203px;
    height: auto;
    align-self: flex-end;
}
.icecream1{
        border-radius: 0 142px 0 0;
}
/* BUTTON2DARK */
.secondarybutton { 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 42px 12px 42px;
    width: fit-content;
    margin-top: 12px;
    color: #EDE4DB;
    font-family: AstoriaRoman;
    font-size: 20px;
    font-weight: 400;
    border-radius: 100px;
    border: 1px solid #6B3717;
    background: #6B3717;
    overflow: hidden;
}
.secondarybutton h5 {
    color: #EDE4DB;
    position: relative;
    font-weight: 300;
    z-index: 2;
    transition: all 200ms ease-in;
}
.secondarybutton div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: #EDE4DB;
    border-radius: 50%;
    z-index: 1;
    transition: all 250ms ease-in-out;
}

.secondarybutton:hover div {
    top: -100%;
}

.secondarybutton:hover {
    box-shadow: 2px 2px 8.9px 0 rgba(0, 0, 0, 0.15);
}
.secondarybutton:hover h5 {
    color: #6B3717;
}
.phonebutton {
    margin: 0;
    border-radius: 18px;
    background: #6B3717;
    display: flex;
    padding: 6px 14px 4px 14px;
    gap: 5px;
    color: #EDE5D8;
    font-family: 'Astoria';
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.18px;
    max-width: 67px;
}
.phonebutton .img2 {
    display: none;
    height: 19px;
}
.phonebutton:hover .img1 {
    display: none;
}
.phonebutton:hover .img2 {
    display: inline-block;
    z-index: 3;
}
.phonebutton h5{
    font-weight: 400;
}
/* BUTTON2LIGHT */
.secondarybuttonlight{
    background-color: #EDE4DB;
}
.secondarybuttonlight div{
    background-color: #6B3717;
}
.secondarybuttonlight h5 {
    color: #6B3717;
}
.secondarybuttonlight:hover h5 {
    color: #EDE4DB;
}
.secondarybuttonlight:hover {
    border-color: #EDE4DB;
    box-shadow: 4px 4px 14.8px 0 rgba(255, 255, 255, 0.15);
}
/* FLAVOUR2 */
.flavour2{
    background: #EEC2DA;
    color: #EDE4DB;
}
.flavour2 .flavour_card{
    flex-direction: row-reverse;
    opacity: 0;
}
.flavour2 h6, .flavour2 h2{
    color: #EDE4DB;
}
.flavour2 .character{
    left: 100px;
    top: 0;
    height: 400px;
    width: auto;
    /* opacity: 1; */
}
.flavour2 .flavour_description{
    align-items: flex-end;
    color: #EDE4DB;
}
.flavour2 .handscribble{
    flex-direction: row-reverse;
    align-self: flex-end;
    color: #EDE4DB;
}
.flavour2 .rectanglehover2{
    background: #814022;
}
.flavour3 .rectanglehover2{
    background-color: #EEC2DA;
}
.flavour3 .character{
    width: auto;
    bottom: -20px;
    right: 70px;
    top: unset;
}
.flavour4 .rectanglehover2{
    background-color: #6B3717;
}
.flavour4{
    background-color: #EDE4DB;
}
.flavour4 .character{
    width: 340px;
    top: unset;
    bottom: -30px;
    transform: none;
}
.flavour5 .character{
    right: 100px;
    top: unset;
    bottom: -50px;
    transform: none;
}
.flavour5{
    background-color:#EEC2DA;
}
.flavour5 .rectanglehover2{
    background-color: #EDE4DB;
}
.products{
    display: flex;
    flex-direction: column;
    margin: 180px 0;
}
.productsflex{
    display: flex;
    align-self: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 28px;
    padding: 0 50px;
    /* padding: 0 10px; */
    max-width: 1280px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.productcard{
    display: flex;
    width: 20%;
    min-width: 183px;
    max-width: 258px;
    padding-top: 18px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    border: 1px solid #6B3717;
    position: relative;
    overflow: hidden;
    background: #EDE4DB;
    font-family: Hurson;
    padding-top: 33px;
}
.productimg{
    height: 146px;
    width: auto;
    transform: rotate(0);
    z-index: 4;
    padding-bottom: 8px;
}
.product_bg{
    position: absolute;
    height: 212px;
    top: 0;
    left: -51px;
    mix-blend-mode: multiply;
    opacity: 0.4;
}
.bgshadow{
    width: 140px;
    height: 160px;
    position: absolute;
    z-index: 1;
    left: 18%;
    top: 12%;
    opacity: 0.4;
}
.bgshadow2{
    width: 150px;
    height: 150px;
    opacity: 0.1;
}
.productcard:hover .bgshadow2{
    opacity: 0.2;
}
.product_name{
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: flex-end;
    align-self: stretch;
    border-top: 1px solid #6B3717;
    background: #EDE4DB;
    position: relative;
    overflow: hidden;
}
.product_name h4{
    position: relative;
    z-index: 2;
    font-weight: 200;
}
.elipsehover2 {
    position: absolute;
    top: 100%;
    z-index: 1;
    border-radius: 50%;
    background: #814022;
    width: 317px;
    height: 317px;
    transition: all 250ms ease-in-out;
}
.productcard:hover .product_name .elipsehover2{
    top: -100px;
}
.productcard:hover .productimg{
    transform: rotate(5deg);
}
.productcard:hover .product_name h4{
    color: #EDE4DB;
    font-weight: 200;
}
.productcard:hover .product_bg{
    top: -10px;
}

.tag{
    display: flex;
    padding: 8px 32px 8px 17px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 0;
    color: #EDE4DB;
    border-radius: 0 21px;
    background: #DD1E0E;
    text-align: center;
    font-family: Hurson;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
}
.about{
    padding: 0 33px;
    margin: 0 auto 180px auto;
    width: 100%;
    max-width: 1180px;
    box-sizing: border-box;
}
.about_card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 50px;
    border: 1px solid #6B3717;
    background: #EDE4DB;
}
.about_cardflex{
    display: flex;
    flex-direction: row;
    /* padding: 20px 20px; */
    padding: 56px 60px;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.about_cardimgcontainer{
    width: 100%;
    max-width: 406px;
    display: flex;
    justify-content: flex-start;
    border-radius: 40px;
    border: 1px solid #6B3717;
    background: #EEC2DA;
    overflow: hidden;
    min-width: 300px;
    /* animation: imgslider 9s ease-in infinite; */
     
}
.about_cardimgcontainer img{
    height: 450px;
    width: auto;
    position: relative;
    left: 0;
    animation: slide 9s infinite ease-in-out;
}
@keyframes slide {
   0%, 30% {
    left: 0;
  }
  33%, 63% {
    left: -387px;
  }
  66%, 96% {
    left: -850px;
  }
  100% {
    left: 0;
  }
}
@keyframes imgslider {
  0%, 30% {
    justify-content: flex-start;
  }
  33.33%, 63.33% {
    justify-content: center;
  }
  66.66%, 96.66% {
    justify-content: flex-end;
  }
  100% {
    justify-content: flex-start;
  }
}
.about_cardfooter{
    display: flex;
    padding: 22px 60px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid #814022;
}
.about_cardcontainer {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 464px; 
}
/* MAIN CONTENT */
.about_cardcontent,
.about_cardcontent2,
.about_cardcontent3 {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadecycle 9s infinite;
    animation-fill-mode: both;
}

/* HIDDEN CONST GHOST*/
.about_cardcontent_hidden {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 0;
    animation: none;   
    opacity: 0;
    visibility: hidden;
}

@keyframes fadecycle {
  0%, 3% { opacity: 0; }
  4%, 30% { opacity: 1; }
  33.33%, 100% { opacity: 0; }
}
/* ANIM DELAY */
.about_cardcontent2 { animation-delay: 3s; }
.about_cardcontent3 { animation-delay: 6s; }

.about_cardcontent .headingflex,
 .about_cardcontent2 .headingflex, 
 .about_cardcontent3 .headingflex {
    text-align: left;
    padding: 0;
    margin: 0;
}
.about_cardcontent .headingflex h1,
.about_cardcontent2 .headingflex h1,
.about_cardcontent3 .headingflex h4{
    align-self: flex-start;
}
.arrowbox{
    width: 108px;
    display: flex;
}
.arrowright{
    display: flex;
    align-items: flex-end;
}
.arrowcontainer{
    width: 108px;
    height: 32px;
    overflow: hidden;
}
.arrowcontainer2{
    display: flex;
    justify-content: right;
}
.arrowcontainer:hover{
    width: 80px;
}
.arrowcontainer img{
    width: 108px;
    height: 22px;
}
.progressdots{
    display: flex;
    align-items: center;
    gap: 7px;
}
.progressdots div{
    border-radius: 50%;
    background-color: #6B3717;
}
.dot1{
    width: 14px;
    height: 14px;
}
.dot2{
    width: 11px;
    height: 11px;
}
.dot3{
    width: 11px;
    height: 11px;
}
.journey_wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: clip;
}
.journey{
    display: flex;
    padding: 40px  100px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* overflow: hidden; */
    max-width: 1280px;
    margin: 0 auto 180px auto;
}
.journey_headingcontainer{
    display: flex;
    padding-top: 20px;
    padding-left: 110px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: fit-content;
    position: relative;
}
.journey_headingcontainer .star1{
    width: 51px;
    height: 51px;
    position: absolute;
    bottom: 90%;
    left: calc(65% - 51px );
}
.journey_headingcontainer .star2{
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: 90%;
    left: calc(75% - 51px );
}
.journey_content{
   display: flex;
   flex-direction: column;
   gap: 26px; 
}
.journey_contentflex{
    display: flex;
    align-items: center;
    gap: 25px;
    align-self: stretch;
}
.journey_cardflex{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
}
.journey_timeline{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.journey_timeline .star{
    width: 56px;
}
.stroke{
    width: 18px;
}
.journey_card{
    display: flex;
    padding: 34px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid #6B3717;
    background: #EDE4DB;
    max-width: 522px;
}
.journey_card h2{
    font-family: Astoria;
    font-weight: 400;
}
.parachute_container{
    width: 566px;
    height: 969px;
    position: relative;
}
.parachute_container img{
    width: 710px;
    position: absolute;
    top: 33px;
    left: 15px;
    animation: float2 3s ease-in-out infinite;
}
@keyframes float2 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}

.footer{
    display: flex;
    width: 100%;
    padding: 131px 0 140px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 51px;
    max-width: 1280px;
    box-sizing: border-box;
    background: #EDE5D8;
    position: relative;
    z-index: 999;
}
.cloud1{
    position: absolute;
    width: 1477px;
    height: 491px;
    right: -577px;
    top: -371px;
    z-index: 5;
}
.cloud2{
    position: absolute;
    width: 797.205px;
height: 245.23px;
    left: -293px;
    top: -195px;
    z-index: 5;
}
.footer_contentflex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    max-width: 660px;
    padding-top: 51px;
}
.footer_list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}
.footer_list2{
    padding-top: 18px;
}
.footer_list ul{
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.footer_list .listitem{
    font-family: AstoriaRoman;
    font-size: 14px;
    height: 24px;
    gap: 0px;
    padding-top: 0;
}
.footer_wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    background: #EDE4DB;
    overflow-x: clip;
}
.footer_border{
    width: 100%;
    height: 5px;
}
.footer_logo{
    width: 173px;
}
.footer_slogan{
    width: 180px;
    height: 69px;
}
.footer_iconsflex{
    display: flex;
    gap:7px;
}
.footer_icon{
    display: flex;
    width: 24px;
    height: 24px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    background-image: url(public/images/instagram2.svg);
    background-position: center;
    background-size: contain;
    box-sizing: border-box;
    border-radius: 50%;
    border: 0.75px solid #6B3717;
    background-size: inherit;
    background-repeat: no-repeat;
}
.footer_icon2{
    background-image: url(public/images/facebook2.svg);
}
.footer_icon3{
    background-image: url(public/images/talabat2.svg);
}
.footer_icon img{
    height: 12px;
    width: auto;
    opacity: 0;
}
.footer_icon:hover img{
    opacity: 1;
}
.footer_icon:hover{
    border-radius: 15px;
    border: 0.75px solid #EDE4DB;
    background-color: #814022;
    box-shadow: 4px 4px 14.8px 0 rgba(0, 0, 0, 0.15);
}
.footer .phonebutton{
    border-radius: 18px;
    background: none;
    gap: 5px;
    color: #6B3717;
    font-size: 24px;
    align-self: flex-start;
    padding: 0;
}