:root {
  --dark-text: #333;
  --shadows: rgba(0, 0, 0, .3);
  --primary-dark: #002a3a;
  --secondary: #de480f;
  --primary-light: #00aaa7;
}

body {
  color: var(--dark-text);
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  display: inline;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 25px;
}

.navbar {
  z-index: 99;
  box-shadow: 0 0 10px 0 var(--shadows);
  background-color: #fff;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-global {
  padding-left: 25px;
  padding-right: 25px;
}

.container-large {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.header_wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-logo_image {
  width: 250px;
}

.header-menu_wrapper {
  grid-column-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.header-menu_link {
  color: var(--primary-dark);
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 5px 7px;
  font-weight: 600;
  text-decoration: none;
}

.header-menu_link:hover, .header-menu_link.w--current {
  color: var(--secondary);
  text-decoration: underline;
}

.header-menu_link.dropdown {
  padding-right: 28px;
}

.dropdown_icon {
  margin-right: 7px;
}

.dropdown_list {
  box-shadow: 2px 2px 10px 0 var(--shadows);
  background-color: #fff;
}

.header-menu-right_wrapper {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.button {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--primary-light), #098083);
  box-shadow: 0 0 10px 0 var(--shadows);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 16px 24px;
  font-weight: 600;
  line-height: 1;
  transition: all .2s;
}

.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
}

.button.crowdfunding {
  background-image: url('../images/kickstarter-logo-k-white.svg'), radial-gradient(circle farthest-corner at 50% 50%, var(--primary-light), #098083);
  background-position: 90%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 17px, auto;
  padding-right: 47px;
}

.button.more {
  display: none;
}

.button.has--icon {
  background-image: url('../images/download.png'), radial-gradient(circle farthest-corner at 50% 50%, var(--primary-light), #098083);
  background-position: 90%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 18px, auto;
  padding-right: 63px;
}

.home-hero_section {
  background-image: url('../images/IS1.jpg');
  background-position: 100% 40px;
  background-size: cover;
}

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

.padding-section-large.hero {
  padding-top: 180px;
}

.padding-section-large.no-bottom-padding {
  padding-bottom: 0;
}

.hero-content_wrapper {
  max-width: 730px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-icons_wrapper {
  max-width: 80%;
  grid-column-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  margin-bottom: 20px;
  display: grid;
}

.hero-icons_wrapper.landing-page {
  width: 610px;
  max-width: 100%;
  align-items: start;
}

.hero_icon {
  width: 100%;
}

.container-medium {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.home-about_wrapper {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.highlight_text {
  color: var(--primary-light);
}

.hero-icon_block {
  width: 80px;
  min-width: 80px;
  grid-row-gap: 10px;
  color: var(--primary-dark);
  text-align: center;
  white-space: nowrap;
  flex-direction: column;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
}

.hero-icon_circle {
  background-color: #fff;
  border: 1px solid #e0dee6;
  border-radius: 200px;
  padding: 20px;
}

.social-bar_wrapper {
  z-index: 2;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-right: 15px;
  display: flex;
  position: fixed;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: translate(0, -50%);
}

.social-bar_link {
  width: 50px;
  height: 50px;
  box-shadow: 0 0 10px 0 var(--shadows);
  background-color: #fff;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.social-bar_link:hover {
  transform: translate(-1px, -1px);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

.social-bar_image {
  width: 25px;
  max-height: 25px;
}

.social-bar_image.smaller {
  width: 20px;
  max-height: 20px;
}

.countdown_section {
  display: none;
}

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

.padding-section-medium.no-bottom-padding {
  padding-bottom: 0;
}

.padding-section-medium.no-top-padding {
  padding-top: 0;
}

.container-small {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.countdowm-wrapper {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.countdown {
  color: #b3b3b3;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.home-simplify_wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

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

.simplify_image {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px 0 var(--shadows);
  object-fit: cover;
}

.home-products_heading {
  margin-bottom: 20px;
}

.dark-background {
  background-color: #e8edef;
}

.products-list_wrapper {
  height: 370px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  display: flex;
}

.products-list_item {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.products-list_divider {
  width: 1px;
  height: 70%;
  background-color: #aeaec0;
  margin-left: 10px;
  margin-right: 10px;
}

.product_card {
  width: 100%;
  height: 100%;
  grid-column-gap: 30px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.product_image {
  max-height: 100%;
  max-width: 180px;
  object-fit: contain;
}

.product_image.hover-card {
  max-width: 220px;
}

.product_image.hover-card.bloc {
  max-width: 170px;
}

.product_image.tbloc {
  max-width: 130px;
}

.product-content_wrapper {
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.product-content_wrapper.align-left {
  min-width: 150px;
  text-align: left;
  align-items: flex-start;
}

.product-content_text {
  font-family: Rubik, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.product_hover-card {
  width: 100%;
  height: 490px;
  grid-row-gap: 50px;
  box-shadow: 0 0 10px 0 var(--shadows);
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: none;
  position: absolute;
  top: 50%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0, -50%);
}

.heading_wrapper {
  width: 100%;
  align-items: flex-end;
  display: flex;
}

.heading_divider {
  width: 100%;
  height: 5px;
  background-color: var(--primary-light);
  margin-bottom: 4px;
  margin-left: 20px;
}

.heading {
  white-space: nowrap;
  line-height: 1;
}

.adventure_wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.timeline_wrapper {
  grid-column-gap: 200px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.timeline_block {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.timeline_block.right-block {
  margin-top: 40px;
}

.timeline-vertical-bar {
  z-index: 1;
  width: 2px;
  height: 100%;
  background-color: var(--primary-dark);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 9px;
}

.timeline_list {
  z-index: 2;
  max-width: 360px;
  grid-row-gap: 30px;
  color: var(--primary-dark);
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 600;
  display: flex;
  position: relative;
}

.timeline_item {
  min-height: 50px;
  grid-column-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.timeline_dot {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  background-color: var(--primary-light);
  border-radius: 100px;
}

.timeline_dot.red {
  background-color: var(--secondary);
}

.timeline_dot.grey {
  background-color: #617b85;
}

.team_section {
  background-image: linear-gradient(to right, #e5eaeb, #e5efef);
  position: relative;
}

.team_wrapper {
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.team-list_wrapper {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-bottom: 10px;
  display: grid;
}

.team_card {
  width: 200px;
  height: 200px;
  border-radius: 500px;
}

.team_image {
  width: 100%;
  height: 100%;
}

.team-more_wrapper {
  justify-content: center;
  align-items: flex-end;
  margin-top: -26px;
  display: flex;
}

.team-more_button {
  width: 35px;
  height: 35px;
  background-color: var(--primary-light);
  box-shadow: 0 0 10px 0 var(--shadows);
  cursor: pointer;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.plus_icon {
  width: 100%;
  height: 100%;
}

.team-highlight_wrapper {
  padding: 60px;
  display: none;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.team-highlight_wrapper.hide {
  display: none;
}

.team-highlight_wrapper.visible {
  display: flex;
}

.team-highlight_content {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  grid-column-gap: 30px;
  background-color: #f3f6f7;
  border-radius: 10px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.team-highlight-text_wrapper {
  grid-row-gap: 20px;
  color: var(--primary-dark);
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.team-highlight-top_wrapper {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.team-name {
  font-family: Rubik, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.place_wrapper {
  grid-column-gap: 6px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
}

.marker_icon {
  height: 1.5rem;
}

.team-quote_text {
  font-size: 1.3rem;
  font-weight: 600;
}

.team-highlight_image {
  width: 40%;
  height: 100%;
  min-width: 40%;
  object-fit: cover;
}

.close-button {
  width: 50px;
  height: 50px;
  box-shadow: 0 0 10px 0 var(--shadows);
  cursor: pointer;
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 17px;
  display: flex;
  position: absolute;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -15px;
}

.social_wrapper {
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.social-images_list {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.social_link {
  transition: transform .2s;
}

.social_link:hover {
  box-shadow: 0 0 10px 0 var(--shadows);
  transform: scale(1.05);
}

.footer {
  background-color: var(--primary-light);
}

.newsletter_wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer_divider {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-bottom: 40px;
}

.footer-grid_wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr min-content;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.footer-heading_text {
  margin-bottom: 9px;
  font-family: Rubik, sans-serif;
  font-weight: 600;
}

.footer-grid_block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer_link {
  color: var(--primary-dark);
  text-decoration: none;
}

.footer_link:hover {
  font-weight: 600;
  text-decoration: underline;
}

.footer-social_wrapper {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.footer-social_image {
  width: 35px;
  min-width: 35px;
}

.copyrights {
  text-align: center;
  padding-bottom: 5px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: .8rem;
}

.menu-main_wrapper {
  grid-column-gap: 60px;
  justify-content: space-between;
  display: flex;
}

.menu-close_button {
  display: none;
}

.history_wrapper {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.history-content_wrapper {
  grid-row-gap: 20px;
  text-align: justify;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.history-slider_wrapper {
  width: 400px;
  height: 400px;
  min-width: 400px;
  display: flex;
  position: relative;
}

.history-slider_block {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.history-slider_date {
  color: var(--primary-light);
  font-size: 1.2rem;
  font-weight: 700;
}

.history-slider_title {
  font-size: 1rem;
}

.history-slider-counter_wrapper {
  z-index: 50;
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: #fff;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: auto;
  right: 30px;
}

.history-slider-counter_text.second {
  font-size: 1.8rem;
  font-weight: 400;
}

.history-slider_background {
  width: 100%;
  height: 380px;
  grid-row-gap: 20px;
  box-shadow: 0 0 10px 0 var(--shadows);
  text-align: center;
  background-color: #f0f0f3;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  font-size: .9rem;
  display: flex;
  position: relative;
}

.mission_section {
  background-color: rgba(0, 170, 167, .09);
}

.mission_wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.problem_wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.problem_block {
  min-height: 420px;
  background-color: var(--primary-light);
  font-size: .9rem;
  position: relative;
  overflow: hidden;
}

.problem-content_wrapper {
  grid-row-gap: 10px;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.problem_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem_image.align-right {
  object-position: 100% 50%;
}

.problem-first_text {
  height: 50px;
}

.problem-content_heading {
  height: 58px;
}

.dynamic_wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.dynamic-alternate_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.alternate-image_wrapper {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.alternate-content_wrapper {
  width: 100%;
  height: 100%;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 50px;
  display: flex;
}

.alternate_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alternate_image.first {
  object-position: 100% 50%;
}

.team-startup_wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team-startup_carousel {
  margin-top: 20px;
  padding-bottom: 20px;
}

.team-startup_item {
  color: #4e6871;
  flex-direction: column;
  align-items: center;
  font-size: .9rem;
  display: flex;
}

.team-startup_image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.team-startup_name {
  font-size: 1rem;
  font-weight: 700;
}

.faq_wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text_link {
  color: var(--dark-text);
}

.faq-accordion_wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.accordion_item {
  box-shadow: 0 0 10px 0 var(--shadows);
  border-radius: 10px;
  padding: 24px 30px;
  font-size: .9rem;
}

.accordion_trigger {
  color: var(--primary-dark);
  cursor: pointer;
  justify-content: space-between;
  margin-top: 10px;
  display: flex;
}

.accordion_content {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: 10px;
  margin-right: 30px;
  display: flex;
  overflow: hidden;
}

.trigger_icon {
  width: 18px;
  height: 18px;
  max-height: 18px;
  max-width: 18px;
  min-height: 18px;
  min-width: 18px;
}

.contact_section {
  min-height: 80vh;
}

.contact_wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.contact-form_wrapper {
  max-width: 650px;
}

.form_line {
  width: 100%;
  grid-column-gap: 10px;
  justify-content: flex-start;
  display: flex;
}

.form_block {
  width: 100%;
}

.madatory {
  color: var(--secondary);
}

.text-field {
  margin-bottom: 0;
}

.text-field.message {
  max-height: 500px;
  max-width: 100%;
  min-height: 100px;
  min-width: 100%;
}

.form {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.rgpd_content {
  margin-top: 30px;
}

.rgpd_content h2 {
  margin-bottom: 20px;
  display: block;
}

.rgpd_content p {
  margin-bottom: 10px;
}

.rgpd_content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.landing-newsletter_section {
  position: relative;
}

.landing-newsletter_wrapper {
  width: 70%;
  grid-row-gap: 20px;
  flex-direction: column;
  padding-right: 12px;
  display: flex;
}

.landing-newsletter_background {
  z-index: -1;
  height: 100%;
  max-width: 44vw;
  object-fit: contain;
  object-position: 50% 0%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.landing_column {
  display: flex;
}

.spacer {
  width: 30%;
}

.blue-text {
  color: var(--primary-light);
}

.div-block {
  justify-content: center;
  margin-top: 80px;
  display: flex;
}

.max-width {
  max-width: 500px;
}

.history-slider-counter_text-first {
  min-width: 1rem;
  text-align: right;
  position: absolute;
  top: 10px;
  left: 8px;
}

.history-slider-counter_text-third {
  position: absolute;
  bottom: 10px;
  right: 8px;
}

.history_carousel {
  width: 100%;
  height: 100%;
  display: flex;
}

.mobile_nav {
  display: none;
}

.heading-underline_image {
  transform: translate(76px);
}

.startup_h1 {
  font-size: 1.5625rem;
}

.startup-heading_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.newsletter-modal_wrapper {
  z-index: 105;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.modal_backround {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  cursor: pointer;
  background-color: rgba(51, 51, 51, .4);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.modal-content_wrapper {
  width: 100%;
  max-width: 620px;
  grid-column-gap: 20px;
  background-color: #fff;
  border-radius: 6px;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
  position: relative;
}

.modal-top {
  grid-column-gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.modal-top_line {
  width: 15px;
  height: 1px;
  background-color: var(--dark-text);
}

.modal-top_text {
  color: var(--secondary);
}

.modal-main_paragraph {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.modal-left_wrapper {
  max-width: 100%;
}

.modal-image_wrapper {
  width: 30%;
  min-width: 30%;
}

.modal_embed {
  max-height: 200px;
}

.modal_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-block {
  display: none;
}

.social_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-language_wrapper2 {
  grid-column-gap: 4px;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.header-language_link2 {
  color: var(--dark-text);
  text-decoration: none;
}

.header-language_link2.active {
  font-weight: 800;
}

.crowd_content {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.crowd-left_component {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.crowd-form_wrapper {
  min-width: 25rem;
}

.crowd-form_embed {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
}

.crowd-comment_heading {
  margin-bottom: 1rem;
}

.div-block-2 {
  grid-column-gap: 3rem;
  display: flex;
}

.heading-2 {
  color: var(--primary-dark);
}

.heading-3 {
  color: var(--dark-text);
}

.press-elements_wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.press-title_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.download_item {
  grid-column-gap: 15px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.download_label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.download_label.smaller {
  font-size: .8rem;
}

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

.download-pdf_item {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.download-pdf_image {
  width: 50%;
  min-width: 440px;
}

.download-pdf_list {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.div-block-3 {
  grid-column-gap: 30px;
  align-items: flex-start;
  display: flex;
}

.download-pdf_link {
  color: var(--primary-dark);
  background-image: url('../images/download-1.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 1rem;
  padding-right: 30px;
  font-weight: 600;
  text-decoration: underline;
}

.download-pdf_link:hover {
  text-decoration: none;
}

.article_wrapper {
  width: 100%;
  max-width: 1140px;
  border: 1px solid var(--shadows);
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem;
  display: flex;
}

.vdn_image {
  width: 100%;
}

.vdn_image.smaller {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.vdn_h2 {
  margin-bottom: 1rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 3.125rem;
  display: block;
}

.article_container {
  width: 764px;
  max-width: 764px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.vdn_text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
}

.vdn_logo {
  width: 170px;
  margin-bottom: 2rem;
}

.vdn_head-text {
  margin-bottom: 2rem;
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
}

.vdn_legend {
  margin-left: auto;
  margin-right: auto;
}

.vdn_h3 {
  margin-top: 2rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 2.2rem;
}

.image {
  width: 120px;
  margin-top: 1rem;
}

.div-block-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  display: flex;
}

@media screen and (max-width: 991px) {
  .navbar {
    position: static;
  }

  .padding-global {
    height: 100%;
  }

  .header-menu_wrapper {
    display: none;
  }

  .header-menu_link {
    font-size: 1.2rem;
  }

  .header-menu_link.dropdown {
    text-align: center;
  }

  .header-menu_link.dropdown.w--open {
    text-align: center;
    display: block;
  }

  .dropdown_link {
    justify-content: center;
    display: flex;
  }

  .dropdown_list {
    box-shadow: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    align-items: center;
    display: none;
    position: relative;
  }

  .header-menu-right_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .button.crowdfunding, .button.hide-non-desktop {
    display: none;
  }

  .home-hero_section {
    background-position: 50%;
  }

  .padding-section-large.hero {
    padding-top: 100px;
  }

  .hero-icon_block {
    width: 80px;
  }

  .product_card {
    flex-direction: column;
  }

  .product_image {
    max-width: 100px;
  }

  .heading_wrapper {
    grid-row-gap: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .heading_divider {
    margin-bottom: 0;
    margin-left: 0;
  }

  .heading {
    white-space: normal;
    line-height: 1.2;
  }

  .timeline_wrapper {
    grid-column-gap: 60px;
    justify-content: space-between;
    padding-left: 0;
  }

  .social_link:hover {
    box-shadow: none;
    transform: none;
  }

  .menu-main_wrapper {
    z-index: 99;
  }

  .menu-close_button {
    cursor: pointer;
    padding: 25px;
    display: block;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .menu-close_icon {
    width: 25px;
    height: 25px;
  }

  .burger_image {
    width: 40px;
    height: 40px;
  }

  .history_wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .problem_wrapper {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .problem-content_wrapper {
    top: 50%;
    transform: translate(0, -50%);
  }

  .problem_image {
    opacity: .8;
  }

  .problem-first_text {
    display: none;
  }

  .problem-content_heading {
    height: auto;
  }

  .alternate-content_wrapper {
    padding: 50px 40px;
  }

  .team-startup_wrapper {
    text-align: center;
  }

  .text_link.underline {
    text-decoration: underline;
  }

  .landing-newsletter_wrapper {
    width: 100%;
    padding-right: 0;
  }

  .landing-newsletter_background {
    max-width: 60vw;
    opacity: .61;
  }

  .spacer {
    display: none;
  }

  .mobile_nav {
    z-index: 99;
    box-shadow: 0 0 10px 0 var(--shadows);
    background-color: #fff;
    display: block;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .nav-mobile-padding {
    padding-top: 9px;
    padding-bottom: 6px;
  }

  .mobile-menu_wrapper {
    width: 100%;
    grid-column-gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .mobile-menu_bloc {
    color: var(--dark-text);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    font-size: .7rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
  }

  .mobile-menu_bloc.home, .html-embed {
    color: var(--primary-light);
  }

  .mobile-big-menu_wrapper {
    height: 100%;
    background-color: #fff;
    flex-direction: column;
    display: none;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .mobile-big-menu_content {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
    position: relative;
  }

  .mobile-big-menu_item {
    grid-column-gap: 10px;
    color: var(--dark-text);
    border-top: 1px solid #c4c4c4;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    text-decoration: none;
    display: flex;
  }

  .mobile-big-menu_item.last {
    border-bottom: 1px solid #c4c4c4;
  }

  .mobile-big-menu_icon {
    min-width: 30px;
  }

  .mobile-big-menu-social_icon {
    max-height: 24px;
  }

  .mobile-copyrights {
    text-align: right;
    font-size: .6rem;
    position: absolute;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 0%;
  }

  .mobile-big-menu-social_wrapper {
    grid-column-gap: 10px;
    align-items: center;
    display: flex;
  }

  .header-language_wrapper2 {
    font-size: 1rem;
  }

  .crowd-form_wrapper {
    min-width: 15rem;
  }

  .crowd-form_embed {
    top: 5rem;
  }

  .div-block-2 {
    grid-row-gap: 3rem;
    flex-direction: column;
  }

  .press-elements_wrapper {
    flex-direction: column;
  }

  .press-title_wrapper {
    margin-bottom: 60px;
  }

  .download_item {
    width: 100%;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .download-pdf_wrapper {
    width: 100%;
  }

  .download-pdf_image {
    min-width: 0;
  }

  .div-block-3 {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .article_container {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.7rem;
  }

  .padding-global {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-logo_image {
    width: 190px;
  }

  .button.hide {
    display: block;
  }

  .home-hero_section {
    background-position: 50%;
  }

  .hero-icons_wrapper {
    max-width: 300px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-icons_wrapper.landing-page {
    max-width: 50%;
  }

  .social-bar_wrapper {
    display: none;
  }

  .padding-section-medium.no-mobile-bottom-padding {
    padding-bottom: 0;
  }

  .simplify_list {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .products-list_wrapper {
    height: auto;
    flex-direction: column;
  }

  .products-list_item {
    width: 100%;
  }

  .products-list_divider {
    width: 70%;
    height: 2px;
  }

  .product_hover-card {
    height: 380px;
    padding: 20px;
    display: none;
  }

  .heading_wrapper {
    text-align: center;
  }

  .team-list_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .team-highlight_content {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-highlight_image {
    width: 100%;
    min-width: 100%;
  }

  .social-images_list {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .social_link {
    margin-left: auto;
    margin-right: auto;
  }

  .social_link:hover {
    transform: none;
  }

  .footer-grid_wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .dynamic-alternate_wrapper {
    grid-template-columns: 1fr;
  }

  .mobile-big-menu_item {
    align-items: flex-start;
  }

  .newsletter-modal_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .crowd_content {
    flex-direction: column;
  }

  .crowd-form_wrapper {
    min-width: 0;
    margin-top: 4rem;
  }

  .crowd-form_embed {
    position: static;
  }

  .press-title_wrapper {
    margin-bottom: 40px;
  }

  .download-pdf_wrapper {
    margin-top: 30px;
  }
}

@media screen and (max-width: 479px) {
  .button {
    font-size: .9rem;
    line-height: 1.4;
  }

  .button.more {
    margin-bottom: 70px;
    display: block;
  }

  .button.hide-mobile {
    display: none;
  }

  .home-hero_section {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto 27vh;
  }

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

  .hero-icons_wrapper {
    width: 250px;
    max-width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-icon_block {
    width: 100%;
    max-width: 100%;
    grid-row-gap: 6px;
    font-size: .6rem;
  }

  .padding-section-medium {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .product_image {
    width: 100%;
  }

  .product_image.tbloc {
    max-width: 90px;
  }

  .product-content_wrapper.align-left {
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .timeline_wrapper {
    flex-direction: column;
    align-items: flex-end;
    padding-right: 10px;
  }

  .team-highlight_wrapper {
    padding: 30px 20px;
  }

  .team-highlight-top_wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .place_wrapper {
    font-size: 1rem;
  }

  .social_link {
    width: auto;
    height: auto;
  }

  .footer-grid_wrapper {
    grid-template-columns: 1fr;
  }

  .history_section {
    background-image: url('../images/startup_background.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .history-slider_wrapper {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: auto;
    min-width: 100%;
  }

  .history-slider-counter_wrapper {
    bottom: -20px;
  }

  .history-slider_background {
    width: 100%;
    height: auto;
    border-radius: 20px;
    font-size: .8rem;
  }

  .problem-content_wrapper {
    padding: 30px 15px;
    position: relative;
    top: auto;
    transform: none;
  }

  .problem_image {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .alternate-content_wrapper {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .landing-newsletter_background {
    max-width: 100vw;
  }

  .mobile-menu_wrapper {
    max-width: 85%;
  }

  .heading-underline_image {
    display: none;
  }

  .startup_h1 {
    width: 100%;
    text-align: left;
  }

  .startup_h1.bigger {
    font-size: 1.8rem;
  }

  .home_h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
    font-size: 1.25rem;
  }

  .newsletter-modal_wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modal-content_wrapper {
    max-height: 90vh;
    grid-row-gap: 20px;
    flex-direction: column;
    padding: 30px 10px;
    overflow: auto;
  }

  .modal-top {
    font-size: .8rem;
  }

  .modal-main_paragraph {
    font-size: 1.2rem;
  }

  .modal-image_wrapper {
    width: 60%;
    min-width: 60%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .modal_image {
    width: 100px;
  }

  .download-pdf_image {
    width: 100%;
  }

  .article_wrapper {
    border-width: 0;
    padding: 0;
  }

  .vdn_h2 {
    font-size: 2.4rem;
  }

  .vdn_text {
    font-size: 1rem;
  }

  .vdn_head-text {
    font-size: 1.3rem;
  }

  .vdn_legend {
    text-align: center;
  }
}

#w-node-_2aa587a0-a538-d1ec-c440-8fc728cb808a-c24a8c8b, #w-node-db64f761-3cbd-0f11-d5e7-48b1de4c9a8a-c24a8c8b, #w-node-_048c189e-b2b5-86ba-6bad-cf8d29036467-c24a8c8b, #w-node-a3657f93-f90d-e239-659b-4701a2ce01a9-c24a8c8b, #w-node-bf80b21a-d7f8-b6d7-3b29-18b75ae9a8c6-c24a8c8b, #w-node-a79f04c1-a2c2-3554-c069-b95e8664f6e5-c24a8c8b, #w-node-_97a72559-6e36-e91f-4419-3420e0bbee55-c24a8c8b, #w-node-e1aa21ab-91ef-16c4-ad6c-1f8fdc36f0be-c24a8c8b, #w-node-e17bb365-8991-75fb-01f1-7430a8ae0c1f-c24a8c8b, #w-node-_91d78672-9439-2059-0c25-ecd69fef414b-c24a8c8b, #w-node-_423b63af-42df-4547-f830-768a6debb90a-c24a8c8b, #w-node-_8dae237b-6e57-d68d-6333-b65cc0e8e317-c24a8c8b, #w-node-d0fea944-a956-39f4-abea-3afb97317552-c24a8c8b, #w-node-_265a3ac7-3ce9-4a16-f589-9f6bdce6af67-c24a8c8b, #w-node-_56bf5af7-2a8a-2ea6-353e-e2fc1d948ff9-c24a8c8b, #w-node-_33104f76-c15a-aa37-9402-bf0da829fd12-c24a8c8b, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386dd0-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386dd1-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386dd9-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386dda-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386ddf-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386de0-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386de6-9c386dc4, #w-node-e4409a93-6fa6-0db4-a7d7-9cea9c386de7-9c386dc4, #w-node-bcd6f26b-e162-0cc1-41b7-d2383a275130-c8dfa01a, #w-node-_43002535-210f-37cc-401d-7ad0cc108cb5-c8dfa01a, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbd90-56149bf1, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbd92-56149bf1, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbd95-56149bf1, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbd9a-56149bf1, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbd9f-56149bf1, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbda4-56149bf1, #w-node-b6d98583-90ec-40e2-d918-ed2ece2cbda9-56149bf1, #w-node-_2aa587a0-a538-d1ec-c440-8fc728cb808a-31ca41df, #w-node-db64f761-3cbd-0f11-d5e7-48b1de4c9a8a-31ca41df, #w-node-_048c189e-b2b5-86ba-6bad-cf8d29036467-31ca41df, #w-node-a3657f93-f90d-e239-659b-4701a2ce01a9-31ca41df, #w-node-bf80b21a-d7f8-b6d7-3b29-18b75ae9a8c6-31ca41df, #w-node-a79f04c1-a2c2-3554-c069-b95e8664f6e5-31ca41df, #w-node-_97a72559-6e36-e91f-4419-3420e0bbee55-31ca41df, #w-node-e1aa21ab-91ef-16c4-ad6c-1f8fdc36f0be-31ca41df, #w-node-e17bb365-8991-75fb-01f1-7430a8ae0c1f-31ca41df, #w-node-_91d78672-9439-2059-0c25-ecd69fef414b-31ca41df, #w-node-_423b63af-42df-4547-f830-768a6debb90a-31ca41df, #w-node-_8dae237b-6e57-d68d-6333-b65cc0e8e317-31ca41df, #w-node-d0fea944-a956-39f4-abea-3afb97317552-31ca41df, #w-node-_265a3ac7-3ce9-4a16-f589-9f6bdce6af67-31ca41df, #w-node-_56bf5af7-2a8a-2ea6-353e-e2fc1d948ff9-31ca41df, #w-node-_33104f76-c15a-aa37-9402-bf0da829fd12-31ca41df, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bc96-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bc97-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bc9f-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bca0-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bca5-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bca6-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bcac-91f2bc88, #w-node-cf0ed9ae-7b52-9dd8-e956-be6a91f2bcad-91f2bc88, #w-node-bcd6f26b-e162-0cc1-41b7-d2383a275130-181d0d24, #w-node-_43002535-210f-37cc-401d-7ad0cc108cb5-181d0d24, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed4f-48e98b1e, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed51-48e98b1e, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed54-48e98b1e, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed59-48e98b1e, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed5e-48e98b1e, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed63-48e98b1e, #w-node-_388b8da8-9ecb-2052-c2dd-34bdf748ed68-48e98b1e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_8e325af8-be23-15e9-fbfd-35fbf68bae17-c8dfa01a {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-dabd5c51-47ff-c79d-dbbe-fbc1e6000017-c8dfa01a {
    grid-area: 7 / 1 / 8 / 2;
  }

  #w-node-_8e325af8-be23-15e9-fbfd-35fbf68bae17-181d0d24 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-dabd5c51-47ff-c79d-dbbe-fbc1e6000017-181d0d24 {
    grid-area: 7 / 1 / 8 / 2;
  }
}


@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}