@font-face {
  font-family: "icomoon";
  src: url("media/fonts/icomoon.eot?6o5o3n");
  src: url("media/fonts/icomoon.eot?6o5o3n#iefix") format("embedded-opentype"),
    url("media/fonts/icomoon.ttf?6o5o3n") format("truetype"),
    url("media/fonts/icomoon.woff?6o5o3n") format("woff"),
    url("media/fonts/icomoon.svg?6o5o3n#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Lale;
  src: url(./media/fonts/Digi\ Lalezar\ Plus\ Circle.ttf);
}
@font-face {
  font-family: Sans;
  src: url(./media/fonts/IRANSansFaNum.ttf);
}
* {
  box-sizing: border-box;
}

body {
  font-family: Lale;
  direction: rtl;
  margin: 0px;
}

/* Style the header */
.box {
  background-color: #f1f1f1;
  padding: 0 0 90px 0;
  text-align: center;
  font-size: 35px;
}
.text-box {
  display: flex;
  padding: 30px;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  gap: 48px;
  color: white;
  border: none;
  background-color: var(--surface-200);
}
.mealprep-box {
  display: flex;
  padding: 84px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
}
.blog-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 84px 0;
}
.blogs-box {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  overflow-x: scroll;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.blogs-box::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.blogs-box {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.blogs-box > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 240px;
}
.features-text {
  display: flex;
  padding: 30px;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  gap: 48px;
  border: none;
  color: var(--surface-300);
}
.invitation-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  width: 100%;
  height: max-content;
  background-repeat: no-repeat;
  background-position: center;
}
.invitation-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 84px;
  right: 210px;
  padding: 40px 40px 64px 40px;
  background-color: white;
  border-radius: 30px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

/* Left and right column */
.column.side {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: min-content;
  height: min-content;
}

/* Middle column */
.column.middle {
  -webkit-flex: 1.2;
  -ms-flex: 1.2;
  flex: 1.2;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 64px;
}

