:root {
  --text: #929294;
  --heading: #131316;
  --primary: #0bd368;
  --paragraph: #616163;
  --jaune-vers-demain: #fbd704;
  --rose-vers-demain: #d41f73;
  --white: white;
  --secondary: #013364;
  --extra: #428bca;
  --tertiary: #ecf3fa;
  --transparent: #fff0;
  --secondary-paragraph: #b0c0cf;
  --radius-4px: 4px;
  --black: #000;
  --form-color: #557697;
  --box-shadow: #4050de1a;
  --radius-2px: 2px;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

body {
  color: var(--text);
  font-family: Kanit, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

h1 {
  color: var(--heading);
  max-width: 650px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 600;
  line-height: 86px;
}

h2 {
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

h3 {
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 44px;
}

h4 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

h5 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

h6 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

p {
  color: var(--text);
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--paragraph);
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.navbar {
  z-index: 99;
  background-color: #ecf3fa;
  border-bottom: 1px solid #0000;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
  position: sticky;
  top: 0;
}

.nav-dropdown {
  color: #616163;
  align-items: center;
  padding: 0;
  display: flex;
}

.nav-link {
  color: #616163;
  padding-bottom: 4px;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
  transition: color .3s ease-out;
  display: flex;
}

.nav-link:hover, .nav-link:focus {
  color: #013364;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: #d30b0d;
}

.link-dropdown {
  z-index: 1;
}

.nav-button-list {
  display: none;
}

.navbar-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--rose-vers-demain);
  color: var(--jaune-vers-demain);
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 28px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar-button:hover {
  background-color: var(--jaune-vers-demain);
}

.cross-icon {
  display: none;
}

.nav-menu-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-text-wrapper {
  white-space: nowrap;
  height: 28px;
  overflow: hidden;
}

.container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 400;
  display: block;
  position: relative;
}

.container.middle-allign {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.container.overflow-hidden {
  overflow: hidden;
}

.container.style-guide-page {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container.middle-allign-no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: row;
  display: flex;
}

.container._2-column-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.site-logo {
  max-width: 260px;
}

.submenu-link {
  color: #616163;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94), color .35s;
}

.submenu-link:hover {
  color: #d30b0d;
  transform: translate(5px);
}

.submenu-link.w--current {
  color: #013364;
}

.default-text {
  color: var(--rose-vers-demain);
}

.default-text:hover {
  color: var(--white);
}

.default-text.jaune {
  color: var(--jaune-vers-demain);
}

.nav-list {
  color: #131316;
  flex: none;
  text-decoration: none;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.nav-list.no-hidden {
  overflow: visible;
}

.icon {
  font-family: Material Icons Outlined, sans-serif;
}

.icon._24px {
  font-size: 24px;
}

.dropdown-options {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 4px;
  flex-flow: column wrap;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding: 22px 50px 22px 30px;
  display: none;
  position: absolute;
  box-shadow: 0 10px 30px #00000026;
}

.dropdown-options.w--open {
  display: flex;
}

.nav-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-menu-border {
  background-color: var(--rose-vers-demain);
  border-radius: 2px;
  width: 100%;
  height: 3px;
}

.navbar-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.button-svg {
  width: 24px;
  height: 24px;
}

.hover-text.white {
  color: var(--white);
}

.hide-in-tablet {
  display: flex;
}

.menu-button {
  padding-bottom: 15px;
}

.svg-wrapper {
  background-color: var(--jaune-vers-demain);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 66px;
  height: 66px;
  display: flex;
}

.footer-title {
  color: #e7e7e8;
  font-size: 24px;
  line-height: 38px;
}

.social-share-icon-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  display: flex;
}

._10px-gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.footer-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 60px;
  display: flex;
}

.newsletter-form {
  max-width: 340px;
  margin-top: -5px;
  margin-bottom: 0;
}

.footer-bottom {
  background-color: #131316;
  border-top: 1px solid #616163;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

._18px-white-text {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}

._24px-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: 100%;
}

.footer-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  min-width: 120px;
  display: flex;
}

.footer-block.subscribe-block {
  min-width: 190px;
  max-width: 340px;
}

.footer-block.first-block {
  width: 100%;
  max-width: 380px;
}

.footer-paragraph {
  color: var(--text);
  font-weight: 400;
}

._24px-svg {
  width: 24px;
  height: 24px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #ff2e2e;
  width: 100%;
  padding: 20px 40px;
}

.success-message {
  background-color: var(--secondary);
  color: #fff;
  width: 100%;
  margin-top: 40px;
  font-size: 20px;
  line-height: 30px;
}

._3-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  display: grid;
}

