/*!
Theme Name: Theme boilerplate
Theme URI: https://github.com/melvinlemoine/WordPress-theme-boilerplate
Author: Melvin Lemoine
Author URI: https://melvin.studio
Description: Let's create a new theme !
Version: 1.6.1
*/
@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
body {
  font-family: Nunito, sans-serif;
  background: #fff3e4;
  height: 200vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.red {
  background: red;
}

.ff-custom-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  font-size: 18px;
  color: #fff;
  font-family: inherit;
  box-shadow: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  margin-bottom: 1rem;
}
.ff-custom-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.ff-custom-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px #fcf48d;
}

.ff-custom-button {
  background: #fcf48d;
  color: #2F3D3F;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.2s ease, filter 0.2s ease;
  font-family: inherit;
}
.ff-custom-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.nav_image {
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 10001;
}
.nav_toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}
.nav_toggle span {
  width: 30px;
  height: 3px;
  background: #fcf48d;
  border-radius: 2px;
}
.nav_list {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  height: 100vh;
  background: #2F3D3F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 10000;
}
.nav_list.is-active {
  transform: translateX(0);
}
.nav_list_item a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}
.nav_sm {
  display: none;
  flex-shrink: 0;
}
.nav_sm_item a {
  display: inline-block;
}
.nav_sm_item img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav_list_item a {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .nav {
    height: 100px;
    padding: 0 3rem;
    justify-content: flex-start;
    gap: 4rem;
  }
  .nav_image {
    height: 55%;
  }
  .nav_toggle {
    display: none;
  }
  .nav_list {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    gap: 4rem;
    transform: none;
    transition: none;
  }
  .nav_sm {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
  }
  .nav_sm_item a {
    transition: filter 0.2s ease;
  }
  .nav_sm_item a:hover {
    filter: drop-shadow(0 0 2px #fcf48d);
  }
}
@media (min-width: 1440px) {
  .nav {
    padding: 0 3rem;
    justify-content: center;
    gap: 8rem;
  }
  .nav_list {
    gap: 8rem;
  }
  .nav_list_item a {
    font-size: 24px;
    transition: text-shadow 0.2s ease;
  }
  .nav_list_item a:hover {
    text-shadow: 0 0 10px #fff;
  }
  .nav_sm {
    margin-left: 0;
  }
}

.footer {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem) 0;
  background-color: #fcf48d;
  color: #2F3D3F;
}
.footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 992px) {
  .footer_flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
}
.footer_flex_left_logo {
  width: clamp(150px, 15vw, 220px);
  height: auto;
  margin-bottom: 1.5rem;
}
.footer_flex_left_list {
  list-style: none;
  padding: 0;
}
.footer_flex_left_list_item {
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 500;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}
.footer_flex_left_list_item:hover {
  color: #D1F2F1;
  transform: translateX(8px);
}
@media (max-width: 992px) {
  .footer_flex_left_list_item:hover {
    transform: translateY(-3px);
  }
}
.footer_flex_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 992px) {
  .footer_flex_right {
    align-items: center;
    text-align: center;
  }
}
.footer_flex_right_sm {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.footer_flex_right_sm_link a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer_flex_right_sm_link a:hover {
  transform: scale(1.2) rotate(5deg);
}
.footer_flex_right_sm_link img {
  width: 32px;
  height: 32px;
}
.footer_flex_right_coords {
  list-style: none;
  padding: 0;
}
.footer_flex_right_coords_item {
  font-size: clamp(16px, 1.1vw, 18px);
  margin-bottom: 0.5rem;
}
.footer_flex_right_coords_item:nth-child(2) {
  font-weight: 800;
  font-size: clamp(20px, 1.5vw, 24px);
  transition: color 0.3s ease;
}
.footer_flex_right_coords_item:nth-child(2):hover {
  color: #D1F2F1;
}
.footer_bottom {
  border-top: 1px solid rgba(45, 61, 47, 0.1);
  padding-top: 2rem;
}
.footer_bottom_list {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  list-style: none;
  padding: 0;
}
@media (max-width: 600px) {
  .footer_bottom_list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer_bottom_list_item {
  font-size: clamp(12px, 0.9vw, 14px);
  opacity: 0.8;
}
.footer_bottom_list_item a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.footer_bottom_list_item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #2F3D3F;
  transition: width 0.3s ease;
}
.footer_bottom_list_item a:hover::after {
  width: 100%;
}

.home .main_hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem 3rem;
}
.home .main_hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(87.465deg, rgba(0, 0, 0, 0.8) 0%, rgba(12, 12, 12, 0.77) 31%, rgba(29, 29, 29, 0.74) 41%, rgba(47, 47, 47, 0.7) 68%, rgba(98, 98, 98, 0.6) 100%);
  z-index: 2;
  border-radius: 0 0 100px 0;
}
.home .main_hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0 0 100px 0;
  filter: blur(4px);
}
.home .main_hero_content {
  padding: 6rem 0 0 0;
  position: relative;
  z-index: 4;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
.home .main_hero_content_up {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home .main_hero_content_up_uppercase {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: #fcf48d;
}
.home .main_hero_content_up_title {
  font-weight: bold;
  font-size: 36px;
  max-width: 100%;
  line-height: 1.2;
}
.home .main_hero_content_down {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home .main_hero_content_down_title {
  font-weight: 500;
  font-size: 20px;
  color: #A2BAA9;
  line-height: 1.3;
}
.home .main_hero_content_down_points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.home .main_hero_content_down_points_point {
  font-weight: 500;
  padding: 1rem;
  font-size: 16px;
  background-color: rgba(162, 186, 169, 0.25);
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.home .main_hero_content_down_points_point:hover {
  transform: translateX(8px);
  background-color: rgba(162, 186, 169, 0.4);
}
.home .main_hero_content_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2F3D3F;
  background-color: #fcf48d;
  border-radius: 18px;
  padding: 1rem 4rem;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 1px 1px 20px 2px rgba(252, 244, 141, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home .main_hero_content_cta_btn:hover {
  transform: translateY(-2px);
}
.home .main_hero_content_cta_btn {
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .main_hero_content_cta_btn:hover {
  transform: scale(1.03);
  box-shadow: 1px 1px 25px 6px rgba(252, 244, 141, 0.6);
}
.home .circle.c-1 {
  position: absolute;
  height: 150px;
  aspect-ratio: 1;
  background: #FCF48D;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 3;
  pointer-events: none;
  top: 10%;
  left: -50px;
  right: auto;
  bottom: auto;
}
.home .circle.c-2 {
  position: absolute;
  height: 100px;
  aspect-ratio: 1;
  background: #7b7b7b;
  border-radius: 50%;
  opacity: 0.27;
  z-index: 3;
  pointer-events: none;
  top: 40%;
  left: 80%;
  right: auto;
  bottom: auto;
}
.home .circle.c-3 {
  position: absolute;
  height: 150px;
  aspect-ratio: 1;
  background: #7b7b7b;
  border-radius: 50%;
  opacity: 0.27;
  z-index: 3;
  pointer-events: none;
  top: auto;
  left: -50px;
  right: auto;
  bottom: 10%;
}
@media (min-width: 1024px) {
  .home .main_hero {
    height: 100vh;
    padding: 0;
  }
  .home .main_hero::after {
    border-radius: 0 0 330px 0;
  }
  .home .main_hero_bg {
    border-radius: 0 0 330px 0;
  }
  .home .main_hero_content {
    gap: 5rem;
  }
  .home .main_hero_content_up_uppercase {
    font-size: 36px;
  }
  .home .main_hero_content_up_title {
    font-size: 96px;
    max-width: 800px;
    line-height: 4lh;
  }
  .home .main_hero_content_down {
    max-width: 1000px;
  }
  .home .main_hero_content_down_title {
    font-size: 32px;
  }
  .home .main_hero_content_down_points {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .main_hero_content_down_points_point {
    padding: 1rem 1.5rem;
    font-size: 24px;
    border-radius: 18px;
  }
  .home .main_hero_content_down_points_point:hover {
    transform: translateY(-5px);
  }
  .home .main_hero_content_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2F3D3F;
    background-color: #fcf48d;
    border-radius: 18px;
    padding: 1rem 4rem;
    font-weight: bold;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 1px 1px 39px 4px rgba(252, 244, 141, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .home .main_hero_content_cta_btn:hover {
    transform: translateY(-2px);
  }
  .home .main_hero_content_cta_btn {
    width: fit-content;
  }
  .home .circle.c-1 {
    position: absolute;
    height: 400px;
    aspect-ratio: 1;
    background: #FCF48D;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 3;
    pointer-events: none;
    top: 400px;
    left: -110px;
    right: auto;
    bottom: auto;
  }
  .home .circle.c-2 {
    position: absolute;
    height: 200px;
    aspect-ratio: 1;
    background: #7b7b7b;
    border-radius: 50%;
    opacity: 0.27;
    z-index: 3;
    pointer-events: none;
    top: 250px;
    left: 1080px;
    right: auto;
    bottom: auto;
  }
  .home .circle.c-3 {
    position: absolute;
    height: 330px;
    aspect-ratio: 1;
    background: #7b7b7b;
    border-radius: 50%;
    opacity: 0.27;
    z-index: 3;
    pointer-events: none;
    top: -147px;
    left: 1630px;
    right: auto;
    bottom: auto;
  }
}
.home .main_problem {
  padding: 3rem 1.5rem;
}
.home .main_problem_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #2F3D3F;
  background: #fcf48d;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_problem_pill:hover {
  transform: rotate(-1deg);
}
.home .main_problem_pill {
  display: inline-block;
}
.home .main_problem_title {
  font-size: 32px;
  font-weight: bold;
  max-width: 100%;
  margin: 1.5rem 0;
  line-height: 1.2;
}
.home .main_problem_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.home .main_problem_grid_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid #D1F2F1;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .main_problem_grid_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.home .main_problem_grid_item_title {
  font-size: 20px;
  font-weight: bold;
  color: #2F3D3F;
}
.home .main_problem_grid_item_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.5rem;
}
.home .main_problem_grid_item_list_item {
  list-style: disc;
  font-size: 16px;
  line-height: 1.4;
}
.home .main_problem_grid_item_note {
  font-size: 16px;
  background: #D1F2F1;
  padding: 1rem;
  border-radius: 12px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .home .main_problem {
    padding: 4rem 0;
  }
  .home .main_problem_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #2F3D3F;
    background: #fcf48d;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_problem_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_problem_title {
    font-size: 64px;
    max-width: 1000px;
    margin: 1rem 0 3rem;
  }
  .home .main_problem_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .home .main_problem_grid_item {
    padding: 2rem;
    gap: 1rem;
  }
  .home .main_problem_grid_item_title {
    font-size: 24px;
  }
  .home .main_problem_grid_item_list {
    padding-left: 2rem;
  }
  .home .main_problem_grid_item_list_item {
    font-size: 24px;
  }
  .home .main_problem_grid_item_note {
    font-size: 24px;
    border-radius: 18px;
  }
}
.home .main_solution {
  padding: 3rem 1.5rem;
  position: relative;
}
.home .main_solution::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.54);
  z-index: 2;
}
.home .main_solution_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.home .main_solution_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #fcf48d;
  background: #2F3D3F;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_solution_pill:hover {
  transform: rotate(-1deg);
}
.home .main_solution_pill {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.home .main_solution_title {
  color: #fcf48d;
  font-size: 32px;
  font-weight: bold;
  margin: 1.5rem 0;
  line-height: 1.2;
  position: relative;
  z-index: 3;
}
.home .main_solution_description {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 2rem 0;
  line-height: 1.4;
  position: relative;
  z-index: 3;
}
.home .main_solution_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 3;
}
.home .main_solution_grid_item {
  background: #2F3D3F;
  width: 100%;
  padding: 1.5rem;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .main_solution_grid_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.home .main_solution_grid_item_title {
  color: #fcf48d;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.home .main_solution_grid_item_list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.home .main_solution_grid_item_list_item {
  background-size: 20px !important;
  padding-left: 28px;
  font-size: 16px;
  color: #D1F2F1;
}
.home .main_solution_grid_item_hrule {
  opacity: 0.2;
  border-radius: 4px;
  margin: 1.5rem 0;
}
.home .main_solution_grid_item_note {
  font-size: 16px;
  color: #A2BAA9;
  display: block;
}
.home .main_solution_cta {
  margin: 3rem auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}
.home .main_solution_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2F3D3F;
  background-color: #fcf48d;
  border-radius: 18px;
  padding: 1rem 4rem;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 1px 1px 20px 2px rgba(252, 244, 141, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home .main_solution_cta_btn:hover {
  transform: translateY(-2px);
}
.home .main_solution_cta_btn {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home .main_solution_cta_btn:hover {
  transform: scale(1.03);
  box-shadow: 1px 1px 25px 6px rgba(252, 244, 141, 0.6);
}
.home .main_solution_down {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}
.home .main_solution_down_title {
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
}
.home .main_solution_down_cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}
.home .main_solution_down_cards_card {
  background: #D1F2F1;
  padding: 1.5rem;
  border-radius: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .main_solution_down_cards_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.home .main_solution_down_cards_card:before {
  content: "";
  position: absolute;
  height: 100px;
  aspect-ratio: 1;
  background: #fcf48d;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 3;
  pointer-events: none;
  top: -20px;
  left: auto;
  right: -20px;
  bottom: auto;
}
.home .main_solution_down_cards_card_emoji {
  font-size: 32px;
  background: #A2BAA9;
  aspect-ratio: 1;
  padding: 1rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.home .main_solution_down_cards_card:hover .main_solution_down_cards_card_emoji {
  transform: scale(1.1) rotate(5deg);
}
.home .main_solution_down_cards_card_title {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.home .main_solution_down_cards_card_list {
  position: relative;
  z-index: 2;
}
.home .main_solution_down_cards_card_list_item {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .home .main_solution {
    padding: 6rem 0;
  }
  .home .main_solution_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #fcf48d;
    background: #2F3D3F;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_solution_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_solution_title {
    font-size: 64px;
    margin: 1rem 0 3rem;
  }
  .home .main_solution_description {
    font-size: 32px;
    margin: 0 0 4rem 0;
  }
  .home .main_solution_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
  .home .main_solution_grid_item {
    padding: 2rem;
  }
  .home .main_solution_grid_item_title {
    font-size: 24px;
  }
  .home .main_solution_grid_item_list {
    gap: 1rem;
  }
  .home .main_solution_grid_item_list_item {
    background-size: 24px !important;
    padding-left: 32px;
    font-size: 24px;
  }
  .home .main_solution_grid_item_hrule {
    margin: 1rem 0;
  }
  .home .main_solution_grid_item_note {
    font-size: 24px;
  }
  .home .main_solution_cta {
    margin: 4rem auto;
    width: fit-content;
  }
  .home .main_solution_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2F3D3F;
    background-color: #fcf48d;
    border-radius: 18px;
    padding: 1rem 4rem;
    font-weight: bold;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 1px 1px 39px 4px rgba(252, 244, 141, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .home .main_solution_cta_btn:hover {
    transform: translateY(-2px);
  }
  .home .main_solution_down {
    gap: 3rem;
    margin-top: 4rem;
  }
  .home .main_solution_down_title {
    font-size: 32px;
  }
  .home .main_solution_down_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
  .home .main_solution_down_cards_card {
    padding: 2rem;
    gap: 2rem;
    overflow: visible;
  }
  .home .main_solution_down_cards_card:before {
    position: absolute;
    height: 170px;
    aspect-ratio: 1;
    background: #fcf48d;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 3;
    pointer-events: none;
    top: -40px;
    left: auto;
    right: -40px;
    bottom: auto;
  }
  .home .main_solution_down_cards_card_emoji {
    font-size: 48px;
    padding: 1.4rem;
  }
  .home .main_solution_down_cards_card_title {
    font-size: 24px;
  }
  .home .main_solution_down_cards_card_list_item {
    font-size: 24px;
  }
}
.home .main_gains {
  padding: 3rem 1.5rem;
  text-align: center;
}
.home .main_gains_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #2F3D3F;
  background: #D1F2F1;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_gains_pill:hover {
  transform: rotate(-1deg);
}
.home .main_gains_pill {
  display: inline-block;
}
.home .main_gains_title {
  color: #2F3D3F;
  font-size: 32px;
  font-weight: bold;
  margin: 1.5rem 0;
  line-height: 1.2;
}
.home .main_gains_description {
  color: #2F3D3F;
  font-size: 18px;
  margin: 1rem 0 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.home .main_gains_image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home .main_gains:hover .main_gains_image {
  transform: translateY(-15px) scale(1.03);
}
@media (min-width: 1024px) {
  .home .main_gains {
    padding: 6rem 0;
  }
  .home .main_gains_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #2F3D3F;
    background: #D1F2F1;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_gains_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_gains_title {
    font-size: 64px;
    margin: 1rem 0 2rem;
  }
  .home .main_gains_description {
    font-size: 32px;
    margin: 2rem 0 4rem;
  }
  .home .main_gains_image {
    max-width: 900px;
  }
}
.home .main_economies {
  padding: 3rem 1.5rem;
  background: #fcf48d;
  text-align: center;
}
.home .main_economies_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #2F3D3F;
  background: #D1F2F1;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_economies_pill:hover {
  transform: rotate(-1deg);
}
.home .main_economies_title {
  font-weight: bold;
  font-size: 32px;
  color: #2F3D3F;
  margin: 1.5rem 0;
  line-height: 1.1;
}
.home .main_economies_description {
  font-weight: 600;
  font-size: 18px;
  color: #2F3D3F;
  margin: 1rem 0 2rem;
}
.home .main_economies_dropdown {
  width: 100%;
  max-width: 400px;
  background: #eae6b5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%232D3D2F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  appearance: none;
  -webkit-appearance: none;
  color: #2D3D2F;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 3rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.home .main_economies_dropdown:focus, .home .main_economies_dropdown:hover {
  outline: none;
  border-color: #D1F2F1;
  box-shadow: 0 0 10px rgba(209, 242, 241, 0.2);
}
.home .main_economies_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}
.home .main_economies_grid_item {
  background: #2F3D3F;
  padding: 1.5rem;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .main_economies_grid_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.home .main_economies_grid_item_description {
  font-size: 18px;
  color: #fcf48d;
  text-align: center;
  margin-bottom: 1.5rem;
}
.home .main_economies_grid_item_title {
  font-size: 24px;
  color: #fcf48d;
  text-align: center;
  margin-bottom: 1rem;
}
.home .main_economies_grid_item_card {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  transition: background 0.3s ease;
}
.home .main_economies_grid_item_card:hover {
  background: rgba(0, 0, 0, 0.4);
}
.home .main_economies_grid_item_card_main {
  font-size: 48px;
  text-align: center;
  color: #D1F2F1;
  font-weight: 800;
}
.home .main_economies_grid_item_card_sub {
  font-size: 16px;
  text-align: center;
  color: #D1F2F1;
  font-weight: 800;
}
.home .main_economies_grid_item_list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.home .main_economies_grid_item_list_item {
  color: #D1F2F1;
  background: #38494B;
  padding: 0.8rem 1rem 0.8rem 3.5rem;
  border-radius: 18px;
  font-size: 16px;
  background-size: 20px;
  background-position: left 1rem center;
  background-repeat: no-repeat;
}
.home .main_economies_grid_item_cta {
  margin-top: 2rem;
}
.home .main_economies_grid_item_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2F3D3F;
  background-color: #D1F2F1;
  border-radius: 18px;
  padding: 1rem 4rem;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home .main_economies_grid_item_cta_btn:hover {
  transform: translateY(-2px);
}
.home .main_economies_grid_item_cta_btn {
  display: block;
  text-align: center;
  border: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .home .main_economies {
    padding: 4rem 0;
  }
  .home .main_economies_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #2F3D3F;
    background: #D1F2F1;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_economies_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_economies_title {
    font-size: 64px;
    margin: 2rem 0;
  }
  .home .main_economies_description {
    font-size: 32px;
    margin: 1rem;
  }
  .home .main_economies_dropdown {
    padding: 1.6rem 2rem;
    font-size: 32px;
    margin: 1rem 0;
  }
  .home .main_economies_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .home .main_economies_grid_item {
    padding: 2rem;
  }
  .home .main_economies_grid_item_description {
    font-size: 32px;
    margin-bottom: 2rem;
  }
  .home .main_economies_grid_item_title {
    font-size: 40px;
  }
  .home .main_economies_grid_item_card {
    padding: 4rem;
  }
  .home .main_economies_grid_item_card_main {
    font-size: 96px;
  }
  .home .main_economies_grid_item_card_sub {
    font-size: 24px;
  }
  .home .main_economies_grid_item_list {
    gap: 1rem;
  }
  .home .main_economies_grid_item_list_item {
    padding: 1rem 1rem 1rem 4rem;
    font-size: 32px;
    background-size: 32px;
  }
  .home .main_economies_grid_item_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2F3D3F;
    background-color: #D1F2F1;
    border-radius: 18px;
    padding: 1rem 4rem;
    font-weight: bold;
    font-size: 32px;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .home .main_economies_grid_item_cta_btn:hover {
    transform: translateY(-2px);
  }
  .home .main_economies_grid_item_note {
    color: #62c1cf;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 14px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .home .main_economies_grid_item_note {
    font-size: 18px;
  }
}
.home .main_simplicity {
  padding: 3rem 1.5rem;
  background: #D1F2F1;
}
.home .main_simplicity_container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.home .main_simplicity_container_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #D1F2F1;
  background: #2F3D3F;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_simplicity_container_pill:hover {
  transform: rotate(-1deg);
}
.home .main_simplicity_container_title {
  font-size: 32px;
  font-weight: bold;
  color: #2F3D3F;
  max-width: 800px;
  text-align: center;
  line-height: 1.2;
}
.home .main_simplicity_container_description {
  font-size: 18px;
  color: #2F3D3F;
  text-align: center;
}
.home .main_simplicity_container_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}
.home .main_simplicity_container_grid_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.home .main_simplicity_container_grid_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(47, 61, 63, 0.1);
}
.home .main_simplicity_container_grid_item_emoji {
  font-size: 40px;
  background: #fff3e4;
  aspect-ratio: 1;
  width: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.home .main_simplicity_container_grid_item:hover .main_simplicity_container_grid_item_emoji {
  transform: scale(1.1) rotate(5deg);
}
.home .main_simplicity_container_grid_item_title {
  font-size: 22px;
  font-weight: bold;
  color: #2F3D3F;
  text-align: center;
}
.home .main_simplicity_container_grid_item_description {
  font-size: 16px;
  color: #2F3D3F;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .home .main_simplicity {
    padding: 4rem 0;
  }
  .home .main_simplicity_container {
    gap: 2rem;
  }
  .home .main_simplicity_container_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #D1F2F1;
    background: #2F3D3F;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_simplicity_container_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_simplicity_container_title {
    font-size: 64px;
  }
  .home .main_simplicity_container_description {
    font-size: 32px;
  }
  .home .main_simplicity_container_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
  .home .main_simplicity_container_grid_item {
    padding: 1rem 2rem;
    gap: 2rem;
  }
  .home .main_simplicity_container_grid_item_emoji {
    font-size: 48px;
    width: 100px;
  }
  .home .main_simplicity_container_grid_item_title {
    font-size: 24px;
  }
  .home .main_simplicity_container_grid_item_description {
    font-size: 24px;
    width: 76%;
  }
}
.home .main_special {
  padding: 3rem 0;
  background: #A2BAA9;
}
.home .main_special_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.home .main_special_container_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #2F3D3F;
  background: #fcf48d;
  border-radius: 100px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_special_container_pill:hover {
  transform: rotate(-1deg);
}
.home .main_special_container_title {
  color: #2F3D3F;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}
.home .main_special_container_title span {
  color: #fff;
}
.home .main_special_container_pop {
  background: #2F3D3F;
  border-radius: 18px;
  padding: 1.5rem;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .main_special_container_pop:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.home .main_special_container_pop_toprow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home .main_special_container_pop_toprow_logo {
  height: 60px;
  object-fit: contain;
}
.home .main_special_container_pop_toprow_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  color: #2F3D3F;
  background: #D1F2F1;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.home .main_special_container_pop_toprow_pill:hover {
  transform: rotate(-1deg);
}
.home .main_special_container_pop_flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home .main_special_container_pop_flex_left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}
.home .main_special_container_pop_flex_left_title {
  font-size: 26px;
  color: #fff;
}
.home .main_special_container_pop_flex_left_list_item {
  color: #D1F2F1;
  font-size: 18px;
  background-repeat: no-repeat;
  background-size: 22px;
  padding-left: 32px;
}
.home .main_special_container_pop_flex_left_price {
  color: #fcf48d;
  font-size: 48px;
  font-weight: 800;
}
.home .main_special_container_pop_flex_left_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2F3D3F;
  background-color: #fcf48d;
  border-radius: 18px;
  padding: 1rem 4rem;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home .main_special_container_pop_flex_left_cta_btn:hover {
  transform: translateY(-2px);
}
.home .main_special_container_pop_flex_left_cta_btn {
  width: 100%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.home .main_special_container_pop_flex_left_cta_btn:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.home .main_special_container_pop_flex_right {
  background: #506467;
  border-radius: 18px;
  padding: 1.5rem;
}
.home .main_special_container_pop_flex_right_image {
  width: 100%;
  border-radius: 8px;
}
.home .main_special_container_pop_flex_right_title {
  font-size: 24px;
  color: #fcf48d;
  margin: 1rem 0;
}
.home .main_special_container_pop_flex_right_list_item {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .home .main_special {
    padding: 4rem 0;
  }
  .home .main_special_container {
    gap: 2rem;
  }
  .home .main_special_container_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #2F3D3F;
    background: #fcf48d;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_special_container_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_special_container_title {
    font-size: 64px;
  }
  .home .main_special_container_pop {
    padding: 3rem;
  }
  .home .main_special_container_pop_toprow {
    flex-direction: row;
    justify-content: space-between;
  }
  .home .main_special_container_pop_toprow_logo {
    height: 90px;
  }
  .home .main_special_container_pop_toprow_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    color: #2F3D3F;
    background: #D1F2F1;
    border-radius: 100px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  .home .main_special_container_pop_toprow_pill:hover {
    transform: rotate(-1deg);
  }
  .home .main_special_container_pop_flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .home .main_special_container_pop_flex_left {
    padding: 2rem 0 0;
    flex: 1;
  }
  .home .main_special_container_pop_flex_left_title {
    font-size: 32px;
  }
  .home .main_special_container_pop_flex_left_list_item {
    font-size: 32px;
    background-size: 32px;
    padding-left: 42px;
  }
  .home .main_special_container_pop_flex_left_price {
    font-size: 64px;
  }
  .home .main_special_container_pop_flex_left_cta_btn {
    width: auto;
    font-size: 32px;
  }
  .home .main_special_container_pop_flex_right {
    flex: 1;
    padding: 2rem;
  }
  .home .main_special_container_pop_flex_right_title {
    font-size: 32px;
    margin: 1rem 0 3rem;
  }
  .home .main_special_container_pop_flex_right_list_item {
    font-size: 32px;
  }
}
.home .main_special_modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
  padding: 1.5rem;
}
.home .main_special_modal.is-active {
  opacity: 1;
  visibility: visible;
}
.home .main_special_modal_content {
  background: #2F3D3F;
  width: 100%;
  max-width: 600px;
  padding: 3rem 2rem;
  border-radius: 18px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.home .main_special_modal.is-active .main_special_modal_content {
  transform: translateY(0);
}
.home .main_special_modal_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.home .main_special_modal_logo {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}
.home .main_special_modal_intro {
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
.home .main_special_modal_disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.5;
  margin-top: -1rem;
}

/*# sourceMappingURL=style.css.map */