.navbar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: Sans;
  font-size: small;
  margin-bottom: 52px;
}
.nav-item {
  padding: 20px;
  color: var(--primary-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: Sans;
}
.nav-item:hover {
  background-color: var(--secondary-50);
}
.nav-item-darkmode {
  padding: 20px;
  color: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: Sans;
}
.nav-item-darkmode:hover {
  background-color: var(--primary-100);
}
.padding32 {
  padding: 32px;
}
.padding24 {
  padding: 24px;
}
/* Typography */
.big-1 {
  font-size: 40px;
}
.tx-xlg {
  font-size: 32px;
}
.tx-lg {
  font-size: 24px;
}
.tx-md {
  font-size: 20px;
}
/* Color */
.primary-100 {
  color: var(--primary-100);
}
.primary-200 {
  color: var(--primary-200);
}
.primary-300 {
  color: var(--primary-300);
}
.b-surface-300 {
  background-color: var(--surface-300);
}
/* Atoms */
a {
  text-decoration: none;
  color: inherit;
}
p {
  margin: 0;
}
/* user feedback */
.user-box {
  margin: 24px 0px 52px 24px;
  border-radius: 30px;
  padding: 14px 20px;
  background-color: var(--surface-100);
}

.profile-pic {
  float: right;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.name {
  font-family: Sans;
  font-size: 18px;
  margin: 20px 12px;
}

.arrow-buttons {
  display: flex;
  float: left;
  gap: 8px;
}

.arrow-button {
  width: 32px; /* adjust this to your desired size */
  height: 32px;
  background-color: white;
  color: var(--surface-300);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.arrow-button:hover {
  background-color: var(--secondary-200);
  color: white;
}

.text {
  font-family: Sans;
  font-size: 16px;
  margin-top: 20px;
}
.primary-button {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background-color: var(--primary-200);
  border: none;
  border-radius: 20px;
  color: white;
  font-family: Lale;
  font-size: 20px;
  cursor: pointer;
}
.primary-button:hover {
  background-color: var(--secondary-200);
  box-shadow: var(--green-shadow);
}
.secondary-button {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background-color: var(--primary-200);
  border: none;
  border-radius: 18px;
  color: white;
  font-family: Lale;
  font-size: 16px;
  cursor: pointer;
}
.secondary-button:hover {
  background-color: var(--secondary-200);
  box-shadow: var(--green-shadow);
}
.black-secondary-button {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background-color: var(--surface-300);
  border: none;
  border-radius: 18px;
  color: white;
  font-family: Lale;
  font-size: 16px;
  cursor: pointer;
}
.black-secondary-button:hover {
  background-color: var(--secondary-200);
  box-shadow: var(--green-shadow);
}
.icony-button {
  font-family: Sans;
  font-size: 16px;
  color: var(--primary-200);
  cursor: pointer;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background-color: var(--surface-100);
  border: #e6e6e6 solid 1px;
  border-radius: 16px;
}
.icony-button:hover {
  background-color: var(--secondary-50);
  /* color: var(--secondary-300); */
}
.feature-item {
  font-family: Sans;
  font-size: 16px;
  cursor: pointer;
  padding: 12px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  gap: 24px;
  border-radius: 16px;
  background-color: white;
}
/* .feature-item:hover {
  padding: 14px;
  background-color: var(--secondary-50);
} */

/* mealprep explain */
.side-textbox {
  background-color: var(--surface-100);
  padding: 32px 32px 32px 92px;
  border-radius: 30px 0 0 30px;
  font-family: Sans;
}
/* footer */
.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 36px;
  background-color: var(--primary-200);
}
.footer-container > div {
  display: flex;
  color: white;
  align-items: center;
}
.contact-icon {
  font-size: 32px;
  padding: 12px;
  margin-right: 4px;
  border-radius: 20px;
}
.contact-icon:hover {
  background-color: var(--primary-100);
}

.features-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-content: center;
}
.features-right-box {
  display: flex;
  flex-direction: column;
  padding: 32px 20px 32px 18px;
  border-radius: 0 30px 30px 0;
  background-color: white;
  height: 370px;
}
.features-left-box {
  display: grid;
  grid-template-columns: auto auto auto;
  border-radius: 30px 0 0 30px;
  height: 370px;
  gap: 10px;
}

.features-left-box > div {
  text-align: center;
  height: 180px;
}

.icon-Info-Square {
  padding: 4px;
  border-radius: 10px;
}
.icon-Info-Square:hover {
  background-color: var(--secondary-50);
  color: var(--secondary-300) !important;
}


.navbar-list .icon {
  display: none;
  margin-bottom: 52px;
}

@media screen and (max-width: 800px) {
  .navbar-list div:not(:first-child) {display: none;}
  .navbar-list a.icon {
    display: block;
    position: absolute;
    left: 24px;
    top: 24px;
  }
}

@media screen and (max-width: 800px) {
  .navbar-list.responsive {position: relative;}
 
  .navbar-list.responsive .icon {
    position: block;
    left: 0;
    top: 0;
  }
  .navbar-list {
    display: block;
  flex-wrap: wrap;
  align-items: center;
  font-family: Sans;
  font-size: small;
  margin-bottom: 36px;
  }
  .navbar-list.responsive div:not(:first-child) {
    float: none;
    display: block;
    text-align: right;
  background-color: var(--surface-100);
  margin-bottom: 8px;
  }
  .navbar-list.responsive div:not(:first-child):hover {
  background-color: var(--secondary-50);
  }
  
  .side {display: none;}
  .invitation-container {
    padding: 24px;
  }
  .invitation-container img {width: 100%;margin-bottom: 14px;border-radius: 30px;}
  .invitation-box {
  position: relative;
  right: 0;
  top: 0;
  padding: 0;
  margin-bottom: 14px;
    width: 100%;
}
 .invitation-box div div:first-child {
  font-size: 32px !important;
  text-align: center;
}
.invitation-box div div:nth-child(2) {
  font-size: 20px !important;
  text-align: center;
}
.icony-button {
  font-size: 14px;
  padding: 14px;
  gap: 0px;
  /* border-radius: 16px; */
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-container > div:not(:first-child) {
  display: block;
}
.nav-item-darkmode {
  background-color: var(--primary-100);
  margin-bottom: 8px;
}
.nav-item-darkmode:hover{
  background-color: var(--secondary-200);
}
.contact-icon-container {
  display: flex !important;
  justify-content: space-between !important;
}
.contact-icon {
  background-color: var(--primary-100);
}
.contact-icon:hover{
  background-color: var(--secondary-200);
}
h3 {
  font-size: 32px;
}
.mealprep-box {
  display: block;
  padding: 24px;
  margin: 48px 0 48px 0;
}
.mealprep-box > div > img{
  width: 100%;
  border-radius: 30px;
  margin-bottom: 14px;
}

.side-textbox {
  padding: 0px;
  background-color: transparent;
  border-radius: 0 0 30px 30px;
  height: initial !important;
}
.side-textbox > div {
  font-size: 16px;
}
.secondary-button {
  width: 100%;
  padding: 14px 20px;
  font-size: 20px;
}
.features-text {
  padding-top: 52px;
}
.features-container {
  flex-direction: column-reverse;
}
.features-left-box {
  grid-template-columns: auto auto;
  height: initial;
  padding: 0 24px;
}
.features-left-box div img{
  border-radius: 30px;
}
.features-right-box {
  background-color: transparent;
}
.feature-item {
  background-color: transparent;
  margin-bottom: 8px;
}




/* .footer-container div div{
font-size: 24px !important;
} */
/* .mealprep-box{
  display: none;
}
.box{
  display: none;
} */



}

:root {
  /* Color */
  --primary-50: hsl(240, 84%, 94%);
  --primary-100: hsl(240, 84%, 78%);
  --primary-200: hsl(240, 84%, 67%);
  --primary-300: hsl(240, 84%, 24%);

  --secondary-50: hsl(184, 79%, 94%);
  --secondary-100: hsl(184, 79%, 65%);
  --secondary-200: hsl(184, 79%, 53%);
  --secondary-300: hsl(184, 79%, 24%);

  --surface-50: hsl(220, 100%, 100%);
  --surface-100: hsl(220, 0%, 97%);
  --surface-200: hsl(220, 6%, 50%);
  --surface-300: hsl(220, 6%, 26%);

  /* Shadow */
  --green-shadow: 0px 0px 10px hsla(184, 79%, 65%, 0.25);

  /* Border */
  --border-sm: 4px solid white;
  --border-lg: 6px solid white;

  /* Radius */
  --radius-sm: 24px;
  --radius-md: 32px;
  --radius-lg: 40px;

  /* Fonts */
  --text-6xl: 48px;
  --height-6xl: 58px;

  --text-5xl: 40px;
  --height-5xl: 52px;

  --text-4xl: 36px;
  --height-4xl: 48px;

  --text-3xl: 24px;
  --height-3xl: 32px;

  --text-base: 16px;
  --height-base: 24px;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  /* speak: never; */
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "\e93a";
}
.icon-User:before {
  content: "\e900";
}
.icon-User1:before {
  content: "\e901";
}
.icon-Activity:before {
  content: "\e902";
}
.icon-Add-User:before {
  content: "\e903";
}
.icon-Down-2:before {
  content: "\e904";
}
.icon-Down-3:before {
  content: "\e905";
}
.icon-Down-Circle:before {
  content: "\e906";
}
.icon-Down-Square:before {
  content: "\e907";
}
.icon-Down:before {
  content: "\e908";
}
.icon-Left-2:before {
  content: "\e909";
}
.icon-Left-3:before {
  content: "\e90a";
}
.icon-Left-Circle:before {
  content: "\e90b";
}
.icon-Left-Square:before {
  content: "\e90c";
}
.icon-Arrow--Left:before {
  content: "\e90d";
}
.icon-Right-2:before {
  content: "\e90e";
}
.icon-Right-3:before {
  content: "\e90f";
}
.icon-Right-Circle:before {
  content: "\e910";
}
.icon-Right-Square:before {
  content: "\e911";
}
.icon-Arrow--Right:before {
  content: "\e912";
}
.icon-Up-2:before {
  content: "\e913";
}
.icon-Up-3:before {
  content: "\e914";
}
.icon-Up-Circle:before {
  content: "\e915";
}
.icon-Up-Square:before {
  content: "\e916";
}
.icon-Arrow--Up:before {
  content: "\e917";
}
.icon-Bag-2:before {
  content: "\e918";
}
.icon-Bookmark:before {
  content: "\e919";
}
.icon-Buy:before {
  content: "\e91a";
}
.icon-Calendar:before {
  content: "\e91b";
}
.icon-Call-Missed:before {
  content: "\e91c";
}
.icon-Call-Silent:before {
  content: "\e91d";
}
.icon-Call:before {
  content: "\e91e";
}
.icon-Calling:before {
  content: "\e91f";
}
.icon-Camera:before {
  content: "\e920";
}
.icon-Category:before {
  content: "\e921";
}
.icon-Chart:before {
  content: "\e922";
}
.icon-Chat:before {
  content: "\e923";
}
.icon-Close-Square:before {
  content: "\e924";
}
.icon-Danger-Square:before {
  content: "\e925";
}
.icon-Danger-Triangle:before {
  content: "\e926";
}
.icon-Delete:before {
  content: "\e927";
}
.icon-Discount:before {
  content: "\e928";
}
.icon-Discovery:before {
  content: "\e929";
}
.icon-Document:before {
  content: "\e92a";
}
.icon-down:before {
  content: "\e92b";
}
.icon-Download:before {
  content: "\e92c";
}
.icon-Edit-Square:before {
  content: "\e92d";
}
.icon-Edit:before {
  content: "\e92e";
}
.icon-Filter-2:before {
  content: "\e92f";
}
.icon-Filter:before {
  content: "\e930";
}
.icon-Folder:before {
  content: "\e931";
}
.icon-Game:before {
  content: "\e932";
}
.icon-Graph:before {
  content: "\e933";
}
.icon-Heart:before {
  content: "\e934";
}
.icon-Hide:before {
  content: "\e935";
}
.icon-Home:before {
  content: "\e936";
}
.icon-Image-2:before {
  content: "\e937";
}
.icon-Image:before {
  content: "\e938";
}
.icon-Info-Square:before {
  content: "\e939";
}
.icon-left:before {
  content: "\e93b";
}
.icon-Location:before {
  content: "\e93c";
}
.icon-Lock:before {
  content: "\e93d";
}
.icon-Login:before {
  content: "\e93e";
}
.icon-Logout:before {
  content: "\e93f";
}
.icon-Message:before {
  content: "\e940";
}
.icon-More-Circle:before {
  content: "\e941";
}
.icon-More-Square:before {
  content: "\e942";
}
.icon-Notification:before {
  content: "\e943";
}
.icon-Paper-Download:before {
  content: "\e944";
}
.icon-Paper-Fail:before {
  content: "\e945";
}
.icon-Paper-Negative:before {
  content: "\e946";
}
.icon-Paper-Plus:before {
  content: "\e947";
}
.icon-Paper-Upload:before {
  content: "\e948";
}
.icon-Paper:before {
  content: "\e949";
}
.icon-Password:before {
  content: "\e94a";
}
.icon-Play:before {
  content: "\e94b";
}
.icon-Plus:before {
  content: "\e94c";
}
.icon-Profile:before {
  content: "\e94d";
}
.icon-right:before {
  content: "\e94e";
}
.icon-Scan:before {
  content: "\e94f";
}
.icon-Search:before {
  content: "\e950";
}
.icon-Send:before {
  content: "\e951";
}
.icon-Setting:before {
  content: "\e952";
}
.icon-Shield-Done:before {
  content: "\e953";
}
.icon-Shield-Fail:before {
  content: "\e954";
}
.icon-Show:before {
  content: "\e955";
}
.icon-Star:before {
  content: "\e956";
}
.icon-Swap:before {
  content: "\e957";
}
.icon-Tick-Square:before {
  content: "\e958";
}
.icon-Ticket-Star:before {
  content: "\e959";
}
.icon-Ticket:before {
  content: "\e95a";
}
.icon-Time-Circle:before {
  content: "\e95b";
}
.icon-Time-Square:before {
  content: "\e95c";
}
.icon-Unlock:before {
  content: "\e95d";
}
.icon-up:before {
  content: "\e95e";
}
.icon-Upload:before {
  content: "\e95f";
}
.icon-Video:before {
  content: "\e960";
}
.icon-Voice-2:before {
  content: "\e961";
}
.icon-Voice:before {
  content: "\e962";
}
.icon-Volume-Down:before {
  content: "\e963";
}
.icon-Volume-Off:before {
  content: "\e964";
}
.icon-Volume-Up:before {
  content: "\e965";
}
.icon-Wallet:before {
  content: "\e966";
}
.icon-Work:before {
  content: "\e967";
}
