:root {
  --navy: #421cb0;
  --white: white;
  --white-brand: #f4f4f4;
  --yellow: #f1e4b2;
  --bordo: #522a44;
  --blue: #7a97ab;
  --black: black;
  --green: #00b592;
  --color: #c76c61;
  --orange-light: #feae76;
  --violet: #c7a0ce;
  --pink: #eaccce;
  --gray: #54565a;
  --color-3: white;
  --dark-grey: #333;
  --light-grey: #999;
}

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

.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;
}

.w-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

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

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

h1 {
  color: var(--navy);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Mak, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Mak, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}

h3 {
  color: #3d3d3d;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Namu 1850", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  color: #fff;
  margin-bottom: 0;
  font-family: Namu Pro, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

a {
  border-bottom: 1px solid var(--white-brand);
  color: var(--white-brand);
  text-decoration: none;
}

blockquote {
  border-left: 1px #000;
  margin-bottom: 0;
  padding: 0;
}

.header {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  padding-top: 10vh;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.logo {
  object-fit: contain;
  border-bottom-style: none;
}

.image {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-style: solid;
  border-width: 2px;
  border-radius: 40px;
  display: block;
}

.image.is--yellow {
  border-color: var(--yellow);
}

.image.is--bordo {
  border-color: var(--bordo);
}

.image.is--blue {
  border-color: var(--blue);
}

.footer-link {
  color: var(--black);
  text-align: justify;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.body {
  background-color: var(--white);
  font-family: Namu Pro, sans-serif;
}

.section-hero {
  display: block;
}

.ac-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.has--weight-semibold {
  font-weight: 600;
}

.form-input {
  min-height: 3rem;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.paragraph-xlarge {
  font-size: 1.7rem;
}

.button {
  height: 60px;
  border: 1px solid var(--navy);
  background-color: var(--navy);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 140px;
  align-items: center;
  padding: 0 27px 3px;
  font-family: "Namu 1990", sans-serif;
  font-size: 16.55px;
  font-weight: 400;
  transition: transform .2s, border-color .3s, color .3s;
  display: flex;
}

.button:hover {
  border-color: var(--green);
  background-color: var(--white);
  color: var(--green);
  transform: scale(1.05);
}

.button.is--icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is--small {
  padding: .5rem 1.25rem;
}

.button.is--text {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
}

.button.is--large {
  padding: 1rem 2rem;
}

.button.is--secondary {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #000;
  border-bottom-width: .125rem;
}

.button.is--reverse {
  background-color: var(--white);
  color: var(--navy);
}

.button.is--reverse:hover {
  background-color: var(--green);
  color: var(--white);
}

.overflow-scroll {
  overflow: scroll;
}

.padding-huge {
  padding: 6rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.author-description {
  font-size: 1.5rem;
}

.has--align-center {
  text-align: center;
}

.margin-tiny {
  margin: .125rem;
}

.author-name {
  font-size: 1.7rem;
}

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

.has--background-white {
  background-color: #fff;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.has--style-allcaps {
  text-transform: uppercase;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.has--style-nowrap {
  white-space: nowrap;
}

.has--style-muted {
  opacity: .6;
}

.paragraph-default {
  color: var(--white-brand);
  font-size: 18px;
  font-weight: 400;
}

.paragraph-default.has--color-grey {
  color: #919191;
}

.padding-custom2 {
  padding: 2.5rem;
}

.ac-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, rgba(0, 115, 230, .1), rgba(255, 255, 255, 0));
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: stretch;
  display: grid;
  position: relative;
}

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

.section-padding-small {
  padding-top: 3rem;
}

.margin-huge {
  margin: 6rem;
}

.section-padding-medium {
  padding-top: 5rem;
}

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

.text-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.ac-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.ac-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.margin-small {
  margin: 1rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.has--align-right {
  text-align: right;
}

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

.caption-supersmall {
  font-size: .6rem;
}

.ac-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  display: grid;
}

.text-style-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.ac-styleguide_background {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .1);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.description-supersmall {
  font-size: .6rem;
}

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

.padding-small {
  padding: 1rem;
}

.price-text {
  font-size: 1.25rem;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.margin-xhuge {
  margin: 8rem;
}

.section-padding-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-xhuge {
  padding: 8rem;
}

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

.paragraph-superlarge {
  font-size: 2rem;
}

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

.ac-styleguide_2-col {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ac-styleguide_2-col.is-align-start {
  align-items: start;
}

.ac-styleguide_heading-medium {
  font-size: 4rem;
}

.ac-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.overflow-auto {
  overflow: auto;
}

.has--weight-normal {
  font-weight: 400;
}

.ac-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.ac-styleguide_item.is-stretch {
  justify-items: stretch;
}

.overflow-visible {
  overflow: visible;
}

.text-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  width: .875rem;
  height: .875rem;
  border-width: .25rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.margin-xxlarge {
  margin: 5rem;
}

.description-xlarge {
  font-size: 1.7rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.has--max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.margin-medium {
  margin: 2rem;
}

.has--max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

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

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

.has--style-italic {
  font-style: italic;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.ac-styleguide_label {
  color: #fff;
  background-color: #0073e6;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.ac-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

.ac-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.icon-1x1-small {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.text-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-custom1 {
  padding: 1.5rem;
}

.ac-styleguide_spacing-all {
  display: none;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.margin-xlarge {
  margin: 4rem;
}

.has--style-link {
  color: #000;
  text-decoration: underline;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.has--background-grey {
  background-color: #f5f5f5;
}

.paragraph-xsmall {
  font-size: .75rem;
}

.ac-styleguide_item-wrapper {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.caption-xsmall {
  font-size: .75rem;
}

.has--max-width-small {
  width: 100%;
  max-width: 20rem;
}

.padding-medium {
  padding: 2rem;
}

.has--max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.has--background-black {
  color: #f5f5f5;
  background-color: #000;
}

.padding-tiny {
  padding: .125rem;
}

.text-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.has--weight-xbold {
  font-weight: 800;
}

.ac-styleguide_empty-box {
  z-index: -1;
  height: 3rem;
  min-width: 3rem;
  background-color: rgba(0, 115, 230, .1);
  border: 1px dashed #0073e6;
  position: relative;
}

.ac-styleguide_4-col {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.padding-xxhuge {
  padding: 12rem;
}

.margin-xsmall {
  margin: .5rem;
}

.paragraph-medium {
  color: #fff;
  font-size: 22px;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.caption-superlarge {
  font-size: 2rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.count {
  font-size: 3rem;
}

.section-padding {
  padding-top: 200px;
}

.margin-custom3 {
  margin: 3.5rem;
}

.has--color-grey {
  color: gray;
}

.has--color-black {
  color: #000;
}

.has--max-width-full {
  width: 100%;
  max-width: none;
}

.description-medium {
  font-size: 1.25rem;
}

.caption-small {
  font-size: .875rem;
}

.description-large {
  font-size: 1.5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

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

.overflow-hidden {
  overflow: hidden;
}

.hide {
  display: none;
}

.ac-styleguide_color.is-3 {
  background-color: #fff;
}

.ac-styleguide_color.is-2 {
  background-color: #f5f5f5;
}

.ac-styleguide_color.is-1 {
  background-color: #000;
}

.has--weight-medium {
  font-weight: 500;
}

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

.padding-large {
  padding: 3rem;
}

.has--weight-light {
  font-weight: 300;
}

.margin-large {
  margin: 3rem;
}

.has--align-left {
  text-align: left;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.caption-default {
  font-size: 1rem;
}

.has--weight-bold {
  font-weight: 700;
}

.padding-xlarge {
  padding: 4rem;
}

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

.ac-styleguide_header {
  background-color: rgba(0, 0, 0, .05);
}

.padding-xsmall {
  padding: .5rem;
}

.text-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.padding-0 {
  padding: 0;
}

.has--style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.has--max-width-large {
  width: 100%;
  max-width: 48rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.has--max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.ac-styleguide_1-col {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-large {
  color: #fff;
  margin-bottom: 40px;
  font-size: 24px;
}

.page-wrapper {
  overflow: hidden;
}

.page-wrapper.has--background-grey {
  background-color: #7c6e6e;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.caption-large {
  font-size: 1.5rem;
}

.hero-text {
  color: var(--white-brand);
  text-align: center;
  font-family: Akrobat, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 120%;
}

.hero-text.is--link {
  opacity: 1;
  text-transform: uppercase;
  border-bottom-style: solid;
  border-bottom-width: .5px;
  margin-left: 50px;
  padding-bottom: 2px;
  text-decoration: none;
}

.caption-xlarge {
  font-size: 1.7rem;
}

.ac-styleguide_heading-large {
  font-size: 6rem;
}

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

.ac-styleguide_item-header {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 2rem;
}

.ac-styleguide_3-col {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.ac-styleguide_3-col.is-align-start {
  align-items: start;
}

.form_checkbox-icon {
  width: .875rem;
  height: .875rem;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  width: .875rem;
  height: .875rem;
  background-size: 90%;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.has--style-strikethrough {
  text-decoration: line-through;
}

.form_message-success {
  padding: 1.25rem;
}

.ac-styleguide_version {
  z-index: 5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.ac-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.has--max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.ac-styleguide_section-header {
  width: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.caption-medium {
  font-size: 1.25rem;
}

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

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

.description-xsmall {
  font-size: .75rem;
}

.description-small {
  font-size: .875rem;
}

.margin-0 {
  margin: 0;
}

.paragraph-small {
  color: var(--white-brand);
  font-size: 14px;
}

.description-default {
  font-size: 1rem;
}

.logo-image {
  width: auto;
  height: 38px;
}

.logo-image.is--life {
  height: 20px;
}

.logo-image.is--header {
  height: 26.63px;
}

.h1 {
  overflow: hidden;
}

.h1.has--color-green {
  color: var(--green);
}

.h2 {
  color: var(--navy);
}

.h2.is--desktop {
  display: block;
}

.h2.is--mobile {
  display: none;
}

.h2.has--color-blue {
  color: var(--navy);
}

.h2.has--margin {
  margin-bottom: 34px;
}

.h2.has--color-white {
  color: var(--white);
}

.h2.is--align-center {
  text-align: center;
}

.h3 {
  font-size: 24px;
}

.description {
  color: var(--white-brand);
  margin-bottom: 24px;
  font-size: 28px;
}

.quote {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.quote-large {
  width: 180px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}

.container {
  width: 100%;
  max-width: 750px;
}

.content-block.is--hero {
  height: 100vh;
  padding-top: 40vh;
  position: relative;
}

.hero-tex_block {
  margin-bottom: 40px;
}

.section-description {
  padding-top: 0;
  padding-bottom: 0;
}

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

.layout.has--margin {
  margin-bottom: 24px;
}

.layout.is--desktop {
  display: grid;
}

.layout.is--mobile {
  display: none;
}

.layout.is--program {
  height: 140px;
  align-items: center;
}

.points-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: auto 584px;
  grid-auto-columns: 1fr;
  display: flex;
  position: relative;
}

.grid-inner {
  flex-direction: column;
  justify-content: space-between;
}

.grid-inner.has--space-between {
  display: flex;
}

.grid-inner.is--first {
  height: 370px;
  justify-content: center;
  display: flex;
}

.grid-inner.has--align-center, .grid-inner.is--horisontal {
  position: relative;
}

.h3-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  margin-bottom: 33px;
  display: flex;
}

.circle-small {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  flex: none;
}

.circle-small.is--red {
  background-color: var(--color);
}

.circle-small.is--yellow {
  background-color: var(--yellow);
}

.circle-small.is--orange {
  background-color: var(--orange-light);
}

.circle-small.is--orange.has--margin {
  margin-top: 6px;
}

.circle-small.is--bordo {
  background-color: var(--bordo);
}

.circle-small.is--blue {
  background-color: var(--blue);
}

.circle-small.is--blue.has--margin {
  margin-top: 6px;
}

.circle-small.is--violet {
  background-color: var(--violet);
}

.circle-small.is--violet.has--margin {
  margin-top: 6px;
}

.circle-small.is--pink {
  background-color: var(--pink);
}

.circle-small.is--pink.has--margin, .circle-small.has--margin {
  margin-top: 6px;
}

.section-history1 {
  padding-top: 0;
  padding-bottom: 0;
}

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

.section-history2, .section-history3, .section-video {
  padding-top: 0;
  padding-bottom: 0;
}

.circle-image {
  width: 200px;
  height: 200px;
  border: 2px solid var(--color);
  object-fit: cover;
  border-radius: 200px;
  margin-bottom: 0;
}

.paragraph-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.result-block {
  grid-column-gap: 43px;
  grid-row-gap: 43px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.section-result {
  padding-top: 100px;
  padding-bottom: 320px;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: auto;
  border: 2px solid var(--color);
  border-radius: 40px;
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
}

.nav-block {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
  position: relative;
}

.section-padding_small {
  padding-top: 100px;
}

.quote-block {
  border-style: solid;
  border-width: 2px;
  border-radius: 20px;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
}

.quote-block.is--yellow {
  border-color: var(--yellow);
}

.quote-block.is--bordo {
  border-color: var(--bordo);
  padding-top: 20px;
  padding-bottom: 20px;
}

.quote-block.is--blue {
  border-color: var(--blue);
}

.quote-icon {
  width: auto;
  height: 40px;
  position: absolute;
  top: auto;
  bottom: -16.15px;
  left: -20.1px;
  right: auto;
}

.circle-row {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.circle-row.is--hero {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  display: flex;
}

.circle-big {
  width: 124px;
  height: 124px;
  opacity: 0;
  border-radius: 100px;
  flex: none;
  transform: scale(.8);
}

.circle-big.is--photo {
  object-fit: cover;
  background-image: url('../images/FXT29917_1FXT29917.webp');
  background-position: 50%;
  background-size: cover;
}

.circle-big.is--photo._2 {
  background-image: url('../images/FXT29024_1FXT29024.webp');
}

.circle-big.is--photo._3 {
  background-image: url('../images/FXT29230_1FXT29230.webp');
}

.circle-big.is--photo._4 {
  background-image: url('../images/FXT28218_1FXT28218.webp');
}

.circle-big.is--photo._5 {
  background-image: url('../images/FXT28789_1FXT28789.webp');
}

.circle-big.is--photo._6 {
  background-image: url('../images/FXT20221_1FXT20221.webp');
}

.circle-big.is--photo._7 {
  background-image: url('../images/FXT28190_1FXT28190.webp');
}

.circle-big.is--photo._8 {
  background-image: url('../images/FXT29476_1FXT29476.webp');
}

.circle-big.is--photo._9 {
  background-image: url('../images/FXT20215_1FXT20215.webp');
}

.circle-big.is--photo._10 {
  background-image: url('../images/FXT28398_1FXT28398.webp');
}

.circle-big.is--photo._11 {
  background-image: url('../images/FXT28681_1FXT28681.webp');
}

.circle-big.is--photo._12 {
  background-image: url('../images/FXT29512_1FXT29512.webp');
}

.circle-big.is--photo._13 {
  background-image: url('../images/FXT29546_1FXT29546.webp');
}

.circle-big.is--photo._14 {
  background-image: url('../images/FXT29719_1FXT29719.webp');
}

.circle-big.is--violet {
  background-color: var(--violet);
}

.circle-big.is--bordo {
  background-color: var(--bordo);
}

.circle-big.is--yellow {
  background-color: var(--yellow);
}

.circle-big.is--blue {
  background-color: var(--blue);
}

.circle-big.is--pink {
  background-color: var(--pink);
}

.circle-big.is--red {
  background-color: var(--color);
}

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

.background-wrapper {
  z-index: -1;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  opacity: .2;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: absolute;
  top: 17%;
  bottom: auto;
  left: auto;
  right: 25%;
}

.background-wrapper.is--1 {
  top: 8.5%;
  right: 46%;
}

.background-wrapper.is--2 {
  top: 36%;
  right: 20%;
}

.background-wrapper.is--3 {
  top: -20%;
  bottom: auto;
  left: auto;
  right: 25%;
}

.background-wrapper.is--4 {
  top: -89%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.background-wrapper.is--5 {
  top: auto;
  bottom: -90%;
  left: -136%;
  right: auto;
}

.circle-medium {
  width: 68px;
  height: 68px;
  opacity: 0;
  background-color: #1c1c1c;
  border-radius: 100px;
  transform: scale(.8);
}

.circle-medium.is--violet {
  background-color: var(--violet);
}

.circle-medium.is--pink {
  background-color: var(--pink);
}

.circle-medium.is--blue {
  background-color: var(--blue);
}

.circle-medium.is--gray {
  background-color: var(--gray);
}

.circle-medium.is--red {
  background-color: var(--color);
}

.circle-medium.is--orange {
  background-color: var(--orange-light);
}

.circle-medium.is--bordo {
  background-color: var(--bordo);
}

.circle-medium.is--yellow {
  background-color: var(--yellow);
  background-color: var(--yellow);
}

.circle-bottom {
  width: 100px;
  height: 100px;
  background-color: #1c1c1c;
  border-radius: 100px;
}

.circle-bottom.is--violet {
  background-color: var(--violet);
}

.circle-bottom.is--pink {
  background-color: var(--pink);
}

.circle-bottom.is--blue {
  background-color: var(--blue);
}

.circle-bottom.is--gray {
  background-color: var(--gray);
}

.circle-bottom.is--red {
  background-color: var(--color);
}

.circle-bottom.is--orange {
  background-color: var(--orange-light);
}

.circle-bottom.is--bordo {
  background-color: var(--bordo);
}

.circle-bottom.is--yellow {
  background-color: var(--yellow);
  background-color: var(--yellow);
}

.marquee-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.h1-wrapper {
  margin-bottom: 20px;
}

.footer {
  padding-top: 150px;
}

.link.has--no-underline {
  border-bottom-style: none;
}

.link.is--hero {
  color: var(--color-3);
  text-transform: uppercase;
  margin-left: 47px;
  display: block;
}

.main-logo_wrapper {
  grid-column-gap: 3.4px;
  grid-row-gap: 3.4px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-about {
  background-color: var(--navy);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.logo-footer {
  width: 180px;
  height: auto;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-footer {
  width: 100vw;
  height: auto;
  margin-bottom: -31.2vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading {
  color: #fff;
  font-family: Mak, sans-serif;
  font-size: 32px;
  line-height: 140%;
}

.paragraph {
  color: #3d3d3d;
}

.paragraph.has--color-dark {
  color: #3d3d3d;
  line-height: 160%;
}

.paragraph.has--max-width {
  max-width: 275px;
}

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

.background-image {
  width: auto;
  height: 100%;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: -.5%;
}

.section-categories {
  padding-top: 100px;
  line-height: 160px;
  position: relative;
}

.wrapper-categories {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.block-categories {
  height: 175.32px;
  border: 1px solid var(--navy);
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  display: flex;
}

.block-categories.is--last {
  width: 49%;
}

.icon-categories {
  height: auto;
}

.icon-categories.politics {
  width: 40px;
}

.icon-categories.society {
  width: 52px;
}

.icon-categories.business {
  width: 60px;
}

.icon-categories.science {
  width: 53px;
}

.icon-categories.fashion {
  width: 63px;
}

.icon-categories.sport {
  width: 71px;
}

.date {
  color: var(--navy);
  margin-top: -3.5px;
  font-size: 23.83px;
  line-height: 120%;
}

.divider {
  width: 1.86px;
  height: 18.82px;
  background-color: var(--green);
}

.divider.is--horizontal {
  width: 100%;
  height: .5px;
  background-color: var(--navy);
}

.h1-block {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

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

.hero-background {
  width: 387.74px;
  height: auto;
  position: absolute;
  top: auto;
  bottom: -.02%;
  left: -58%;
  right: auto;
}

.hero-image {
  width: auto;
  height: 430px;
  position: absolute;
  top: auto;
  bottom: -.2%;
  left: auto;
  right: -12%;
}

.section-women {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.program-wrapper {
  margin-top: 50px;
}

.program-block {
  justify-content: space-between;
  display: flex;
}

.time-text {
  color: #a08dd7;
  font-size: 20px;
  line-height: 140%;
}

.partner-logo {
  width: auto;
  height: 42px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.partner-logo.is--main {
  width: auto;
  height: 75px;
}

.partner-logo.is--medium {
  height: 38px;
}

.partner-logo.is--xsmall {
  height: 13px;
}

.partner-logo.is--small {
  height: 32px;
}

.partner-logo.is--large {
  height: 36px;
}

.h4 {
  color: var(--navy);
  text-align: center;
  font-family: Mak, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 140%;
}

.partners-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.partners-logo_wrapper {
  width: 70%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.main-partner_block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.partner-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 65px;
  margin-bottom: 60px;
  display: flex;
}

.partner-block.margin-hide {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 0;
}

.partner-block.margin-hide.has--small-gap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.section-partners {
  padding-top: 100px;
  padding-bottom: 50px;
  line-height: 160px;
  position: relative;
}

.section-program {
  padding-top: 100px;
  line-height: 160px;
  position: relative;
}

.section-tickets {
  padding-top: 50px;
}

.logo-wrapper {
  border-bottom: 0px none var(--white);
  align-self: center;
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 88px;
  }

  h2, h3 {
    font-size: 32px;
  }

  .logo {
    border-bottom-style: none;
  }

  .image {
    height: 490px;
  }

  .button {
    height: 87px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 24px;
  }

  .paragraph-medium {
    font-size: 24px;
  }

  .hero-text {
    font-size: 28px;
  }

  .logo-image.is--header {
    height: 37px;
  }

  .h2 {
    font-size: 52px;
  }

  .h2.has--color-blue.has--margin, .h2.has--margin {
    margin-bottom: 40px;
  }

  .h2.has--align-center {
    margin-bottom: 30px;
  }

  .h3 {
    font-size: 32px;
  }

  .quote-large {
    width: 260px;
    font-size: 24px;
  }

  .quote-large.is--wider {
    width: 280px;
  }

  .container {
    max-width: 1000px;
  }

  .content-block {
    position: relative;
  }

  .hero-tex_block {
    margin-bottom: 42px;
  }

  .grid-inner {
    width: 94%;
  }

  .grid-inner.is--first {
    height: 490px;
  }

  .h3-wrapper {
    margin-bottom: 80px;
  }

  .circle-image {
    width: 228px;
    height: 228px;
  }

  .section-result {
    padding-bottom: 205px;
  }

  .quote-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .circle-big {
    width: 200px;
    height: 200px;
  }

  .background-wrapper {
    top: 13%;
    right: -10%;
  }

  .background-wrapper.is--1 {
    top: 14%;
    right: -10%;
  }

  .background-wrapper.is--2 {
    top: 21%;
    right: -10%;
  }

  .background-wrapper.is--3 {
    top: -18.5%;
    right: -15%;
  }

  .background-wrapper.is--4 {
    top: -133%;
    right: 19%;
  }

  .background-wrapper.is--5 {
    bottom: -79%;
    left: -117%;
  }

  .circle-medium {
    width: 86px;
    height: 86px;
  }

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

  .heading {
    font-size: 32px;
  }

  .paragraph.has--color-dark.has--max-width, .paragraph.has--max-width {
    max-width: 430px;
  }

  .paragraph.has--color-white.has--max-width {
    max-width: 100%;
  }

  .background-image {
    height: 500px;
    display: block;
    top: auto;
    bottom: -34%;
    left: auto;
    right: -23.8vw;
  }

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

  .block-categories {
    height: 234px;
    border-radius: 13px;
    padding: 46px;
  }

  .icon-categories.politics {
    width: 54px;
  }

  .icon-categories.society {
    width: 70px;
  }

  .icon-categories.business {
    width: 80px;
  }

  .icon-categories.science {
    width: 71px;
  }

  .icon-categories.fashion {
    width: 84px;
  }

  .icon-categories.sport {
    width: 95px;
  }

  .date {
    margin-top: -6px;
    font-size: 31px;
  }

  .divider {
    height: 22px;
  }

  .h1-block {
    margin-bottom: 40px;
  }

  .hero-background {
    width: 684.07px;
    left: -743px;
  }

  .hero-image {
    height: 630px;
    right: -13.8vw;
  }

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

  .partner-logo {
    height: 50px;
  }

  .partner-logo.is--main {
    height: 90px;
  }

  .partner-logo.is--medium {
    height: 46px;
  }

  .partner-logo.is--xsmall {
    height: 16px;
  }

  .partner-logo.is--small {
    height: 34px;
  }

  .partner-logo.is--large {
    height: 48px;
  }

  .h4 {
    font-size: 32px;
  }

  .partners-logo_wrapper {
    width: 80%;
  }

  .partner-block {
    margin-top: 85px;
    margin-bottom: 75px;
  }

  .section-partners {
    padding-top: 150px;
    padding-bottom: 75px;
  }

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

  .section-tickets {
    padding-top: 75px;
  }
}

@media screen and (min-width: 1920px) {
  .background-image {
    right: -31vw;
  }

  .hero-background {
    left: -982px;
  }

  .hero-image {
    right: -23.5vw;
  }
}

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

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .header {
    padding-top: 7svh;
  }

  .image {
    object-fit: cover;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

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

  .margin-xxhuge {
    margin: 8rem;
  }

  .paragraph-default {
    font-size: 16px;
  }

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

  .margin-huge {
    margin: 5rem;
  }

  .section-padding-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .ac-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

  .margin-xhuge {
    margin: 6rem;
  }

  .section-padding-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

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

  .ac-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .ac-styleguide_heading-medium {
    font-size: 3rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .ac-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .section-padding {
    padding-top: 160px;
  }

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

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

  .padding-large {
    padding: 2.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

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

  .ac-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .hero-text.is--link {
    margin-left: 17px;
  }

  .has--max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

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

  .ac-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

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

  .logo-image {
    height: 29px;
  }

  .logo-image.is--life {
    height: 20px;
  }

  .logo-image.is--header {
    height: 23.98px;
  }

  .h2.is--desktop {
    display: none;
  }

  .h2.is--mobile {
    align-self: center;
    margin-bottom: 0;
    display: block;
  }

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

  .h3 {
    width: 80%;
  }

  .description {
    font-size: 24px;
  }

  .quote {
    font-size: 16px;
  }

  .quote-large {
    width: 80%;
    text-align: center;
    font-size: 24px;
  }

  .quote-large.is--wider {
    width: 80%;
  }

  .container {
    max-width: 100%;
    padding-left: 110px;
    padding-right: 110px;
  }

  .content-block.is--hero {
    height: 100svh;
    padding-top: 25svh;
  }

  .layout {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    grid-template-columns: 100%;
    display: flex;
  }

  .layout.has--margin {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    margin-bottom: 50px;
  }

  .layout.is--desktop {
    display: none;
  }

  .layout.is--mobile {
    grid-row-gap: 50px;
    display: flex;
  }

  .layout.has--gap_tablet {
    grid-row-gap: 60px;
  }

  .layout.is--program {
    height: 124px;
    grid-column-gap: 5.5vw;
    grid-row-gap: 5.5vw;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 22vw 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .grid-inner {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .grid-inner.is--first {
    height: auto;
  }

  .grid-inner.is--horisontal {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .h3-wrapper {
    margin-bottom: 40px;
  }

  .circle-small.has--margin.is--orange {
    display: none;
  }

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

  .circle-image {
    width: 156px;
    height: 156px;
    margin-bottom: 40px;
  }

  .paragraph-wrapper {
    justify-content: flex-start;
    margin-bottom: 50px;
  }

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

  .video-wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .quote-block.is--bordo {
    margin-bottom: 50px;
  }

  .quote-block.is--blue {
    order: 1;
  }

  .circle-row.is--hero {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .circle-big {
    width: 96px;
    height: 96px;
  }

  .background-wrapper {
    top: 33%;
    right: 80%;
  }

  .background-wrapper.is--1 {
    top: 34%;
    right: 80%;
  }

  .background-wrapper.is--2 {
    top: 38%;
    right: 67%;
  }

  .background-wrapper.is--3 {
    top: -11%;
    right: 75%;
  }

  .background-wrapper.is--4 {
    top: -101.5%;
    bottom: auto;
    left: auto;
    right: -28%;
  }

  .background-wrapper.is--5 {
    bottom: -490px;
    left: -380px;
  }

  .marquee-content {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .link.is--hero {
    margin-left: 14px;
  }

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

  .logo-footer {
    width: 185px;
    margin-bottom: 60px;
    padding-left: 8px;
  }

  .image-footer {
    margin-bottom: -35.5vw;
  }

  .paragraph.has--max-width {
    max-width: 100%;
  }

  .section-categories {
    padding-top: 100px;
  }

  .wrapper-categories {
    flex-direction: column;
    display: flex;
  }

  .block-categories {
    height: 120px;
    grid-column-gap: 5.5vw;
    grid-row-gap: 5.5vw;
    grid-template-rows: auto;
    grid-template-columns: 22vw 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding: 0;
    display: grid;
  }

  .block-categories.is--last {
    width: 100%;
  }

  .date {
    font-size: 20.55px;
  }

  .divider {
    height: 16.94px;
  }

  .hero-background {
    width: 401px;
    bottom: -.1%;
    left: -435px;
  }

  .hero-image {
    height: 50vh;
    bottom: -.1%;
    right: -50px;
  }

  .section-women {
    padding-top: 60px;
  }

  .time-text {
    text-align: center;
    font-size: 18px;
  }

  .partner-logo.is--main {
    height: 55px;
  }

  .partner-logo.is--medium {
    height: 36px;
  }

  .partner-logo.is--small {
    height: 31px;
  }

  .h4 {
    font-size: 24px;
  }

  .partners-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .partners-logo_wrapper {
    width: 92%;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .partner-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 50px;
    margin-bottom: 55px;
  }

  .partner-block.margin-hide {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

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

  .section-program {
    padding-top: 100px;
  }

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

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .image {
    height: 340px;
    border-radius: 25px;
    display: block;
  }

  .image.is--yellow {
    object-position: 50% 20%;
  }

  .image.is--bordo {
    object-position: 50% 40%;
  }

  .image.is--blue {
    object-position: 50% 30%;
  }

  .paragraph-xlarge {
    font-size: 1.25rem;
  }

  .button {
    height: 47px;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .author-description, .author-name {
    font-size: 1.25rem;
  }

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

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .has--style-nowrap {
    white-space: normal;
  }

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

  .section-padding-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .section-padding-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .text-style-h3 {
    font-size: 1.5rem;
  }

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

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

  .margin-xhuge {
    margin: 4rem;
  }

  .section-padding-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .paragraph-superlarge {
    font-size: 1.25rem;
  }

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

  .ac-styleguide_heading-medium {
    font-size: 2rem;
  }

  .text-style-h6 {
    font-size: .75rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .description-xlarge {
    font-size: 1.25rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

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

  .text-style-h2 {
    font-size: 2rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .has--max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .text-style-h5 {
    font-size: .875rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .caption-superlarge, .count {
    font-size: 1.25rem;
  }

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

  .description-large {
    font-size: 1.25rem;
  }

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

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

  .padding-large {
    padding: 1.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

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

  .text-style-h4 {
    font-size: 1rem;
  }

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

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

  .caption-large {
    font-size: 1.25rem;
  }

  .hero-text {
    font-size: 16px;
  }

  .caption-xlarge {
    font-size: 1.25rem;
  }

  .ac-styleguide_heading-large {
    font-size: 3rem;
  }

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

  .ac-styleguide_version, .ac-styleguide_section-header {
    font-size: .875rem;
  }

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

  .logo-image {
    height: 23px;
  }

  .logo-image.is--life {
    height: 14px;
  }

  .logo-image.is--header {
    height: 20px;
  }

  .h1 {
    margin-bottom: 6px;
    font-size: 34px;
  }

  .h3 {
    font-size: 18px;
  }

  .description {
    font-size: 22px;
  }

  .quote-large {
    width: 70%;
    font-size: 22px;
  }

  .quote-large.is--wider {
    width: 70%;
  }

  .container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .content-block.is--hero {
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 10svh;
    display: flex;
  }

  .hero-tex_block {
    margin-bottom: 20px;
  }

  .layout {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .layout.has--margin {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 40px;
  }

  .layout.has--gap_tablet {
    grid-row-gap: 40px;
  }

  .layout.is--program {
    width: 95%;
    height: auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .points-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .grid-inner.has--align-center {
    width: 425px;
  }

  .grid-inner.is--horisontal {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
    display: flex;
  }

  .h3-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 30px;
  }

  .circle-small {
    width: 15px;
    height: 15px;
  }

  .circle-small.has--margin.is--pink, .circle-small.has--margin.is--blue, .circle-small.has--margin.is--violet {
    margin-top: 8px;
  }

  .circle-image {
    width: 176px;
    height: 176px;
  }

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

  .result-block {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .section-result {
    padding-top: 60px;
  }

  .video-wrapper {
    border-radius: 25px;
  }

  .nav-block {
    justify-content: space-between;
  }

  .quote-block.is--bordo {
    margin-bottom: 40px;
  }

  .background-wrapper {
    top: 44%;
    right: 35%;
  }

  .background-wrapper.is--1 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    top: 45%;
    right: 31%;
  }

  .background-wrapper.is--2 {
    top: 43%;
    right: 6%;
  }

  .background-wrapper.is--3 {
    display: none;
    top: 44%;
    right: 68%;
  }

  .background-wrapper.is--4 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    top: -98.5%;
    right: -71%;
  }

  .background-wrapper.is--5 {
    bottom: -495px;
    left: -532px;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .main-logo_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

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

  .image-footer {
    width: 136vw;
    margin-bottom: -22.2vw;
    margin-left: -18vw;
    margin-right: -18vw;
  }

  .section-categories {
    padding-top: 60px;
  }

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

  .block-categories {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
  }

  .icon-categories.politics {
    width: 32px;
  }

  .icon-categories.politics.draw-animation {
    width: 7vw;
  }

  .icon-categories.society {
    width: 30px;
  }

  .icon-categories.society.draw-animation {
    width: 7.5vw;
  }

  .icon-categories.business {
    width: 34px;
  }

  .icon-categories.business.draw-animation {
    width: 7.5vw;
  }

  .icon-categories.science {
    width: 30px;
  }

  .icon-categories.science.draw-animation {
    width: 7vw;
  }

  .icon-categories.fashion {
    width: 35px;
  }

  .icon-categories.fashion.draw-animation {
    width: 8vw;
  }

  .icon-categories.sport {
    width: 40px;
  }

  .icon-categories.sport.draw-animation {
    width: 9vw;
  }

  .date {
    margin-top: -1px;
    font-size: 18px;
  }

  .divider {
    display: none;
  }

  .divider.is--horizontal {
    display: block;
  }

  .button-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
  }

  .hero-background {
    width: 162.59px;
    left: -173px;
  }

  .hero-image {
    z-index: -1;
    height: 350px;
    right: -102px;
  }

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

  .time-text {
    font-size: 16px;
  }

  .partner-logo {
    height: 30px;
  }

  .partner-logo.is--main {
    height: 50px;
  }

  .partner-logo.is--medium {
    height: 31px;
  }

  .partner-logo.is--xsmall {
    height: 12px;
  }

  .partner-logo.is--small {
    height: 25px;
  }

  .partner-logo.is--large {
    height: 28px;
  }

  .h4 {
    font-size: 20px;
  }

  .partners-logo_wrapper {
    width: 400px;
  }

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

  .section-program {
    padding-top: 60px;
  }

  .section-tickets {
    padding-top: 30px;
  }
}

@media screen and (max-width: 479px) {
  .logo, .image {
    display: block;
  }

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

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

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

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

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

  .has--max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .paragraph-medium {
    font-size: 20px;
  }

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

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

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

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

  .hero-text.is--link {
    white-space: nowrap;
    margin-left: 0;
    position: absolute;
    top: 57.6484px;
    left: 50%;
    transform: translate(-50%);
  }

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

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

  .logo-image.is--header {
    height: 6vw;
  }

  .h1 {
    white-space: nowrap;
    margin-bottom: 10px;
    font-size: 10.89vw;
  }

  .h3 {
    width: 85%;
  }

  .quote-large, .quote-large.is--wider {
    width: 90%;
  }

  .container, .container.is--hero {
    padding-left: 36px;
    padding-right: 36px;
  }

  .content-block.is--hero {
    height: 100svh;
    padding-top: 20svh;
    padding-bottom: 5svh;
  }

  .hero-tex_block {
    margin-bottom: 30px;
  }

  .circle-small.has--margin.is--pink, .circle-small.has--margin.is--blue, .circle-small.has--margin.is--violet {
    margin-top: 7px;
  }

  .video-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .nav-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-right: 2px;
  }

  .background-wrapper.is--1 {
    display: none;
  }

  .background-wrapper.is--2 {
    top: 44%;
    right: 9%;
  }

  .background-wrapper.is--4 {
    top: -107.5%;
    right: -62%;
  }

  .background-wrapper.is--5 {
    bottom: -492px;
    left: -545px;
  }

  .link.is--hero {
    white-space: nowrap;
    margin-left: 0;
    font-size: 14px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%);
  }

  .icon-categories.politics.draw-animation {
    width: 10vw;
  }

  .icon-categories.society.draw-animation {
    width: 11vw;
  }

  .icon-categories.business.draw-animation {
    width: 10vw;
  }

  .icon-categories.science.draw-animation, .icon-categories.fashion.draw-animation {
    width: 11vw;
  }

  .icon-categories.sport.draw-animation {
    width: 13vw;
  }

  .date {
    margin-top: -1vw;
    font-size: 5vw;
  }

  .hero-background {
    left: -175px;
  }

  .hero-image {
    height: 370px;
    right: -105px;
  }

  .partner-logo.is--xsmall {
    height: 10.3px;
  }

  .partners-logo_wrapper {
    width: 73%;
    min-width: 250px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partners-logo_wrapper.is--main {
    flex-flow: row;
  }

  .main-partner_block {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .partner-block {
    align-items: center;
  }

  .logo-wrapper {
    flex: none;
    display: block;
  }
}

#w-node-c916f5b6-eae0-65fd-a0d2-befcfe9bd54d-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-f52727c3-5774-d885-9a5f-7863c6b7313c-db832e00, #w-node-_0edbd62e-c6e9-0e76-bd1e-db0f88a1350f-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e193465-ce5a-dd1e-eb76-9a56484019c3-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_974c70f5-8a85-44f0-74fd-7fac2c7fd124-db832e00 {
  align-self: start;
}

#w-node-_974c70f5-8a85-44f0-74fd-7fac2c7fd126-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a3becc4d-530f-3a8d-e477-80159115fd89-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-a3becc4d-530f-3a8d-e477-80159115fd8b-db832e00, #w-node-bed13313-fc22-cda6-4d97-fbd34b5bd4f9-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ba14f7a-ff41-0df5-0be0-4f3fa93954f7-db832e00 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_8dfbf6bc-9842-3a19-88ad-6556fc2147be-db832e00 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3903a3e0-8e74-ced2-9f9e-d0e0b6088ccd-db832e00, #w-node-_1e61489f-81e9-f9a1-f25d-93b33b71f701-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62a56c32-eb6d-cbbf-64a0-a7ad5f1ff773-db832e00, #w-node-a94f7f09-de58-afed-ac3c-cf3175fa1926-db832e00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec41-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec46-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec4b-db832e12, #w-node-_95a6f11e-fd07-0c5f-9df3-f2d03635ef17-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec50-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec56-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec5c-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ec62-db832e12 {
  justify-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ecd9-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ecde-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ece3-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ece8-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1eced-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ecf2-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ecfa-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1edc2-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee14-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee2d-db832e12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee30-db832e12 {
  justify-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee32-db832e12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee35-db832e12 {
  justify-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee41-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee4b-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ee4c-db832e12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef23-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef28-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef2d-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef32-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef37-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef3c-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef46-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef4b-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef50-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef55-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef5a-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef5f-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef64-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef69-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef6e-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef73-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef78-db832e12 {
  justify-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef7c-db832e12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef7d-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef82-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef87-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1ef8c-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efa1-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efa6-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efab-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efb0-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efb5-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efba-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efc4-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efc9-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efce-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efd3-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efd8-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efdd-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efe2-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efe7-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1efec-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1eff1-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1eff6-db832e12 {
  justify-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1effa-db832e12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1effb-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1f000-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1f005-db832e12, #w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1f00a-db832e12 {
  justify-self: start;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1f082-db832e12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c50207-f4dc-c8fc-f47b-e39a58c1f0de-db832e12 {
  justify-self: start;
}

@media screen and (min-width: 1440px) {
  #w-node-c916f5b6-eae0-65fd-a0d2-befcfe9bd54d-db832e00, #w-node-f52727c3-5774-d885-9a5f-7863c6b7313c-db832e00, #w-node-_0edbd62e-c6e9-0e76-bd1e-db0f88a1350f-db832e00, #w-node-_974c70f5-8a85-44f0-74fd-7fac2c7fd124-db832e00, #w-node-_974c70f5-8a85-44f0-74fd-7fac2c7fd126-db832e00, #w-node-a3becc4d-530f-3a8d-e477-80159115fd8b-db832e00 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_18a453cb-ca53-3d1a-8757-38d107b88b59-db832e00, #w-node-a8a23cd7-7f2d-53a8-05a9-a546868dcf5f-db832e00, #w-node-_4925abcd-a1a8-3194-a6be-bff02fa20902-db832e00, #w-node-_96af7f90-3be2-77a0-925f-9aca8ac1e663-db832e00, #w-node-_9c2e9b27-1e45-ec6b-b0ad-59550ce7a94c-db832e00, #w-node-_20e14a02-7beb-537a-b914-0cc77a291090-db832e00, #w-node-_1e241fb7-fb27-542e-51f4-ae4adb0729d8-db832e00, #w-node-b183a18c-165e-83d7-ff4d-12bedfc4e450-db832e00 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Namu 1930';
  src: url('../fonts/NAMU-1930.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Namu 1910';
  src: url('../fonts/NAMU-1910.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Namu 1990';
  src: url('../fonts/NAMU-1990.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Namu Pro';
  src: url('../fonts/NAMU-Pro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Namu 1850';
  src: url('../fonts/NAMU-1850.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Namu 1400';
  src: url('../fonts/NAMU-1400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mak';
  src: url('../fonts/MAK-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}