:root {
  --grey: #f8f8f8;
  --black: #323232;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: #707070;
  background-color: #f8f8f8;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

h1 {
  color: #3a3a3a;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 62px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  color: #3a3a3a;
  margin-top: 0;
  margin-bottom: 80px;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

.section {
  padding: 100px 50px;
}

.section.main-section {
  z-index: 0;
  background-image: url('../images/main-img-asco--min.png');
  background-position: 3800%;
  background-repeat: no-repeat;
  background-size: 99%;
  padding-top: 100px;
  padding-bottom: 200px;
  font-size: 18px;
  position: relative;
  overflow: visible;
}

.section.border-custom {
  z-index: 5;
  background-color: #fff;
  border-radius: 60px;
  margin-top: 0;
  position: relative;
}

.section.border-custom.padding {
  z-index: 0;
  margin-top: -100px;
  display: block;
}

.section.section-legal {
  padding-top: 150px;
}

.section.section-404 {
  height: 100vh;
  align-items: center;
  display: flex;
}

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

.container.main-container {
  margin-top: 100px;
}

.wrap-content-main {
  max-width: 40%;
}

.form-block-main {
  margin-top: 20px;
  margin-bottom: 0;
}

.form {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.wrap-main-form {
  z-index: 50;
  background-color: #fff;
  border-radius: 50px;
  margin-top: 100px;
  padding: 30px;
  position: relative;
}

.custom-input {
  width: 20%;
  height: 60px;
  background-color: var(--grey);
  color: #a3a3a3;
  border: 1px #000;
  border-radius: 20px;
  flex: none;
  margin-bottom: 0;
  margin-right: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.select-custom {
  height: 80px;
  color: #a3a3a3;
  background-color: #f8f8f8;
  border: 1px #000;
  border-right: 30px solid #f8f8f8;
  border-radius: 20px;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 0;
  font-size: 18px;
  line-height: 26px;
  display: none;
}

.select-custom:hover {
  background-color: #3898ec;
}

.select-custom:active, .select-custom:focus {
  border-right-color: #f8f8f8;
}

.submit-button {
  width: 23%;
  height: 60px;
  background-color: #438ef3;
  border-radius: 30px;
  margin-left: 0;
  padding: 10px 80px;
  font-size: 20px;
  line-height: 20px;
  transition: all .4s;
  box-shadow: 2px 2px 13px 1px rgba(121, 178, 255, .62);
}

.submit-button:hover {
  box-shadow: none;
  background-color: #323232;
}

.container-menu {
  width: 100%;
  max-width: 1280px;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.navbar {
  z-index: 9999;
  width: 100%;
  background-color: rgba(221, 221, 221, 0);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-bottom: 0;
  padding-left: 50px;
  padding-right: 50px;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.link-menu {
  margin-right: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  transition: all .4s;
}

.link-menu:hover {
  opacity: .4;
}

.link-menu.w--current {
  color: rgba(26, 26, 26, .54);
  font-weight: 300;
}

.link-menu.last {
  margin-right: 0;
}

.brn-menu {
  color: #323232;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 35px;
  font-weight: 400;
  transition: all .4s;
}

.brn-menu:hover {
  color: var(--grey);
  background-color: #323232;
}

.brn-menu.mobile {
  display: none;
}

.nav-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrap-right-menu {
  grid-column-gap: 270px;
  grid-row-gap: 270px;
  align-items: center;
  display: flex;
}

.h2-custom-color {
  color: #aaa;
  margin-bottom: 0;
  font-size: 33px;
  line-height: 43px;
}

.wrap-map {
  max-width: 940px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.img-map {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrap-tooltip-3 {
  z-index: 10;
  width: auto;
  max-width: 420px;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 34%;
  left: auto;
  right: 5%;
  box-shadow: 4px 0 10px rgba(0, 0, 0, .04);
}

.img-tooltip {
  width: 30%;
}

.wrap-content-tooltip {
  max-width: 50%;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.txt-tooltip {
  font-size: 13px;
  line-height: 20px;
}

.heding-tooltip {
  margin-bottom: 10px;
  font-weight: 400;
}

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

.tooltip {
  z-index: 10;
  width: 5.5%;
  cursor: pointer;
  transition: all .4s;
  position: absolute;
  top: auto;
  bottom: 28%;
  left: 20%;
  right: auto;
}

.tooltip-2 {
  z-index: 10;
  width: 5.5%;
  cursor: pointer;
  transition: all .4s;
  position: absolute;
  top: 14%;
  bottom: auto;
  left: auto;
  right: 45%;
}

.tooltip-3 {
  z-index: 10;
  width: 5.5%;
  cursor: pointer;
  transition: all .4s;
  position: absolute;
  top: auto;
  bottom: 22%;
  left: auto;
  right: 41%;
}

.wrap-tooltip-2 {
  z-index: 10;
  width: auto;
  max-width: 420px;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
  position: absolute;
  top: 26%;
  bottom: auto;
  left: auto;
  right: 12%;
  box-shadow: 4px 0 10px rgba(0, 0, 0, .04);
}

.wrap-tooltip {
  z-index: 10;
  width: auto;
  max-width: 420px;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 42%;
  left: 8%;
  right: auto;
  box-shadow: 4px 0 10px rgba(0, 0, 0, .04);
}

.wrap-tooltip.mobile {
  display: none;
}

.grid-card {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 80px;
  margin-bottom: 60px;
}

.wrap-card {
  background-color: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .03);
}

.img-card {
  width: 100%;
}

.wrap-content-card {
  padding: 30px 20px;
}

.txt-card {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

.txt-card.last {
  margin-bottom: 0;
}

.txt-price-card {
  text-align: right;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.main-btn {
  max-width: 240px;
  background-color: var(--black);
  text-align: center;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 60px;
  transition: all .4s;
  display: block;
}

.main-btn:hover {
  background-color: #438ef3;
}

.main-btn.btn-404 {
  max-width: 400px;
  background-color: var(--grey);
  color: #323232;
  margin-top: 40px;
  margin-left: 0;
  padding-left: 100px;
  padding-right: 100px;
  font-weight: 400;
}

.main-btn.btn-404:hover {
  color: #fff;
  background-color: #484848;
}

.grid-facts {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
}

.wrap-fact {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.number {
  color: #438ef3;
  text-align: center;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
}

.txt-fact {
  text-align: center;
}

.flex-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 200px;
  display: flex;
}

.img {
  max-width: 50%;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .05);
}

.wrap-right-content {
  max-width: 45%;
}

.cta {
  background-color: #438ef3;
  border-radius: 50px;
  padding: 60px;
  position: relative;
  overflow: visible;
}

.h2-cta {
  color: #fff;
  margin-bottom: 60px;
  font-size: 40px;
  line-height: 48px;
}

.cta-btn {
  color: #323232;
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 80px;
  font-weight: 400;
  transition: all .4s;
}

.cta-btn:hover {
  color: #fff;
  background-color: #323232;
}

.wrap-content-cta {
  max-width: 40%;
}

.img-cta {
  z-index: 10;
  width: 100%;
  border: 1px #d8d5d0;
  border-bottom-right-radius: 0;
  margin-bottom: -10px;
  margin-left: 3px;
}

.wrap-img-cta {
  z-index: 10;
  width: 65%;
  border-bottom-right-radius: 50px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.search {
  max-width: 40%;
  border-radius: 30px;
  margin-top: 35px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .03);
}

.search-input {
  height: 70px;
  cursor: auto;
  border: 1px #000;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.search-button {
  width: 70px;
  height: 70px;
  color: rgba(50, 50, 50, 0);
  cursor: auto;
  background-color: #438ef3;
  background-image: url('../images/search.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.txt-search {
  color: #aaa;
  font-size: 16px;
  line-height: 24px;
}

.tabs-custom {
  margin-top: 25px;
}

.tabs-menu {
  width: auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #f8f8f8;
  border-radius: 20px;
  flex-flow: wrap;
  align-content: flex-end;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  display: flex;
  overflow: hidden;
}

.tab {
  color: #8f8f8f;
  background-color: #fff;
  border-radius: 30px;
  padding: 6px 15px;
  font-size: 16px;
  font-weight: 400;
  transition: all .4s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .01);
}

.tab:hover {
  color: #222;
}

.tab.w--current {
  color: #fff;
  background-color: #438ef3;
  flex: none;
  transform: translate(0);
  box-shadow: 0 2px 8px #438ef3;
}

.tab.w--current:hover {
  color: rgba(255, 255, 255, .54);
}

.footer {
  background-color: #fff;
  border-radius: 60px;
  padding: 100px 50px;
}

.colomn-footer {
  width: auto;
  max-width: 35%;
  flex-direction: column;
  margin-right: 60px;
  display: flex;
}

.txt-footer {
  color: #aaa;
  font-size: 16px;
  line-height: 24px;
}

.link-logo-footer {
  margin-bottom: 30px;
}

.wrap-social {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
}

.grid-footer {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .5fr .5fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: #aaa;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
}

.colomn-footer-2 {
  width: auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.form-block-footer {
  margin-top: 10px;
  margin-bottom: 0;
}

.form-footer {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.btn-submit {
  width: 60px;
  color: rgba(50, 50, 50, 0);
  background-color: #438ef3;
  background-image: url('../images/fluent_send-24-filled.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.custom-input-footer {
  height: 60px;
  max-width: none;
  min-width: 290px;
  background-color: var(--grey);
  color: #a3a3a3;
  border: 1px #000;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  overflow: visible;
}

.heading-footer {
  font-weight: 400;
}

.dropdown-toggle {
  z-index: 5;
  width: 100%;
  height: 60px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f8f8f8;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.dropdown-toggle.w--open {
  z-index: 2;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.txt-dropdown {
  color: #a3a3a3;
  font-size: 18px;
}

.dropdown {
  z-index: 50;
  width: 25%;
  flex: none;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.icon-dropdown {
  width: 15px;
}

.dropdown-list {
  z-index: 50;
  min-height: auto;
  color: #f8f8f8;
}

.dropdown-list.w--open {
  z-index: 1;
  background-color: #f8f8f8;
  border: 0 solid #000;
  border-top: 1px solid #f0f0f0;
  border-radius: 0 0 20px 20px;
  padding: 20px 30px;
  box-shadow: 0 -1px 19px rgba(0, 0, 0, .07);
}

.link-dropdown {
  color: #a3a3a3;
  margin-bottom: 10px;
  padding: 0;
  font-size: 16px;
  transition: all .4s;
  display: block;
}

.link-dropdown:hover {
  opacity: .5;
  color: #a3a3a3;
  background-color: rgba(56, 152, 236, 0);
}

.tabs {
  display: none;
}

.tab-custom {
  height: 90px;
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  color: #606060;
  background-color: #f8f8f8;
  border-radius: 20px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.tab-custom.w--current {
  background-color: #f8f8f8;
}

.category-tabs {
  flex: 1;
  display: flex;
}

.category-tabs.mobile {
  max-width: none;
  border: 1px #000;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

.tab-link {
  height: 60px;
  color: #888282;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 20px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 300;
  line-height: 20px;
  display: flex;
}

.tab-link:hover {
  background-color: #eee;
}

.tab-link.w--current {
  height: 60px;
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  color: #888282;
  background-color: #f8f8f8;
  border: 2px #5c5c5c;
  flex: none;
  order: -1;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 300;
  display: flex;
}

.tab-pane-tab-2 {
  background-color: rgba(0, 0, 0, 0);
}

.tabs-menu-custom {
  z-index: 1;
  width: auto;
  background-color: #f7f7f7;
  border: 1px #000;
  border-radius: 20px;
  flex-direction: column;
  flex: none;
  align-self: flex-start;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.h2-max-width {
  max-width: 50%;
  color: #3a3a3a;
  font-size: 40px;
  line-height: 48px;
}

.text-block {
  line-height: 20px;
}

.h2-mrg-btm-40 {
  margin-bottom: 40px;
}

.mobile {
  display: none;
}

.h1-legal {
  margin-bottom: 20px;
  font-weight: 600;
}

.wrap-legal {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.left-wrap {
  width: 60%;
}

.h2-legal {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
}

.txt-legal {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

.txt-legal.txt-legal-60 {
  margin-bottom: 60px;
}

.txt-legal.main-txt-legal {
  max-width: 60%;
  margin-bottom: 0;
}

.h3-legal {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.list-item {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

.list-item.last {
  margin-bottom: 0;
}

.link-legal {
  color: #707070;
}

.sidebar {
  width: 30%;
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0);
}

.heading-sidebar {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 500;
}

.menu-item {
  color: #323232;
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  transition: all .4s;
  display: block;
}

.menu-item:hover {
  color: #fff;
  background-color: #438ef3;
}

.menu-item.last {
  margin-bottom: 0;
}

.txt-legall-right {
  text-align: right;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
}

.txt-legall-right.txt-legal-60 {
  margin-bottom: 60px;
}

.txt-legall-right.main-txt-legal {
  max-width: 80%;
  margin-bottom: 0;
}

.h1-404 {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  font-size: 150px;
  line-height: 100%;
}

.wrap-404 {
  max-width: none;
  background-color: #438ef3;
  background-image: url('../images/shadow-1.svg');
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 30px;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 40px 100px 70px;
  display: flex;
  position: relative;
}

.txt-404 {
  max-width: 30%;
  color: #fff;
}

.wrap-img-404 {
  z-index: 10;
  width: 65%;
  border-bottom-right-radius: 30px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.img-cta-404 {
  z-index: 10;
  width: 100%;
  border: 1px #d8d5d0;
  border-bottom-right-radius: 0;
  margin-bottom: -4%;
  margin-left: 14%;
}

.overlay {
  z-index: 6;
  height: 100%;
  background-color: rgba(0, 0, 0, .36);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.search-custom {
  max-width: 40%;
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.custom-input-footer-search {
  height: 60px;
  max-width: none;
  color: #a3a3a3;
  background-color: #fff;
  border: 1px #000;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .37);
}

.btn-submit-search {
  width: 70px;
  color: rgba(50, 50, 50, 0);
  background-color: #438ef3;
  background-image: url('../images/search.svg');
  background-position: 46% 48%;
  background-repeat: no-repeat;
  background-size: 22px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.heading-4 {
  color: #3a3a3a;
  font-size: 40px;
  line-height: 48px;
}

.heading-5 {
  font-size: 40px;
  line-height: 48px;
}

.cta-contact {
  background-color: #fff;
  border-radius: 50px;
  padding: 60px;
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .01);
}

.form-block-cta-contact {
  margin-top: 55px;
  margin-bottom: 0;
}

.custom-input-cta {
  width: 38%;
  height: 60px;
  background-color: var(--grey);
  color: #a3a3a3;
  border: 1px #000;
  border-radius: 20px;
  flex: none;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.form-contact-cta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.h2-cta-contact {
  margin-bottom: 20px;
}

.checkbox-custom {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.checkbox {
  width: 46px;
  height: 20px;
  cursor: pointer;
  background-color: #f8f8f8;
  background-image: url('../images/check-asco.svg');
  background-position: 140% 40%;
  background-repeat: no-repeat;
  background-size: auto;
  border-style: none;
  border-radius: 90px;
  margin-top: 0;
  transition: all .4s;
}

.checkbox.w--redirected-checked {
  width: 46px;
  height: 20px;
  background-color: var(--grey);
  background-image: url('../images/check-asco.svg');
  background-position: -70% 40%;
  background-size: auto;
  box-shadow: 0 2px 10px rgba(67, 142, 243, .24);
}

.checkbox.w--redirected-focus {
  box-shadow: none;
  background-image: url('../images/check-asco.svg');
  background-repeat: no-repeat;
  background-size: auto;
}

.txt-check {
  font-size: 16px;
  line-height: 20px;
}

.flex-cta-contact {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.txt-cta {
  font-size: 18px;
  line-height: 26px;
}

.tooltip-tab2 {
  z-index: 10;
  width: 5.5%;
  cursor: pointer;
  transition: all .4s;
  position: absolute;
  top: auto;
  bottom: 30%;
  left: 25%;
  right: auto;
}

.tooltip-2-tab-2 {
  z-index: 10;
  width: 5.5%;
  cursor: pointer;
  transition: all .4s;
  position: absolute;
  top: 14%;
  bottom: auto;
  left: auto;
  right: 23%;
}

.tooltip-3-tab-2 {
  z-index: 10;
  width: 5.5%;
  cursor: pointer;
  transition: all .4s;
  position: absolute;
  top: auto;
  bottom: 36%;
  left: auto;
  right: 40%;
}

.wrap-tooltip-tab-2 {
  z-index: 10;
  width: auto;
  max-width: 420px;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 42%;
  left: 19%;
  right: auto;
  box-shadow: 4px 0 10px rgba(0, 0, 0, .04);
}

.wrap-tooltip-tab-2.mobile {
  display: none;
}

.wrap-tooltip-3-tab-2 {
  z-index: 10;
  width: auto;
  max-width: 420px;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 13%;
  left: auto;
  right: 5%;
  box-shadow: 4px 0 10px rgba(0, 0, 0, .04);
}

.body {
  color: #707070;
}

.bg {
  border-radius: 60px;
  margin-top: -100px;
}

.wrap-map-section {
  z-index: 0;
  background-color: #fff;
  border-radius: 60px;
  margin-top: -100px;
  padding: 100px 50px;
  display: none;
  position: relative;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 18px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    margin-bottom: 40px;
    font-size: 35px;
    line-height: 42px;
  }

  .section {
    padding-left: 50px;
    padding-right: 50px;
  }

  .section.main-section {
    background-position: -15% 100%;
    background-size: cover;
  }

  .section.border-custom.padding {
    border-radius: 40px;
  }

  .section.sticky {
    height: 2400px;
    padding-right: 0;
    position: relative;
  }

  .section.section-404 {
    height: auto;
  }

  .container.main-container {
    margin-top: 30px;
  }

  .container.container-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    overflow: hidden;
  }

  .wrap-content-main {
    max-width: 70%;
  }

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

  .wrap-main-form {
    border-radius: 30px;
    margin-top: 60px;
    padding: 20px;
  }

  .custom-input {
    width: 100%;
    max-width: none;
  }

  .submit-button {
    width: 100%;
  }

  .navbar {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .link-menu {
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .link-menu.last {
    margin-bottom: 0;
  }

  .brn-menu {
    display: none;
  }

  .brn-menu.mobile {
    margin-top: 40px;
    display: block;
  }

  .nav-menu {
    z-index: 0;
    background-color: #f8f8f8;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 50px 40px;
    display: flex;
    box-shadow: 0 1px 12px -3px rgba(0, 0, 0, .07);
  }

  .h2-custom-color {
    font-size: 25px;
    line-height: 32px;
  }

  .wrap-map {
    height: auto;
    margin-top: 140px;
    padding-bottom: 0;
  }

  .img-map {
    width: 100%;
    margin-bottom: 60px;
  }

  .wrap-tooltip-3 {
    z-index: 10;
    margin-left: 0;
    margin-right: auto;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .tooltip {
    top: 27%;
    bottom: auto;
    left: 11.5%;
    right: auto;
  }

  .tooltip-2 {
    top: 5%;
    bottom: auto;
    left: 48%;
    right: auto;
  }

  .tooltip-3 {
    top: 27%;
    bottom: auto;
    left: 52%;
    right: auto;
  }

  .tooltip-3:hover {
    transform: scale(1.01);
  }

  .wrap-tooltip-2, .wrap-tooltip {
    z-index: 10;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: auto;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .grid-card {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
    display: flex;
    overflow: visible;
  }

  .wrap-card {
    flex: none;
  }

  .main-btn.btn-404 {
    max-width: none;
    padding-left: 100px;
    padding-right: 100px;
  }

  .grid-facts {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .wrap-fact {
    align-items: flex-start;
  }

  .number {
    font-size: 30px;
  }

  .txt-fact {
    text-align: left;
    font-size: 16px;
    line-height: 20px;
  }

  .flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }

  .img {
    width: 100%;
    max-width: none;
  }

  .wrap-right-content {
    max-width: none;
  }

  .cta {
    border-radius: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .h2-cta {
    margin-bottom: 40px;
    font-size: 35px;
    line-height: 42px;
  }

  .wrap-content-cta {
    max-width: 60%;
  }

  .img-cta {
    margin-bottom: -4px;
    margin-left: 66px;
  }

  .wrap-img-cta {
    width: 65%;
    border-radius: 30px;
  }

  .search {
    max-width: 60%;
  }

  .tab {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
  }

  .colomn-footer {
    max-width: none;
  }

  .txt-footer {
    font-size: 14px;
    line-height: 22px;
  }

  .wrap-social {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .grid-footer {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .custom-input-footer {
    font-size: 14px;
    line-height: 20px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-list {
    padding-left: 30px;
    padding-right: 30px;
  }

  .img-custom-tab {
    width: 7%;
  }

  .category-tabs.mobile {
    height: auto;
  }

  .tab-link {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .tab-link.w--current {
    padding-left: 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .tabs-menu-custom {
    padding-right: 0;
  }

  .h2-max-width {
    max-width: none;
    font-size: 35px;
    line-height: 42px;
  }

  .h2-mrg-btm-40 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 32px;
  }

  .line {
    width: 35px;
    height: 2px;
    background-color: #323232;
    border: 1px #000;
    border-radius: 5px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .line.center {
    width: 25px;
    margin-left: 0;
  }

  .line.last {
    border-radius: 5px;
    margin-bottom: 0;
  }

  .menu-button {
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: rgba(200, 200, 200, 0);
  }

  .heading {
    font-size: 52px;
    line-height: 60px;
  }

  .heading-3 {
    font-size: 3px;
  }

  .brand {
    padding-left: 0;
  }

  .left-wrap {
    width: auto;
  }

  .txt-legal.main-txt-legal {
    max-width: none;
  }

  .sidebar {
    display: none;
  }

  .h1-404 {
    font-size: 100px;
  }

  .wrap-404 {
    padding-bottom: 0;
    padding-left: 40px;
    overflow: hidden;
  }

  .txt-404 {
    max-width: none;
  }

  .wrap-img-404 {
    width: 100%;
    border-radius: 30px;
    margin-top: 60px;
    margin-left: auto;
    position: relative;
    right: -8%;
  }

  .img-cta-404 {
    margin-bottom: -4px;
    margin-left: 66px;
  }

  .search-custom {
    max-width: 60%;
    margin-top: 40px;
  }

  .custom-input-footer-search {
    font-size: 14px;
    line-height: 20px;
  }

  .cta-contact {
    border-radius: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .custom-input-cta {
    max-width: none;
  }

  .checkbox-custom {
    align-items: flex-start;
  }

  .txt-check {
    margin-bottom: 0;
    line-height: 24px;
  }

  .flex-cta-contact {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .tooltip-tab2 {
    top: 27%;
    bottom: auto;
    left: 11.5%;
    right: auto;
  }

  .tooltip-2-tab-2 {
    top: 5%;
    bottom: auto;
    left: 48%;
    right: auto;
  }

  .tooltip-3-tab-2 {
    top: 27%;
    bottom: auto;
    left: 52%;
    right: auto;
  }

  .tooltip-3-tab-2:hover {
    transform: scale(1.01);
  }

  .wrap-tooltip-tab-2 {
    z-index: 10;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: auto;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .wrap-tooltip-3-tab-2 {
    z-index: 10;
    margin-left: 0;
    margin-right: auto;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 20px;
  }

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

  .container.main-container {
    margin-top: 10px;
  }

  .submit-button {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navbar, .nav-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .wrap-tooltip-3 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .heding-tooltip {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }

  .tooltip {
    top: 24%;
  }

  .tooltip-3 {
    top: 21%;
  }

  .grid-card {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .wrap-card {
    max-width: 97%;
  }

  .grid-facts {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    margin-top: 40px;
  }

  .flex-wrap {
    margin-top: 60px;
  }

  .cta-btn {
    padding-left: 60px;
    padding-right: 60px;
  }

  .search {
    max-width: none;
  }

  .footer {
    padding: 60px 20px;
  }

  .colomn-footer {
    margin-right: 0;
  }

  .grid-footer {
    grid-column-gap: 40px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    line-height: 24px;
  }

  .dropdown-list {
    z-index: 52;
    padding-left: 20px;
    padding-right: 20px;
  }

  .img-custom-tab {
    width: 3%;
  }

  .tab-link, .tab-link.w--current {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tabs-menu-custom {
    margin-bottom: 60px;
    padding-left: 10px;
    position: relative;
  }

  .tabs-content-custom {
    padding-left: 0;
    padding-right: 0;
  }

  .h2-max-width {
    margin-bottom: 40px;
  }

  .text-block-2 {
    font-size: 18px;
    line-height: 24px;
  }

  .h1-legal {
    font-size: 40px;
    line-height: 50px;
  }

  .h2-legal {
    font-size: 25px;
    line-height: 32px;
  }

  .wrap-404 {
    padding-top: 60px;
  }

  .wrap-img-404 {
    width: 110%;
    right: -3%;
  }

  .custom-input-cta {
    font-size: 16px;
  }

  .checkbox {
    flex: none;
  }

  .tooltip-tab2 {
    top: 24%;
  }

  .tooltip-3-tab-2 {
    top: 21%;
  }

  .wrap-tooltip-3-tab-2 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
    line-height: 22px;
  }

  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .section.main-section {
    background-position: -10%;
  }

  .section.border-custom {
    border-radius: 40px;
  }

  .section.border-custom.padding {
    margin-top: -60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.section-404 {
    justify-content: center;
  }

  .container.container-sticky {
    top: 0;
  }

  .wrap-content-main {
    max-width: none;
  }

  .wrap-main-form {
    margin-top: 40px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .custom-input {
    padding-left: 20px;
    padding-right: 20px;
  }

  .submit-button {
    width: 100%;
    text-align: center;
  }

  .brn-menu.mobile {
    height: auto;
    text-align: center;
    padding-bottom: 18px;
    padding-right: 50px;
  }

  .h2-custom-color {
    margin-bottom: 40px;
  }

  .wrap-map {
    margin-top: 0;
    padding-bottom: 60px;
    overflow: visible;
  }

  .img-map {
    margin-bottom: 40px;
  }

  .wrap-tooltip-3 {
    max-width: none;
    flex-direction: row;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: static;
    top: auto;
    bottom: 5%;
    left: 0%;
    right: 0%;
  }

  .tooltip {
    z-index: 8;
    width: 7.5%;
    top: 13%;
    left: 13%;
  }

  .tooltip-2 {
    width: 7.5%;
    cursor: auto;
    top: 4%;
    left: 49%;
  }

  .tooltip-3 {
    width: 7.5%;
    top: 12%;
    left: 49%;
  }

  .wrap-tooltip-2 {
    max-width: none;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 40px;
    display: flex;
    position: static;
    bottom: 5%;
  }

  .wrap-tooltip {
    max-width: none;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 40px;
    display: flex;
    position: static;
    top: auto;
    bottom: 5%;
    left: 0%;
    right: 0%;
  }

  .wrap-tooltip.mobile {
    opacity: 0;
    display: flex;
    position: static;
  }

  .grid-card {
    margin-top: 0;
  }

  .wrap-card {
    max-width: 95%;
  }

  .main-btn.btn-404 {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-facts {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .number {
    font-size: 28px;
  }

  .txt-fact {
    font-size: 14px;
  }

  .cta {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 0;
    display: flex;
    overflow: hidden;
  }

  .h2-cta {
    font-size: 30px;
    line-height: 38px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .wrap-content-cta {
    max-width: none;
  }

  .img-cta {
    margin-bottom: 0;
    margin-left: 0;
  }

  .wrap-img-cta {
    width: 120%;
    margin-bottom: -7%;
    margin-left: -5%;
    margin-right: auto;
    position: static;
  }

  .search-button {
    background-size: 20px;
  }

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

  .tab {
    font-size: 14px;
  }

  .footer {
    border-radius: 40px;
  }

  .grid-footer {
    grid-column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropdown-toggle.z-index {
    z-index: 5;
  }

  .txt-dropdown {
    font-size: 16px;
    line-height: 22px;
  }

  .dropdown {
    z-index: 0;
  }

  .dropdown.z-index {
    z-index: 5;
  }

  .dropdown-list {
    z-index: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .link-dropdown {
    margin-bottom: 15px;
  }

  .img-custom-tab {
    width: 6%;
  }

  .category-tabs {
    flex-direction: column;
  }

  .tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tab-link.w--current {
    z-index: 10;
    order: -1;
    padding-right: 10px;
  }

  .tabs-menu-custom {
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 60px;
    padding-right: 10px;
    position: relative;
    overflow: hidden;
  }

  .tabs-content-custom {
    overflow: visible;
  }

  .h2-max-width {
    font-size: 30px;
    line-height: 36px;
  }

  .line {
    height: 2px;
  }

  .heading-2 {
    font-size: 40px;
    line-height: 48px;
  }

  .mobile {
    height: 200px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .h2-legal {
    margin-bottom: 20px;
  }

  .h1-404 {
    font-size: 80px;
  }

  .wrap-404 {
    background-image: url('../images/shadow-1.svg');
    background-repeat: no-repeat;
    background-size: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrap-img-404 {
    width: 120%;
    margin-bottom: -7%;
    margin-left: -5%;
    margin-right: auto;
    position: static;
  }

  .img-cta-404 {
    margin-bottom: 0;
    margin-left: 0;
  }

  .search-custom {
    max-width: none;
  }

  .sticky-wrap {
    width: 100%;
    overflow: visible;
  }

  .cta-contact {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 20px;
    display: block;
    overflow: hidden;
  }

  .form-block-cta-contact {
    margin-top: 40px;
  }

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

  .txt-check {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
  }

  .tooltip-tab2 {
    z-index: 8;
    width: 7.5%;
    top: 13%;
    left: 13%;
  }

  .tooltip-2-tab-2 {
    width: 7.5%;
    cursor: auto;
    top: 4%;
    left: 49%;
  }

  .tooltip-3-tab-2 {
    width: 7.5%;
    top: 12%;
    left: 49%;
  }

  .wrap-tooltip-tab-2 {
    max-width: none;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 40px;
    display: flex;
    position: static;
    top: auto;
    bottom: 5%;
    left: 0%;
    right: 0%;
  }

  .wrap-tooltip-tab-2.mobile {
    opacity: 0;
    display: flex;
    position: static;
  }

  .wrap-tooltip-3-tab-2 {
    max-width: none;
    flex-direction: row;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: static;
    top: auto;
    bottom: 5%;
    left: 0%;
    right: 0%;
  }
}

#w-node-d71ce658-4a4f-2559-8c93-71dc805ab777-359178f2, #w-node-_3e18d501-5f51-4535-1977-c88b4159ab82-359178f2, #w-node-_8554171d-f9d9-f44a-7ded-712e2bf80608-359178f2, #w-node-_0c46de8d-09a3-936e-301f-48b6fd50b20b-359178f2, #w-node-_3578588d-4334-6966-a05b-5c47ea5141ea-359178f2, #w-node-_0d3c9889-dc59-d6cf-b21c-2d5c624bc607-359178f2, #w-node-_377096ac-6d28-6235-443c-36fb3d65e424-359178f2, #w-node-_16968480-64dc-f60c-1c0b-2c079a228065-359178f2, #w-node-_9c115ec9-1922-9c77-0785-340e0130d444-359178f2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-cf61cf0b-6ef2-1014-05af-28596f5e6701-6f5e66fc, #w-node-cf61cf0b-6ef2-1014-05af-28596f5e671b-6f5e66fc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


