@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/satoshi-regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/satoshi-light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white: white;
  --grey: #818181;
  --white-2: #fefbf8;
}

.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-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5em;
}

h1 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1em;
}

h2 {
  color: var(--black);
  margin-top: .625rem;
  margin-bottom: .625rem;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 3.13rem;
  font-weight: 300;
  line-height: 1em;
}

h3 {
  color: var(--black);
  margin-top: 2rem;
  margin-bottom: .625rem;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2em;
}

h4 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: .625rem;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2em;
}

h5 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: .625rem;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2em;
}

h6 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: .625rem;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2em;
}

p {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
}

a {
  color: var(--black);
  text-decoration: none;
  -webkit-text-decoration-color: var(--black);
  text-decoration-color: var(--black);
  align-items: center;
  transition: color .3s;
}

ul {
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 10px;
  padding-left: 0;
  list-style-type: none;
  display: block;
}

li {
  background-image: url('../images/list-bullet.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 22px;
  list-style-type: none;
  position: static;
}

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

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.brand.w--current {
  flex-direction: row;
  align-items: center;
}

.nav-menu {
  text-align: right;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--white);
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 300;
  transition-property: opacity;
}

.nav-link:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
  color: var(--black);
}

.nav-link:hover {
  opacity: .5;
}

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

.nav-link.last {
  padding-right: 0;
}

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.nav-dropdown-icon {
  font-size: 16px;
  display: none;
}

.nav-item-title {
  color: var(--white);
  transition: opacity .3s;
}

.nav-item-title:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
  color: var(--black);
}

.nav-item-title:hover {
  opacity: .5;
}

.nav-dropdown-list {
  background-color: var(--black);
  border: 1px solid #0000002e;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  min-height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-column {
  width: 100%;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  color: var(--white);
  text-transform: capitalize;
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 18px;
  transition-property: all;
  display: flex;
}

.nav-dropdown-link:hover {
  opacity: .5;
  margin-left: 0;
}

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

.nav-dropdown-link.no-cap, .nav-dropdown-link.no-cap.w--current {
  text-transform: none;
}