.footer-top-block {
  z-index: 1;
  background-color: var(--rose-vers-demain);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.social-share-icon {
  color: #b6b6b7;
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  font-family: Icofont, sans-serif;
  font-size: 20px;
  line-height: 20px;
  transition: color .5s ease-in-out, transform .4s;
  display: flex;
}

.social-share-icon:hover {
  color: var(--extra);
  transform: translate(0, -3px);
}

.social-share-icon.twitter {
  font-size: 18px;
  line-height: 18px;
}

.social-share-icon.twitter:hover {
  color: #1da1f2;
}

.social-share-icon.pinterest:hover {
  color: #e60023;
}

.newsletter-button {
  background-color: var(--rose-vers-demain);
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 22px;
}

.footer {
  color: #616163;
  position: relative;
}

.footer-subscribe-button-wrapper {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.newletter-input {
  color: #616163;
  background-color: #ecf3fa;
  border: 0 solid #b0c0cf;
  border-radius: 4px;
  min-width: 170px;
  min-height: 50px;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.newletter-input::placeholder {
  color: #a4a3a3;
  font-size: 14px;
  line-height: 17px;
}

.newsletter-button-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.main-footer {
  z-index: 2;
  background-color: #131316;
  position: relative;
}

.list-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  color: var(--text);
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: flex;
}

.contact-info {
  color: #e6ebf0;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.footer-link {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  color: var(--text);
  justify-content: flex-start;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  transition: color .4s ease-out;
  display: flex;
}

.footer-link:hover {
  color: var(--rose-vers-demain);
}

.page-wrapper {
  overflow: hidden;
}

.hero-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #fff0;
  border: 1px solid #fff;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  line-height: 28px;
  transition: background-color .5s cubic-bezier(.25, .46, .45, .94), border-color .4s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-button:hover {
  background-color: #d30b0d;
  border-color: #d30b0d;
}

.hero-section {
  background-image: url('../images/BG-HERO-FLJ-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 800px;
  padding-top: 48px;
  display: flex;
}

.hero-title {
  color: #fff;
  max-width: 637px;
  margin-top: 33px;
  margin-bottom: 0;
  font-family: Kanit, sans-serif;
  font-size: 77px;
  font-weight: 600;
  line-height: 86px;
  overflow: visible;
}

.hero-paragraph {
  color: #ecf3fa;
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: Kanit, sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 28px;
}

.hero-column-block {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

._24px-text-primary {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.hero-image-wrapper {
  justify-content: center;
  width: 50%;
  display: flex;
  position: relative;
}

.hero-contents {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  margin-top: -48px;
  padding-left: 10px;
  display: flex;
  overflow: visible;
}

.banner-contents {
  grid-column-gap: 76px;
  grid-row-gap: 76px;
  background-image: url('../images/img-FLJ-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 60px 49px 60px 40px;
  display: flex;
}

.banner-contents._2nd-banner {
  z-index: -10;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-image: url('../images/img-FLJ-3.jpg');
  position: static;
}

._480px-height-image {
  height: 480px;
}

.grid-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 50%;
  height: 100%;
  display: grid;
}

.grid-block.reverse {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: clip;
}

.primary-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--jaune-vers-demain);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 23px;
  font-size: 18px;
  line-height: 28px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.primary-button:hover {
  background-color: var(--rose-vers-demain);
  color: var(--tertiary);
}

._28px-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.hero-banner {
  z-index: 2;
  height: 480px;
  display: flex;
  position: relative;
  overflow: visible;
}

._2-column-block {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

._580px-image {
  width: 67%;
  max-width: 580px;
}

.contents {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.contents._60 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 60%;
  margin-top: -100px;
}

.tabs-content {
  border: 1px solid #b0c0cf;
  padding: 25px 20px;
}

.tab-menu {
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--extra);
  background-color: #fff0;
  padding: 10px 25px;
  font-size: 18px;
  line-height: 28px;
  transition: background-color .2s;
}

.tab-menu.w--current {
  color: #fff;
  background-color: #428bca;
}

._18px-primary-text {
  color: var(--rose-vers-demain);
  font-size: 18px;
  line-height: 28px;
}

.section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 120px;
  margin-bottom: 120px;
  display: flex;
  position: relative;
}

.section.about-section {
  z-index: 2;
  background-image: url('../images/6690f51845124222caa3239c_Who-Are-We-BG.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
  margin-bottom: -105px;
  padding: 100px 25px 210px;
}

.section.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section.single-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.section.donate-section {
  background-color: var(--secondary);
  padding-top: 110px;
  padding-bottom: 110px;
}

.section.background-tertiary {
  background-color: var(--tertiary);
  padding-top: 120px;
  padding-bottom: 120px;
}

.double-image-wrapper {
  display: flex;
  position: relative;
}

.absolute-image {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 390px;
  display: flex;
  position: relative;
  bottom: 100px;
  left: -122px;
}

.title-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  max-width: 610px;
  margin-bottom: 40px;
  display: flex;
}

.title-wrapper.middle-align {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.mask {
  position: relative;
  overflow: hidden;
}

.mask.related-post {
  border-radius: 2px;
  width: 100%;
  max-width: 150px;
  height: 100px;
}

.heading {
  max-width: 870px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.heading.white-color {
  color: #fff;
}

.heading._20px-margin-bottom {
  margin-bottom: 20px;
}

.heading._560px-width {
  max-width: 560px;
}

._4-column-grid-no-gap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.slider-mask {
  width: 100%;
  max-width: 480px;
  overflow: visible;
}

.slider-section {
  background-color: #e6ebf0;
  padding-top: 120px;
  padding-bottom: 120px;
}

.navigation-button {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #013364;
  background-color: #fff0;
  border: 1px solid #013364;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: background-color .5s;
  display: flex;
}

.navigation-button:hover {
  background-color: var(--tertiary);
}

.navigation-button.previous-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.slider-navigation {
  width: 100%;
  max-width: 135px;
  inset: 210px auto auto -190px;
}

.slider-navigation.right-arrow {
  top: 140px;
  left: -190px;
}

.background-color-slider {
  z-index: 1;
  background-color: #e6ebf0;
  width: 100%;
  max-width: 240px;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.slider-wrapper-padding {
  padding-left: 240px;
  overflow: hidden;
}

.slider {
  background-color: #fff0;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin-top: 40px;
  display: flex;
  overflow: visible;
}

.slider-container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1650px;
  margin-left: auto;
  font-weight: 400;
  display: block;
  position: relative;
  overflow: hidden;
}

.hidden {
  display: none;
}

._16px-svg {
  max-width: 16px;
  max-height: 16px;
}

.gathering-slider-navigation {
  width: 100%;
  max-width: 135px;
  inset: -100px 0% auto auto;
}

.gathering-slider-navigation.gathering-right-arrow {
  max-width: 167px;
  right: 150px;
}

.mask-450px {
  max-width: 450px;
  overflow: visible;
}

.gathering-slider {
  background-color: #fff0;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin-top: 40px;
  display: flex;
  overflow: visible;
}

.volunteer-info-block {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.volunteer-icon-wrapper {
  background-color: #428bca;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transition: background-color .5s ease-out;
  display: flex;
}

.volunteer-icon-wrapper:hover {
  background-color: var(--primary);
}

.volunteer-icon-wrapper._68px {
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
}

.contact-section {
  background-image: url('../images/bg_1bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 130px;
}

.volunteer-input {
  color: #b6b6b7;
  border-radius: 2px;
  height: 50px;
  margin-bottom: 0;
  padding: 12px 14px;
  font-family: Lato, sans-serif;
}

.icon-list-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: space-between;
  width: 100%;
}

._36px-svg {
  width: 36px;
  height: 36px;
}

.volunteer-label {
  color: var(--tertiary);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.input-field-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.volunteer-form-block {
  background-color: #557697;
  border-radius: 4px;
  max-width: 900px;
  margin-bottom: 110px;
  padding: 20px 40px 30px 26px;
}

.secondary-paragraph-color {
  color: #b0c0cf;
  font-weight: 400;
}

._48px-text {
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

.volunteer-form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: flex-end;
  display: flex;
}

.volunteer-button {
  background-color: #d30b0d;
  border-radius: 2px;
  width: 100%;
  max-width: 140px;
  height: 50px;
  padding-top: 11px;
  padding-bottom: 11px;
  transition: background-color .4s;
}

.volunteer-button:hover {
  background-color: var(--secondary);
}

.details {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  display: flex;
  position: absolute;
}

.overlay-paragraph {
  color: #ecf3fa;
  margin-bottom: 40px;
}

._24px-text-white {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.event-name {
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 38px;
  position: absolute;
  bottom: 20px;
}

.movement-image {
  height: 100%;
  position: relative;
}

.secondary-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #013364;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  font-size: 18px;
  line-height: 28px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.secondary-button:hover {
  background-color: #428bca;
}

.event-card {
  justify-content: center;
  align-items: center;
  max-width: 420px;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.linear-background {
  background-image: linear-gradient(to top, #000000e6, #0000 63%);
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.card-overlay {
  z-index: 2;
  color: #fff;
  background-color: #557697;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 30px;
  display: none;
  position: absolute;
  inset: 0%;
}

.movement-card {
  justify-content: center;
  align-items: center;
  max-width: 635px;
  height: 440px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.movement-name {
  z-index: 1;
  color: #fff;
  font-size: 24px;
  line-height: 38px;
  position: absolute;
  bottom: 20px;
  left: 25px;
}

.slide-block {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  max-width: 450px;
  display: flex;
}

.slider-image {
  height: 410px;
  transition: transform .7s;
}

.slider-image:hover {
  transform: scale(1.2);
}

._24px-text {
  color: var(--paragraph);
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.blog-thumbnail {
  height: 280px;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}

.blog-thumbnail:hover {
  transform: scale(1.1);
}

.blog-body {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 40px;
  display: flex;
}

.blog-card {
  border-radius: 5px;
  flex-direction: column;
  max-width: 420px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 30px #4050de1a;
}

.blog-card-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  transition: color .2s;
}

.blog-card-title:hover {
  color: #d30b0d;
}

.blog-category {
  color: #929294;
  font-family: Lato, sans-serif;
}

.blog-divider {
  background-color: #e6ebf0;
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 22px;
}

.blog-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--primary);
  background-color: var(--transparent);
  color: var(--primary);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 22px;
  transition: all .5s;
  display: flex;
}

.blog-button:hover {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--primary);
  color: var(--white);
}

.main-banner {
  background-image: url('../images/wepik-export-20240131054208cVSR-1_1wepik-export-20240131054208cVSR 1.webp'), linear-gradient(#013364, #013364);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 106px;
  display: flex;
  position: relative;
}

.breadcrumb-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

._48-px-white-heading {
  color: #fff;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

.text-merge {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

.breadcrumb {
  color: #b6b6b7;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.breadcrumb.w--current {
  line-height: 26px;
}

.heading-style-box {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #efefef;
  width: 100%;
  min-width: 700px;
  max-width: 700px;
  margin-bottom: 40px;
  padding: 50px;
  display: flex;
}

._20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.button-style-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  display: flex;
}

.color-box-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-start;
  display: flex;
}

.color-box {
  background-color: #428bca;
  border-radius: 4px;
  width: 100px;
  height: 100px;
}

.color-box.heading-color {
  background-color: #b0c0cf;
}

.color-box.paragraph-color {
  background-color: #d30b0d;
}

.color-box.secondary-color {
  color: #428bca;
  background-color: #428bca;
}

.color-box.primary-color {
  background-color: #013364;
}

.color-box.background-color {
  color: #ecf3fa;
  background-color: #ecf3fa;
}

.sub-title-of-style-guide {
  color: #475467;
  min-width: 100px;
  margin-right: 0;
  font-weight: 400;
  line-height: 20px;
}

.tag-box {
  background-color: #0071f5;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.font-weight-bold-text {
  color: #3a3a3a;
  text-transform: uppercase;
  margin-top: 13px;
  margin-bottom: 1px;
}

.color-hex-code {
  color: #3a3a3a;
  text-transform: uppercase;
  line-height: 24px;
}

.flex-horizontal {
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-horizontal.style-guide-flex {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.font-details-text {
  margin-left: 0;
  margin-right: 0;
  line-height: 20px;
}

.style-guide-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.heading-details {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: -10px;
  display: flex;
}

.text-type {
  color: #4d4d4d;
  margin-bottom: -5px;
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
}

.paragraph-400 {
  font-weight: 400;
}

.tag-text {
  color: #fff;
  font-size: 100px;
  font-weight: 600;
  line-height: 130px;
}

.title-with-border {
  color: #4d4d4d;
  border-bottom: 3px solid #d9d9d9;
  margin-bottom: 45px;
  padding-bottom: 10px;
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
}

.heading-details-block {
  grid-column-gap: 20px;
  display: flex;
}

.color-box-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  display: flex;
}

.submit-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #d30b0d;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 18px;
  line-height: 28px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  background-color: #428bca;
}

.secondary-banner {
  background-image: url('../images/bg-image_2bg image.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  margin-bottom: 320px;
  padding-top: 150px;
  padding-bottom: 127px;
  display: flex;
  position: relative;
}

.secondary-banner.less-margin {
  z-index: 2;
  height: auto;
  margin-bottom: 200px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.banner-paragraph {
  color: #e7e7e8;
  margin-top: 49px;
  font-family: Kanit, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.banner-image {
  max-width: 560px;
  margin-top: 0;
}

.image-wrapper {
  width: 50%;
  position: relative;
}

.image-wrapper.right-align {
  justify-content: flex-end;
  display: flex;
}

.margin-top-20px {
  color: var(--heading);
  text-align: justify;
  letter-spacing: .7px;
  margin-top: 20px;
  font-size: 20px;
}

.about-image-3 {
  max-width: 360px;
  position: absolute;
  inset: 118px 0% auto auto;
}

.about-image-1 {
  max-width: 338px;
  transform: translate(60px);
}

.about-image-2 {
  width: 454px;
  height: 330px;
}

.about-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  background-color: #e6ebf0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 112px 40px 60px;
  transition: transform .4s;
  display: flex;
  position: relative;
}

.about-card:hover {
  transform: translate(0, -10px);
}

.about-icon {
  border-radius: 2px;
  max-width: 115px;
  position: absolute;
  top: -30px;
}

._24px-title {
  color: #131316;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

._24px-title.white {
  color: var(--jaune-vers-demain);
}

.divider-milestone {
  background-color: #b6b6b7;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 16px;
}

.slider-animation-wrapper {
  width: 200vw;
  height: 100%;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.milestone-circle {
  background-color: #b6b6b7;
  border-radius: 100%;
  width: 18px;
  height: 18px;
}

.milestone-circle-border {
  border: 2px solid #b6b6b7;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
  left: -12px;
}

.milestone-card-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  min-width: 300px;
  height: 100%;
  display: flex;
  position: relative;
}

.milestone-thumbnail {
  aspect-ratio: 1;
  border: 1px solid #fff;
  height: 100%;
  max-height: 187px;
}

._18px-title {
  color: #000;
  font-size: 21px;
  line-height: 28px;
}

.partners-grid {
  grid-column-gap: 40px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  transform: translate(51vw);
}

.milestone-title-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #131316;
  text-align: left;
  position: absolute;
  top: -38px;
  left: -8px;
}

.milestone-card {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  width: 100%;
  max-width: 396px;
  height: 400px;
  padding: 27px 28px 50px;
  display: flex;
  box-shadow: 0 0 0 12px #ecf3fa;
}

._70px-play-button {
  width: 70px;
  height: 70px;
  position: static;
}

.banner-section {
  background-image: url('../images/bg-image_1bg image.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 130px;
}

._18px-secondary-paragraph-color-with-margin {
  color: #b0c0cf;
  margin-top: 26px;
  font-family: Kanit, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.banner-cover-video {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 92%;
  max-width: 570px;
  display: flex;
  box-shadow: 43px -39px #fff3;
}

.key-card-body {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  text-align: left;
}

.key-icon-wrapper {
  background-color: var(--jaune-vers-demain);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60px;
  height: 60px;
  display: flex;
  box-shadow: 0 4px 10px #4050de1a;
}

._30px-svg {
  max-width: 33px;
}

.key-card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

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

.relative-block.rounded-4px {
  border-radius: 4px;
  overflow: hidden;
}

._420px-video {
  background-image: linear-gradient(#000, #000);
  width: 100%;
  height: 420px;
}

._24px-text-white-absolute {
  z-index: 2;
  color: #fff;
  max-width: 90%;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  position: absolute;
  bottom: 17px;
}

.core-values-bg {
  background-image: url('../images/Rectangle-225_1Rectangle 225.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 570px;
}

.core-values-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -179px;
  padding: 60px;
  display: flex;
}

._4-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.volunteer-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 55px 26px 38px;
  display: flex;
  box-shadow: 0 5px 30px #4050de1a;
}

.divider-150px {
  background-color: #428bca;
  border-radius: 2px;
  width: 100%;
  max-width: 150px;
  height: 6px;
  margin-top: 15px;
  margin-bottom: 40px;
}

.height-600px {
  height: 100%;
  max-height: 600px;
}

._6px-gap {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

._30px-gap-with-540px-width {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 540px;
}

.donation-form-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 930px;
  margin-bottom: 0;
  display: flex;
}

.donation-field {
  color: #557697;
  background-color: #c4dbef;
  border: 1px solid #c4dbef;
  border-radius: 2px;
  height: 100px;
  margin-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.donation-field::placeholder {
  color: #557697;
}

._48-px-heading {
  color: var(--heading);
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

.required {
  color: #d30b0d;
}

.bold-label {
  color: #000;
  margin-bottom: 10px;
  font-weight: 500;
}

._540px-width {
  max-width: 540px;
}

.input-field {
  color: #8aa1b8;
  background-color: #ecf3fa;
  border: 1px solid #c4dbef;
  border-radius: 2px;
  height: 50px;
  margin-bottom: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 300;
}

.input-field::placeholder {
  color: #8aa1b8;
}

.input-field.text-area {
  height: auto;
  min-height: 130px;
}

.field-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
}

.donation-form {
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  margin-top: 26px;
  padding: 40px 60px 60px 50px;
  box-shadow: 0 5px 30px #4050de1a;
}

.margin-top-35px {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  margin-top: 35px;
}

.play-pause-button {
  width: 98px;
  height: 98px;
  position: static;
}

.video {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 600px;
  display: flex;
}

.bottom-left-volunteer-image {
  max-width: 373px;
  height: 472px;
  position: absolute;
  inset: auto auto -47px 0%;
}

.volunteer-opportunities-section {
  background-color: #ecf3fa;
  margin-top: 120px;
  margin-bottom: 120px;
  padding-top: 130px;
  padding-bottom: 130px;
}

._90 {
  max-width: 85%;
}

.margin-top-40px {
  margin-top: 40px;
}

.benefits-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 57px;
  padding-left: 41px;
  padding-right: 31px;
  transition: all .2s;
  display: flex;
  box-shadow: 0 5px 30px #4050de1a;
}

.benefits-card:hover {
  transform: rotate(4deg)translate(0, -10px);
}

._48px-svg {
  max-width: 40px;
}

.benefits-icon-wrapper {
  background-color: var(--rose-vers-demain);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-top: -32px;
  margin-bottom: 16px;
  display: flex;
}

._26px-svg {
  max-width: 26px;
}

._16px-padding {
  padding-left: 16px;
  padding-right: 16px;
}

.floating-divider {
  background-color: #e6ebf0;
  width: 100%;
  height: 1px;
  margin-top: 14px;
  margin-bottom: 5px;
}

._48px-primary-title {
  color: #d30b0d;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

.banner-cover-image {
  border-radius: 4px;
  width: 92%;
  max-width: 570px;
  box-shadow: 43px -39px #fff3;
}

.floating-counter {
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  width: 100%;
  max-width: 210px;
  padding-top: 16px;
  padding-bottom: 13px;
  display: flex;
  position: absolute;
  inset: auto auto -42px 34px;
  box-shadow: 0 0 40px #0006;
}

.floating-counter.top-right {
  inset: 39px -10px auto auto;
}

._2-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._12px-gap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  max-width: 420px;
}

.white-border-gap {
  z-index: 1;
  background-color: #fff;
  height: 1px;
  position: relative;
  top: 1px;
}

.empty-block {
  z-index: 2;
  color: #fff;
  text-align: center;
  background-color: #d30b0d;
  border-radius: 4px;
  padding: 16px 25px;
  font-weight: 400;
  position: relative;
}

.left-sidebar-body {
  flex-direction: row;
}

._60px-margin-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 120px;
  display: flex;
  position: relative;
}

.widget-sidebar {
  grid-row-gap: 0px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 360px;
  max-width: 400px;
  padding: 20px 40px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 30px #4050de1a;
}

.border-wrapper {
  border-top: 1px solid #20557d1a;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
}

.hover-wrapper {
  color: #929294;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  transition: padding .5s ease-out, color .3s ease-out, background-color .35s;
  display: flex;
}

.hover-wrapper:hover, .hover-wrapper.w--current {
  color: #fff;
  background-color: #d30b0d;
  padding-left: 15px;
  padding-right: 15px;
}

.submenu-arrow {
  font-family: Material Icons, sans-serif;
  font-size: 24px;
  line-height: 24px;
}

.issue-thumbnail {
  border-radius: 4px;
}

.issue-card-body {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  padding-top: 20px;
}

.issue-category {
  color: #929294;
  font-size: 14px;
  line-height: 22px;
}

.card-title {
  color: #131316;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.movement-banner {
  z-index: 1;
  max-width: 560px;
  margin-top: 260px;
  position: relative;
}

.banner-background {
  background-color: #fff3;
  width: 100%;
  max-width: 550px;
  height: 516px;
  position: absolute;
  inset: auto 30px 0% auto;
}

.contact-card-text {
  color: var(--heading);
  text-align: center;
  max-width: 259px;
  font-weight: 300;
}

.contact-card {
  background-color: var(--jaune-vers-demain);
  border-radius: 2px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 360px;
  padding: 55px 50px 50px;
  transition: background-color .4s, transform .3s;
  display: flex;
}

.contact-card:hover {
  background-color: #ecf3fa;
  transform: rotate(5deg)translate(0, -10px);
}

.contact-card-title {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.contact-form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #e6ebf0;
  border: 1px solid #b0c0cf;
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 845px;
  margin-bottom: 0;
  padding: 80px 104px 78px 134px;
  display: flex;
  box-shadow: 0 5px 30px #4050de1a;
}

.event-form {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-field {
  background-color: #fff;
  border: 1px solid #b0c0cf;
  border-radius: 2px;
  height: 60px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.contact-field.text-area-166px {
  height: auto;
  min-height: 166px;
  margin-bottom: 40px;
}

.event-label {
  color: #131316;
  margin-bottom: 0;
}

.tags-container {
  grid-column-gap: 7px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  display: flex;
}

.blog-search-field {
  color: #929294;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  height: 50px;
  margin-bottom: 0;
  padding: 0 14px 0 19px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.blog-search-field:focus {
  border-color: #b19470;
}

.blog-search-field::placeholder {
  font-weight: 400;
  line-height: 22px;
}

.search-button {
  color: #666;
  background-color: #3898ec00;
  padding: 0;
  font-family: Icofont, sans-serif;
  line-height: 16px;
  position: absolute;
  inset: 0% 14px 0% auto;
}

.sidebar-title {
  color: #131316;
  border-bottom: 3px solid #428bca;
  padding-bottom: 2px;
  font-size: 24px;
  line-height: 38px;
}

.widget {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  border: 1px solid #e7e7e8;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px 30px 27px;
  display: flex;
}

.featured-properties-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.sidebar {
  flex-direction: column;
  width: 100%;
  min-width: 255px;
  max-width: 420px;
  display: flex;
}

.search-background-wrapper {
  background-color: #e6ebf0;
  border: 1px solid #e6e7e8;
  border-radius: 4px;
  flex-direction: row;
  margin-bottom: 40px;
  padding: 20px 30px;
  display: flex;
  position: relative;
}

.category-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  display: flex;
}

.search-block {
  flex-direction: row;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.featured-blogs {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.featured-image {
  object-fit: cover;
  transition: transform .2s;
}

.featured-image:hover {
  transform: scale(1.1);
}

.post-title {
  color: var(--paragraph);
  font-size: 18px;
  line-height: 28px;
  transition: color .4s;
}

.post-title:hover {
  color: var(--primary);
}

.property-category-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #616163;
  align-items: center;
  transition: color .5s, transform .45s;
  display: flex;
}

.property-category-block:hover {
  color: #d30b0d;
  transform: translate(20px);
}

.category {
  font-size: 18px;
  line-height: 28px;
}

.tag-button {
  color: var(--paragraph);
  background-color: #e6ebf0;
  border: 1px solid #e6ebf0;
  border-radius: 2px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 22px;
  transition: background-color .35s ease-out, color .45s;
  display: block;
}

.tag-button:hover {
  color: var(--white);
  background-color: #013364;
  box-shadow: 0 4px 10px #5d38ff1a;
}

.main-block {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 550px;
  max-width: none;
  display: flex;
}

.main-block.with-margin {
  margin-top: 50px;
}

.post-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  max-width: 870px;
  max-height: 665px;
  margin-bottom: 46px;
}

.rich-text-block {
  margin-bottom: 20px;
}

.rich-text-block img {
  border-radius: 10px;
  max-height: 590px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.rich-text-block p {
  max-width: none;
  margin-bottom: 20px;
}

.rich-text-block h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.tag-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-heading {
  margin-top: 0;
  margin-bottom: 34px;
  font-size: 48px;
  line-height: 60px;
}

.link-text {
  color: #929294;
  font-weight: 300;
}

.join-us-form-block {
  margin-top: 30px;
}

.movement-cover-image {
  aspect-ratio: 3 / 2;
  object-position: 50% 0%;
  border-radius: 4px;
  max-height: 600px;
  margin-bottom: 90px;
}

._38px-padding-left {
  padding-left: 38px;
}

.divider {
  background-color: #e6ebf0;
  width: 100%;
  height: 1px;
}

.join-us-form {
  background-color: #fff;
  border-radius: 4px;
  margin-top: 33px;
  padding: 40px 60px 60px 50px;
  box-shadow: 0 5px 30px #4050de1a;
}

.empty-block-2 {
  z-index: 2;
  color: #fff;
  text-align: center;
  background-color: #04ce78;
  padding: 16px 25px;
  font-weight: 400;
  position: relative;
}

.issue-cover-image {
  border-radius: 4px;
  margin-bottom: 20px;
}

._30px-title {
  margin-top: 0;
  font-size: 30px;
  line-height: 44px;
}

.faq {
  z-index: auto;
  color: #fff;
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.faq-contents {
  color: #616163;
  background-color: #fff;
  padding: 20px 60px 70px 30px;
}

._18px-paragraph {
  color: var(--text);
  font-family: Kanit, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

._18px-paragraph.different-color {
  color: #b0c0cf;
}

.animation-icon {
  color: #fff;
  font-family: Icofont, sans-serif;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
}

.animation-icon.rotate-180 {
  position: absolute;
  transform: rotate(90deg);
}

.faq-animation-icon-wrapper {
  background-color: #c4dbef;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
}

.faq-title {
  color: #131316;
  white-space: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.faq-swtich {
  grid-column-gap: 20px;
  color: #000;
  background-color: #fff;
  border: 1px solid #e7e7e8;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 20px 20px 30px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.dropdown-contents {
  background-color: #6eb8f91a;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  margin-right: 0;
  display: flex;
  position: static;
  overflow: hidden;
  box-shadow: 0 5px 30px #4050de1a;
}

.faq-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.event-form-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 60px;
  padding: 50px 46px;
  display: flex;
  box-shadow: 0 5px 30px #4050de1a;
}

.speaker-image {
  border-radius: 4px;
  height: 338px;
}

.middle-align-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.linear-background-overlay {
  background-image: linear-gradient(to top, #0006, #0006);
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

._2px-gap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}

.speaker-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.event-meta-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  max-width: 800px;
  margin-top: 14px;
  margin-bottom: 40px;
}

._18px-secondary-text {
  color: #428bca;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

._14px-text {
  color: #929294;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.speaker-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-top: 40px;
}

.event-input-field {
  background-color: #e6ebf0;
  border-radius: 2px;
  height: 46px;
  margin-bottom: 15px;
}

.event-input-field.text-area {
  height: auto;
  min-height: 100px;
}

.event-cover-image {
  object-position: 50% 10%;
  max-height: 500px;
}

.utility-page-content-2 {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 682px;
  display: flex;
  position: relative;
}

._404-bottom-right-image {
  width: 40%;
  position: absolute;
  inset: auto 0% 0% auto;
}

._404-paragraph {
  color: #929294;
  font-size: 18px;
  line-height: 28px;
}

._404-bottom-left-image {
  width: 40%;
  position: absolute;
  inset: auto auto 0% 0%;
}

._404-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 86px;
}

.utility-page-wrap-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #ecf3fa;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.changelog-section {
  color: #000;
  margin-top: 40px;
  margin-bottom: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

.changelog-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.version-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.version-description {
  line-height: 28px;
}

.license-section {
  margin-top: 40px;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.license-main-text {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.license-block {
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.license-link {
  color: #013364;
}

.license-wrapper {
  color: #000;
  max-width: 555px;
}

.license-link-block {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.license-title {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.license-paragraph {
  margin-bottom: 4px;
}

.event-section {
  background-image: url('../images/Hero-BG_1Hero BG.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 48px;
}

._24px-text-secondary {
  color: var(--secondary-paragraph);
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.bullet-points-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-top: 46px;
  margin-bottom: 60px;
}

._16px-circle {
  background-color: var(--secondary-paragraph);
  border-radius: 100%;
  width: 16px;
  height: 16px;
}

._18px-secondary-paragraph-color {
  color: var(--secondary-paragraph);
  font-family: Kanit, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.icon-and-text-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 420px;
  display: flex;
}

.background-video {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 680px;
  display: flex;
}

.event-list-card {
  border-radius: var(--radius-4px);
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.event-list-image {
  max-width: 308px;
}

.event-list-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  background-color: #f9f9f9;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 40px 25px 40px 30px;
  display: flex;
}

._18px-text {
  color: var(--text);
  font-size: 18px;
  line-height: 28px;
}

.margin-top-20px-margin-bottom-40px {
  margin-top: 20px;
  margin-bottom: 40px;
}

.transparent-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--text);
  background-color: var(--transparent);
  color: var(--black);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 26px;
  transition: border-color .4s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.transparent-button:hover {
  border-color: var(--transparent);
  background-color: var(--primary);
}

.join-event-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: var(--radius-4px);
  background-color: var(--transparent);
  border: 1px solid #c4dbef;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 50px 33px 40px;
  transition: border-color .2s, box-shadow .4s ease-out, background-color .3s;
  display: flex;
}

.join-event-card:hover {
  border-color: var(--transparent);
  background-color: var(--white);
  box-shadow: 0 5px 10px #0003;
}

._80px-svg-with-margin-bottom-20px {
  max-width: 80px;
}

.paragraph-color {
  color: var(--paragraph);
}

.speaker-slider-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.slider-wrapper-padding-200px {
  padding-left: 200px;
  overflow: hidden;
}

.slider-speaker-card {
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.slider-speaker-image {
  height: 100%;
  max-height: 440px;
}

.speaker-bottom-overlay {
  background-image: linear-gradient(#6660, #000);
  height: 25%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.speaker-info-absolute-block {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.slider-mask-450px {
  width: 100%;
  max-width: 450px;
  overflow: visible;
}

.white-background-slider {
  z-index: 1;
  background-color: var(--white);
  width: 100%;
  max-width: 200px;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.event-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--transparent);
  color: #fff;
  background-color: #d30b0d;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 23px;
  font-size: 18px;
  line-height: 28px;
  transition: border-color .3s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.event-button:hover {
  border: 1px solid var(--text);
  background-color: var(--transparent);
}

.speaker-cover-image {
  border-radius: var(--radius-4px);
  max-width: 645px;
}

.speaker-contents {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.speaker-share-icon {
  color: var(--white);
  background-color: #4267b2;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Icofont, sans-serif;
  font-size: 20px;
  line-height: 20px;
  transition: color .5s ease-in-out, transform .4s;
  display: flex;
}

.speaker-share-icon:hover {
  color: var(--extra);
  transform: translate(0, -3px);
}

.speaker-share-icon.twitter {
  background-color: #1da1f2;
}

.speaker-share-icon.pinterest {
  background-color: #e60023;
}

.template-image-wrappper {
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 460px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 50px #dbe5ff;
}

.page-wrapper-preview {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.section-preview {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-preview.features {
  background-image: url('../images/23080992_Gradient_background_18-1_123080992_Gradient_background_18 1.webp');
  background-position: 50%;
  background-size: cover;
}

.section-preview.top-40px-padding {
  padding-top: 40px;
}

.section-preview.demo-page-section {
  text-align: center;
  background-image: url('../images/032318-Converted-1_1032318-[Converted] 1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.section-preview.cta {
  background-image: url('../images/footer-bg_1footer-bg.webp');
  background-position: 0 0;
  background-size: auto;
  padding-bottom: 145px;
}

.brand {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 260px;
  padding-left: 0;
  display: flex;
}

._476px-image {
  max-width: 476px;
  position: absolute;
  inset: 780px auto auto -3%;
}

.preview-4-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  width: 100%;
}

.preview-4-col-grid.features-preview {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  margin-top: 70px;
}

.template-page-name {
  color: #25292f;
  margin-top: 33px;
  font-size: 18px;
  line-height: 28px;
}

._870px-image {
  max-width: 845px;
}

.vertical-wrapper._20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.navigation-link {
  color: #282828;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.why-choose-us-card-2 {
  text-align: center;
  background-color: #e9f2ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  transition: transform .35s;
  display: flex;
}

.why-choose-us-card-2:hover {
  transform: translate(0, -20px);
}

.why-choose-us-card-2.color-3 {
  background-color: #e9fcff;
}

.why-choose-us-card-2.color-4 {
  background-color: #f8e9ff;
}

.why-choose-us-card-2.color-2 {
  background-color: #fff5e9;
}

.mobile-image {
  object-fit: contain;
  max-width: 232px;
  margin-top: 60px;
  margin-left: -210px;
}

._374px-image {
  max-width: 374px;
  position: absolute;
  right: 0;
}

.preview-feature-paragraph {
  text-align: left;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 25px;
}

.highlight {
  color: #f37576;
  background-image: url('../images/Group-205.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  display: inline-block;
}

.highlight.smaller {
  background-size: contain;
  padding: 6px 30px;
}

.template-image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
}

.preview-heading {
  color: #000;
  text-align: center;
  max-width: 844px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 60px;
}

.preview-heading.white {
  color: #fff;
  max-width: 950px;
}

.floating-image {
  max-width: 40px;
  position: absolute;
  inset: 18% auto auto 12%;
}

.floating-image._3 {
  inset: 17% 14% auto auto;
}

.floating-image._2 {
  max-width: 25px;
  inset: 35% 22% auto auto;
}

.menu-button-preview {
  padding-bottom: 15px;
}

.tabs-contents-2 {
  margin-top: 70px;
}

.large-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.large-container.middle-allign {
  border: 0 #fff;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

._122px-image {
  max-width: 122px;
  height: 100%;
  max-height: 270px;
  position: absolute;
  left: -25px;
}

.preview-navbar {
  background-color: #fff;
  border-bottom: 1px solid #0000;
  width: 100%;
  margin-bottom: -100px;
  padding-top: 24px;
  padding-bottom: 24px;
  position: fixed;
  top: 0;
}

._408px-image {
  object-fit: contain;
  max-width: 408px;
  max-height: 270px;
  position: absolute;
  left: 108px;
}

.cross-icon-3 {
  font-family: Icofont, sans-serif;
  display: none;
}

._32px-image {
  max-width: 32px;
}

.preview-title {
  color: #282828;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 52px;
  line-height: 80px;
}

.template {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 505px;
  height: 100%;
  display: flex;
  position: relative;
}

.toggle-button {
  color: #666;
  background-color: #ddd0;
  padding: 0 0 4px;
  font-size: 18px;
  line-height: 28px;
}

.toggle-button.w--current {
  color: #000;
  background-color: #02020200;
  border-bottom: 3px solid #f37576;
  border-radius: 3px;
}

.template-tabs {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.site-images {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  width: 100%;
  margin-top: 75px;
  display: flex;
}

._356px-image {
  max-width: 356px;
  position: absolute;
  top: 774px;
  right: 0;
}

.nav-button-list-preview {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: 1;
  align-items: center;
  display: none;
}

.buy-button {
  background-color: var(--primary);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 12px 21px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  transition: background-color .35s;
  display: flex;
}

.buy-button:hover {
  background-color: #f64848;
}

.buy-button.trasparent-btn {
  border: 2px solid var(--primary);
  background-color: #fff0;
  font-size: 16px;
  line-height: 26px;
}

.buy-button.trasparent-btn:hover {
  background-color: var(--primary);
}

.buy-button.red-button {
  background-color: var(--primary);
  border: 2px solid #fff0;
  padding: 14px 30px;
  font-size: 16px;
  line-height: 26px;
}

.buy-button.red-button:hover {
  border: 2px solid var(--primary);
  background-color: #fff0;
}

.paragraph-785px {
  color: #5a5a5a;
  max-width: 785px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-785px.cta-paragraph {
  color: #fffc;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
}

.paragraph-785px.margin-top-30px {
  max-width: 900px;
  margin-top: 30px;
}

.navbar-wrapper-preview {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.preview-paragraph {
  color: #666;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
}

.horizontal-wrapper {
  display: flex;
}

.horizontal-wrapper._20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.horizontal-wrapper.z-index-10 {
  z-index: 10;
  position: relative;
}

.toggle-buttons-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  display: flex;
}

.preview-nav-menu {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 0;
  display: flex;
}

.homepage-demos-2 {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 70px;
  display: grid;
}

.preview-nav-list {
  flex: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

._120px-image {
  max-width: 120px;
}

.div-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.footer-copyrights-container {
  color: #8e8e99;
  text-align: center;
  background-color: #f5f9ff;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 30px;
  font-size: 16px;
  line-height: 26px;
  display: flex;
}

.why-choose-us-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 100px;
}

.topbar {
  object-fit: contain;
  width: auto;
  height: 36px;
}

.footer-copyrights {
  margin-bottom: 0;
}

.hamburger-icon-3 {
  font-family: Icofont, sans-serif;
}

.site-feature-card-2 {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  transition: box-shadow .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  box-shadow: 9px 12px #fff9;
}

.site-feature-card-2:hover {
  box-shadow: 0 0 #fff9;
}

.semi-bold-title-3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.semi-bold-title-3.margin-both-sides {
  margin-top: 26px;
  margin-bottom: 12px;
}

.semi-bold-title-3.why-choose-us-title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

.code {
  color: #f2d64a;
  font-family: Kanit, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.hero-paragraph-2 {
  color: #ecf3fa;
  margin-top: 10px;
  margin-bottom: 72px;
  font-family: Kanit, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 28px;
}

.image {
  width: 790px;
  position: absolute;
  inset: 18% 0% 0% 36%;
}

.image-2 {
  background-image: url('../images/LOGO-VERS-DEMAIN.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  width: 400px;
}

.image-3 {
  width: 200px;
  height: 200px;
  position: static;
  inset: 810px 22% 0% auto;
  overflow: visible;
}

.default-text-jaune {
  color: var(--white);
}

.contents-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.contents-2._60 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 60%;
  margin-top: -100px;
}

.heading-2 {
  line-height: 50px;
}

.div-block-2 {
  flex-flow: column;
  margin-top: 75px;
  display: flex;
}

.div-block-3 {
  width: 60%;
  margin-right: 40px;
}

.section-contact {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--rose-vers-demain);
  flex-direction: column;
  margin-top: 120px;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.section-contact.about-section {
  z-index: 2;
  background-image: url('../images/6690f51845124222caa3239c_Who-Are-We-BG.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
  margin-bottom: -105px;
  padding-top: 210px;
  padding-bottom: 210px;
}

.section-contact.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section-contact.single-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.section-contact.donate-section {
  background-color: #ecf3fa;
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-contact.background-tertiary {
  background-color: var(--tertiary);
  padding-top: 120px;
  padding-bottom: 120px;
}

.heading-white {
  color: var(--tertiary);
  max-width: 870px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 40px;
  font-weight: 500;
}

.heading-white.white-color {
  color: #fff;
}

.heading-white._20px-margin-bottom {
  margin-bottom: 20px;
}

.heading-white._560px-width {
  max-width: 560px;
}

.paragraph-401 {
  color: var(--tertiary);
}

.section-comp-tences {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 120px;
  display: flex;
  position: relative;
}

.section-comp-tences.about-section {
  z-index: 2;
  background-image: url('../images/6690f51845124222caa3239c_Who-Are-We-BG.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
  margin-bottom: -105px;
  padding-top: 210px;
  padding-bottom: 210px;
}

.section-comp-tences.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section-comp-tences.single-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.section-comp-tences.donate-section {
  background-color: var(--secondary);
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-comp-tences.background-tertiary {
  background-color: var(--tertiary);
  padding-top: 120px;
  padding-bottom: 120px;
}

.secondary-banner-objectifs {
  background-image: url('../images/bg-image_2bg image.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  margin-bottom: 320px;
  padding-top: 150px;
  padding-bottom: 127px;
  display: flex;
  position: relative;
}

.secondary-banner-objectifs.less-margin {
  z-index: 2;
  background-image: url('../images/img-FLJ-12.jpg');
  height: auto;
  margin-bottom: 100px;
  padding: 40px 25px;
}

.code-2 {
  color: var(--primary);
  font-family: Lato, sans-serif;
}

.code-exposant {
  color: #f2d64a;
  font-family: Kanit, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

._25px-svg {
  max-width: 25px;
}

.primary-button-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--jaune-vers-demain);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 23px;
  font-size: 18px;
  line-height: 28px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.primary-button-copy:hover {
  background-color: var(--jaune-vers-demain);
  color: var(--tertiary);
}

.primary-button-rose {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--rose-vers-demain);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 23px;
  font-size: 18px;
  line-height: 28px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: block;
  position: relative;
}

.primary-button-rose:hover {
  background-color: var(--rose-vers-demain);
  color: var(--tertiary);
}

.preview-button {
  filter: hue-rotate(234deg);
  background-color: #fff;
  border-radius: 10000000px;
  justify-content: center;
  align-items: center;
  width: 17%;
  min-width: 17%;
  min-height: 30%;
  max-height: 30%;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 84px #00000073;
}

.preview-button:hover {
  transform: scale(.95);
  box-shadow: 0 2px 24px #00000073;
}

.container-default {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-default.preview {
  z-index: 1;
  position: relative;
}

.bg {
  position: absolute;
}

.bg.preview-filter {
  opacity: .43;
  background-color: #000;
  inset: 0%;
}

.image-4.preview {
  object-fit: cover;
  width: 100%;
}

.image-4.preview-button-icon {
  filter: hue-rotate(74deg);
  color: #008f84;
  max-width: 25%;
}

.image-wrapper-2 {
  align-items: center;
  display: flex;
  overflow: hidden;
  transform: translate(0);
}

.image-wrapper-2.preview {
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .grid-block.reverse {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .image {
    top: 17%;
  }

  .image-4.preview-button-icon {
    filter: hue-rotate(74deg);
  }
}

@media screen and (min-width: 1440px) {
  .image {
    top: 15%;
    left: 37%;
  }
}

@media screen and (min-width: 1920px) {
  .grid-block.reverse {
    display: flex;
  }

  .section.about-section {
    padding-top: 140px;
  }

  .image {
    width: 830px;
    top: 15%;
    left: 41%;
  }

  .image-4.preview-button-icon {
    filter: hue-rotate(74deg);
    -webkit-text-stroke-color: #131417;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    font-size: 36px;
    line-height: 50px;
  }

  h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .navbar {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-dropdown {
    z-index: 2;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
  }

  .nav-link {
    z-index: 1;
    color: #fff;
    width: 100%;
    padding: 0 5px;
  }

  .nav-link:hover {
    color: #fff;
  }

  .nav-link.w--current {
    color: var(--jaune-vers-demain);
  }

  .link-dropdown {
    z-index: 3;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: static;
  }

  .nav-button-list {
    display: flex;
  }

  .navbar-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .cross-icon {
    z-index: 99999;
    color: red;
    background-color: #0000;
    flex-direction: row;
    font-style: normal;
    display: none;
  }

  .nav-menu-wrapper {
    z-index: 2;
    background-color: #640131;
    flex-direction: row;
    min-width: 420px;
  }

  .hamburger-icon {
    background-color: #fff0;
    flex-direction: row;
  }

  .container {
    width: 100%;
  }

  .container.middle-allign-no-gap {
    flex-flow: column;
  }

  .container._2-column-container {
    flex-direction: column-reverse;
  }

  .submenu-link.w--current {
    color: #d01818;
  }

  .default-text {
    color: var(--white);
  }

  .nav-list {
    z-index: 1;
    text-align: center;
    border-bottom: 1px #fff3;
    position: relative;
  }

  .nav-list.no-hidden {
    z-index: 3;
  }

  .dropdown-options {
    z-index: 3;
    display: none;
    position: static;
  }

  .dropdown-options.w--open {
    z-index: 2;
    position: static;
  }

  .nav-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    border-radius: 0;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    min-width: auto;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 40px;
    display: flex;
  }

  .hide-in-tablet {
    display: none;
  }

  .menu-button {
    z-index: 10;
    color: #d30b0d;
    flex-direction: row;
    padding: 0;
    font-family: Material Icons, sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 25px;
    display: block;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #0000;
  }

  .footer-wrapper {
    border-bottom-color: #c3c3c3;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .newsletter-form {
    max-width: 600px;
  }

  .footer-bottom {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .footer-block {
    grid-row-gap: 20px;
    width: 100%;
    max-width: 46%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-block.subscribe-block {
    border-top: 1px solid #000;
    border-bottom: 1px #c3c3c3;
    max-width: none;
  }

  .footer-block.first-block {
    border-bottom: 1px solid #c3c3c3;
    max-width: none;
  }

  ._3-column-grid {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navbar-logo-wrapper {
    z-index: 1;
  }

  .footer-subscribe-button-wrapper {
    max-width: 400px;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-title {
    font-size: 46px;
    line-height: 60px;
  }

  .hero-column-block {
    flex-direction: row;
  }

  .hero-image {
    object-fit: contain;
  }

  .hero-image-wrapper {
    align-items: flex-end;
    width: 50%;
  }

  .hero-contents {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0;
  }

  ._480px-height-image {
    height: 390px;
  }

  .grid-block {
    width: 100%;
    height: 100%;
  }

  .grid-block.reverse {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    flex: 0 auto;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-content: flex-start;
    display: grid;
  }

  .hero-banner {
    flex-direction: column;
    height: auto;
  }

  ._2-column-block {
    flex-direction: column;
  }

  .contents {
    width: 100%;
  }

  .contents._60 {
    width: 100%;
    margin-top: 0;
  }

  .section {
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .section.about-section {
    padding-top: 98px;
  }

  .section.no-gap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .absolute-image {
    left: auto;
    right: 100px;
  }

  ._4-column-grid-no-gap {
    grid-template-columns: 1fr 1fr;
  }

  .slider-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .slider-container {
    width: 100%;
  }

  .gathering-slider-navigation {
    top: -70px;
  }

  .mask-450px {
    max-width: none;
    overflow: hidden;
  }

  .gathering-slider {
    margin-top: 70px;
  }

  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .icon-list-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    display: grid;
  }

  .event-card, .movement-card {
    max-width: none;
  }

  .blog-card-title {
    font-size: 19px;
    line-height: 28px;
  }

  .main-banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heading-style-box {
    min-width: auto;
  }

  .flex-horizontal.style-guide-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .style-guide-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .secondary-banner {
    height: auto;
    margin-bottom: 200px;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .banner-image {
    object-fit: contain;
    max-width: none;
    max-height: 600px;
    margin-top: 0;
    margin-bottom: -150px;
  }

  .image-wrapper {
    width: 100%;
  }

  ._18px-title {
    text-align: center;
  }

  .banner-cover-video {
    max-width: none;
    margin-top: 40px;
  }

  .key-card {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  ._420px-video {
    height: 360px;
  }

  .core-values-bg {
    min-height: 340px;
  }

  ._4-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._30px-gap-with-540px-width {
    max-width: none;
  }

  .video {
    width: 100%;
  }

  .banner-cover-image {
    max-width: none;
  }

  ._2-column-grid._1-column-from-tab {
    grid-template-columns: 1fr;
  }

  ._12px-gap {
    width: 100%;
  }

  ._60px-margin-section {
    z-index: 1;
    margin-bottom: 80px;
  }

  .widget-sidebar {
    min-width: auto;
    max-width: none;
  }

  .movement-banner {
    width: 90%;
    max-width: none;
    margin-top: 0;
    margin-bottom: -100px;
  }

  .contact-form {
    padding-left: 100px;
    padding-right: 90px;
  }

  .sidebar, .featured-blogs {
    max-width: none;
  }

  .featured-image {
    max-width: 200px;
  }

  .main-block {
    min-width: auto;
  }

  .post-image {
    max-width: 100%;
    max-height: 450px;
  }

  .movement-cover-image {
    margin-bottom: 60px;
  }

  .faq {
    align-items: stretch;
    min-width: auto;
    max-width: 800px;
  }

  .faq-wrapper {
    justify-content: center;
    align-items: center;
  }

  ._404-bottom-right-image {
    width: 51%;
  }

  ._404-bottom-left-image {
    width: 50%;
  }

  .event-section {
    padding-top: 0;
  }

  .icon-and-text-wrapper {
    width: 100%;
  }

  .background-video {
    height: 480px;
  }

  .speaker-slider-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .speaker-contents {
    width: 100%;
  }

  .hide-from-tablet {
    display: none;
  }

  .section-preview {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-preview.demo-page-section {
    padding-top: 150px;
  }

  .preview-4-col-grid, .preview-4-col-grid.features-preview {
    grid-template-columns: 1fr 1fr;
  }

  ._870px-image {
    object-fit: contain;
  }

  .vertical-wrapper._20px-gap {
    display: none;
  }

  .navigation-link {
    color: #fff;
  }

  .floating-image {
    top: 21%;
  }

  .floating-image._3 {
    top: 11%;
  }

  .floating-image._2 {
    top: 32%;
  }

  .menu-button-preview {
    z-index: 10;
    flex-direction: row;
    padding: 0;
    display: block;
  }

  .menu-button-preview.w--open {
    color: #fff;
    background-color: #0000;
  }

  .hamburger-and-close-icon-wrapper {
    align-items: center;
  }

  .cross-icon-3 {
    z-index: 99999;
    color: #f64848;
    background-color: #0000;
    flex-direction: row;
    font-size: 25px;
    font-style: normal;
    line-height: 25px;
  }

  .preview-title {
    font-size: 50px;
    line-height: 60px;
  }

  .site-images {
    margin-top: 20px;
  }

  .nav-button-list-preview {
    text-align: center;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .navbar-wrapper-preview {
    overflow: visible;
  }

  .preview-nav-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    border-radius: 0;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .homepage-demos-2 {
    grid-template-columns: 1fr 1fr;
  }

  .preview-nav-list {
    text-align: center;
    border-bottom: 1px #fff3;
  }

  .preview-nav-wrapper {
    background-color: #110a23;
    flex-direction: row;
    padding: 60px 55px 50px;
    display: block;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hamburger-icon-3 {
    color: #4865ff;
    background-color: #fff0;
    flex-direction: row;
    font-size: 25px;
    line-height: 25px;
  }

  .image {
    width: 760px;
    top: 20%;
    left: 25%;
  }

  .contents-2 {
    width: 100%;
  }

  .contents-2._60 {
    width: 100%;
    margin-top: 0;
  }

  .div-block-2 {
    margin-top: 20px;
  }

  .div-block-3 {
    width: 90%;
    margin-right: 0;
  }

  .section-contact {
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 0;
  }

  .section-contact.no-gap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .section-comp-tences {
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .section-comp-tences.no-gap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .secondary-banner-objectifs {
    height: auto;
    margin-bottom: 200px;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .secondary-banner-objectifs.less-margin {
    margin-bottom: 184px;
  }

  .container-default {
    flex-direction: column;
    align-items: stretch;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
  }

  h3 {
    font-size: 24px;
  }

  .navbar {
    z-index: 99999;
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    display: inline-block;
  }

  .nav-link.w--current {
    color: var(--jaune-vers-demain);
  }

  .cross-icon {
    font-style: normal;
    display: none;
  }

  .nav-menu-wrapper {
    z-index: 1;
    background-color: #640131;
    min-width: 320px;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .container.middle-allign {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container.overflow-hidden {
    top: -171px;
  }

  .container.middle-allign-no-gap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .site-logo {
    width: 70%;
  }

  .nav-menu {
    border-radius: 0;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-bottom {
    text-align: center;
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .footer-block {
    flex-direction: column;
  }

  .footer-block.subscribe-block {
    border-top: 1px solid #d2d2d2;
    max-width: none;
  }

  ._3-column-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .navbar-logo-wrapper {
    z-index: 1;
  }

  .footer-copyright {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }

  .hero-section {
    background-image: url('../images/img-FLJ-15.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    position: static;
  }

  .hero-paragraph {
    margin-top: 10px;
    font-size: 26px;
  }

  .hero-column-block {
    flex-direction: column;
  }

  .hero-image {
    max-height: 520px;
  }

  .hero-image-wrapper {
    width: 100%;
  }

  .hero-contents {
    z-index: 2;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
    top: 5px;
  }

  ._480px-height-image {
    margin-top: -5px;
  }

  .grid-block {
    grid-template-columns: 1fr;
  }

  .grid-block.reverse {
    flex-flow: column;
    display: flex;
  }

  ._580px-image {
    width: 75%;
  }

  ._18px-primary-text {
    font-size: 15px;
    line-height: 20px;
  }

  .section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .slider-mask {
    max-width: none;
    overflow: hidden;
  }

  .slider-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .slider-navigation {
    top: -56px;
    left: auto;
    right: 0;
  }

  .slider-navigation.right-arrow {
    top: -56px;
    left: auto;
    right: 146px;
  }

  .background-color-slider {
    display: none;
  }

  .slider-wrapper-padding {
    padding-left: 15px;
    padding-right: 15px;
    overflow: visible;
  }

  .slider {
    margin-top: 100px;
  }

  .slider-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .gathering-slider {
    margin-top: 100px;
  }

  .volunteer-info-block {
    font-size: 16px;
    line-height: 20px;
  }

  .volunteer-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .input-field-wrapper {
    max-width: none;
  }

  ._48px-text {
    font-size: 30px;
    line-height: 40px;
  }

  .volunteer-form {
    flex-direction: column;
    align-items: flex-start;
  }

  .movement-card {
    width: 100%;
    max-width: 440px;
  }

  .movement-name {
    font-size: 20px;
    line-height: 30px;
  }

  .slide-block, .blog-card {
    max-width: none;
  }

  .main-banner {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  ._48-px-white-heading {
    font-size: 30px;
    line-height: 40px;
  }

  .heading-style-box {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-direction: column;
    padding: 30px;
  }

  .tag-box {
    width: 100%;
    height: 150px;
  }

  .tag-text {
    font-size: 70px;
    line-height: 70px;
  }

  .secondary-banner {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .about-image-3 {
    top: 197px;
  }

  .about-image-1 {
    position: relative;
    top: -43px;
    left: -60px;
  }

  .about-image-2 {
    margin-bottom: 60px;
    position: relative;
    top: 65px;
    left: -14px;
  }

  .about-card {
    padding-top: 120px;
  }

  .about-icon {
    top: -20px;
  }

  ._18px-title {
    font-size: 18px;
    line-height: 22px;
  }

  .banner-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .core-values-container {
    padding: 35px;
  }

  ._4-column-grid {
    grid-column-gap: 10px;
  }

  .donation-field {
    height: 60px;
  }

  ._48-px-heading {
    font-size: 30px;
    line-height: 40px;
  }

  .field-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .donation-form {
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .play-pause-button {
    width: 60px;
    height: 60px;
  }

  .video {
    height: 400px;
  }

  ._48px-primary-title {
    font-size: 30px;
    line-height: 40px;
  }

  ._2-column-grid {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .banner-background {
    max-width: 87%;
    height: 137%;
    bottom: -80px;
  }

  .contact-card {
    padding: 25px 10px;
  }

  .contact-form {
    padding: 60px 40px 58px;
  }

  .featured-blogs {
    max-width: 480px;
  }

  .post-image {
    max-height: 360px;
  }

  .tag-block {
    flex-wrap: wrap;
  }

  .movement-cover-image {
    margin-bottom: 30px;
  }

  .join-us-form {
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq-contents {
    padding-right: 40px;
  }

  .faq-title {
    width: 100%;
  }

  .faq-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .speaker-image {
    height: auto;
  }

  .event-meta-block {
    flex-direction: column;
  }

  ._404-bottom-right-image {
    width: 45%;
  }

  ._404-bottom-left-image {
    width: 57%;
  }

  ._404-heading {
    font-size: 50px;
    line-height: 65px;
  }

  .utility-page-wrap-2 {
    justify-content: flex-start;
    padding-top: 35%;
  }

  .changelog-section {
    margin-top: 40px;
    margin-bottom: -40px;
  }

  .background-video {
    height: 320px;
  }

  .event-list-card {
    flex-flow: column;
  }

  .event-list-image {
    max-width: none;
    min-height: 300px;
  }

  .speaker-slider-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .slider-wrapper-padding-200px {
    padding-left: 15px;
    padding-right: 15px;
    overflow: visible;
  }

  .slider-speaker-card {
    max-width: none;
  }

  .slider-speaker-image {
    max-height: 700px;
  }

  .slider-mask-450px {
    max-width: none;
    overflow: hidden;
  }

  .white-background-slider {
    display: none;
  }

  .section-preview {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-preview.demo-page-section {
    padding-top: 160px;
  }

  .preview-4-col-grid, .preview-4-col-grid.features-preview {
    grid-template-columns: 1fr;
  }

  .mobile-image {
    max-width: 192px;
  }

  .highlight {
    padding: 16px;
  }

  .highlight.smaller {
    padding: 0 20px;
  }

  .preview-heading {
    font-size: 36px;
    line-height: 50px;
  }

  .cross-icon-3 {
    font-size: 30px;
    font-style: normal;
    line-height: 40px;
    display: none;
  }

  .preview-title {
    font-size: 46px;
    line-height: 60px;
  }

  .site-images {
    margin-top: 0;
  }

  .preview-nav-menu {
    border-radius: 0;
  }

  .homepage-demos-2 {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    display: flex;
  }

  .preview-nav-wrapper {
    z-index: 2;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .hero-paragraph-2 {
    margin-bottom: 23px;
    font-size: 23px;
  }

  .image {
    z-index: 1;
    box-sizing: border-box;
    object-fit: cover;
    width: 1000px;
    display: none;
    position: absolute;
    top: 33%;
    left: 9%;
    overflow: visible;
  }

  .heading-2 {
    line-height: 33px;
  }

  .div-block-2 {
    margin-top: 0;
  }

  .div-block-3 {
    width: 95%;
  }

  .section-contact {
    margin-top: 80px;
    margin-bottom: 0;
  }

  .heading-white {
    margin-right: 0;
    line-height: 38px;
  }

  .section-comp-tences {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .secondary-banner-objectifs {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .italic-text {
    font-size: 34px;
    line-height: 30px;
  }

  .preview-button {
    width: 18%;
    min-width: 18%;
    min-height: 32%;
    max-height: 32%;
  }

  .container-default.preview {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 34px;
    line-height: 50px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3 {
    font-size: 22px;
    line-height: 28px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .navbar {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .nav-link {
    font-size: 14px;
    line-height: 22px;
  }

  .nav-link.w--current {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-menu-wrapper {
    z-index: 2;
    background-color: #640131;
    min-width: 260px;
  }

  .hamburger-icon {
    background-color: #fff0;
    font-size: 25px;
  }

  .container {
    align-items: center;
    padding: 0 15px;
  }

  .site-logo {
    width: 70%;
  }

  .default-text {
    color: var(--white);
  }

  .dropdown-options {
    min-width: 230px;
    right: -84.7031px;
  }

  .nav-menu {
    grid-row-gap: 20px;
    flex-direction: column;
    overflow: visible;
  }

  .nav-menu-border {
    height: 4px;
  }

  .footer-title {
    font-size: 22px;
    line-height: 32px;
  }

  ._10px-gap {
    align-items: flex-start;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-bottom {
    text-align: center;
  }

  ._24px-gap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .footer-block {
    grid-row-gap: 20px;
    border-top: 1px solid #d2d2d2;
    max-width: none;
  }

  .footer-block.first-block {
    border-top-style: none;
    border-bottom-style: none;
  }

  ._3-column-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .navbar-logo-wrapper {
    max-width: 200px;
    padding-left: 0;
  }

  .footer-link {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-section {
    padding-top: 45px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 46px;
  }

  .hero-image {
    display: none;
  }

  ._2-column-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  ._580px-image {
    width: 100%;
  }

  ._18px-primary-text {
    line-height: 19px;
  }

  .section {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .absolute-image {
    width: 50%;
    display: none;
    right: 165px;
  }

  .mask.related-post {
    max-width: 110px;
    height: auto;
  }

  ._4-column-grid-no-gap {
    grid-template-columns: 1fr;
  }

  .slider-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .navigation-button {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .slider-navigation {
    max-width: 110px;
  }

  .slider-navigation.right-arrow {
    max-width: 140px;
    right: 120px;
  }

  .slider-wrapper-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .slider-container {
    align-items: center;
    padding: 0 15px;
  }

  .gathering-slider-navigation {
    max-width: 110px;
  }

  .gathering-slider-navigation.gathering-right-arrow {
    max-width: 140px;
    right: 120px;
  }

  .volunteer-icon-wrapper._68px {
    width: 50px;
    height: 50px;
  }

  .contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .icon-list-wrapper {
    grid-template-columns: 1fr;
  }

  .volunteer-form-block {
    margin-bottom: 40px;
    padding-right: 20px;
  }

  .event-card {
    height: 340px;
  }

  .movement-card {
    height: 320px;
  }

  .slider-image {
    height: 220px;
  }

  ._24px-text {
    font-size: 22px;
    line-height: 34px;
  }

  .blog-thumbnail {
    height: 240px;
  }

  .blog-body {
    padding: 20px 25px;
  }

  .blog-divider {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .main-banner {
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .breadcrumb.w--current {
    font-size: 15px;
    line-height: 24px;
  }

  .heading-style-box {
    padding: 20px;
  }

  .sub-title-of-style-guide {
    min-width: 85px;
    font-size: 14px;
  }

  .font-details-text {
    font-size: 14px;
  }

  .style-guide-wrapper {
    width: 100%;
  }

  .heading-details-block {
    grid-column-gap: 14px;
  }

  .margin-top-20px {
    margin-top: 10px;
  }

  ._24px-title {
    font-size: 22px;
    line-height: 34px;
  }

  .divider-milestone {
    display: none;
  }

  .slider-animation-wrapper {
    width: 100%;
  }

  .milestone-card-wrapper {
    width: 100%;
    min-width: auto;
  }

  .partners-grid {
    flex-direction: column;
    grid-template-columns: 1fr 1fr 1fr;
    transform: none;
  }

  .banner-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .banner-cover-video {
    max-height: 260px;
    box-shadow: 20px -39px #fff3;
  }

  ._420px-video {
    height: 280px;
  }

  ._24px-text-white-absolute {
    font-size: 18px;
    line-height: 30px;
  }

  .core-values-bg {
    min-height: 240px;
  }

  .core-values-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: -150px;
    padding: 40px 15px 15px;
  }

  ._4-column-grid {
    grid-template-columns: 1fr;
  }

  .donation-field {
    height: 50px;
    margin-bottom: 10px;
    padding-left: 12px;
    font-size: 18px;
    line-height: 24px;
  }

  .bold-label {
    margin-bottom: 5px;
  }

  .input-field {
    margin-bottom: 10px;
  }

  .field-wrapper {
    flex-direction: column;
  }

  .donation-form {
    padding: 30px 20px 40px;
  }

  .play-pause-button {
    width: 45px;
    height: 45px;
  }

  .video {
    height: 260px;
  }

  ._48px-svg {
    max-width: 36px;
  }

  .benefits-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-top: -20px;
  }

  ._26px-svg {
    max-width: 20px;
  }

  .floating-counter {
    max-width: 153px;
    padding-top: 12px;
    padding-bottom: 12px;
    inset: auto auto -13% -10px;
  }

  .floating-counter.top-right {
    inset: -10% -10px auto auto;
  }

  .left-sidebar-body {
    padding-left: 15px;
    padding-right: 15px;
  }

  ._60px-margin-section {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .widget-sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hover-wrapper {
    font-size: 15px;
  }

  .hover-wrapper:hover {
    padding-left: 10px;
    padding-right: 10px;
  }

  .submenu-arrow {
    font-size: 20px;
    line-height: 20px;
  }

  .movement-banner {
    width: 100%;
  }

  .banner-background {
    max-width: 84%;
    height: 144%;
    display: none;
    right: 16px;
  }

  .contact-form {
    padding: 40px 20px 38px;
  }

  .contact-field {
    height: 50px;
  }

  .contact-field.text-area-166px {
    min-height: 120px;
  }

  .widget {
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured-blogs {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .post-title {
    font-size: 13px;
    line-height: 20px;
  }

  .tag-button {
    font-size: 14px;
    line-height: 22px;
  }

  .post-image {
    width: 100%;
    max-width: 100%;
  }

  .blog-heading {
    font-size: 28px;
    line-height: 40px;
  }

  .join-us-form {
    padding: 30px 20px 40px;
  }

  .faq {
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .faq-contents {
    padding: 20px 15px;
    font-size: 14px;
    line-height: 22px;
  }

  .faq-title {
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 24px;
  }

  .faq-swtich {
    justify-content: space-between;
    padding: 10px 15px;
  }

  .faq-wrapper {
    display: flex;
  }

  .event-meta-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  ._404-bottom-right-image {
    display: none;
  }

  ._404-bottom-left-image {
    width: 100%;
  }

  ._404-heading {
    font-size: 38px;
    line-height: 50px;
  }

  .utility-page-wrap-2 {
    padding-top: 50%;
  }

  .changelog-section {
    margin-bottom: -20px;
  }

  .license-section {
    margin-top: 40px;
  }

  .license-main-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .license-title {
    font-size: 18px;
    line-height: 27px;
  }

  .license-paragraph {
    font-size: 14px;
    line-height: 21px;
  }

  .background-video {
    height: 210px;
  }

  .event-list-image {
    min-height: 240px;
  }

  .margin-top-20px-margin-bottom-40px {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .speaker-slider-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .slider-wrapper-padding-200px {
    padding-left: 0;
    padding-right: 0;
  }

  .section-preview {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-preview.demo-page-section {
    padding-top: 120px;
  }

  .brand {
    max-width: 150px;
  }

  .mobile-image {
    max-width: 92px;
    margin-left: -100px;
  }

  .highlight {
    padding: 0 9px;
  }

  .highlight.smaller {
    background-size: contain;
    padding-left: 16px;
    padding-right: 16px;
  }

  .preview-heading {
    font-size: 22px;
  }

  .large-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cross-icon-3 {
    font-size: 20px;
    line-height: 20px;
  }

  .preview-title {
    font-size: 30px;
    line-height: 45px;
  }

  .preview-nav-menu {
    grid-row-gap: 15px;
    flex-direction: column;
    overflow: visible;
  }

  .hamburger-icon-3 {
    background-color: #fff0;
    font-size: 20px;
    line-height: 20px;
  }

  .hero-paragraph-2 {
    margin-bottom: 20px;
  }

  .section-contact {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 60px;
    margin-bottom: 0;
  }

  .section-comp-tences {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#w-node-_2edda6d2-00c3-6e40-36e5-3070d43fb9f8-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fb9fe-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba24-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba2a-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba30-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba36-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba3c-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba42-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba48-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba4e-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba54-caa32344, #w-node-e8f9e18e-944f-314f-9043-6115d25f4725-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba66-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba6c-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba72-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba78-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba7e-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fba84-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027cce-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027cd4-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027cda-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027ce0-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027cec-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027cf2-caa32344, #w-node-_7dabb434-1840-dda0-40d7-ea286e027d10-caa32344, #w-node-a1c346c8-0383-fee0-8325-41d12ee53f2d-caa32344, #w-node-c27fe5ce-ea75-db83-0b44-7fdf071986c6-caa32344, #w-node-c27fe5ce-ea75-db83-0b44-7fdf071986d8-caa32344, #w-node-c27fe5ce-ea75-db83-0b44-7fdf071986e4-caa32344, #w-node-c27fe5ce-ea75-db83-0b44-7fdf071986f6-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbaf2-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbafd-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb03-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb09-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb0f-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb15-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb1b-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb21-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb27-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb2d-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb33-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb39-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb3f-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb45-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb4b-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb51-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb57-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb65-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb6b-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb71-caa32344, #w-node-_2edda6d2-00c3-6e40-36e5-3070d43fbb77-caa32344, #w-node-_0eb315c2-b356-1a27-28f8-725c9dab8462-caa3236b, #w-node-_0eb315c2-b356-1a27-28f8-725c9dab8469-caa3236b, #w-node-_0eb315c2-b356-1a27-28f8-725c9dab8470-caa3236b, #w-node-_55ac75d5-c9de-029a-4409-1857f364e2f9-caa3236b, #w-node-_55ac75d5-c9de-029a-4409-1857f364e300-caa3236b, #w-node-_12cb2df4-d315-087c-b5bd-7c72821a4d40-caa3236b, #w-node-_12cb2df4-d315-087c-b5bd-7c72821a4d46-caa3236b, #w-node-_12cb2df4-d315-087c-b5bd-7c72821a4d4e-caa3236b, #w-node-_1d356cda-eab3-a881-c17f-dbe73ea0d2a9-3ea0d2a9, #w-node-_72c8852b-f744-5dcb-83ee-9fb34e77d9f2-4e77d9f2, #w-node-d3ba81ca-c1a8-d215-dc63-fbdd28da7189-28da7189, #w-node-af4c4c36-6bd2-07bf-f6b9-f02a401201c2-caa323b7, #w-node-af4c4c36-6bd2-07bf-f6b9-f02a401201c8-caa323b7, #w-node-af4c4c36-6bd2-07bf-f6b9-f02a401201ce-caa323b7, #w-node-fd618949-5cb2-cced-a514-f909b80a2230-caa323bb, #w-node-fd618949-5cb2-cced-a514-f909b80a2237-caa323bb, #w-node-fd618949-5cb2-cced-a514-f909b80a223e-caa323bb, #w-node-fd618949-5cb2-cced-a514-f909b80a2245-caa323bb, #w-node-_056a1f82-1cbf-6878-f82e-02da120e881f-caa323bb, #w-node-_056a1f82-1cbf-6878-f82e-02da120e8826-caa323bb, #w-node-_056a1f82-1cbf-6878-f82e-02da120e882d-caa323bb, #w-node-bc4a6c2c-e096-0f6d-3bc1-0e5e567ea26a-caa323bc, #w-node-bc4a6c2c-e096-0f6d-3bc1-0e5e567ea271-caa323bc, #w-node-bc4a6c2c-e096-0f6d-3bc1-0e5e567ea278-caa323bc, #w-node-bc4a6c2c-e096-0f6d-3bc1-0e5e567ea27f-caa323bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Icofont';
  src: url('../fonts/icofont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}