.nav-dropdown-link-line {
  background-color: var(--white);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.navbar-fixed {
  background-color: #0000;
  width: 100%;
  height: 110px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: absolute;
  inset: 0% 0% auto;
}

.home-banner-section {
  height: 730px;
  padding-top: 110px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.background-video {
  background-image: linear-gradient(#00000080, #00000080);
  height: auto;
  position: absolute;
  inset: 0%;
}

.base-container {
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.base-container.align-left {
  align-items: flex-start;
}

.home-banner-content {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.bottom-content-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 990px;
  display: flex;
}

.white-text-h1 {
  color: var(--white);
  font-size: 4.375rem;
}

.header-banner {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
}

.white-text {
  color: var(--white);
  font-size: 4.375rem;
}

.white-text.highlights {
  font-size: 1.25rem;
}

.white-text.maxw {
  max-width: 600px;
  margin-top: 0;
}

.dot-block {
  background-color: var(--white);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-left: 20px;
  margin-right: 20px;
}

.dot-block.silver {
  background-color: var(--black);
  flex: none;
}

.button-banner {
  flex-direction: column;
  min-width: auto;
  display: flex;
}

.primary-button {
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #0000;
  border-radius: 80px;
  padding: 10px 30px;
  transition: border-color .3s, color .3s, background-color .3s;
  display: inline-block;
}

.primary-button:hover {
  opacity: 1;
  color: #000;
  background-color: #fff;
}

.primary-button.w--current {
  text-transform: none;
}

.primary-button.black-hover:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.primary-button.mt-50 {
  margin-top: 40px;
}

.primary-button.invert {
  border-color: var(--black);
  color: var(--black);
}

.primary-button.invert:hover {
  background-color: var(--black);
  color: var(--white);
}

.primary-button.invert-2 {
  border-color: var(--black);
  color: var(--black);
}

.primary-button.invert-2:hover {
  background-color: var(--black);
  color: var(--white);
}

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

.section.black-background {
  z-index: 1;
  background-color: #000;
}

.section.background-margin {
  background-color: var(--black);
  background-image: url('../images/group-1768-1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 430px;
  padding-bottom: 280px;
}

.section.dark-style {
  background-color: var(--black);
  background-image: url('../images/group-1768-1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.about-us {
  z-index: 1;
  background-image: linear-gradient(#00000080, #00000080), url('../images/lezioni-scherma.webp');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.blog {
  background-image: linear-gradient(#00000080, #00000080), url('../images/blog-omeri.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.first_content {
  padding-bottom: 2rem;
}

.section.last {
  padding-top: 0;
  padding-bottom: 5rem;
  padding-right: 0;
}

.section.contacts-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/contatti-new.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 730px;
  padding-top: 130px;
  display: flex;
}

.section.page {
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.chienesiologia {
  background-image: linear-gradient(#00000080, #00000080), url('../images/chinesiologo_1chinesiologo.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.is-search-results {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5rem;
  display: flex;
}

.section.palmares {
  background-image: linear-gradient(#00000080, #00000080), url('../images/scherma-agonistica.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.customers {
  background-image: linear-gradient(#00000080, #00000080), url('../images/collaborazioni.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.section.blog-grid-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/scherma-filtro-categoria.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 110px;
  display: flex;
}

.block-horizontal-full-width {
  width: 100%;
  display: flex;
}

.left-block-content {
  width: 50%;
}

.text-wrapper {
  border: 2px #ffffff4d;
  border-bottom-style: solid;
  max-width: 350px;
  margin-bottom: 40px;
  padding-bottom: 50px;
}

.subtitle-text {
  color: var(--grey);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 300;
}

.subtitle-text.none-margin {
  margin-bottom: 0;
}

.subtitle-text.margin {
  margin-bottom: 200px;
}

.subtitle-text.white {
  color: var(--white);
  margin-bottom: 0;
}

.silver-text {
  color: var(--grey);
  position: relative;
}

.silver-text.maxw-380px {
  max-width: 380px;
}

.right-block-content {
  width: 50%;
}

.counter-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  height: 100%;
}

.counter-number {
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-size: 120px;
  font-weight: 400;
  line-height: 1em;
}

.bgr-ellipse {
  background-image: url('../images/ellipse-26.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 160px;
  position: absolute;
  inset: 0%;
}

.block-image-absolute {
  z-index: 1;
  width: 60%;
  height: 600px;
  position: absolute;
  inset: 54% 0% auto auto;
}

.block-image-absolute.home-2 {
  top: 83%;
}

.image-cover {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-cover.position-absolute {
  position: absolute;
  inset: 0%;
}

.top-content-block {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.paragraph-large {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1em;
}

.heading-block-content {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.description-block {
  width: 100%;
  margin-top: 60px;
  position: relative;
}

.description-block.display {
  flex-direction: column;
  display: flex;
}

.description-text-left {
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
  display: flex;
}

.heading-content {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.card-content-wrapper {
  grid-column-gap: 30px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.image-content-wrapper {
  width: 50%;
}

.image-card {
  height: 340px;
  margin-bottom: 20px;
}

.video-content {
  z-index: 1;
  width: 100%;
  height: 520px;
  margin-top: -340px;
  position: relative;
}

.background-video-content {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.play-pause-button {
  width: 100%;
  padding-bottom: 30px;
  padding-left: 30px;
  display: flex;
  inset: auto auto 0% 0%;
}

.play-state {
  text-transform: uppercase;
  align-items: center;
  display: flex;
}

.play-block {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
}

.pause-state {
  align-items: center;
  display: flex;
}

.footer {
  background-color: var(--white-2);
  color: var(--black);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
}

.footer-wrapper {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.heading-none-margin {
  margin-top: 0;
  margin-bottom: 0;
}

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

.footer-bottom-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.left-block-footer {
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
}

.menu-block {
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.silver-link {
  color: var(--black);
}

.silver-link:hover {
  color: #000;
}

.footer-copyright {
  color: var(--black);
  width: 100%;
  margin-bottom: 10px;
  display: inline;
}

.footer-copyright-link {
  color: var(--black);
  letter-spacing: .2px;
  margin-right: 5px;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.footer-copyright-link:hover {
  color: #000;
}

.footer-rights {
  color: var(--black);
  display: inline-block;
}

.right-block-footer {
  flex-direction: column;
  width: 40%;
  display: flex;
}

.text-play-footer {
  margin-bottom: 50px;
  font-size: 72px;
  font-weight: 400;
  line-height: 1em;
}

.social-links {
  grid-column-gap: 30px;
  margin-top: 50px;
  display: flex;
}

.link-black:hover {
  color: #818181;
}

.centered-block {
  text-align: center;
}

.grid-header {
  width: 100%;
  margin-top: 60px;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-title {
  background-color: #0000;
  border-left: 1px #0000;
  border-right: 1px solid #0000;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  border-left-style: solid;
  border-left-color: #0000;
  width: 24%;
  margin-top: 0;
}

.grid-description {
  border-bottom: 1px solid #0000;
  border-right: 1px solid #0000;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #0000;
  border-left: 1px solid #0000;
  border-right: 1px solid #0000;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-columns {
  margin-top: 50px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.spacing-system-image {
  max-width: 80%;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.typography-wrapper {
  margin-top: 30px;
  line-height: 1.5em;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.colors-container {
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.colors-wrapper {
  margin-right: 60px;
}

.color-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.color-wrapper {
  margin-right: 30px;
}

.text-dark-style-guide {
  border: 1px solid var(--grey);
  background-color: #0000;
  width: 75px;
  height: 75px;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.white-style-guide.white-second {
  background-color: var(--white-2);
}

.dark-gray-style-guide {
  background-color: var(--grey);
  width: 75px;
  height: 75px;
}

.style-guide-div {
  width: 100%;
  margin-top: 50px;
}

.headings-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 48%;
  margin-bottom: 30px;
  margin-right: 40px;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-size: 48px;
}

.h2-tablet {
  font-size: 42px;
}

.h1-mobile {
  font-size: 40px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.style-guide-content-wrapper {
  display: flex;
}

.style-guide-content-wrapper.text-rich-text {
  grid-row-gap: 5rem;
  flex-flow: column;
}

.style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.link-wrapper {
  width: 50%;
  margin-top: 20px;
}

.link {
  transition-property: opacity;
}

.link:hover {
  opacity: .5;
}

.link-with-icon {
  transition: all .3s;
  display: flex;
}

.link-with-icon:hover {
  opacity: .7;
}

.text-button-icon {
  margin-top: 4px;
  margin-left: 10px;
  padding-top: 7px;
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
}

.list-item {
  background-image: none;
  padding-left: 0;
  list-style-type: disc;
}

.list-item-circle {
  background-color: var(--black);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.style-guide-button-wrapper {
  width: 47%;
}

.button-wrapper {
  margin-top: 50px;
  margin-bottom: 100px;
}

.button-wrapper.none-margin {
  margin-bottom: 0;
}

.section-content {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.circle-background {
  position: absolute;
  inset: 0%;
}

.top-block-wrapper {
  grid-column-gap: 100px;
  flex-flow: row;
  width: 100%;
  display: flex;
}

.top-description-block._2-column {
  max-width: 35.63rem;
}

.paragraph-top-description {
  max-width: 570px;
  margin-bottom: 50px;
  font-size: 1.5rem;
}

.paragraph-top-description.full-width {
  max-width: none;
}

.top-image-block {
  width: 500px;
}

.paragraph-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-no-margin.shedule {
  margin-bottom: 30px;
}

.paragraph-no-margin.link {
  color: var(--white);
  transition-property: opacity;
}

.paragraph-no-margin.link:hover {
  opacity: .6;
}

.list-3 {
  margin-top: 1.63rem;
}

.programs-content {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.programs-wrapper {
  grid-column-gap: 70px;
  margin-top: 60px;
  display: flex;
}

.image-descriptions {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.paragraph-with-margin {
  margin-bottom: 50px;
}

.image-left {
  width: 400px;
  height: 550px;
  position: relative;
}

.image-left.sizing {
  flex: none;
  height: 450px;
}

.image-left.tall-video {
  width: 400px;
  height: 650px;
}

.bgr-video-img-left {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.utility-page-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  overflow: hidden;
}

.black-body {
  background-color: var(--black);
}

._404-logo-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 6rem 0% auto;
}

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

._404-text {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1em;
}

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

._404-paragraph {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.insight-features-wrapper {
  grid-column-gap: 50px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 70px;
  display: flex;
}

.insight-features-wrapper._1-column {
  grid-column-gap: 0px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
}

.insight-features-wrapper.wrap {
  margin-top: 50px;
}

.insight-features-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 43%;
  display: flex;
}

.insight-features-wrap.max-large {
  width: 100%;
}

.insight-features-item {
  align-items: flex-start;
}

.first-paragraph {
  margin-top: 3.13rem;
}

.pricing-features-links-wrap {
  grid-row-gap: 70px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  padding-top: 50px;
  display: flex;
}

.slider-pricing {
  background-color: #0000;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

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

.slide {
  width: 100%;
  height: 550px;
}

.slide.height {
  height: 100%;
}

.left-arrow-pricing, .right-arrow-pricing, .slide-nav-pricing {
  display: none;
}

.accordion-wrapper {
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.accordion-wrap {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 50%;
  margin-right: 30px;
  display: flex;
}

.accordion-wrap.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.accordion-item {
  background-color: #0000;
  border: 1px solid #000;
  width: 100%;
  padding: 20px 30px;
  position: static;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-list {
  background-color: #0000;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.brand-404 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.rich-text-block h3 {
  margin-top: 1.5rem;
}

.rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  margin-top: 1.25rem;
}

.rich-text-block h2 {
  margin-top: 2rem;
}

.footer-new {
  z-index: 5;
  background-color: var(--white-2);
  position: relative;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

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

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding: 5rem 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxlarge {
  padding: 0 0 5rem;
}

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

.footer7_logo-link {
  margin-bottom: 2rem;
  padding-left: 0;
}

.divider-horizontal {
  background-color: var(--black);
  width: 100%;
  height: 1px;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-medium {
  padding: 2rem 0 0;
}

.footer7_bottom-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer7_credit-text {
  font-size: .875rem;
}

.footer7_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: flex;
}

.footer7_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.footer-credits {
  grid-column-gap: .5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.link-footer-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-image: none;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.menu-list-footer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
}

.heading-2 {
  margin-top: .625rem;
}

.heading-4 {
  margin-top: 10px;
}

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

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

.image {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.backgroud-image {
  z-index: -1;
  min-height: 550px;
  position: absolute;
  inset: 0%;
}

.banner-wrapper {
  grid-column-gap: 40px;
  align-items: center;
  display: flex;
}

.left-banner-description {
  width: 50%;
}

.heading-cu {
  color: var(--white);
  margin-bottom: 30px;
}

.contacts-divider {
  background-color: #afafaf80;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contacts-2-location-wrapper {
  margin-top: 30px;
}

.contacts-detail {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa Solid 900", Arial, sans-serif;
}

.right-form-banner {
  width: 50%;
}

.contacts-form-wrapper {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.contacts-form-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.form-block {
  margin-bottom: 0;
}

.forms-input-wrapper {
  grid-column-gap: 30px;
  margin-bottom: 30px;
  display: flex;
}

.contacts-input {
  background-color: #0000;
  border: 1px #0000004d;
  border-bottom-style: solid;
  height: auto;
  margin-bottom: 0;
  padding: 16px 18px 16px 0;
  font-size: 18px;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px #0f5cfa;
  border-bottom: 1px solid #000;
}

.contacts-textarea {
  border: 1px #0000;
  border-bottom: 1px solid #0000004d;
  min-height: 130px;
  margin-bottom: 30px;
  padding: 16px 18px 16px 0;
  font-size: 18px;
}

.contacts-textarea:focus {
  border: 1px #0f5cfa;
  border-bottom: 1px solid #000;
}

.button-block-forms {
  flex-direction: column;
  display: flex;
}

.success-message {
  background-color: #0000;
  border: 2px #000;
  border-bottom: 2px solid #0000004d;
}

.error-message {
  color: #f73737;
  background-color: #0000;
  font-size: 18px;
}

.page-text-container {
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: block;
  position: relative;
}

.paragraph-white-text {
  color: var(--white);
  font-size: 1.25rem;
}

.blog-sidebar-wrapper {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.blog-sidebar-left-wrapper {
  width: 64%;
}

.blog-sidebar-left {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  column-count: 2;
  flex-flow: column wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  column-gap: 30px;
  display: grid;
}

.blog-sidebar-item {
  display: inline-block;
}

.template-empty-state {
  color: #0f5cfa;
  background-color: #0000;
  padding: 30px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.blog-sidebar-right-wrapper {
  width: 36%;
  position: sticky;
  top: 60px;
}

.blog-sidebar-right {
  flex-direction: column;
}

.sidebar-search {
  background-color: var(--white);
  border: 1px solid #000;
  padding: 20px;
}

.sidebar-search-wrapper {
  grid-column-gap: 15px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.sidebar-search-input {
  color: #0e0e0e;
  border: 1px solid #0000;
  border-bottom-color: #0000004d;
  height: auto;
  margin-bottom: 0;
  margin-left: 0;
  padding: 16px 10px 16px 0;
}

.sidebar-search-input:focus {
  border-color: #0000 #0000 #000;
  border-top-style: solid;
  border-left-style: solid;
  border-right-style: solid;
}

.sidebar-search-input::placeholder {
  color: #818181;
  font-size: 16px;
}

.sidebar-recent-posts {
  border: 1px solid #000;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 10px 20px 20px;
  box-shadow: 0 0 20px #0000000f;
}

.sidebar-recent-posts-wrapper {
  margin-top: 20px;
}

.sidebar-recent-post-item {
  margin-bottom: 20px;
  display: flex;
}

.sidebar-categories-wrapper {
  margin-top: 20px;
}

.sidebar-categories-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  display: flex;
}

.sidebar-category-item {
  border: 1px solid #000;
  padding: 5px 8px;
  transition: all .3s cubic-bezier(.455, .03, .515, .955);
}

.blog-sidebar-post-image-link {
  flex: none;
  width: 100%;
  height: 370px;
  position: relative;
  overflow: hidden;
}

.link-blog-image {
  width: 100%;
  height: 100%;
}

.blog-sidebar-post-category {
  z-index: 1;
  background-color: var(--white);
  border: 1px solid #000;
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 5px 8px;
  transition: background-color .3s, color .3s;
  display: inline-block;
  position: absolute;
  inset: auto auto 0% 0%;
}

.blog-sidebar-post-category:hover {
  color: #fff;
  background-color: #000;
}

.blog-sidebar-post-category.position {
  margin-top: 0;
  margin-bottom: 20px;
  position: static;
}

.blog-sidebar-post-content {
  background-color: #0000;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin-top: 10px;
  display: flex;
}

.blog-post-title {
  font-weight: 400;
  transition: opacity .3s;
}

.blog-post-title:hover {
  opacity: .6;
}

.sidebar-recent-post {
  align-items: center;
  display: flex;
}

.sidebar-recent-post-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.div-block {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.blog-recent-post-title {
  color: var(--black);
  margin-top: 0;
  font-size: 18px;
  transition: opacity .3s;
}

.blog-recent-post-title:hover {
  opacity: .6;
}

.blog-recent-post-date {
  color: var(--grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.blog-template-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.heading-blog, .heading-blog:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
  font-size: 4.375rem;
}

.blog-template-date {
  color: #0000;
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 18px;
}

.blog-template-image {
  object-fit: cover;
  width: 100%;
  max-height: 680px;
  margin-bottom: 20px;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.logo-main:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457), .blog-logo {
  display: none;
}

.blog-logo:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
  display: inline-block;
}

.cv-div {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: flex-start;
  align-items: center;
}

.link-block {
  width: 70px;
  transition-property: all;
}

.link-block:hover {
  transform: translate(0, .5rem);
}

.search-old {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 2rem;
  display: flex;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  font-size: 1.38rem;
  font-weight: 400;
  transition-property: opacity;
}

.search-link:hover {
  opacity: .7;
}

.text-result {
  color: var(--grey);
  font-size: 1.13rem;
}

.search-input {
  border: 1px solid #0000;
  border-bottom-color: #0000004d;
  height: auto;
  margin-bottom: 0;
  padding: 16px 22px;
  font-size: 1.13rem;
}

.search-result-list {
  margin-top: 2rem;
}

.palmares-item.is-gold {
  background-image: url('../images/gold-medal.svg');
  background-position: 0%;
  background-size: 1rem;
  margin-bottom: .2rem;
  padding-top: .2rem;
  padding-bottom: 0;
}

.palmares-item.is-silver {
  background-image: url('../images/silver-medal.svg');
  background-size: 1rem;
  margin-bottom: .2rem;
  padding-top: .2rem;
  padding-bottom: 0;
}

.palmares-item.is-bronze {
  background-image: url('../images/bronze-medal.svg');
  background-size: 1rem;
}

.medal-block {
  border-bottom: 2px dotted var(--grey);
  display: block;
}

.columns {
  width: 100%;
}

.column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  padding-left: 0;
  padding-right: 7rem;
  display: flex;
}

.column-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  padding-left: .5rem;
  padding-right: 7rem;
  display: flex;
}

.footer-link-item.w--current:hover {
  text-decoration: underline;
}

.history-content {
  width: 100%;
}

.ellipse-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 30px;
  display: flex;
}

.ellipse-conteny {
  grid-row-gap: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.black-bgr-ellipse {
  background-color: #0000;
  width: 0%;
  position: absolute;
  inset: 0%;
}

.customer-image-wrapper {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 180px;
  transition: opacity .3s;
  display: flex;
  position: relative;
}

.customer-image-wrapper:hover {
  opacity: 1;
}

.absolute-white {
  position: absolute;
}

.absolute-white.brescia {
  background-color: var(--black);
  padding: 10px;
}

.banner-title-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.white-text-2 {
  color: var(--white);
  font-size: 4.375rem;
}

.div-block-2 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
}

.heading-7 {
  padding-right: 2rem;
}

.link-2 {
  text-transform: capitalize;
}

.heading-8 {
  margin-top: 2rem;
}

.language_select {
  color: var(--white);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 25px;
  display: flex;
}

.language_select:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
  color: var(--black);
  display: none;
}

.language_select_dark {
  color: var(--black);
  padding-left: 25px;
  display: none;
}

.language_select_dark:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
  color: var(--black);
  display: block;
}

.language_list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  display: flex;
}

.text-block {
  display: none;
}

.list-item-2 {
  background-image: none;
  padding-left: 10px;
  list-style-type: none;
}

.list-item-3 {
  background-image: none;
  padding-left: 10px;
}

.link-3 {
  color: var(--white);
}

.link-3.black {
  color: var(--black);
}

.link-4 {
  color: var(--white);
}

.link-4.black {
  color: var(--black);
}

@media screen and (min-width: 1280px) {
  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.dark-style {
    min-height: 600px;
  }

  .section.about-us {
    min-height: 550px;
  }

  .section.blog {
    min-height: 600px;
  }

  .section.contacts-banner {
    padding-top: 150px;
  }

  .section.page, .section.chienesiologia, .section.palmares, .section.customers, .section.blog-grid-banner {
    min-height: 600px;
  }

  .subtitle-text {
    margin-bottom: 40px;
  }

  .subtitle-text.margin {
    margin-bottom: 250px;
  }

  .bgr-ellipse {
    margin-top: 210px;
  }

  .block-image-absolute {
    width: 64%;
    top: 59%;
  }

  .block-image-absolute.home-2 {
    top: 83%;
  }

  .top-content-block {
    margin-bottom: 130px;
  }

  .paragraph-large {
    font-size: 70px;
  }

  .card-content-wrapper {
    margin-bottom: 130px;
  }

  .video-content {
    margin-top: -400px;
  }

  .footer-wrapper {
    margin-bottom: 130px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .right-block-footer {
    width: auto;
  }

  .text-play-footer {
    font-size: 120px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .circle-background {
    top: 18%;
  }

  .programs-wrapper {
    grid-column-gap: 100px;
  }

  .banner-wrapper {
    grid-column-gap: 80px;
  }

  .heading-cu {
    font-size: 70px;
  }

  .blog-sidebar-left-wrapper {
    width: 70%;
  }

  .heading-blog {
    font-size: 70px;
  }

  .blog-template-pagination {
    margin-bottom: 130px;
  }
}

@media screen and (min-width: 1440px) {
  .background-video {
    background-image: linear-gradient(#00000080, #00000080);
  }

  .block-image-absolute {
    width: 63%;
    top: 58%;
  }

  .footer-link-item {
    transition: all .3s;
  }

  .footer-link-item:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1920px) {
  .home-banner-section {
    height: 100vh;
  }

  .section.blog {
    background-image: linear-gradient(#00000080, #00000080), url('../images/blog-omeri.webp');
    background-position: 0 0, 50% 0;
  }

  .section.contacts-banner {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.chienesiologia {
    background-image: linear-gradient(to bottom, null, null), url('../images/chinesiologo_1chinesiologo.webp');
    background-position: 0 0, 50%;
  }

  .subtitle-text.margin {
    margin-bottom: 300px;
  }

  .block-image-absolute {
    width: 60%;
  }
}

@media screen and (max-width: 991px) {
  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    background-color: #000;
    flex-direction: column;
    width: 320px;
    height: 100%;
    inset: 0% auto 0% 0%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
    position: absolute;
    inset: 0% 0% auto;
  }

  .brand-tablet {
    display: block;
  }

  .close-menu-button {
    padding-bottom: 0;
  }

  .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 10px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    max-width: 60%;
  }

  .nav-close-icon.invert {
    filter: invert();
  }

  .menu-wrap {
    background-color: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: relative;
    top: 60px;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    color: var(--white);
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding: 0;
    display: flex;
  }

  .nav-dropdown-icon {
    filter: invert();
    margin-right: 0;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-item-title:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    color: var(--white);
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: 320px;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 100%;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    color: #fff;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .menu-button {
    text-align: right;
    padding: 0;
  }

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

  .home-banner-section {
    height: 530px;
    padding-top: 60px;
  }

  .white-text.maxw {
    text-align: right;
  }

  .primary-button.invert {
    border-style: solid;
    border-color: var(--black);
    color: var(--black);
    filter: invert();
  }

  .section.background-margin {
    padding-top: 80px;
  }

  .section.blog-grid-banner {
    min-height: 300px;
    padding-top: 80px;
  }

  .block-horizontal-full-width {
    grid-column-gap: 50px;
  }

  .left-block-content {
    flex-direction: column;
    width: 100%;
  }

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

  .subtitle-text.margin {
    margin-bottom: 130px;
  }

  .right-block-content {
    width: 100%;
  }

  .counter-number {
    font-size: 90px;
  }

  .bgr-ellipse {
    margin-top: 105%;
  }

  .block-image-absolute {
    width: 100%;
    margin-bottom: 30px;
    position: static;
  }

  .block-image-absolute.home-2 {
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }

  .image-cover._1-home {
    object-position: 100% 50%;
  }

  .paragraph-large {
    font-size: 50px;
  }

  .heading-block-content.centered {
    text-align: center;
  }

  .description-block {
    margin-top: 30px;
  }

  .description-block.display {
    justify-content: center;
    display: flex;
  }

  .description-text-left {
    max-width: 60%;
  }

  .description-text-left.centered {
    text-align: center;
    align-items: center;
    min-width: 30%;
  }

  .heading-content {
    grid-column-gap: 70px;
    margin-bottom: 30px;
  }

  .heading-content.direction {
    grid-column-gap: 1.25rem;
  }

  .card-content-wrapper {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .image-content-wrapper {
    width: 47.9%;
  }

  .footer-wrapper {
    flex-wrap: wrap;
  }

  .card-footer {
    grid-template: ". ."
                   "Area Area"
                   / 1fr 1fr;
  }

  .footer-bottom-wrapper {
    grid-column-gap: 30px;
  }

  .left-block-footer {
    width: 70%;
  }

  .menu-block {
    margin-top: 30px;
  }

  .right-block-footer {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .text-play-footer {
    font-size: 50px;
  }

  .social-links {
    justify-content: center;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .spacing-system-image {
    width: 75%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .spacing-wrapper-mobile, .spasing-system-image-mobile {
    width: 70%;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .colors-container {
    flex-wrap: wrap;
  }

  .colors-wrapper {
    margin-right: 40px;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .style-guide-body-wrapper {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .circle-background {
    top: 18%;
  }

  .top-block-wrapper {
    grid-column-gap: 50px;
  }

  .top-description-block {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
    display: flex;
  }

  .programs-wrapper {
    grid-column-gap: 50px;
  }

  .insight-features-wrapper {
    grid-column-gap: 30px;
  }

  .insight-features-wrapper.wrap {
    flex-wrap: wrap;
  }

  .insight-features-wrap.coaching {
    width: 100%;
  }

  .pricing-features-links-wrap {
    text-align: center;
    width: 53%;
  }

  .pricing-features-links-wrap.width {
    width: 100%;
  }

  .slide.height {
    height: 550px;
  }

  .accordion-wrap.last-child {
    margin-bottom: 30px;
  }

  .content-template {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
    display: flex;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer7_bottom-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: .5rem;
  }

  .banner-wrapper {
    flex-direction: column;
  }

  .left-banner-description {
    width: 100%;
    margin-bottom: 30px;
  }

  .contacts-content-wrapper {
    width: 100%;
  }

  .contacts-2-location-wrapper {
    width: 34%;
    margin-top: 0;
  }

  .right-form-banner {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-form-wrapper {
    margin-left: 0;
    padding: 30px;
  }

  .blog-sidebar-wrapper {
    flex-wrap: wrap-reverse;
  }

  .blog-sidebar-left-wrapper, .blog-sidebar-left {
    flex: none;
    width: 100%;
  }

  .blog-sidebar-right-wrapper {
    width: 100%;
    margin-bottom: 40px;
    position: static;
  }

  .blog-sidebar-right {
    width: 100%;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 2;
    column-gap: 20px;
  }

  .sidebar-recent-post-item {
    display: inline-block;
  }

  .blog-template-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .heading-blog, .heading-blog:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    font-size: 3.8rem;
  }

  .blog-template-date {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .image-burger-main {
    margin-bottom: 4px;
  }

  .image-burger-main.invert {
    filter: invert();
  }

  .image-burger-main.invert:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    display: none;
  }

  .image-burger-blog {
    margin-bottom: 4px;
    display: none;
  }

  .image-burger-blog:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    display: inline-block;
  }

  .ellipse-wrapper {
    flex-wrap: wrap;
  }

  .ellipse-conteny {
    width: 300px;
    height: 300px;
  }

  .language_select {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    font-size: 1rem;
  }

  .language_select:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    color: var(--white);
    flex-flow: row;
    display: flex;
  }

  .language_select_dark {
    font-size: 1rem;
  }

  .language_select_dark:where(.w-variant-ad98db34-cb30-3d3f-4e27-ba8916a3d457) {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: none;
  }

  .language_list {
    margin-top: 0;
  }

  .text-block {
    font-size: 1rem;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    padding-left: 0;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .white-text-h1 {
    font-size: 2.5rem;
  }

  .white-text {
    font-size: 12svw;
  }

  .white-text.maxw {
    text-align: center;
  }

  .section, .section.background-margin {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.dark-style, .section.about-us, .section.blog, .section.page, .section.chienesiologia, .section.palmares, .section.customers {
    min-height: 450px;
  }

  .section.blog-grid-banner {
    padding-top: 60px;
  }

  .block-horizontal-full-width {
    flex-direction: column;
  }

  .left-block-content {
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
    display: flex;
  }

  .subtitle-text {
    margin-bottom: 20px;
  }

  .subtitle-text.margin {
    margin-bottom: 100px;
  }

  .counter-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bgr-ellipse {
    background-size: cover;
    margin-top: 135%;
  }

  .image-cover {
    object-position: 50% 50%;
  }

  .image-cover._1-home {
    object-position: 80% 50%;
  }

  .top-content-block {
    margin-bottom: 60px;
  }

  .paragraph-large {
    font-size: 40px;
  }

  .description-text-left {
    max-width: 100%;
  }

  .heading-content.direction {
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .card-content-wrapper {
    margin-bottom: 0;
  }

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

  .video-content {
    margin-top: 0;
  }

  .footer-wrapper {
    margin-bottom: 60px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap-reverse;
  }

  .left-block-footer {
    grid-row-gap: 50px;
    text-align: center;
    width: 100%;
  }

  .menu-block {
    justify-content: center;
  }

  .right-block-footer {
    width: 100%;
    margin-bottom: 50px;
  }

  .grid-header {
    width: 100%;
    margin-top: 35px;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .colors-container {
    margin-top: 0;
  }

  .colors-wrapper {
    margin-top: 15px;
    margin-right: 0;
  }

  .style-guide-div {
    margin-top: 35px;
  }

  .headers-wrapper, .style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .circle-background {
    top: 31%;
  }

  .top-block-wrapper {
    text-align: center;
    flex-flow: column-reverse;
    align-items: center;
  }

  .top-block-wrapper.about {
    flex-flow: column;
  }

  .top-description-block {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    display: flex;
  }

  .top-description-block._2-column {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1.63rem;
  }

  .paragraph-top-description {
    margin-bottom: 30px;
  }

  .paragraph-top-description.full-width {
    text-align: left;
  }

  .top-image-block {
    width: 100%;
    height: 450px;
  }

  .paragraph-no-margin, .paragraph-no-margin.shedule, .list-3 {
    text-align: left;
  }

  .programs-wrapper {
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .programs-wrapper.reverse {
    flex-wrap: wrap-reverse;
  }

  .image-descriptions {
    margin-top: 20px;
  }

  .image-left {
    width: auto;
  }

  .image-left.sizing, .image-left.tall-video {
    width: 100%;
  }

  ._404-text {
    font-size: 7.5rem;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .insight-features-wrapper {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .insight-features-wrapper.wrap {
    margin-top: 30px;
  }

  .insight-features-wrap {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pricing-features-links-wrap {
    grid-row-gap: 50px;
    width: 100%;
    padding-top: 20px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .content-template {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    display: flex;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-xxlarge {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom.padding-xxlarge {
    padding-bottom: 3rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer7_bottom-wrapper {
    text-align: center;
    flex-flow: column wrap;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer7_legal-list, .footer-credits {
    grid-auto-flow: row;
    justify-items: center;
  }

  .link-footer-menu {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1em;
  }

  .menu-list-footer {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-top: .6rem;
    margin-bottom: .6rem;
    font-size: 1rem;
    line-height: 1em;
  }

  .backgroud-image {
    min-height: 450px;
  }

  .left-banner-description {
    flex-direction: column;
  }

  .contacts-content-wrapper {
    flex-flow: wrap;
  }

  .contacts-2-location-wrapper, .right-form-banner {
    width: 100%;
  }

  .contacts-form-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-sidebar-left-wrapper {
    column-count: 1;
  }

  .blog-sidebar-left {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .sidebar-recent-posts {
    display: none;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 1;
  }

  .blog-template-pagination {
    margin-bottom: 60px;
  }

  .cv-div {
    justify-content: center;
    align-items: center;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .column {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .column-2 {
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 0;
  }

  .history-content {
    text-align: center;
  }

  .ellipse-wrapper {
    justify-content: center;
  }

  .white-text-2 {
    font-size: 12svw;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 2.8rem;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .close-menu-button.w--open {
    left: 15rem;
  }

  .nav-link {
    width: 99%;
  }

  .bottom-content-block {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .white-text {
    font-size: 13svw;
  }

  .white-text.highlights {
    font-size: 1rem;
  }

  .dot-block {
    width: 6px;
    height: 6px;
    margin-left: auto;
    margin-right: auto;
  }

  .button-banner {
    min-width: auto;
  }

  .primary-button.black-hover {
    font-size: 1.25rem;
  }

  .subtitle-text.margin {
    margin-bottom: 30px;
  }

  .subtitle-text.none-margin-mobile {
    margin-bottom: 0;
  }

  .counter-grid {
    text-align: center;
    justify-items: center;
    width: 100%;
  }

  .counter-number {
    font-size: 3.13rem;
  }

  .bgr-ellipse {
    display: none;
  }

  .description-text-left.centered {
    grid-row-gap: 30px;
  }

  .heading-content.direction {
    text-align: center;
  }

  .card-footer {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

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

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .right-block-footer {
    align-items: center;
  }

  .text-play-footer {
    margin-bottom: 30px;
  }

  .social-links {
    margin-top: 30px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .button-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .circle-background {
    display: none;
    top: 33%;
  }

  .top-description-block {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .top-description-block._2-column {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .image-descriptions {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .paragraph-with-margin {
    text-align: left;
  }

  .image-left {
    height: 450px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .insight-features-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .slide {
    height: 370px;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer7_legal-list {
    grid-column-gap: 1rem;
  }

  .link-footer-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .menu-list-footer {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .forms-input-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .sidebar-search-wrapper {
    grid-row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .cv-div {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .search-old {
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-link-item {
    margin-left: 0;
  }

  .footer-link-item.w--current {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .ellipse-conteny {
    flex: none;
  }

  .white-text-2 {
    font-size: 13svw;
  }

  .div-block-2 {
    flex-flow: column;
  }
}

#w-node-_3dd31b5a-a404-df60-1c50-0e24a2b3e65a-75740f71, #w-node-_3dd31b5a-a404-df60-1c50-0e24a2b3e65f-75740f71, #w-node-_3dd31b5a-a404-df60-1c50-0e24a2b3e664-75740f71, #w-node-_3dd31b5a-a404-df60-1c50-0e24a2b3e669-75740f71 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d17c3442-738f-a001-d0e0-7a59d9814694-d981468e {
  justify-self: center;
}

#w-node-_81756ad4-73f8-f0fd-382b-a18b8d13350c-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d13350e-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d133510-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d133512-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d133514-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d133517-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d133519-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d13351b-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d13351d-6b016b5c, #w-node-_81756ad4-73f8-f0fd-382b-a18b8d13351f-6b016b5c, #w-node-d5d5f84f-9b44-ca6f-fb01-eebcb663f2fb-1d623287, #w-node-d5d5f84f-9b44-ca6f-fb01-eebcb663f30b-1d623287 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-d17c3442-738f-a001-d0e0-7a59d9814694-d981468e {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d17c3442-738f-a001-d0e0-7a59d9814694-d981468e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}