﻿.grid-switcher {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #363636;
  border-radius: 50%;
  bottom: 10px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 10px;
  position: fixed;
  width: 40px;
  height: 40px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: 99999999;
  font-family: "Roboto", Arial, sans-serif;
}
.grid-switcher.is-active,
.grid-switcher:focus,
.grid-switcher:hover {
  color: #000000;
  background-color: #ffe5e5;
}
.grid-container {
  font-size: 0;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 9999999;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 600ms ease;
  -o-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}
.grid-container.is-active {
  opacity: 1;
  overflow: visible;
  -webkit-transition: opacity 600ms ease;
  -o-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}
.grid-column-item {
  width: 100%;
  min-width: 1px;
  min-height: 0;
  width: calc(100% / 6);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% / 6);
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}
@media (min-width: 771px) {
  .grid-column-item {
    width: calc(100% / 12);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 12);
    flex: 0 0 calc(100% / 12);
    max-width: calc(100% / 12);
  }
}
.grid-column {
  background-color: rgba(255, 0, 0, 0.1);
  height: 100vh;
}
@-webkit-keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading-spinner {
  display: inline-block;
  width: 80px;
  height: 80px;
  -webkit-animation-name: spinner-rotate;
  animation-name: spinner-rotate;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border: 10px solid #7168b7;
  border-right-color: transparent;
  border-radius: 50%;
}
.donut-spinner {
  display: inline-block;
  border: 6px solid #e6edff;
  border-left-color: #7168b7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: donut-spin 1.2s linear infinite;
  animation: donut-spin 1.2s linear infinite;
}
@-webkit-keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bouncing-loader > div,
.bouncing-loader:before,
.bouncing-loader:after {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #7168b7;
  margin-bottom: -5px;
  border-radius: 50%;
  -webkit-animation: bouncing-loader 0.6s infinite alternate;
  animation: bouncing-loader 0.6s infinite alternate;
}
.bouncing-loader > div,
.bouncing-loader:before,
.bouncing-loader:after {
  content: "";
}
.bouncing-loader > div {
  margin: 0 5px;
}
.bouncing-loader > div {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.bouncing-loader:after {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
@-webkit-keyframes bouncing-loader {
  to {
    opacity: 0.1;
    -webkit-transform: translate3d(0, -16px, 0);
    transform: translate3d(0, -16px, 0);
  }
}
@keyframes bouncing-loader {
  to {
    opacity: 0.1;
    -webkit-transform: translate3d(0, -16px, 0);
    transform: translate3d(0, -16px, 0);
  }
}
.typography p,
.typography li,
.typography td,
.typography th {
  line-height: 1.5em;
}
.typography p,
.typography ul,
.typography ol,
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6,
.typography table,
.typography fieldset,
.typography blockquote,
.typography iframe {
  margin-bottom: 1rem;
}
.typography h1 {
  display: block;
  margin-top: 0;
  margin-bottom: 3rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  color: #39345c;
  font-size: 40px;
  font-size: 2.5rem;
}
@media (min-width: 771px) {
  .typography h1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.typography h2 {
  display: block;
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 30px;
  font-size: 1.875rem;
}
@media (min-width: 771px) {
  .typography h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.typography h2 + h3 {
  margin-top: 1rem;
}
.typography h3 {
  display: block;
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 771px) {
  .typography h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.typography h4 {
  display: block;
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 771px) {
  .typography h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.typography h5 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 771px) {
  .typography h5 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.typography h6 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 771px) {
  .typography h6 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.typography .subheadline {
  margin-bottom: 3rem;
  font-size: 20px;
  font-size: 1.25rem;
}
.typography a {
  text-decoration: underline;
  color: #7168b7;
}
.typography a:focus,
.typography a:hover {
  color: #433c7d;
  text-decoration: underline;
}
.typography p {
  display: block;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
.typography p + p:not(last-child) {
  margin-bottom: 2rem !important;
}
.typography strong {
  font-weight: 700;
  color: #39345c;
}
.typography img {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 770px) {
  .typography img {
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
    max-width: calc(100% + 30px);
  }
}
.typography ul,
.typography ol {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding-left: 0;
  list-style: none;
}
.typography ul li,
.typography ol li {
  position: relative;
  margin-bottom: 1.5rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 2.2rem;
}
@media (min-width: 576px) {
  .typography ul li,
  .typography ol li {
    padding-left: 2.6rem;
  }
}
.typography ul li:before {
  position: absolute;
  top: 9px;
  left: 3px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 100%;
  background-color: #39345c;
}
.typography ol {
  list-style-position: inside;
  counter-reset: item;
}
.typography ol li:before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  line-height: 1.4;
  content: counter(item) ".";
  counter-increment: item;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
.typography figure {
  margin: 0;
  margin-bottom: 2rem;
}
.typography figcaption {
  margin-top: 0.2rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #39345c;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
}
.typography--h2-gradient h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #39345c;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(15%, #7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 15%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 15%, #33c2bd 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
.typography--h2-gradient h2 svg {
  position: relative;
  top: 3px;
  width: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  margin-right: 0.6rem;
  font-size: 30px;
  font-size: 1.875rem;
  fill: #7168b7;
  -webkit-filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
  filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
}
.typography--faq h2:first-child {
  margin-top: 0;
}
.form__input,
.form__textarea {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1rem;
  border: 2px solid #d1d7db;
  background-color: #ffffff;
  color: #39345c;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0;
  outline: none !important;
  -webkit-appearance: none;
}
.form__input:-moz-placeholder-shown,
.form__textarea:-moz-placeholder-shown {
  border-color: #000000;
}
.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
  border-color: #000000;
}
.form__input:placeholder-shown,
.form__textarea:placeholder-shown {
  border-color: #000000;
}
.form__input:focus,
.form__textarea:focus {
  border-color: #000000;
}
.form__input--outline {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
}
.form__input--outline-full {
  background-color: transparent;
  border: 0;
  padding-right: 75px;
  border: 2px solid;
  border-image-slice: 2;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
.form__textarea--white,
.form__input--white {
  color: #ffffff;
}
.form__textarea--white:-webkit-autofill,
.form__textarea--white:-webkit-autofill:hover,
.form__textarea--white:-webkit-autofill:focus,
.form__input--white:-webkit-autofill,
.form__input--white:-webkit-autofill:hover,
.form__input--white:-webkit-autofill:focus {
  color: #ffffff !important;
}
.form__textarea--white:-moz-placeholder-shown,
.form__input--white:-moz-placeholder-shown {
  color: #ffffff !important;
}
.form__textarea--white:-ms-input-placeholder,
.form__input--white:-ms-input-placeholder {
  color: #ffffff !important;
}
.form__textarea--white:placeholder-shown,
.form__input--white:placeholder-shown {
  color: #ffffff !important;
}
.form__textarea--white:visited,
.form__textarea--white:active,
.form__textarea--white:focus,
.form__input--white:visited,
.form__input--white:active,
.form__input--white:focus {
  color: #ffffff !important;
}
.form__textarea {
  padding: 1rem 1.5rem;
  line-height: 1.5rem;
  resize: none;
  border-radius: 0;
}
.form__textarea--outline {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
}
.form__textarea--limit {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  min-height: 60px;
  max-height: 250px;
}
.form__textarea--limit-big {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  min-height: 120px;
  max-height: 250px;
}
@media (min-width: 576px) {
  .form__textarea--limit-big {
    min-height: 100px;
  }
}
@media (min-width: 771px) {
  .form__textarea--limit-big {
    min-height: 60px;
  }
}
.form__select {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1rem;
  border: 2px solid #d1d7db;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  background-color: #ffffff;
  color: #39345c;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  outline: none;
  font-size: 16px;
  font-size: 1rem;
  -webkit-appearance: value;
  -moz-appearance: value;
  -ms-appearance: value;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.form__select--outline {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
}
.form__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}
.form__icon svg {
  font-size: 22px;
  font-size: 1.375rem;
}
.form__icon-block .form__input {
  padding-right: 60px;
}
.form__label {
  display: block;
  margin: 0 0 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #39345c;
  opacity: 0.5;
  font-size: 16px;
  font-size: 1rem;
}
.form__label--white {
  color: #ffffff;
  opacity: 1;
}
.form__field {
  position: relative;
}
.form__field--small {
  margin-bottom: 0.5rem;
}
.form__field--medium {
  margin-bottom: 1rem;
}
.form__field--big {
  margin-bottom: 2rem;
}
.form__placeholder {
  position: relative;
  z-index: 1;
}
.form__placeholder.is-active .form__label {
  width: calc(100% - 20px);
  -webkit-transform: translateX(1px) translateY(0);
  -ms-transform: translateX(1px) translateY(0);
  transform: translateX(1px) translateY(0);
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 12px 5px;
  opacity: 1;
}
.form__placeholder .form__input,
.form__placeholder .form__textarea {
  padding: 30px 12px 13px;
}
.form__placeholder .select2-container .select2-selection--single {
  padding: 7px 12px 0 12px;
}
.form__placeholder .form__label {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  margin: 0;
  cursor: text;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(1px) translateY(8px);
  -ms-transform: translateX(1px) translateY(8px);
  transform: translateX(1px) translateY(8px);
  text-transform: none;
  pointer-events: none;
  padding: 15px 12px 10px;
}
.form__placeholder--center.is-active .form__label {
  -webkit-transform: translateX(1px) translateY(-5px);
  -ms-transform: translateX(1px) translateY(-5px);
  transform: translateX(1px) translateY(-5px);
}
.form__placeholder--center .form__label {
  width: 100%;
  text-align: center;
  -webkit-transform: translateX(1px) translateY(0);
  -ms-transform: translateX(1px) translateY(0);
  transform: translateX(1px) translateY(0);
}
.form__placeholder-textarea .form__label {
  top: 0;
  left: 0;
  background: white;
}
.form__placeholder-textarea--purple .form__label {
  background: #39345c;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input::-moz-input-placeholder,
select::-moz-input-placeholder,
textarea::-moz-input-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(113, 104, 183, 0.5);
}
.form__field--white input::-webkit-input-placeholder,
.form__field--white select::-webkit-input-placeholder,
.form__field--white textarea::-webkit-input-placeholder {
  color: white;
}
.form__field--white input::-moz-placeholder,
.form__field--white select::-moz-placeholder,
.form__field--white textarea::-moz-placeholder {
  color: white;
}
.form__field--white input:-ms-input-placeholder,
.form__field--white select:-ms-input-placeholder,
.form__field--white textarea:-ms-input-placeholder {
  color: white;
}
.form__field--white input::-ms-input-placeholder,
.form__field--white select::-ms-input-placeholder,
.form__field--white textarea::-ms-input-placeholder {
  color: white;
}
.form__field--white input::placeholder,
.form__field--white select::placeholder,
.form__field--white textarea::placeholder {
  color: white;
}
.form__field--white input::-webkit-input-placeholder,
.form__field--white select::-webkit-input-placeholder,
.form__field--white textarea::-webkit-input-placeholder {
  color: white;
}
.form__field--white input::-moz-input-placeholder,
.form__field--white select::-moz-input-placeholder,
.form__field--white textarea::-moz-input-placeholder {
  color: white;
}
.form__field--white input:-ms-input-placeholder,
.form__field--white select:-ms-input-placeholder,
.form__field--white textarea:-ms-input-placeholder {
  color: white;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-moz-input-placeholder,
textarea:focus::-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus:-moz-input-placeholder,
textarea:focus:-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}
.has-field-error .form__field-message {
  display: block;
}
.has-field-error.select2-container .select2-selection--single,
.has-field-error.select-classic .select2-container .select2-selection--multiple,
.has-field-error.form__textarea,
.has-field-error.form__input {
  border-color: #ea4335 !important;
}
.has-field-error + .select2-container .select2-selection--single,
.has-field-error
  + .select-classic
  .select2-container
  .select2-selection--multiple {
  border-color: #ea4335 !important;
}
.has-field-success.select2-container .select2-selection--single,
.has-field-success.select-classic
  .select2-container
  .select2-selection--multiple,
.has-field-success.form__textarea,
.has-field-success.form__input {
  border-color: #55a954 !important;
}
.has-field-success + .select2-container .select2-selection--single,
.has-field-success
  + .select-classic
  .select2-container
  .select2-selection--multiple {
  border-color: #55a954 !important;
}
.parsley-error.select2-container .select2-selection--single,
.parsley-error.select-classic .select2-container .select2-selection--multiple,
.parsley-error.form__textarea,
.parsley-error.form__input,
.has-error.select2-container .select2-selection--single,
.has-error.select-classic .select2-container .select2-selection--multiple,
.has-error.form__textarea,
.has-error.form__input {
  border-color: #ea4335 !important;
}
.parsley-error + .select2-container .select2-selection--single,
.parsley-error
  + .select-classic
  .select2-container
  .select2-selection--multiple,
.has-error + .select2-container .select2-selection--single,
.has-error + .select-classic .select2-container .select2-selection--multiple {
  border-color: #ea4335 !important;
}
.has-field-success.select2-container .select2-selection--single,
.has-field-success.select-classic
  .select2-container
  .select2-selection--multiple,
.has-field-success.form__textarea,
.has-field-success.form__input,
.parsley-success.select2-container .select2-selection--single,
.parsley-success.select-classic .select2-container .select2-selection--multiple,
.parsley-success.form__textarea,
.parsley-success.form__input {
  border-color: #55a954 !important;
}
.has-field-success + .select2-container .select2-selection--single,
.has-field-success
  + .select-classic
  .select2-container
  .select2-selection--multiple,
.parsley-success + .select2-container .select2-selection--single,
.parsley-success
  + .select-classic
  .select2-container
  .select2-selection--multiple {
  border-color: #55a954 !important;
}
.form__field-message {
  display: none;
  margin-top: 5px;
  color: #870000;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
.parsley-errors-list {
  color: #ea4335;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
.parsley-errors-list li {
  display: block;
  margin-top: 5px;
}
.checkbox {
  margin-bottom: 1rem;
}
.checkbox--white .checkbox__box {
  border-color: rgba(255, 255, 255, 0.2);
}
.checkbox--white .checkbox__text {
  color: #ffffff;
}
.checkbox--white
  .checkbox__input-hidden:checked
  + .checkbox__label
  .checkbox__box:after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}
.input-hidden,
.checkbox__input-hidden {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.checkbox__label {
  margin: 0;
  padding-left: 0;
  min-height: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  padding-top: 0;
  cursor: pointer;
  text-transform: none;
}
.checkbox__box {
  position: relative;
  max-width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(57, 52, 92, 0.2);
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}
.checkbox__text {
  max-width: calc(100% - 20px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  width: calc(100% - 20px);
  display: block;
  position: relative;
  cursor: pointer;
  text-align: left;
  color: #000000;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  padding-left: 0.75rem;
  line-height: 1.4;
}
.checkbox__slider {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  border-radius: 50% !important;
  background-color: #000000;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 5px;
  width: 7px;
  height: 13px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.checkbox--switcher {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 26px;
}
.checkbox--switcher .checkbox__label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #000000;
  border-radius: 35px;
  background-color: transparent;
}
.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label {
  border-color: #39345c;
}
.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label:after {
  display: none;
}
.checkbox--switcher
  .checkbox__input-hidden:checked
  + .checkbox__label
  .checkbox__slider {
  background-color: #39345c;
  left: calc(100% - 20px);
}
.checkbox--radiobox {
  margin-bottom: 2rem;
}
.checkbox--radiobox .checkbox__box {
  top: 0;
  max-width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #000000;
  border-radius: 100%;
}
.checkbox--radiobox
  .checkbox__input-hidden:checked
  + .checkbox__label
  .checkbox__box:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  margin-top: -5px;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background-color: #000000;
}
.quantity {
  position: relative;
}
.quantity__input {
  text-align: center;
  padding-left: 65px;
  padding-right: 65px;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-align: center;
}
.quantity__increment,
.quantity__decrement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.quantity__increment:after,
.quantity__increment:before,
.quantity__decrement:after,
.quantity__decrement:before {
  content: "" !important;
  width: 19px;
  height: 28px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.quantity__increment svg,
.quantity__decrement svg {
  fill: #000000;
}
.quantity__increment {
  right: 0;
}
.quantity__increment:before {
  background-image: url("fonts/chevron-right.svg");
}
.quantity__decrement {
  left: 0;
}
.quantity__decrement:after {
  background-image: url("fonts/chevron-left.svg");
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
  padding: 1.2em 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  outline: none !important;
  background: #000000;
  font-family: "Roboto Slab", Arial, sans-serif;
  text-align: center;
  -webkit-transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  border-radius: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  -webkit-appearance: none;
}
.btn span {
  position: relative;
  z-index: 3;
}
.btn,
.btn:visited,
.btn:active,
.btn:focus {
  color: white;
}
.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  z-index: 2;
  opacity: 0;
}
.btn:hover {
  -webkit-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}
@media (min-width: 992px) {
  .btn:hover {
    cursor: pointer;
    text-decoration: none;
    color: white;
  }
}
.btn:hover:after {
  opacity: 1;
}
.btn--responsive {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}
.btn--font-size-xsmall {
  font-size: 12px;
  font-size: 0.75rem;
}
.btn--font-size-small {
  font-size: 14px;
  font-size: 0.875rem;
}
.btn--font-size-16 {
  font-size: 16px;
  font-size: 1rem;
}
.btn--font-size-big {
  font-size: 18px;
  font-size: 1.125rem;
}
.btn--font-size-large {
  font-size: 20px;
  font-size: 1.25rem;
}
.btn--size-small {
  padding: 0.6em 1.2rem;
}
.btn--size-medium {
  padding: 1.2em 1.5rem;
}
.btn--size-big {
  padding: 2.2em 2rem;
}
.btn--min-width-xsmall {
  min-width: 120px;
}
.btn--min-width-small {
  min-width: 160px;
}
.btn--min-width-medium {
  min-width: 200px;
}
.btn--min-width-big {
  min-width: 300px;
}
.btn--absolute {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  height: 60px;
  width: 60px;
}
.btn--absolute:hover {
  background-color: #33c2bd;
}
.btn--absolute:hover svg {
  fill: #ffffff;
}
.btn--absolute svg {
  fill: #33c2bd;
  font-size: 22px;
  font-size: 1.375rem;
}
.btn-black-fill {
  color: #ffffff;
  border: 2px solid transparent;
  background-color: #000000;
}
.btn-black-fill,
.btn-black-fill:visited,
.btn-black-fill:active,
.btn-black-fill:focus {
  color: #ffffff;
}
.btn-black-fill:hover {
  color: #000000;
  background-color: #ffffff;
}
.btn-black-fill:hover .btn__icon {
  color: #000000;
}
.btn-black-fill .btn__icon {
  color: #ffffff;
}
.btn--green-fill {
  color: #ffffff;
  border: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7168b7),
    to(#33c2bd)
  );
  background-image: -o-linear-gradient(left, #7168b7 0%, #33c2bd 100%);
  background-image: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
.btn--green-fill:after {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#564ca0),
    to(#289a96)
  );
  background-image: -o-linear-gradient(left, #564ca0 0%, #289a96 100%);
  background-image: linear-gradient(90deg, #564ca0 0%, #289a96 100%);
}
.btn--green-fill,
.btn--green-fill:visited,
.btn--green-fill:active,
.btn--green-fill:focus {
  color: #ffffff;
}
.btn--green-fill:hover {
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.2);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.2);
  color: #ffffff;
}
.btn--green-outline {
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  background-color: transparent;
  color: #39345c;
}
.btn--green-outline:not(:hover) span {
  color: #39345c;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(15%, #7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 15%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 15%, #33c2bd 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
.btn--green-outline:after {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#564ca0),
    to(#289a96)
  );
  background-image: -o-linear-gradient(left, #564ca0 0%, #289a96 100%);
  background-image: linear-gradient(90deg, #564ca0 0%, #289a96 100%);
}
.btn--green-outline,
.btn--green-outline:visited,
.btn--green-outline:active,
.btn--green-outline:focus {
  color: #39345c;
}
.btn--green-outline:hover {
  color: #ffffff;
  background-color: #000000;
}
.btn--green-outline:hover span {
  color: #ffffff;
}
.bg-black {
  background-color: #000000;
}
.bg-purple {
  background-color: #39345c;
}
.bg-purple-01 {
  background-color: rgba(113, 104, 183, 0.1);
}
.bg-purple-dark {
  background-color: #2f2b50;
}
.bg-gray-light {
  background-color: #f7f7f7;
}
.bg-gradient-purple-light {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(31.08%, rgba(113, 104, 183, 0)),
    color-stop(95.31%, rgba(113, 104, 183, 0.1))
  );
  background: -o-linear-gradient(
    left,
    rgba(113, 104, 183, 0) 31.08%,
    rgba(113, 104, 183, 0.1) 95.31%
  );
  background: linear-gradient(
    90deg,
    rgba(113, 104, 183, 0) 31.08%,
    rgba(113, 104, 183, 0.1) 95.31%
  );
}
@media (min-width: 771px) {
  .bg-gradient-purple-light {
    background: -o-linear-gradient(
      346.67deg,
      rgba(113, 104, 183, 0) 31.08%,
      rgba(113, 104, 183, 0.1) 95.31%
    );
    background: linear-gradient(
      103.33deg,
      rgba(113, 104, 183, 0) 31.08%,
      rgba(113, 104, 183, 0.1) 95.31%
    );
  }
}
.bg-gradient-purple-light-inverse {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(31.08%, rgba(113, 104, 183, 0)),
    color-stop(95.31%, rgba(113, 104, 183, 0.1))
  );
  background: -o-linear-gradient(
    right,
    rgba(113, 104, 183, 0) 31.08%,
    rgba(113, 104, 183, 0.1) 95.31%
  );
  background: linear-gradient(
    -90deg,
    rgba(113, 104, 183, 0) 31.08%,
    rgba(113, 104, 183, 0.1) 95.31%
  );
}
@media (min-width: 771px) {
  .bg-gradient-purple-light-inverse {
    background: -o-linear-gradient(
      193.33deg,
      rgba(113, 104, 183, 0) 31.08%,
      rgba(113, 104, 183, 0.1) 95.31%
    );
    background: linear-gradient(
      -103.33deg,
      rgba(113, 104, 183, 0) 31.08%,
      rgba(113, 104, 183, 0.1) 95.31%
    );
  }
}
.txt-white {
  color: #ffffff;
}
.txt-black {
  color: #000000;
}
.h--white h1,
.h--white .alfa,
.h--white h2,
.h--white .beta,
.h--white h3,
.h--white .gamma,
.h--white h4,
.h--white .delta,
.h--white h5,
.h--white .epsilon,
.h--white h6,
.h--white .zeta {
  color: #ffffff;
}
.h--purple h1,
.h--purple .alfa,
.h--purple h2,
.h--purple .beta,
.h--purple h3,
.h--purple .gamma,
.h--purple h4,
.h--purple .delta,
.h--purple h5,
.h--purple .epsilon,
.h--purple h6,
.h--purple .zeta {
  color: #39345c;
}
.h--purple-light h1,
.h--purple-light .alfa,
.h--purple-light h2,
.h--purple-light .beta,
.h--purple-light h3,
.h--purple-light .gamma,
.h--purple-light h4,
.h--purple-light .delta,
.h--purple-light h5,
.h--purple-light .epsilon,
.h--purple-light h6,
.h--purple-light .zeta {
  color: #7168b7;
}
.h--gradient h1,
.h--gradient .alfa,
.h--gradient h2,
.h--gradient .beta,
.h--gradient h3,
.h--gradient .gamma,
.h--gradient h4,
.h--gradient .delta,
.h--gradient h5,
.h--gradient .epsilon,
.h--gradient h6,
.h--gradient .zeta {
  display: inline-block;
  color: #39345c;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(15%, #7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 15%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 15%, #33c2bd 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
.p--white-05 p {
  color: rgba(255, 255, 255, 0.5);
}
.p--white p {
  color: #ffffff;
}
.p--black p {
  color: #000000;
}
.p--purple p {
  color: #39345c;
}
.p--purple-05 p {
  color: rgba(57, 52, 92, 0.5);
}
ul.list-style.ul--white li,
.ul--white li {
  color: #ffffff;
}
ul.list-style.ul--white li:before,
.ul--white li:before {
  background-color: #ffffff;
}
ol.list-style.ol-white li,
.ol-white li {
  color: #ffffff;
}
ol.list-style.ol-white li:before,
.ol-white li:before {
  color: #ffffff;
}
.no-gutter {
  margin: 0;
}
.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.gutter-4.row {
  margin-right: -2px;
  margin-left: -2px;
}
.gutter-4 > [class*="col-"],
.gutter-4 > [class*=" col-"] {
  padding-right: 2px;
  padding-left: 2px;
}
.gutter-6.row {
  margin-right: -3px;
  margin-left: -3px;
}
.gutter-6 > [class*="col-"],
.gutter-6 > [class*=" col-"] {
  padding-right: 3px;
  padding-left: 3px;
}
.gutter-10.row {
  margin-right: -5px;
  margin-left: -5px;
}
.gutter-10 > [class*="col-"],
.gutter-10 > [class*=" col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.gutter-20.row {
  margin-right: -10px;
  margin-left: -10px;
}
.gutter-20 > [class*="col-"],
.gutter-20 > [class*=" col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.gutter-30.row {
  margin-right: -15px;
  margin-left: -15px;
}
.gutter-30 > [class*="col-"],
.gutter-30 > [class*=" col-"] {
  padding-right: 15px;
  padding-left: 15px;
}
.gutter-40.row {
  margin-right: -20px;
  margin-left: -20px;
}
.gutter-40 > [class*="col-"],
.gutter-40 > [class*=" col-"] {
  padding-right: 20px;
  padding-left: 20px;
}
.gutter-50.row {
  margin-right: -25px;
  margin-left: -25px;
}
.gutter-50 > [class*="col-"],
.gutter-50 > [class*=" col-"] {
  padding-right: 25px;
  padding-left: 25px;
}
.gutter-60.row {
  margin-right: -30px;
  margin-left: -30px;
}
.gutter-60 > [class*="col-"],
.gutter-60 > [class*=" col-"] {
  padding-right: 30px;
  padding-left: 30px;
}
.gutter-sm-80.row {
  margin-right: -40px;
  margin-left: -40px;
}
.gutter-sm-80 > [class*="col-"],
.gutter-sm-80 > [class*=" col-"] {
  padding-right: 40px;
  padding-left: 40px;
}
.gutter-sm-100.row {
  margin-right: -50px;
  margin-left: -50px;
}
.gutter-sm-100 > [class*="col-"],
.gutter-sm-100 > [class*=" col-"] {
  padding-right: 50px;
  padding-left: 50px;
}
@media (min-width: 576px) {
  .gutter-xs-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-xs-10 > [class*="col-"],
  .gutter-xs-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-xs-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-xs-20 > [class*="col-"],
  .gutter-xs-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-xs-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xs-30 > [class*="col-"],
  .gutter-xs-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xs-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-xs-40 > [class*="col-"],
  .gutter-xs-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-xs-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-xs-50 > [class*="col-"],
  .gutter-xs-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-xs-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xs-60 > [class*="col-"],
  .gutter-xs-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xs-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-xs-100 > [class*="col-"],
  .gutter-xs-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 771px) {
  .gutter-sm-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-sm-10 > [class*="col-"],
  .gutter-sm-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-sm-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-sm-20 > [class*="col-"],
  .gutter-sm-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-sm-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-sm-30 > [class*="col-"],
  .gutter-sm-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-sm-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-sm-40 > [class*="col-"],
  .gutter-sm-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-sm-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-sm-50 > [class*="col-"],
  .gutter-sm-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-sm-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-sm-60 > [class*="col-"],
  .gutter-sm-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-sm-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-sm-100 > [class*="col-"],
  .gutter-sm-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 992px) {
  .no-md-gutter {
    margin: 0;
  }
  .no-md-gutter > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .gutter-md-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-md-10 > [class*="col-"],
  .gutter-md-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-md-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-md-20 > [class*="col-"],
  .gutter-md-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-md-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-md-30 > [class*="col-"],
  .gutter-md-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-md-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-md-40 > [class*="col-"],
  .gutter-md-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-md-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-md-50 > [class*="col-"],
  .gutter-md-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-md-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-md-60 > [class*="col-"],
  .gutter-md-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-md-80.row {
    margin-right: -40px;
    margin-left: -40px;
  }
  .gutter-md-80 > [class*="col-"],
  .gutter-md-80 > [class*=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .gutter-md-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-md-100 > [class*="col-"],
  .gutter-md-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .gutter-lg-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-lg-10 > [class*="col-"],
  .gutter-lg-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-lg-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-lg-20 > [class*="col-"],
  .gutter-lg-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-lg-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-lg-30 > [class*="col-"],
  .gutter-lg-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-lg-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-lg-40 > [class*="col-"],
  .gutter-lg-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-lg-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-lg-50 > [class*="col-"],
  .gutter-lg-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-lg-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-lg-60 > [class*="col-"],
  .gutter-lg-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-lg-80.row {
    margin-right: -40px;
    margin-left: -40px;
  }
  .gutter-lg-80 > [class*="col-"],
  .gutter-lg-80 > [class*=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .gutter-lg-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-lg-100 > [class*="col-"],
  .gutter-lg-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 1440px) {
  .gutter-xl-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xl-30 > [class*="col-"],
  .gutter-xl-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xl-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-xl-40 > [class*="col-"],
  .gutter-xl-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-xl-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xl-60 > [class*="col-"],
  .gutter-xl-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xl-80.row {
    margin-right: -40px;
    margin-left: -40px;
  }
  .gutter-xl-80 > [class*="col-"],
  .gutter-xl-80 > [class*=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .gutter-xl-120.row {
    margin-right: -60px;
    margin-left: -60px;
  }
  .gutter-xl-120 > [class*="col-"],
  .gutter-xl-120 > [class*=" col-"] {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (min-width: 1600px) {
  .gutter-xxl-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xxl-30 > [class*="col-"],
  .gutter-xxl-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xxl-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xxl-60 > [class*="col-"],
  .gutter-xxl-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xxl-120.row {
    margin-right: -60px;
    margin-left: -60px;
  }
  .gutter-xxl-120 > [class*="col-"],
  .gutter-xxl-120 > [class*=" col-"] {
    padding-right: 60px;
    padding-left: 60px;
  }
  .gutter-xxl-180.row {
    margin-right: -90px;
    margin-left: -90px;
  }
  .gutter-xxl-180 > [class*="col-"],
  .gutter-xxl-180 > [class*=" col-"] {
    padding-right: 90px;
    padding-left: 90px;
  }
}
@media (min-width: 1800px) {
  .gutter-xxxl-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xxxl-30 > [class*="col-"],
  .gutter-xxxl-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xxxl-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xxxl-60 > [class*="col-"],
  .gutter-xxxl-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.hidden-content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
.hidden-content.is-active {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
@media (max-width: 575px) {
  .hidden-xs-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-xs-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}
@media (max-width: 770px) {
  .hidden-sm-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-sm-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}
@media (max-width: 991px) {
  .hidden-md-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-md-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-lg-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-visible {
  overflow: visible;
}
.hr-line {
  height: 1px;
  background-color: #f7f7f7;
}
.hr-line-1 {
  margin: 1rem 0;
}
.hr-line-1-3 {
  margin: 1rem 3rem;
}
.hr-line-2 {
  margin: 2rem 0;
}
.hr-line-3 {
  margin: 3rem 0;
}
.hr-line--width-100 {
  width: 100px;
}
.hr-line--width-200 {
  width: 200px;
}
.hr-line--width-300 {
  width: 300px;
}
.hr-line--center {
  margin: 0 auto;
}
.hr-line--black {
  background-color: #000000;
}
.hr-line--gray {
  background-color: #f7f7f7;
}
.hr-line--purple-light {
  background-color: #7168b7;
}
.hr-line--purple-light-02 {
  background-color: rgba(113, 104, 183, 0.2);
}
.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  -webkit-transition: fill 0.15s;
  -o-transition: fill 0.15s;
  transition: fill 0.15s;
}
.icon--size-10 svg {
  font-size: 10px;
  font-size: 0.625rem;
}
.icon--size-12 svg {
  font-size: 12px;
  font-size: 0.75rem;
}
.icon--size-14 svg {
  font-size: 14px;
  font-size: 0.875rem;
}
.icon--size-16 svg {
  font-size: 16px;
  font-size: 1rem;
}
.icon--size-18 svg {
  font-size: 18px;
  font-size: 1.125rem;
}
.icon--size-20 svg {
  font-size: 20px;
  font-size: 1.25rem;
}
.icon--size-22 svg {
  font-size: 22px;
  font-size: 1.375rem;
}
.icon--size-24 svg {
  font-size: 24px;
  font-size: 1.5rem;
}
.icon--size-26 svg {
  font-size: 26px;
  font-size: 1.625rem;
}
.icon--size-28 svg {
  font-size: 28px;
  font-size: 1.75rem;
}
.icon--size-30 svg {
  font-size: 30px;
  font-size: 1.875rem;
}
.icon--size-36 svg {
  font-size: 36px;
  font-size: 2.25rem;
}
.icon--size-60 svg {
  font-size: 60px;
  font-size: 3.75rem;
}
.icon--size-70 svg {
  font-size: 70px;
  font-size: 4.375rem;
}
.icon---white svg {
  fill: #ffffff;
}
.icon---black svg {
  fill: #000000;
}
.icon---purple svg {
  fill: #39345c;
}
.icon---purple-light svg {
  fill: #7168b7;
}
.img {
  display: block;
}
.img--full {
  width: 100%;
}
.img--responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img--cover {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.img--contain {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bg-image-hover,
.img-hover {
  display: block;
  overflow: hidden;
}
.bg-image-hover:focus > img,
.bg-image-hover:hover > img,
.img-hover:focus > img,
.img-hover:hover > img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.bg-image-hover img,
.img-hover img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  will-change: transform;
}
.img-flex-contain,
.img-flex-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.img-flex-contain img,
.img-flex-cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.img-flex-cover img {
  -o-object-fit: cover;
  object-fit: cover;
}
.img-flex-contain img {
  -o-object-fit: contain;
  object-fit: contain;
}
.bg-image,
.bg-rectangle {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 770px) {
  .img--sm-offset {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
@media (max-width: 770px) {
  .img--sm-offset-ext {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.img--shadow {
  -webkit-filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
  filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
}
@media (min-width: 577px) and (max-width: 771px) {
  .img--sm-360 {
    height: 400px;
  }
}
@media (min-width: 771px) {
  .ebook-block {
    height: 200px;
  }
}
[class*="aspect-ratio-"] {
  display: block;
  position: relative;
}
[class*="aspect-ratio-"] > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.aspect-ratio-16-9 {
  padding-top: 56.25%;
}
.aspect-ratio-3-2 {
  padding-top: 66.66%;
}
.aspect-ratio-4-3 {
  padding-top: 75%;
}
.aspect-ratio-8-5 {
  padding-top: 62.5%;
}
.aspect-ratio-1-1 {
  padding-top: 100%;
}
.margin-0 {
  margin: 0 !important;
}
@media (min-width: 576px) {
  .margin-xs-0 {
    margin: 0 !important;
  }
}
@media (min-width: 771px) {
  .margin-sm-0 {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .margin-md-0 {
    margin: 0 !important;
  }
}
@media (min-width: 1200px) {
  .margin-lg-0 {
    margin: 0 !important;
  }
}
@media (min-width: 1440px) {
  .margin-xl-0 {
    margin: 0 !important;
  }
}
.margin-bottom-01 {
  margin-bottom: 0.1rem;
}
.margin-bottom-02 {
  margin-bottom: 0.2rem;
}
.margin-bottom-03 {
  margin-bottom: 0.3rem;
}
.margin-bottom-04 {
  margin-bottom: 0.4rem;
}
.margin-bottom-05 {
  margin-bottom: 0.5rem;
}
.margin-bottom-06 {
  margin-bottom: 0.6rem;
}
.margin-bottom-07 {
  margin-bottom: 0.7rem;
}
.margin-bottom-08 {
  margin-bottom: 0.8rem;
}
.margin-bottom-09 {
  margin-bottom: 0.9rem;
}
.margin-bottom-1 {
  margin-bottom: 1rem;
}
.margin-bottom-1-2 {
  margin-bottom: 1.2rem;
}
.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
}
.margin-bottom-2 {
  margin-bottom: 2rem;
}
.margin-bottom-2-5 {
  margin-bottom: 2.5rem;
}
.margin-bottom-3 {
  margin-bottom: 3rem;
}
.margin-bottom-3-5 {
  margin-bottom: 3.5rem;
}
.margin-bottom-4 {
  margin-bottom: 4rem;
}
.margin-bottom-5 {
  margin-bottom: 5rem;
}
.margin-bottom-6 {
  margin-bottom: 6rem;
}
.margin-bottom-7 {
  margin-bottom: 7rem;
}
.margin-bottom-8 {
  margin-bottom: 8rem;
}
.margin-bottom-9 {
  margin-bottom: 9rem;
}
.margin-bottom-10 {
  margin-bottom: 10rem;
}
.margin-bottom-12 {
  margin-bottom: 12rem;
}
@media (min-width: 576px) {
  .margin-bottom-xs-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xs-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xs-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xs-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xs-6 {
    margin-bottom: 6rem;
  }
}
@media (min-width: 771px) {
  .margin-bottom-sm-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-sm-1-5 {
    margin-bottom: 1.5rem;
  }
  .margin-bottom-sm-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-sm-2-5 {
    margin-bottom: 2.5rem;
  }
  .margin-bottom-sm-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-sm-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-sm-6 {
    margin-bottom: 6rem;
  }
  .margin-bottom-sm-14 {
    margin-bottom: 14rem;
  }
}
@media (min-width: 992px) {
  .margin-bottom-md-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-md-1-2 {
    margin-bottom: 1.2rem;
  }
  .margin-bottom-md-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-md-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-md-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-md-6 {
    margin-bottom: 6rem;
  }
  .margin-bottom-md-14 {
    margin-bottom: 14rem;
  }
}
@media (min-width: 1200px) {
  .margin-bottom-lg-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-lg-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-lg-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-lg-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-lg-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-lg-6 {
    margin-bottom: 6rem;
  }
}
@media (min-width: 1440px) {
  .margin-bottom-xl-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xl-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xl-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xl-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xl-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xl-6 {
    margin-bottom: 6rem;
  }
}
.margin-top-01 {
  margin-top: 0.1rem;
}
.margin-top-02 {
  margin-top: 0.2rem;
}
.margin-top-03 {
  margin-top: 0.3rem;
}
.margin-top-04 {
  margin-top: 0.4rem;
}
.margin-top-05 {
  margin-top: 0.5rem;
}
.margin-top-06 {
  margin-top: 0.6rem;
}
.margin-top-07 {
  margin-top: 0.7rem;
}
.margin-top-08 {
  margin-top: 0.8rem;
}
.margin-top-09 {
  margin-top: 0.9rem;
}
.margin-top-1 {
  margin-top: 1rem;
}
.margin-top-1-5 {
  margin-top: 1.5rem;
}
.margin-top-2 {
  margin-top: 2rem;
}
.margin-top-2-5 {
  margin-top: 2.5rem;
}
.margin-top-3 {
  margin-top: 3rem;
}
.margin-top-3-5 {
  margin-top: 3.5rem;
}
.margin-top-4 {
  margin-top: 4rem;
}
.margin-top-5 {
  margin-top: 5rem;
}
.margin-top-6 {
  margin-top: 6rem;
}
.margin-top-7 {
  margin-top: 7rem;
}
.margin-top-8 {
  margin-top: 8rem;
}
.margin-top-9 {
  margin-top: 9rem;
}
.margin-top-10 {
  margin-top: 10rem;
}
@media (min-width: 576px) {
  .margin-top-xs-1 {
    margin-top: 1rem;
  }
  .margin-top-xs-2 {
    margin-top: 2rem;
  }
  .margin-top-xs-3 {
    margin-top: 3rem;
  }
  .margin-top-xs-4 {
    margin-top: 4rem;
  }
  .margin-top-xs-5 {
    margin-top: 5rem;
  }
  .margin-top-xs-6 {
    margin-top: 6rem;
  }
}
@media (min-width: 771px) {
  .margin-top-sm-1 {
    margin-top: 1rem;
  }
  .margin-top-sm-2 {
    margin-top: 2rem;
  }
  .margin-top-sm-2-5 {
    margin-top: 2.5rem;
  }
  .margin-top-sm-3 {
    margin-top: 3rem;
  }
  .margin-top-sm-4 {
    margin-top: 4rem;
  }
  .margin-top-sm-5 {
    margin-top: 5rem;
  }
  .margin-top-sm-6 {
    margin-top: 6rem;
  }
}
@media (min-width: 992px) {
  .margin-top-md-1 {
    margin-top: 1rem;
  }
  .margin-top-md-2 {
    margin-top: 2rem;
  }
  .margin-top-md-3 {
    margin-top: 3rem;
  }
  .margin-top-md-4 {
    margin-top: 4rem;
  }
  .margin-top-md-5 {
    margin-top: 5rem;
  }
  .margin-top-md-6 {
    margin-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .margin-top-lg-1 {
    margin-top: 1rem;
  }
  .margin-top-lg-2 {
    margin-top: 2rem;
  }
  .margin-top-lg-3 {
    margin-top: 3rem;
  }
  .margin-top-lg-4 {
    margin-top: 4rem;
  }
  .margin-top-lg-5 {
    margin-top: 5rem;
  }
  .margin-top-lg-6 {
    margin-top: 6rem;
  }
}
@media (min-width: 1440px) {
  .margin-top-xl-1 {
    margin-top: 1rem;
  }
  .margin-top-xl-2 {
    margin-top: 2rem;
  }
  .margin-top-xl-3 {
    margin-top: 3rem;
  }
  .margin-top-xl-4 {
    margin-top: 4rem;
  }
  .margin-top-xl-5 {
    margin-top: 5rem;
  }
  .margin-top-xl-6 {
    margin-top: 6rem;
  }
}
.margin-left-01 {
  margin-left: 0.1rem;
}
.margin-left-02 {
  margin-left: 0.2rem;
}
.margin-left-03 {
  margin-left: 0.3rem;
}
.margin-left-04 {
  margin-left: 0.4rem;
}
.margin-left-05 {
  margin-left: 0.5rem;
}
.margin-left-08 {
  margin-left: 0.8rem;
}
.margin-left-1 {
  margin-left: 1rem;
}
.margin-left-1-5 {
  margin-left: 1.5rem;
}
.margin-left-2 {
  margin-left: 2rem;
}
.margin-left-3 {
  margin-left: 3rem;
}
.margin-left-4 {
  margin-left: 4rem;
}
.margin-left-5 {
  margin-left: 5rem;
}
.margin-left-6 {
  margin-left: 6rem;
}
.margin-left-7 {
  margin-left: 7rem;
}
.margin-left-8 {
  margin-left: 8rem;
}
.margin-left-9 {
  margin-left: 9rem;
}
.margin-left-10 {
  margin-left: 10rem;
}
@media (min-width: 576px) {
  .margin-left-xs-1 {
    margin-left: 1rem;
  }
  .margin-left-xs-2 {
    margin-left: 2rem;
  }
  .margin-left-xs-3 {
    margin-left: 3rem;
  }
  .margin-left-xs-4 {
    margin-left: 4rem;
  }
  .margin-left-xs-5 {
    margin-left: 5rem;
  }
  .margin-left-xs-6 {
    margin-left: 6rem;
  }
}
@media (min-width: 771px) {
  .margin-left-sm-1 {
    margin-left: 1rem;
  }
  .margin-left-sm-2 {
    margin-left: 2rem;
  }
  .margin-left-sm-3 {
    margin-left: 3rem;
  }
  .margin-left-sm-4 {
    margin-left: 4rem;
  }
  .margin-left-sm-5 {
    margin-left: 5rem;
  }
  .margin-left-sm-6 {
    margin-left: 6rem;
  }
}
@media (min-width: 992px) {
  .margin-left-md-1 {
    margin-left: 1rem;
  }
  .margin-left-md-2 {
    margin-left: 2rem;
  }
  .margin-left-md-3 {
    margin-left: 3rem;
  }
  .margin-left-md-4 {
    margin-left: 4rem;
  }
  .margin-left-md-5 {
    margin-left: 5rem;
  }
  .margin-left-md-6 {
    margin-left: 6rem;
  }
}
@media (min-width: 1200px) {
  .margin-left-lg-1 {
    margin-left: 1rem;
  }
  .margin-left-lg-2 {
    margin-left: 2rem;
  }
  .margin-left-lg-3 {
    margin-left: 3rem;
  }
  .margin-left-lg-4 {
    margin-left: 4rem;
  }
  .margin-left-lg-5 {
    margin-left: 5rem;
  }
  .margin-left-lg-6 {
    margin-left: 6rem;
  }
}
@media (min-width: 1440px) {
  .margin-left-xl-1 {
    margin-left: 1rem;
  }
  .margin-left-xl-2 {
    margin-left: 2rem;
  }
  .margin-left-xl-3 {
    margin-left: 3rem;
  }
  .margin-left-xl-4 {
    margin-left: 4rem;
  }
  .margin-left-xl-5 {
    margin-left: 5rem;
  }
  .margin-left-xl-6 {
    margin-left: 6rem;
  }
}
.margin-right-01 {
  margin-right: 0.1rem;
}
.margin-right-02 {
  margin-right: 0.2rem;
}
.margin-right-03 {
  margin-right: 0.3rem;
}
.margin-right-04 {
  margin-right: 0.4rem;
}
.margin-right-05 {
  margin-right: 0.5rem;
}
.margin-right-08 {
  margin-right: 0.8rem;
}
.margin-right-1 {
  margin-right: 1rem;
}
.margin-right-1-5 {
  margin-right: 1.5rem;
}
.margin-right-2 {
  margin-right: 2rem;
}
.margin-right-3 {
  margin-right: 3rem;
}
.margin-right-4 {
  margin-right: 4rem;
}
.margin-right-5 {
  margin-right: 5rem;
}
.margin-right-6 {
  margin-right: 6rem;
}
.margin-right-7 {
  margin-right: 7rem;
}
.margin-right-8 {
  margin-right: 8rem;
}
.margin-right-9 {
  margin-right: 9rem;
}
.margin-right-10 {
  margin-right: 10rem;
}
@media (min-width: 576px) {
  .margin-right-xs-1 {
    margin-right: 1rem;
  }
  .margin-right-xs-2 {
    margin-right: 2rem;
  }
  .margin-right-xs-3 {
    margin-right: 3rem;
  }
  .margin-right-xs-4 {
    margin-right: 4rem;
  }
  .margin-right-xs-5 {
    margin-right: 5rem;
  }
  .margin-right-xs-6 {
    margin-right: 6rem;
  }
}
@media (min-width: 771px) {
  .margin-right-sm-1 {
    margin-right: 1rem;
  }
  .margin-right-sm-1-5 {
    margin-right: 1.5rem;
  }
  .margin-right-sm-2 {
    margin-right: 2rem;
  }
  .margin-right-sm-3 {
    margin-right: 3rem;
  }
  .margin-right-sm-4 {
    margin-right: 4rem;
  }
  .margin-right-sm-5 {
    margin-right: 5rem;
  }
  .margin-right-sm-6 {
    margin-right: 6rem;
  }
}
@media (min-width: 992px) {
  .margin-right-md-1 {
    margin-right: 1rem;
  }
  .margin-right-md-1-5 {
    margin-right: 1.5rem;
  }
  .margin-right-md-2 {
    margin-right: 2rem;
  }
  .margin-right-md-3 {
    margin-right: 3rem;
  }
  .margin-right-md-4 {
    margin-right: 4rem;
  }
  .margin-right-md-5 {
    margin-right: 5rem;
  }
  .margin-right-md-6 {
    margin-right: 6rem;
  }
}
@media (min-width: 1200px) {
  .margin-right-lg-1 {
    margin-right: 1rem;
  }
  .margin-right-lg-2 {
    margin-right: 2rem;
  }
  .margin-right-lg-3 {
    margin-right: 3rem;
  }
  .margin-right-lg-4 {
    margin-right: 4rem;
  }
  .margin-right-lg-5 {
    margin-right: 5rem;
  }
  .margin-right-lg-6 {
    margin-right: 6rem;
  }
}
@media (min-width: 1440px) {
  .margin-right-xl-1 {
    margin-right: 1rem;
  }
  .margin-right-xl-2 {
    margin-right: 2rem;
  }
  .margin-right-xl-3 {
    margin-right: 3rem;
  }
  .margin-right-xl-4 {
    margin-right: 4rem;
  }
  .margin-right-xl-5 {
    margin-right: 5rem;
  }
  .margin-right-xl-6 {
    margin-right: 6rem;
  }
}
.margin-center {
  margin: 0 auto;
}
.margin-left-auto {
  margin-left: auto;
}
.margin-right-auto {
  margin-right: auto;
}
@media (min-width: 576px) {
  .margin-xs-center {
    margin: 0 auto;
  }
  .margin-xs-left-auto {
    margin-left: auto;
  }
  .margin-xs-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 771px) {
  .margin-sm-center {
    margin: 0 auto;
  }
  .margin-sm-left-auto {
    margin-left: auto;
  }
  .margin-sm-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .margin-md-center {
    margin: 0 auto;
  }
  .margin-md-left-auto {
    margin-left: auto;
  }
  .margin-md-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .margin-lg-center {
    margin: 0 auto;
  }
  .margin-lg-left-auto {
    margin-left: auto;
  }
  .margin-lg-right-auto {
    margin-right: auto;
  }
}
.margin-top-0 {
  margin-top: 0 !important;
}
@media (min-width: 576px) {
  .margin-top-xs-0 {
    margin-top: 0 !important;
  }
}
@media (min-width: 771px) {
  .margin-top-sm-0 {
    margin-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .margin-top-md-0 {
    margin-top: 0 !important;
  }
}
@media (min-width: 1200px) {
  .margin-top-lg-0 {
    margin-top: 0 !important;
  }
}
@media (max-width: 1199px) {
  .margin-bp-top-lg-0 {
    margin-top: 0 !important;
  }
}
@media (max-width: 991px) {
  .margin-bp-top-md-0 {
    margin-top: 0 !important;
  }
}
@media (max-width: 770px) {
  .margin-bp-top-sm-0 {
    margin-top: 0 !important;
  }
}
@media (max-width: 575px) {
  .margin-bp-top-xs-0 {
    margin-top: 0 !important;
  }
}
.margin-right-0 {
  margin-right: 0 !important;
}
@media (min-width: 576px) {
  .margin-right-xs-0 {
    margin-right: 0 !important;
  }
}
@media (min-width: 771px) {
  .margin-right-sm-0 {
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .margin-right-md-0 {
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .margin-right-lg-0 {
    margin-right: 0 !important;
  }
}
@media (max-width: 1199px) {
  .margin-bp-right-lg-0 {
    margin-right: 0 !important;
  }
}
@media (max-width: 991px) {
  .margin-bp-right-md-0 {
    margin-right: 0 !important;
  }
}
@media (max-width: 770px) {
  .margin-bp-right-sm-0 {
    margin-right: 0 !important;
  }
}
@media (max-width: 575px) {
  .margin-bp-right-xs-0 {
    margin-right: 0 !important;
  }
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
@media (min-width: 576px) {
  .margin-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 771px) {
  .margin-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .margin-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  .margin-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 1199px) {
  .margin-bp-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 991px) {
  .margin-bp-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 770px) {
  .margin-bp-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 575px) {
  .margin-bp-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}
.margin-left-0 {
  margin-left: 0 !important;
}
@media (min-width: 576px) {
  .margin-left-xs-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 771px) {
  .margin-left-sm-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .margin-left-md-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 1200px) {
  .margin-left-lg-0 {
    margin-left: 0 !important;
  }
}
@media (max-width: 1199px) {
  .margin-bp-left-lg-0 {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .margin-bp-left-md-0 {
    margin-left: 0 !important;
  }
}
@media (max-width: 770px) {
  .margin-bp-left-sm-0 {
    margin-left: 0 !important;
  }
}
@media (max-width: 575px) {
  .margin-bp-left-xs-0 {
    margin-left: 0 !important;
  }
}
.padding-0 {
  padding: 0 !important;
}
@media (min-width: 576px) {
  .padding-xs-0 {
    padding: 0 !important;
  }
}
@media (min-width: 771px) {
  .padding-sm-0 {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .padding-md-0 {
    padding: 0 !important;
  }
}
@media (min-width: 1200px) {
  .padding-lg-0 {
    padding: 0 !important;
  }
}
@media (min-width: 1440px) {
  .padding-xl-0 {
    padding: 0 !important;
  }
}
.padding-top-0 {
  padding-top: 0 !important;
}
.padding-top-xs-0 {
  padding-top: 0 !important;
}
@media (min-width: 771px) {
  .padding-top-sm-0 {
    padding-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .padding-top-md-0 {
    padding-top: 0 !important;
  }
}
@media (min-width: 1200px) {
  .padding-top-lg-0 {
    padding-top: 0 !important;
  }
}
@media (max-width: 1199px) {
  .padding-bp-top-lg-0 {
    padding-top: 0 !important;
  }
}
@media (max-width: 991px) {
  .padding-bp-top-md-0 {
    padding-top: 0 !important;
  }
}
@media (max-width: 770px) {
  .padding-bp-top-sm-0 {
    padding-top: 0 !important;
  }
}
@media (max-width: 575px) {
  .padding-bp-top-xs-0 {
    padding-top: 0 !important;
  }
}
.padding-right-0 {
  padding-right: 0 !important;
}
.padding-right-xs-0 {
  padding-right: 0 !important;
}
@media (min-width: 771px) {
  .padding-right-sm-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .padding-right-md-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .padding-right-lg-0 {
    padding-right: 0 !important;
  }
}
@media (max-width: 1199px) {
  .padding-bp-right-lg-0 {
    padding-right: 0 !important;
  }
}
@media (max-width: 991px) {
  .padding-bp-right-md-0 {
    padding-right: 0 !important;
  }
}
@media (max-width: 770px) {
  .padding-bp-right-sm-0 {
    padding-right: 0 !important;
  }
}
@media (max-width: 575px) {
  .padding-bp-right-xs-0 {
    padding-right: 0 !important;
  }
}
.padding-bottom-0 {
  padding-bottom: 0 !important;
}
.padding-bottom-xs-0 {
  padding-bottom: 0 !important;
}
@media (min-width: 771px) {
  .padding-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .padding-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  .padding-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1199px) {
  .padding-bp-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 991px) {
  .padding-bp-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 770px) {
  .padding-bp-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 575px) {
  .padding-bp-bottom-xs-0 {
    padding-bottom: 0 !important;
  }
}
.padding-left-0 {
  padding-left: 0 !important;
}
.padding-left-xs-0 {
  padding-left: 0 !important;
}
@media (min-width: 771px) {
  .padding-left-sm-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .padding-left-md-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 1200px) {
  .padding-left-lg-0 {
    padding-left: 0 !important;
  }
}
@media (max-width: 1199px) {
  .padding-bp-left-lg-0 {
    padding-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .padding-bp-left-md-0 {
    padding-left: 0 !important;
  }
}
@media (max-width: 770px) {
  .padding-bp-left-sm-0 {
    padding-left: 0 !important;
  }
}
@media (max-width: 575px) {
  .padding-bp-left-xs-0 {
    padding-left: 0 !important;
  }
}
.pos-r {
  position: relative;
}
.pos-f {
  position: fixed;
}
.pos-s {
  position: static;
}
.pos-sticky {
  position: -webkit-sticky;
  position: sticky;
}
.pos-a {
  position: absolute;
}
.pos-auto {
  position: inherit;
}
.w-100 {
  width: 100%;
}
@media (min-width: 771px) {
  .w-50px {
    width: 50px;
  }
}
.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}
.h-vh-100 {
  height: 100vh;
}
.h-100 {
  height: 100%;
}
.h-50 {
  height: 50%;
}
.h-25 {
  height: 25%;
}
.txt-r {
  text-align: right;
}
.txt-c {
  text-align: center;
}
.txt-l {
  text-align: left;
}
@media (min-width: 576px) {
  .txt-xs-c {
    text-align: center;
  }
  .txt-xs-l {
    text-align: left;
  }
  .txt-xs-r {
    text-align: right;
  }
}
@media (min-width: 771px) {
  .txt-sm-l {
    text-align: left;
  }
  .txt-sm-r {
    text-align: right;
  }
  .txt-sm-c {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .txt-md-l {
    text-align: left;
  }
  .txt-md-r {
    text-align: right;
  }
  .txt-md-c {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .txt-lg-r {
    text-align: right;
  }
  .txt-lg-l {
    text-align: left;
  }
  .txt-lg-c {
    text-align: center;
  }
}
.txt-upper {
  text-transform: uppercase;
}
.txt-lower {
  text-transform: lowercase;
}
.txt-italic {
  font-style: italic;
}
.txt-300 {
  font-weight: 300;
}
.txt-400 {
  font-weight: 400;
}
.txt-700 {
  font-weight: 700;
}
.txt-line {
  text-decoration: line-through;
}
.txt-underline {
  text-decoration: underline;
}
.z-index--1 {
  z-index: -1;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-6 {
  z-index: 6;
}
.z-index-7 {
  z-index: 7;
}
.z-index-8 {
  z-index: 8;
}
.z-index-9 {
  z-index: 9;
}
.z-index-10 {
  z-index: 10;
}
.z-index-100 {
  z-index: 100;
}
.z-index-1000 {
  z-index: 1000;
}
.z-index-10000 {
  z-index: 10000;
}
.z-index-100000 {
  z-index: 100000;
}
.opacity-0 {
  opacity: 0;
}
.opacity-01 {
  opacity: 0.1;
}
.opacity-02 {
  opacity: 0.2;
}
.opacity-03 {
  opacity: 0.3;
}
.opacity-04 {
  opacity: 0.4;
}
.opacity-05 {
  opacity: 0.5;
}
.opacity-06 {
  opacity: 0.6;
}
.opacity-07 {
  opacity: 0.7;
}
.opacity-08 {
  opacity: 0.8;
}
.opacity-09 {
  opacity: 0.9;
}
.opacity-1 {
  opacity: 1;
}
.clip-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.clip-text--2 {
  -webkit-line-clamp: 2;
}
.clip-text--3 {
  -webkit-line-clamp: 3;
}
.clip-text--4 {
  -webkit-line-clamp: 4;
}
.dots {
  overflow: hidden;
}
.no-object-fit .img-flex-cover img {
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}
.no-object-fit .img-flex-contain {
  display: block;
  height: auto;
}
.no-object-fit .img-flex-contain img {
  height: 100%;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  -webkit-transition: color 0.15s, opacity 0.15s;
  -o-transition: color 0.15s, opacity 0.15s;
  transition: color 0.15s, opacity 0.15s;
}
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 0;
  background: #f7f7f7;
}
::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #39345c;
}
::-webkit-scrollbar-thumb:hover {
  background: #2f2b4c;
}
@-ms-viewport {
  width: device-width;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
html {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
}
body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-width: 310px;
  margin: 0;
  color: #000;
  background-color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
em,
i,
.italic {
  font-style: italic;
}
strong,
.strong {
  font-weight: 700;
}
small,
.small {
  font-size: 12px;
  font-size: 0.75rem;
}
.fb_iframe_widget {
  display: block;
  width: 100%;
}
.fb_iframe_widget span {
  display: block;
  width: 100% !important;
}
.fb_iframe_widget iframe {
  display: block;
  width: 100% !important;
}
#viewport {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.scrollbar-thumb {
  background-color: #39345c !important;
  border-radius: 0 !important;
}
.g-recaptcha {
  margin-left: -22px;
  margin-bottom: 1rem;
}
h1,
.alfa,
h2,
.beta,
h3,
.gamma,
h4,
.delta,
h5,
.epsilon,
h6,
.zeta {
  margin: 0;
  margin-bottom: 1.5rem;
  color: #39345c;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  -webkit-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
  -o-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
  transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
}
h1 a,
.alfa a,
h2 a,
.beta a,
h3 a,
.gamma a,
h4 a,
.delta a,
h5 a,
.epsilon a,
h6 a,
.zeta a {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: inherit;
}
h1 a[href]:hover,
.alfa a[href]:hover,
h2 a[href]:hover,
.beta a[href]:hover,
h3 a[href]:hover,
.gamma a[href]:hover,
h4 a[href]:hover,
.delta a[href]:hover,
h5 a[href]:hover,
.epsilon a[href]:hover,
h6 a[href]:hover,
.zeta a[href]:hover {
  color: #7168b7;
}
h1 a[href]:hover svg,
.alfa a[href]:hover svg,
h2 a[href]:hover svg,
.beta a[href]:hover svg,
h3 a[href]:hover svg,
.gamma a[href]:hover svg,
h4 a[href]:hover svg,
.delta a[href]:hover svg,
h5 a[href]:hover svg,
.epsilon a[href]:hover svg,
h6 a[href]:hover svg,
.zeta a[href]:hover svg {
  fill: #7168b7;
}
h1,
.alfa {
  line-height: 1.1;
  font-size: 40px;
  font-size: 2.5rem;
}
@media (min-width: 576px) {
  h1,
  .alfa {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media (min-width: 771px) {
  h1,
  .alfa {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.alfa-big {
  font-size: 66px;
  font-size: 4.125rem;
}
h2,
.beta {
  font-size: 30px;
  font-size: 1.875rem;
}
@media (min-width: 576px) {
  h2,
  .beta {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (min-width: 771px) {
  h2,
  .beta {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
h3,
.gamma {
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  h3,
  .gamma {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (min-width: 771px) {
  h3,
  .gamma {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
h4,
.delta {
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 576px) {
  h4,
  .delta {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 771px) {
  h4,
  .delta {
    font-size: 16px;
    font-size: 1rem;
  }
}
h5,
.epsilon {
  font-size: 24px;
  font-size: 1.5rem;
}
@media (min-width: 576px) {
  h5,
  .epsilon {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (min-width: 771px) {
  h5,
  .epsilon {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
h6,
.zeta {
  font-size: 22px;
  font-size: 1.375rem;
}
@media (min-width: 576px) {
  h6,
  .zeta {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (min-width: 771px) {
  h6,
  .zeta {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.h--font-light h1,
.h--font-light .alfa,
.h--font-light h2,
.h--font-light .beta,
.h--font-light h3,
.h--font-light .gamma,
.h--font-light h4,
.h--font-light .delta,
.h--font-light h5,
.h--font-light .epsilon,
.h--font-light h6,
.h--font-light .zeta {
  font-weight: 300;
}
.h--font-regular h1,
.h--font-regular .alfa,
.h--font-regular h2,
.h--font-regular .beta,
.h--font-regular h3,
.h--font-regular .gamma,
.h--font-regular h4,
.h--font-regular .delta,
.h--font-regular h5,
.h--font-regular .epsilon,
.h--font-regular h6,
.h--font-regular .zeta {
  font-weight: 400;
}
.h--font-semibold h1,
.h--font-semibold .alfa,
.h--font-semibold h2,
.h--font-semibold .beta,
.h--font-semibold h3,
.h--font-semibold .gamma,
.h--font-semibold h4,
.h--font-semibold .delta,
.h--font-semibold h5,
.h--font-semibold .epsilon,
.h--font-semibold h6,
.h--font-semibold .zeta {
  font-weight: 600;
}
.h--font-bold h1,
.h--font-bold .alfa,
.h--font-bold h2,
.h--font-bold .beta,
.h--font-bold h3,
.h--font-bold .gamma,
.h--font-bold h4,
.h--font-bold .delta,
.h--font-bold h5,
.h--font-bold .epsilon,
.h--font-bold h6,
.h--font-bold .zeta {
  font-weight: 700;
}
.h--font-black h1,
.h--font-black .alfa,
.h--font-black h2,
.h--font-black .beta,
.h--font-black h3,
.h--font-black .gamma,
.h--font-black h4,
.h--font-black .delta,
.h--font-black h5,
.h--font-black .epsilon,
.h--font-black h6,
.h--font-black .zeta {
  font-weight: 900;
}
.h--font-third h1,
.h--font-third .alfa,
.h--font-third h2,
.h--font-third .beta,
.h--font-third h3,
.h--font-third .gamma,
.h--font-third h4,
.h--font-third .delta,
.h--font-third h5,
.h--font-third .epsilon,
.h--font-third h6,
.h--font-third .zeta {
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.h--font-primary h1,
.h--font-primary .alfa,
.h--font-primary h2,
.h--font-primary .beta,
.h--font-primary h3,
.h--font-primary .gamma,
.h--font-primary h4,
.h--font-primary .delta,
.h--font-primary h5,
.h--font-primary .epsilon,
.h--font-primary h6,
.h--font-primary .zeta {
  font-family: "Roboto", Arial, sans-serif;
}
.h--text-upper h1,
.h--text-upper .alfa,
.h--text-upper h2,
.h--text-upper .beta,
.h--text-upper h3,
.h--text-upper .gamma,
.h--text-upper h4,
.h--text-upper .delta,
.h--text-upper h5,
.h--text-upper .epsilon,
.h--text-upper h6,
.h--text-upper .zeta {
  text-transform: uppercase;
}
.h--line-08 h1,
.h--line-08 .alfa,
.h--line-08 h2,
.h--line-08 .beta,
.h--line-08 h3,
.h--line-08 .gamma,
.h--line-08 h4,
.h--line-08 .delta,
.h--line-08 h5,
.h--line-08 .epsilon,
.h--line-08 h6,
.h--line-08 .zeta {
  line-height: 0.8;
}
.h--line-1 h1,
.h--line-1 .alfa,
.h--line-1 h2,
.h--line-1 .beta,
.h--line-1 h3,
.h--line-1 .gamma,
.h--line-1 h4,
.h--line-1 .delta,
.h--line-1 h5,
.h--line-1 .epsilon,
.h--line-1 h6,
.h--line-1 .zeta {
  line-height: 1;
}
.h--line-1-1 h1,
.h--line-1-1 .alfa,
.h--line-1-1 h2,
.h--line-1-1 .beta,
.h--line-1-1 h3,
.h--line-1-1 .gamma,
.h--line-1-1 h4,
.h--line-1-1 .delta,
.h--line-1-1 h5,
.h--line-1-1 .epsilon,
.h--line-1-1 h6,
.h--line-1-1 .zeta {
  line-height: 1.1;
}
.h--line-1-2 h1,
.h--line-1-2 .alfa,
.h--line-1-2 h2,
.h--line-1-2 .beta,
.h--line-1-2 h3,
.h--line-1-2 .gamma,
.h--line-1-2 h4,
.h--line-1-2 .delta,
.h--line-1-2 h5,
.h--line-1-2 .epsilon,
.h--line-1-2 h6,
.h--line-1-2 .zeta {
  line-height: 1.2;
}
.h--line-1-4 h1,
.h--line-1-4 .alfa,
.h--line-1-4 h2,
.h--line-1-4 .beta,
.h--line-1-4 h3,
.h--line-1-4 .gamma,
.h--line-1-4 h4,
.h--line-1-4 .delta,
.h--line-1-4 h5,
.h--line-1-4 .epsilon,
.h--line-1-4 h6,
.h--line-1-4 .zeta {
  line-height: 1.4;
}
.h--line-1-5 h1,
.h--line-1-5 .alfa,
.h--line-1-5 h2,
.h--line-1-5 .beta,
.h--line-1-5 h3,
.h--line-1-5 .gamma,
.h--line-1-5 h4,
.h--line-1-5 .delta,
.h--line-1-5 h5,
.h--line-1-5 .epsilon,
.h--line-1-5 h6,
.h--line-1-5 .zeta {
  line-height: 1.5;
}
.h--line-1-6 h1,
.h--line-1-6 .alfa,
.h--line-1-6 h2,
.h--line-1-6 .beta,
.h--line-1-6 h3,
.h--line-1-6 .gamma,
.h--line-1-6 h4,
.h--line-1-6 .delta,
.h--line-1-6 h5,
.h--line-1-6 .epsilon,
.h--line-1-6 h6,
.h--line-1-6 .zeta {
  line-height: 1.6;
}
.h--line-1-8 h1,
.h--line-1-8 .alfa,
.h--line-1-8 h2,
.h--line-1-8 .beta,
.h--line-1-8 h3,
.h--line-1-8 .gamma,
.h--line-1-8 h4,
.h--line-1-8 .delta,
.h--line-1-8 h5,
.h--line-1-8 .epsilon,
.h--line-1-8 h6,
.h--line-1-8 .zeta {
  line-height: 1.8;
}
.h--line-2 h1,
.h--line-2 .alfa,
.h--line-2 h2,
.h--line-2 .beta,
.h--line-2 h3,
.h--line-2 .gamma,
.h--line-2 h4,
.h--line-2 .delta,
.h--line-2 h5,
.h--line-2 .epsilon,
.h--line-2 h6,
.h--line-2 .zeta {
  line-height: 2;
}
.h--line-2-2 h1,
.h--line-2-2 .alfa,
.h--line-2-2 h2,
.h--line-2-2 .beta,
.h--line-2-2 h3,
.h--line-2-2 .gamma,
.h--line-2-2 h4,
.h--line-2-2 .delta,
.h--line-2-2 h5,
.h--line-2-2 .epsilon,
.h--line-2-2 h6,
.h--line-2-2 .zeta {
  line-height: 2.2;
}
.h--line-2-5 h1,
.h--line-2-5 .alfa,
.h--line-2-5 h2,
.h--line-2-5 .beta,
.h--line-2-5 h3,
.h--line-2-5 .gamma,
.h--line-2-5 h4,
.h--line-2-5 .delta,
.h--line-2-5 h5,
.h--line-2-5 .epsilon,
.h--line-2-5 h6,
.h--line-2-5 .zeta {
  line-height: 2.5;
}
@media (min-width: 576px) {
  .h--line-xs-1 h1,
  .h--line-xs-1 .alfa,
  .h--line-xs-1 h2,
  .h--line-xs-1 .beta,
  .h--line-xs-1 h3,
  .h--line-xs-1 .gamma,
  .h--line-xs-1 h4,
  .h--line-xs-1 .delta,
  .h--line-xs-1 h5,
  .h--line-xs-1 .epsilon,
  .h--line-xs-1 h6,
  .h--line-xs-1 .zeta {
    line-height: 1;
  }
  .h--line-xs-1-2 h1,
  .h--line-xs-1-2 .alfa,
  .h--line-xs-1-2 h2,
  .h--line-xs-1-2 .beta,
  .h--line-xs-1-2 h3,
  .h--line-xs-1-2 .gamma,
  .h--line-xs-1-2 h4,
  .h--line-xs-1-2 .delta,
  .h--line-xs-1-2 h5,
  .h--line-xs-1-2 .epsilon,
  .h--line-xs-1-2 h6,
  .h--line-xs-1-2 .zeta {
    line-height: 1.2;
  }
  .h--line-xs-1-4 h1,
  .h--line-xs-1-4 .alfa,
  .h--line-xs-1-4 h2,
  .h--line-xs-1-4 .beta,
  .h--line-xs-1-4 h3,
  .h--line-xs-1-4 .gamma,
  .h--line-xs-1-4 h4,
  .h--line-xs-1-4 .delta,
  .h--line-xs-1-4 h5,
  .h--line-xs-1-4 .epsilon,
  .h--line-xs-1-4 h6,
  .h--line-xs-1-4 .zeta {
    line-height: 1.4;
  }
  .h--line-xs-1-6 h1,
  .h--line-xs-1-6 .alfa,
  .h--line-xs-1-6 h2,
  .h--line-xs-1-6 .beta,
  .h--line-xs-1-6 h3,
  .h--line-xs-1-6 .gamma,
  .h--line-xs-1-6 h4,
  .h--line-xs-1-6 .delta,
  .h--line-xs-1-6 h5,
  .h--line-xs-1-6 .epsilon,
  .h--line-xs-1-6 h6,
  .h--line-xs-1-6 .zeta {
    line-height: 1.6;
  }
}
@media (min-width: 771px) {
  .h--line-sm-1 h1,
  .h--line-sm-1 .alfa,
  .h--line-sm-1 h2,
  .h--line-sm-1 .beta,
  .h--line-sm-1 h3,
  .h--line-sm-1 .gamma,
  .h--line-sm-1 h4,
  .h--line-sm-1 .delta,
  .h--line-sm-1 h5,
  .h--line-sm-1 .epsilon,
  .h--line-sm-1 h6,
  .h--line-sm-1 .zeta {
    line-height: 1;
  }
  .h--line-sm-1-2 h1,
  .h--line-sm-1-2 .alfa,
  .h--line-sm-1-2 h2,
  .h--line-sm-1-2 .beta,
  .h--line-sm-1-2 h3,
  .h--line-sm-1-2 .gamma,
  .h--line-sm-1-2 h4,
  .h--line-sm-1-2 .delta,
  .h--line-sm-1-2 h5,
  .h--line-sm-1-2 .epsilon,
  .h--line-sm-1-2 h6,
  .h--line-sm-1-2 .zeta {
    line-height: 1.2;
  }
  .h--line-sm-1-4 h1,
  .h--line-sm-1-4 .alfa,
  .h--line-sm-1-4 h2,
  .h--line-sm-1-4 .beta,
  .h--line-sm-1-4 h3,
  .h--line-sm-1-4 .gamma,
  .h--line-sm-1-4 h4,
  .h--line-sm-1-4 .delta,
  .h--line-sm-1-4 h5,
  .h--line-sm-1-4 .epsilon,
  .h--line-sm-1-4 h6,
  .h--line-sm-1-4 .zeta {
    line-height: 1.4;
  }
  .h--line-sm-1-6 h1,
  .h--line-sm-1-6 .alfa,
  .h--line-sm-1-6 h2,
  .h--line-sm-1-6 .beta,
  .h--line-sm-1-6 h3,
  .h--line-sm-1-6 .gamma,
  .h--line-sm-1-6 h4,
  .h--line-sm-1-6 .delta,
  .h--line-sm-1-6 h5,
  .h--line-sm-1-6 .epsilon,
  .h--line-sm-1-6 h6,
  .h--line-sm-1-6 .zeta {
    line-height: 1.6;
  }
}
@media (min-width: 992px) {
  .h--line-md-1 h1,
  .h--line-md-1 .alfa,
  .h--line-md-1 h2,
  .h--line-md-1 .beta,
  .h--line-md-1 h3,
  .h--line-md-1 .gamma,
  .h--line-md-1 h4,
  .h--line-md-1 .delta,
  .h--line-md-1 h5,
  .h--line-md-1 .epsilon,
  .h--line-md-1 h6,
  .h--line-md-1 .zeta {
    line-height: 1;
  }
  .h--line-md-1-2 h1,
  .h--line-md-1-2 .alfa,
  .h--line-md-1-2 h2,
  .h--line-md-1-2 .beta,
  .h--line-md-1-2 h3,
  .h--line-md-1-2 .gamma,
  .h--line-md-1-2 h4,
  .h--line-md-1-2 .delta,
  .h--line-md-1-2 h5,
  .h--line-md-1-2 .epsilon,
  .h--line-md-1-2 h6,
  .h--line-md-1-2 .zeta {
    line-height: 1.2;
  }
  .h--line-md-1-4 h1,
  .h--line-md-1-4 .alfa,
  .h--line-md-1-4 h2,
  .h--line-md-1-4 .beta,
  .h--line-md-1-4 h3,
  .h--line-md-1-4 .gamma,
  .h--line-md-1-4 h4,
  .h--line-md-1-4 .delta,
  .h--line-md-1-4 h5,
  .h--line-md-1-4 .epsilon,
  .h--line-md-1-4 h6,
  .h--line-md-1-4 .zeta {
    line-height: 1.4;
  }
  .h--line-md-1-6 h1,
  .h--line-md-1-6 .alfa,
  .h--line-md-1-6 h2,
  .h--line-md-1-6 .beta,
  .h--line-md-1-6 h3,
  .h--line-md-1-6 .gamma,
  .h--line-md-1-6 h4,
  .h--line-md-1-6 .delta,
  .h--line-md-1-6 h5,
  .h--line-md-1-6 .epsilon,
  .h--line-md-1-6 h6,
  .h--line-md-1-6 .zeta {
    line-height: 1.6;
  }
}
.h--margin-0 .alfa,
.h--margin-0 .beta,
.h--margin-0 .gamma,
.h--margin-0 .delta,
.h--margin-0 .epsilon,
.h--margin-0 .zeta,
.h--margin-0 h1,
.h--margin-0 h2,
.h--margin-0 h3,
.h--margin-0 h4,
.h--margin-0 h5,
.h--margin-0 h6 {
  margin-bottom: 0;
}
.h--margin-01 .alfa,
.h--margin-01 .beta,
.h--margin-01 .gamma,
.h--margin-01 .delta,
.h--margin-01 .epsilon,
.h--margin-01 .zeta,
.h--margin-01 h1,
.h--margin-01 h2,
.h--margin-01 h3,
.h--margin-01 h4,
.h--margin-01 h5,
.h--margin-01 h6 {
  margin-bottom: 0.1rem;
}
.h--margin-02 .alfa,
.h--margin-02 .beta,
.h--margin-02 .gamma,
.h--margin-02 .delta,
.h--margin-02 .epsilon,
.h--margin-02 .zeta,
.h--margin-02 h1,
.h--margin-02 h2,
.h--margin-02 h3,
.h--margin-02 h4,
.h--margin-02 h5,
.h--margin-02 h6 {
  margin-bottom: 0.2rem;
}
.h--margin-03 .alfa,
.h--margin-03 .beta,
.h--margin-03 .gamma,
.h--margin-03 .delta,
.h--margin-03 .epsilon,
.h--margin-03 .zeta,
.h--margin-03 h1,
.h--margin-03 h2,
.h--margin-03 h3,
.h--margin-03 h4,
.h--margin-03 h5,
.h--margin-03 h6 {
  margin-bottom: 0.3rem;
}
.h--margin-04 .alfa,
.h--margin-04 .beta,
.h--margin-04 .gamma,
.h--margin-04 .delta,
.h--margin-04 .epsilon,
.h--margin-04 .zeta,
.h--margin-04 h1,
.h--margin-04 h2,
.h--margin-04 h3,
.h--margin-04 h4,
.h--margin-04 h5,
.h--margin-04 h6 {
  margin-bottom: 0.4rem;
}
.h--margin-05 .alfa,
.h--margin-05 .beta,
.h--margin-05 .gamma,
.h--margin-05 .delta,
.h--margin-05 .epsilon,
.h--margin-05 .zeta,
.h--margin-05 h1,
.h--margin-05 h2,
.h--margin-05 h3,
.h--margin-05 h4,
.h--margin-05 h5,
.h--margin-05 h6 {
  margin-bottom: 0.5rem;
}
.h--margin-06 .alfa,
.h--margin-06 .beta,
.h--margin-06 .gamma,
.h--margin-06 .delta,
.h--margin-06 .epsilon,
.h--margin-06 .zeta,
.h--margin-06 h1,
.h--margin-06 h2,
.h--margin-06 h3,
.h--margin-06 h4,
.h--margin-06 h5,
.h--margin-06 h6 {
  margin-bottom: 0.6rem;
}
.h--margin-07 .alfa,
.h--margin-07 .beta,
.h--margin-07 .gamma,
.h--margin-07 .delta,
.h--margin-07 .epsilon,
.h--margin-07 .zeta,
.h--margin-07 h1,
.h--margin-07 h2,
.h--margin-07 h3,
.h--margin-07 h4,
.h--margin-07 h5,
.h--margin-07 h6 {
  margin-bottom: 0.7rem;
}
.h--margin-08 .alfa,
.h--margin-08 .beta,
.h--margin-08 .gamma,
.h--margin-08 .delta,
.h--margin-08 .epsilon,
.h--margin-08 .zeta,
.h--margin-08 h1,
.h--margin-08 h2,
.h--margin-08 h3,
.h--margin-08 h4,
.h--margin-08 h5,
.h--margin-08 h6 {
  margin-bottom: 0.8rem;
}
.h--margin-09 .alfa,
.h--margin-09 .beta,
.h--margin-09 .gamma,
.h--margin-09 .delta,
.h--margin-09 .epsilon,
.h--margin-09 .zeta,
.h--margin-09 h1,
.h--margin-09 h2,
.h--margin-09 h3,
.h--margin-09 h4,
.h--margin-09 h5,
.h--margin-09 h6 {
  margin-bottom: 0.9rem;
}
.h--margin-1 .alfa,
.h--margin-1 .beta,
.h--margin-1 .gamma,
.h--margin-1 .delta,
.h--margin-1 .epsilon,
.h--margin-1 .zeta,
.h--margin-1 h1,
.h--margin-1 h2,
.h--margin-1 h3,
.h--margin-1 h4,
.h--margin-1 h5,
.h--margin-1 h6 {
  margin-bottom: 1rem;
}
.h--margin-1-2 .alfa,
.h--margin-1-2 .beta,
.h--margin-1-2 .gamma,
.h--margin-1-2 .delta,
.h--margin-1-2 .epsilon,
.h--margin-1-2 .zeta,
.h--margin-1-2 h1,
.h--margin-1-2 h2,
.h--margin-1-2 h3,
.h--margin-1-2 h4,
.h--margin-1-2 h5,
.h--margin-1-2 h6 {
  margin-bottom: 1.2rem;
}
.h--margin-1-5 .alfa,
.h--margin-1-5 .beta,
.h--margin-1-5 .gamma,
.h--margin-1-5 .delta,
.h--margin-1-5 .epsilon,
.h--margin-1-5 .zeta,
.h--margin-1-5 h1,
.h--margin-1-5 h2,
.h--margin-1-5 h3,
.h--margin-1-5 h4,
.h--margin-1-5 h5,
.h--margin-1-5 h6 {
  margin-bottom: 1.5rem;
}
.h--margin-2 .alfa,
.h--margin-2 .beta,
.h--margin-2 .gamma,
.h--margin-2 .delta,
.h--margin-2 .epsilon,
.h--margin-2 .zeta,
.h--margin-2 h1,
.h--margin-2 h2,
.h--margin-2 h3,
.h--margin-2 h4,
.h--margin-2 h5,
.h--margin-2 h6 {
  margin-bottom: 2rem;
}
.h--margin-2-5 .alfa,
.h--margin-2-5 .beta,
.h--margin-2-5 .gamma,
.h--margin-2-5 .delta,
.h--margin-2-5 .epsilon,
.h--margin-2-5 .zeta,
.h--margin-2-5 h1,
.h--margin-2-5 h2,
.h--margin-2-5 h3,
.h--margin-2-5 h4,
.h--margin-2-5 h5,
.h--margin-2-5 h6 {
  margin-bottom: 2.5rem;
}
.h--margin-3 .alfa,
.h--margin-3 .beta,
.h--margin-3 .gamma,
.h--margin-3 .delta,
.h--margin-3 .epsilon,
.h--margin-3 .zeta,
.h--margin-3 h1,
.h--margin-3 h2,
.h--margin-3 h3,
.h--margin-3 h4,
.h--margin-3 h5,
.h--margin-3 h6 {
  margin-bottom: 3rem;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: none;
  font-family: "Roboto", Arial, sans-serif;
}
a:focus,
a:active,
a:visited {
  outline: none;
}
.a-hover:hover,
.a-hover:focus {
  text-decoration: underline;
}
.a-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 0.6rem 0;
}
.a-link--small {
  padding: 0.25rem 0;
}
.a-link__text {
  color: #7168b7;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  text-transform: uppercase;
}
.a-link__text--black {
  color: #000000;
}
.a-link__text--white {
  color: #ffffff;
}
.a-link__text--purple {
  color: #39345c;
}
.a-link__text--size-12 {
  font-size: 12px;
  font-size: 0.75rem;
}
.a-link__text--size-14 {
  font-size: 14px;
  font-size: 0.875rem;
}
.a-link__text--size-16 {
  font-size: 16px;
  font-size: 1rem;
}
.a-link__text--size-18 {
  font-size: 18px;
  font-size: 1.125rem;
}
.a-link__icon {
  display: inline-block;
  vertical-align: middle;
}
.a-link__icon.icon--size-18 {
  height: 18px;
}
.a-link--hover-underline {
  position: relative;
}
.a-link--hover-underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  -webkit-transition: width 250ms ease-out;
  -o-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
  background-color: currentColor;
}
.a-link--hover-underline:hover:after {
  width: 100%;
}
.a-link--hover-underline-before {
  position: relative;
}
.a-link--hover-underline-before:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  -webkit-transition: width 250ms ease-out;
  -o-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
  background-color: currentColor;
}
.a-link--hover-underline-before:hover:before {
  width: 100%;
}
.a-link--hover-block .a-link--hover-underline {
  position: relative;
}
.a-link--hover-block .a-link--hover-underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  -webkit-transition: width 250ms ease-out;
  -o-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
  background-color: currentColor;
}
.a-link--hover-block:hover .a-link--hover-underline:after {
  width: 100%;
}
p {
  display: block;
  margin-top: 0;
  margin-bottom: 1.8rem;
  color: #39345c;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transition: font-size 0.3s cubic-bezier(0.5, 0.7, 0.4, 1),
    color 0.3s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: font-size 0.3s cubic-bezier(0.5, 0.7, 0.4, 1),
    color 0.3s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: font-size 0.3s cubic-bezier(0.5, 0.7, 0.4, 1),
    color 0.3s cubic-bezier(0.5, 0.7, 0.4, 1);
}
p a {
  color: currentColor;
}
.p--size-12 p {
  font-size: 12px;
  font-size: 0.75rem;
}
.p--size-13 p {
  font-size: 13px;
  font-size: 0.8125rem;
}
.p--size-14 p {
  font-size: 14px;
  font-size: 0.875rem;
}
.p--size-18 p {
  font-size: 18px;
  font-size: 1.125rem;
}
.p--size-20 p {
  font-size: 20px;
  font-size: 1.25rem;
}
.p--line-1 p {
  line-height: 1;
}
.p--line-1-2 p {
  line-height: 1.2;
}
.p--line-1-4 p {
  line-height: 1.4;
}
.p--line-1-5 p {
  line-height: 1.5;
}
.p--line-1-6 p {
  line-height: 1.6;
}
.p--line-1-8 p {
  line-height: 1.8;
}
.p--line-2 p {
  line-height: 2;
}
.p--margin-0 p {
  margin-bottom: 0;
}
.p--margin-01 p {
  margin-bottom: 0.1rem;
}
.p--margin-02 p {
  margin-bottom: 0.2rem;
}
.p--margin-03 p {
  margin-bottom: 0.3rem;
}
.p--margin-04 p {
  margin-bottom: 0.4rem;
}
.p--margin-05 p {
  margin-bottom: 0.5rem;
}
.p--margin-06 p {
  margin-bottom: 0.6rem;
}
.p--margin-07 p {
  margin-bottom: 0.7rem;
}
.p--margin-08 p {
  margin-bottom: 0.8rem;
}
.p--margin-09 p {
  margin-bottom: 0.9rem;
}
.p--margin-1 p {
  margin-bottom: 1rem;
}
.p--margin-1-2 p {
  margin-bottom: 1.2rem;
}
.p--margin-1-5 p {
  margin-bottom: 1.5rem;
}
.p--margin-2 p {
  margin-bottom: 2rem;
}
.p--margin-2-5 p {
  margin-bottom: 2.5rem;
}
.p--justify p {
  text-align: justify;
}
.p--third p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 300;
}
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.list-style,
ol.list-style {
  margin-bottom: 2rem;
}
ul.list-style li,
ol.list-style li {
  position: relative;
  display: block;
  margin-bottom: 8px;
  padding-left: 25px;
  color: #000000;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
}
ul.list-style a,
ol.list-style a {
  text-decoration: underline;
}
ul.list-style a:focus,
ul.list-style a:hover,
ol.list-style a:focus,
ol.list-style a:hover {
  text-decoration: underline;
}
ul.list-style li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  display: block;
  width: 6px;
  height: 6px;
  color: #000000;
  border-radius: 100%;
  background-color: #000000;
}
ol.list-style {
  list-style-position: inside;
  counter-reset: item;
}
ol.list-style li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #000000;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
}
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
}
.select2-container {
  z-index: 9;
}
.select2-container.select2-container--open .select2-selection--single,
.select2-container.select2-container--open .select2-selection--multiple,
.select2-container .select2-container--focus .select2-selection--single,
.select2-container .select2-container--focus .select2-selection--multiple {
  border: 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
}
.select2-container.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after,
.select2-container.select2-container--open
  .select2-selection--multiple
  .select2-selection__arrow:after,
.select2-container
  .select2-container--focus
  .select2-selection--single
  .select2-selection__arrow:after,
.select2-container
  .select2-container--focus
  .select2-selection--multiple
  .select2-selection__arrow:after {
  background-image: url("fonts/chevron-up.svg");
}
.select2-container.select2-container--open .select2-selection--multiple:after,
.select2-container
  .select2-container--focus
  .select2-selection--multiple:after {
  background-image: url("fonts/chevron-up.svg");
}
.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}
.select2-container .select2-search--inline {
  display: block;
  width: 100%;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  width: 100%;
  height: 60px;
  padding: 0 60px 1px 12px;
  padding-bottom: 1px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #000000;
  border: 2px solid #000000;
  outline: none !important;
  background-color: #ffffff;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0;
}
.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
  line-height: 60px;
  color: #39345c;
}
.select2-container
  .select2-selection--single
  .select2-selection__rendered
  .select2-selection__choice,
.select2-container
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice {
  line-height: 1.4;
  padding: 3px 10px;
  font-size: 14px;
  border: 0;
  background: #7168b7;
  color: white;
}
.select2-container .select2-selection--single .select2-selection__placeholder,
.select2-container
  .select2-selection--multiple
  .select2-selection__placeholder {
  color: #39345c;
}
.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.select2-container .select2-selection--single .select2-selection__arrow:after,
.select2-container
  .select2-selection--multiple
  .select2-selection__arrow:after {
  content: "" !important;
  width: 14px;
  height: 8px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("fonts/chevron-down.svg");
}
.select2-container .select2-selection--single .select2-selection__arrow b,
.select2-container .select2-selection--multiple .select2-selection__arrow b {
  display: none;
}
.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 60px;
}
.select2-container .select2-selection--multiple:after {
  content: "" !important;
  width: 14px;
  height: 8px;
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("fonts/chevron-down.svg");
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding-top: 25px;
  line-height: 1;
}
.select2-container
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: white;
  margin-right: 5px;
}
.select2-container
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: white;
}
.select2-container
  .select2-container--focus
  .select2-selection--single
  .select2-selection__arrow:after,
.select2-container.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after {
  content: "\e91a";
}
.select2-dropdown {
  background-color: transparent;
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  border-radius: 0;
  background-color: #ffffff;
}
.select2-dropdown .select2-results__options--nested .select2-results__option {
  padding: 0 25px;
}
.select2-dropdown .select2-results__options {
  max-height: 220px !important;
}
.select2-dropdown
  .select2-results__options
  .select2-results__option[aria-selected="true"] {
  color: #39345c;
  background-color: #f5f5f5;
}
.select2-dropdown .select2-results__options .select2-results__option {
  padding: 0.625rem 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
.select2-dropdown .select2-results__options .text-option .status {
  float: left;
  margin-right: 15px;
}
.select2-dropdown .select2-results__options .text-option .text {
  display: block;
  overflow: hidden;
  height: 100%;
}
.select2-dropdown
  .select2-results__options
  .select2-results__option--highlighted {
  color: #39345c;
  background-color: #f5f5f5;
}
.select-medium-dropdown.select2-dropdown
  .select2-results__options
  .select2-results__option {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  padding: 18px 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 771px) {
  .swiper--sm-no-swipe {
    -webkit-transform: translate(0) !important;
    -ms-transform: translate(0) !important;
    transform: translate(0) !important;
  }
}
.swiper-arrow-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 105px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
}
.swiper-arrow-group--top-right {
  bottom: 90px;
  width: 130px;
}
@media (min-width: 771px) {
  .swiper-arrow-group--top-right {
    left: auto;
    right: 80px;
    top: 40px;
    bottom: auto;
    width: 120px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.swiper-arrow-group--top-right .swiper-arrow-content {
  background-color: transparent;
  width: 30px;
  height: 30px;
}
.swiper-arrow-group--top-right .swiper-arrow-content:focus svg,
.swiper-arrow-group--top-right .swiper-arrow-content:hover svg {
  fill: #ffffff;
}
.swiper-arrow-group--top-right .swiper-arrow-content svg {
  fill: #ffffff;
  font-size: 16px;
  font-size: 1rem;
}
.swiper-arrow {
  outline: none;
}
.swiper-arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.swiper-arrow-next {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.swiper-arrow-prev {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.swiper-arrow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  cursor: pointer;
  background-color: rgba(113, 104, 183, 0.1);
}
.swiper-arrow-content:focus svg,
.swiper-arrow-content:hover svg {
  fill: #39345c;
}
.swiper-arrow-content svg {
  fill: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
.swiper-pagination {
  position: relative;
  width: 100%;
}
.swiper-pagination--counter {
  width: auto;
  max-width: 100px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #ffffff;
  position: absolute;
  left: 50%;
  bottom: 90px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 771px) {
  .swiper-pagination--counter {
    top: 40px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    bottom: auto;
    left: auto;
    top: 40px;
    right: 120px;
  }
}
.swiper-pagination-bullet {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  opacity: 1;
  background: transparent;
}
.swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 12px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000000;
  border-radius: 100%;
}
.swiper-pagination-bullet-active:after {
  background-color: #39345c;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0;
}
section {
  position: relative;
  padding: 3rem 0 3rem;
}
@media (min-width: 771px) {
  section {
    padding: 3rem 0 3rem;
  }
}
.padding-style-1 {
  padding: 1rem 0 1rem;
}
@media (min-width: 771px) {
  .padding-style-1 {
    padding: 1rem 0 1rem;
  }
}
.padding-style-2 {
  padding: 2rem 0 2rem;
}
@media (min-width: 771px) {
  .padding-style-2 {
    padding: 2rem 0 2rem;
  }
}
.padding-style-2-5 {
  padding: 2.5rem 0 3rem;
}
@media (min-width: 771px) {
  .padding-style-2-5 {
    padding: 2.5rem 0 2.5rem;
  }
}
.padding-style-2-6 {
  padding: 4rem 0 4rem;
}
@media (min-width: 771px) {
  .padding-style-2-6 {
    padding: 2.5rem 0 6rem;
  }
}
.padding-style-3 {
  padding: 3rem 0 3rem;
}
@media (min-width: 771px) {
  .padding-style-3 {
    padding: 3rem 0 3rem;
  }
}
.padding-style-3-ext {
  padding: 3rem 0 4rem;
}
@media (min-width: 992px) {
  .padding-style-3-ext {
    padding: 3rem 0 3rem;
  }
}
.padding-style-3-1 {
  padding: 3rem 0 2rem;
}
@media (min-width: 771px) {
  .padding-style-3-1 {
    padding: 3rem 0 1rem;
  }
}
.padding-style-3-6 {
  padding: 3rem 0 6rem;
}
@media (min-width: 771px) {
  .padding-style-3-6 {
    padding: 3rem 0 6rem;
  }
}
.padding-style-4 {
  padding: 3rem 0 3rem;
}
@media (min-width: 771px) {
  .padding-style-4 {
    padding: 4rem 0 4rem;
  }
}
.padding-style-4-1 {
  padding: 3rem 0 4rem;
}
@media (min-width: 771px) {
  .padding-style-4-1 {
    padding: 4rem 0 1rem;
  }
}
.padding-style-5 {
  padding: 3rem 0 3rem;
}
@media (min-width: 771px) {
  .padding-style-5 {
    padding: 5rem 0 5rem;
  }
}
.padding-style-5-1 {
  padding: 5rem 3rem 1rem;
}
@media (min-width: 771px) {
  .padding-style-5-1 {
    padding: 5rem 0 1rem;
  }
}
.padding-style-5-2 {
  padding: 5rem 0 2rem;
}
@media (min-width: 771px) {
  .padding-style-5-2 {
    padding: 5rem 0 2rem;
  }
}
.padding-style-6-0-6 {
  padding: 4rem 0 6rem 0;
}
@media (min-width: 771px) {
  .padding-style-6-0-6 {
    padding: 6rem 0 0 0;
  }
}
.padding-style-6 {
  padding: 4rem 0 4rem;
}
@media (min-width: 771px) {
  .padding-style-6 {
    padding: 6rem 0 6rem;
  }
}
.padding-style-6-ext {
  padding: 4rem 0 0;
}
@media (min-width: 771px) {
  .padding-style-6-ext {
    padding: 6rem 0 6rem;
  }
}
.padding-style-6-ext-1 {
  padding: 4rem 0 6rem;
}
@media (min-width: 771px) {
  .padding-style-6-ext-1 {
    padding: 6rem 0 6rem;
  }
}
.padding-style-6-1 {
  padding: 4rem 1rem 4rem;
}
@media (min-width: 771px) {
  .padding-style-6-1 {
    padding: 6rem 0 4rem;
  }
}
.padding-style-6-2 {
  padding: 4rem 0 2rem;
}
@media (min-width: 771px) {
  .padding-style-6-2 {
    padding: 6rem 0 2rem;
  }
}
.padding-style-6-3 {
  padding: 3rem 0 3rem;
}
@media (min-width: 771px) {
  .padding-style-6-3 {
    padding: 6rem 0 3rem;
  }
}
.padding-style-6-4 {
  padding: 4rem 0 0;
}
@media (min-width: 771px) {
  .padding-style-6-4 {
    padding: 6rem 0 4rem;
  }
}
.padding-style-6-8 {
  padding: 4rem 1rem 6rem;
}
@media (min-width: 771px) {
  .padding-style-6-8 {
    padding: 6rem 0 8rem;
  }
}
.padding-style-8-6 {
  padding: 6rem 0 4rem;
}
@media (min-width: 771px) {
  .padding-style-8-6 {
    padding: 8rem 0 6rem;
  }
}
.padding-style-12-6 {
  padding: 4rem 0 4rem;
}
@media (min-width: 992px) {
  .padding-style-12-6 {
    padding: 12rem 0 6rem;
  }
}
.padding-style-12-6-ext {
  padding: 4rem 0 4rem;
}
@media (min-width: 771px) {
  .padding-style-12-6-ext {
    padding: 6rem 0 6rem;
  }
}
.padding-style-13-3 {
  padding: 4rem 0 4rem;
}
@media (min-width: 771px) {
  .padding-style-13-3 {
    padding: 13rem 0 3rem;
  }
}
.padding-content-1 {
  padding: 1rem 1rem;
}
.padding-content-2 {
  padding: 2rem 2rem;
}
.padding-content-3 {
  padding: 3rem 3rem;
}
.padding-content-4 {
  padding: 4rem 4rem;
}
.padding-content-5 {
  padding: 5rem 5rem;
}
@media (min-width: 771px) {
  .padding-content-2 {
    padding: 2rem 2rem;
  }
}
.padding-content-2-0 {
  padding: 2rem 0 0;
}
@media (min-width: 771px) {
  .padding-content-2-0 {
    padding: 2rem 2rem 2rem 2rem;
  }
}
.padding-content-2-0-ext {
  padding: 2rem 0 0 0;
}
@media (min-width: 771px) {
  .padding-content-2-0-ext {
    padding: 2rem 0 2rem 3rem;
  }
}
@media (min-width: 992px) {
  .padding-content-2-0-ext {
    padding: 2rem 2rem 2rem 5rem;
  }
}
.content-width-140 {
  max-width: 140px;
}
.content-width-180 {
  max-width: 180px;
}
.content-width-200 {
  max-width: 200px;
}
.content-width-220 {
  max-width: 220px;
}
.content-width-260 {
  max-width: 260px;
}
.content-width-300 {
  max-width: 300px;
}
.content-width-360 {
  max-width: 360px;
}
.content-width-400 {
  max-width: 400px;
}
.content-width-500 {
  max-width: 500px;
}
.content-width-600 {
  max-width: 600px;
}
.content-width-700 {
  max-width: 700px;
}
.content-width-940 {
  max-width: 940px;
}
@media (max-width: 575px) {
  .content-width-xs-280 {
    max-width: 280px;
  }
  .content-width-xs-200 {
    max-width: 200px;
  }
}
@media (min-width: 771px) {
  .content-width-sm-360 {
    max-width: 360px;
  }
  .content-width-sm-460 {
    max-width: 460px;
  }
}
.page-index main {
  padding-top: 70px;
}
@media (min-width: 992px) {
  .page-index main {
    padding-top: 90px;
  }
}
main {
  position: relative;
  display: block;
  padding-top: 70px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 992px) {
  main {
    padding-top: 90px;
  }
}
.container-full {
  margin: 0 auto;
}
.container-small,
.container-normal,
.container-large {
  margin: 0 auto;
  padding: 0 15px;
}
.container-small {
  width: 100%;
}
@media (min-width: 771px) {
  .container-small {
    width: 730px;
  }
}
@media (min-width: 992px) {
  .container-small {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .container-small {
    width: 800px;
  }
}
@media (min-width: 1440px) {
  .container-small {
    width: 800px;
  }
}
.container-normal {
  width: 100%;
}
@media (min-width: 771px) {
  .container-normal {
    width: 730px;
  }
}
@media (min-width: 992px) {
  .container-normal {
    width: 950px;
  }
}
@media (min-width: 1200px) {
  .container-normal {
    width: 1000px;
  }
}
@media (min-width: 1440px) {
  .container-normal {
    width: 1000px;
  }
}
.container-large {
  width: 100%;
}
@media (min-width: 771px) {
  .container-large {
    width: 730px;
  }
}
@media (min-width: 992px) {
  .container-large {
    width: 950px;
  }
}
@media (min-width: 1200px) {
  .container-large {
    width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container-large {
    width: 1140px;
  }
}
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem 3rem;
  background-color: #39345c;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__title--line {
  min-height: 40px;
}
.footer__copy,
.footer__author {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.footer__copy {
  margin-bottom: 0.8rem;
}
.footer__link {
  color: #ffffff;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer-list--small .footer-list__item {
  display: block;
  margin: 0;
  min-width: auto;
  margin-bottom: 1.125rem;
}
.footer-list--small .footer-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 771px) {
  .footer-list--small .footer-list__item {
    margin-bottom: 0.625rem;
  }
}
.footer-list--small .footer-list__link {
  font-size: 13px;
  font-size: 0.8125rem;
}
.footer-list__item {
  display: inline-block;
  margin: 0 15px 0.625rem;
}
@media (min-width: 576px) {
  .footer-list__item {
    min-width: 80px;
  }
}
.footer-list__link {
  display: inline-block;
  line-height: 1.4;
  color: #ffffff;
  padding: 0.3rem 0;
  font-size: 16px;
  font-size: 1rem;
}
.footer-list__count {
  position: relative;
  top: -2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  background-color: #d7487b;
  color: #ffffff;
  font-weight: 700;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
}
.partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .partners {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .partners {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.partners--ext .partners__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 85px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  padding: 12px 20px;
  margin-bottom: 0.8rem;
  width: 100%;
  -webkit-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.partners--ext .partners__item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: rgba(113, 104, 183, 0.2);
}
@media (min-width: 992px) {
  .partners--ext .partners__item {
    padding: 18px 25px;
  }
}
.partners__item {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 576px) {
  .partners__item {
    width: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .partners__item {
    padding-right: 0;
    padding-left: 10px;
  }
}
.partners__item img {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer-panel__item {
    width: 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
.footer__title {
  margin-bottom: 1.875rem;
}
.footer__title--small {
  margin-bottom: 1.25rem;
}
.footer__title--sm-small {
  margin-bottom: 1.25rem;
}
@media (min-width: 771px) {
  .footer__title--sm-small {
    margin-bottom: 1.875rem;
  }
}
.footer__title--label {
  position: relative;
  padding-right: 70px;
}
.footer__label {
  position: absolute;
  top: 15px;
  right: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0.2rem 0.5rem;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  background-color: #7168b7;
}
@media (min-width: 771px) {
  .footer__label {
    right: 0;
    top: 0;
  }
}
.header__navigation .header__hamburger {
  display: none;
}
@media (max-width: 991px) {
  .header__navigation .container-normal,
  .header__navigation .container-large {
    width: 100%;
  }
  .header__navigation .main-nav {
    position: fixed;
    z-index: 98;
    top: 70px;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 0 20px 100px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #ffffff;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .header__navigation .header__hamburger {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    display: block;
    width: 70px;
    height: 70px;
  }
  .header__navigation .header__hamburger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 35px;
    height: 3px;
    -webkit-transition-duration: 250ms;
    -o-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    -o-transition-property: background-color, transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #39345c;
    font-weight: 300;
  }
  .header__navigation .header__hamburger-icon:before,
  .header__navigation .header__hamburger-icon:after {
    position: absolute;
    display: block;
    width: 35px;
    height: 3px;
    content: "";
    -webkit-transition-duration: 250ms;
    -o-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    -o-transition-property: margin, transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    background: #39345c;
  }
  .header__navigation .header__hamburger-icon:before {
    margin-top: -12px;
  }
  .header__navigation .header__hamburger-icon:after {
    margin-top: 12px;
  }
  .header__navigation.is-collapse .main-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 250ms ease;
    transition: -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
  }
  .header__navigation.is-collapse .header__hamburger-icon {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background: rgba(0, 0, 0, 0);
  }
  .header__navigation.is-collapse .header__hamburger-icon:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header__navigation.is-collapse .header__hamburger-icon:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media (min-width: 992px) {
  .header.header--inverse
    .header__navigation.is-scrolling
    .header__logo-image--white {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
  .header.header--inverse
    .header__navigation.is-scrolling
    .header__logo-image--purple {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
  .header.header--inverse
    .header__navigation.is-scrolling
    .header__logo-image--mobile {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
  }
  .header.header--inverse .header__navigation:not(.is-scrolling) {
    background-color: #39345c;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .header__logo-image--purple {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .header__logo-image--white {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
  }
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .main-nav__link {
    color: #ffffff;
  }
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .btn--header:before {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .dropdown:focus
    .dropdown__trigger:after,
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .dropdown:hover
    .dropdown__trigger:after {
    background-image: url("fonts/chevron-up-white.svg");
  }
  .header.header--inverse
    .header__navigation:not(.is-scrolling)
    .dropdown__trigger:after {
    background-image: url("fonts/chevron-down-white.svg");
  }
}
.header__navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 15px;
  background-color: #ffffff;
  -webkit-transition: height 350ms ease, -webkit-box-shadow 350ms ease;
  transition: height 350ms ease, -webkit-box-shadow 350ms ease;
  -o-transition: box-shadow 350ms ease, height 350ms ease;
  transition: box-shadow 350ms ease, height 350ms ease;
  transition: box-shadow 350ms ease, height 350ms ease,
    -webkit-box-shadow 350ms ease;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
@media (min-width: 992px) {
  .header__navigation {
    padding: 0 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 90px;
  }
}
.header__navigation.is-open-dropdown .main-nav {
  padding-bottom: 70px;
}
.header__navigation.is-open-dropdown .main-nav__item:not(.is-active),
.header__navigation.is-open-dropdown .language__dropdown:not(.is-active),
.header__navigation.is-open-dropdown .header-group {
  display: none;
}
.header__navigation.is-scrolling {
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
@media (min-width: 992px) {
  .header__navigation.is-scrolling {
    height: 60px;
  }
  .header__navigation.is-scrolling .header__logo {
    padding: 5px 0 5px;
  }
  .header__navigation.is-scrolling .header__logo-image--purple {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
  .header__navigation.is-scrolling .header__logo-image--mobile {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    width: 162px;
    height: auto;
  }
}
@media (min-width: 992px) {
  .header__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 99;
  padding: 15px 0 16px;
  text-align: center;
  -webkit-transition: padding 350ms ease;
  -o-transition: padding 350ms ease;
  transition: padding 350ms ease;
}
@media (min-width: 992px) {
  .header__logo {
    float: left;
    padding: 20px 0 20px;
  }
}
.header__logo-link {
  display: inline-block;
  vertical-align: middle;
}
.header__logo-image {
  margin: 0 auto;
  -webkit-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}
.header__logo-image--white {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
@media (min-width: 992px) {
  .header__logo-image--mobile {
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
  }
}
.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 992px) {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.main-nav__list {
  text-align: center;
  padding: 2rem 0;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
@media (min-width: 992px) {
  .main-nav__list {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .main-nav__list {
    margin-right: 2rem;
  }
}
@media (min-width: 992px) {
  .main-nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 991px) {
  .main-nav__item {
    display: block;
    text-align: center;
  }
}
.main-nav__item:focus .main-nav__link,
.main-nav__item:hover .main-nav__link,
.main-nav__item.is-active .main-nav__link {
  color: #7168b7;
}
.main-nav__link {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  text-decoration: none;
  color: #000000;
  line-height: 1.2;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 30px;
  font-size: 1.875rem;
}
@media (min-width: 992px) {
  .main-nav__link {
    text-transform: uppercase;
    font-size: 13px;
    font-size: 0.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 23px 15px;
  }
}
@media (min-width: 1200px) {
  .main-nav__link {
    padding: 23px 20px;
  }
}
@media (min-width: 992px) {
  .language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
}
.btn--header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 16px;
  font-size: 1rem;
  min-width: 220px;
}
@media (min-width: 992px) {
  .btn--header {
    min-width: auto;
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 0.8em 1.5rem;
    height: 45px;
    margin-right: 12px;
    padding: 0.8em 0.6rem;
  }
  .btn--header:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -12px;
    display: block;
    height: 20px;
    width: 1px;
    background-color: rgba(113, 104, 183, 0.1);
  }
}
@media (min-width: 1200px) {
  .btn--header {
    padding: 0.8em 1.5rem;
  }
}
.language__trigger {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .language__trigger:after {
    right: -30px !important;
    width: 18px !important;
    height: 16px !important;
    top: 55% !important;
  }
}
@media (min-width: 992px) {
  .language__trigger {
    width: 45px;
    height: 45px;
  }
}
.language__dropdown {
  -ms-flex-item-align: center;
  align-self: center;
}
@media (max-width: 991px) {
  .language__dropdown {
    position: static !important;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 1rem 0;
    border-top: 1px solid rgba(113, 104, 183, 0.2);
    border-bottom: 1px solid rgba(113, 104, 183, 0.2);
  }
}
.language__text {
  display: block;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  margin-left: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .language__text {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-group {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.social-list--top-right {
  margin-bottom: 0.5rem;
  margin-left: -5px;
}
@media (min-width: 576px) {
  .social-list--top-right {
    margin-left: 0;
    margin-bottom: 0;
    position: absolute;
    top: 25px;
    right: 0;
  }
}
.social-list--small .social-list__item {
  margin-left: 6px;
  margin-right: 0;
}
.social-list--small .social-list__link {
  width: 30px;
  height: 30px;
}
.social-list--small .social-list__link svg {
  font-size: 18px;
  font-size: 1.125rem;
}
.social-list__item {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 2px;
  margin-left: 2px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .social-list__item {
    margin-left: 0;
    margin-right: 6px;
  }
}
.social-list__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.social-list__link svg {
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-size: 1.875rem;
  fill: #7168b7;
}
.social-list__link:focus svg,
.social-list__link:hover svg {
  fill: #ffffff;
}
.social-list__link:focus .hexagon--30,
.social-list__link:focus .hexagon--50,
.social-list__link:hover .hexagon--30,
.social-list__link:hover .hexagon--50 {
  background-color: #7168b7;
}
.hexagon--60 {
  position: relative;
  width: 60px;
  height: 34.64px;
  background-color: #39345c;
}
.hexagon--60:before,
.hexagon--60:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.hexagon--60:before {
  bottom: 100%;
  border-bottom: 17.32px solid #39345c;
}
.hexagon--60:after {
  top: 100%;
  width: 0;
  border-top: 17.32px solid #39345c;
}
.hexagon--50 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 28.87px;
  border-left: solid 1px #7168b7;
  border-right: solid 1px #7168b7;
}
.hexagon--50:before,
.hexagon--50:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 35.36px;
  height: 35.36px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 6.3223px;
}
.hexagon--50:before {
  top: -17.6777px;
  border-top: solid 1.4142px #7168b7;
  border-right: solid 1.4142px #7168b7;
}
.hexagon--50:after {
  bottom: -17.6777px;
  border-bottom: solid 1.4142px #7168b7;
  border-left: solid 1.4142px #7168b7;
}
.hexagon--30 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30px;
  height: 17.32px;
  border-left: solid 1px #7168b7;
  border-right: solid 1px #7168b7;
}
.hexagon--30:before,
.hexagon--30:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 21.21px;
  height: 21.21px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 3.3934px;
}
.hexagon--30:before {
  top: -10.6066px;
  border-top: solid 1.4142px #7168b7;
  border-right: solid 1.4142px #7168b7;
}
.hexagon--30:after {
  bottom: -10.6066px;
  border-bottom: solid 1.4142px #7168b7;
  border-left: solid 1.4142px #7168b7;
}
.article__item {
  margin-bottom: 1rem;
}
.article__item--row {
  margin-bottom: 0;
}
.article__item--row:last-child .article__content {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.article__item--row .article__content {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: visible;
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(113, 104, 183, 0.1);
}
@media (min-width: 576px) {
  .article__item--row .article__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.article__item--row .article__content:focus,
.article__item--row .article__content:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
@media (max-width: 575px) {
  .article__item--row .article__image-block {
    margin: 0 -15px;
  }
}
@media (min-width: 576px) {
  .article__item--row .article__image-block,
  .article__item--row .article__text-block {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
.article__item--row .article__text-block {
  text-align: left;
  padding: 2rem 1.2rem 0;
}
@media (min-width: 576px) {
  .article__item--row .article__text-block {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 3.125rem;
  }
}
.article__content {
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  -webkit-transition: -webkit-box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.article__content:focus,
.article__content:hover {
  -webkit-box-shadow: 0px 15px 25px rgba(113, 104, 183, 0.5);
  box-shadow: 0px 15px 25px rgba(113, 104, 183, 0.5);
}
.article__content:focus .article__title,
.article__content:hover .article__title {
  color: #7168b7;
}
.article__content:focus img,
.article__content:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.article__content:focus .a-link__icon svg,
.article__content:hover .a-link__icon svg {
  fill: #7168b7;
}
.article__content:focus .a-link__text,
.article__content:hover .a-link__text {
  color: #7168b7;
}
.article__image-block {
  display: block;
  position: relative;
  overflow: hidden;
}
.article__image-block img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  will-change: transform;
}
.article__text-block {
  text-align: center;
  padding: 2.5rem 2rem 2.5rem;
}
.article-list {
  margin-bottom: 0.5rem;
}
.article-list__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.3rem;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  font-weight: 400;
  border-right: 1px solid #39345c;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
}
.article-list__item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.article-list__item a:hover {
  color: #7168b7;
}
.box {
  position: relative;
  background-color: #ffffff;
}
.box--shadow {
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
.box--purple {
  background-color: #39345c;
}
.box--purple-01 {
  background: rgba(113, 104, 183, 0.1);
}
.box--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.box--height-130 {
  height: 130px;
}
.box--border {
  border: 1px solid #000000;
}
.box--size-2-2-2 {
  padding: 2rem 2rem 3rem;
}
@media (min-width: 771px) {
  .box--size-2-2-2 {
    padding: 2rem 2rem 2rem;
  }
}
.box--size-4-1-3 {
  padding: 4rem 1rem 3rem;
}
.box--size-6-1-2 {
  padding: 4rem 1rem 2rem;
}
@media (min-width: 771px) {
  .box--size-6-1-2 {
    padding: 6rem 1rem 2rem;
  }
}
.box--40 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.box--tools {
  padding: 2rem 2rem;
  height: 130px;
}
@media (max-width: 770px) {
  .box--sm-offset {
    margin: 0 -6px;
  }
}
@media (max-width: 770px) {
  .box--sm-offset-classic {
    margin: 0 -15px;
  }
}
@media (max-width: 770px) {
  .box--sm-offset-ext {
    margin: 0 -30px;
  }
}
.modal__overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: white;
  -webkit-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.modal__overlay.is-active {
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
.submenu-is-open .modal__overlay--purple {
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
.modal__overlay--purple {
  z-index: 6;
  background-color: rgba(57, 52, 92, 0.5);
}
.modal {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: auto;
  height: 0;
  padding: 3rem 0 2rem;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
@media (min-width: 771px) {
  .modal {
    padding: 6rem 0 4rem;
  }
}
.modal.is-active {
  visibility: visible;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.modal.is-active .modal__box {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal.modal__hidden .modal__close,
.modal.modal__hidden .modal__scroll {
  display: none;
}
.modal--purple {
  background-color: #39345c;
}
.modal--purple .modal__body {
  background-color: transparent;
}
.modal__scroll {
  margin: auto 1rem;
}
.modal__box {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .modal__box {
    width: 600px;
  }
}
.modal__box--medium {
  width: 100%;
}
@media (min-width: 1200px) {
  .modal__box--medium {
    width: 1000px;
  }
}
.modal__close {
  position: absolute;
  z-index: 99;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal__close svg {
  fill: #ffffff;
  font-size: 30px;
  font-size: 1.875rem;
}
.modal__close:focus,
.modal__close:hover {
  color: #ffffff;
}
.modal__close--purple svg {
  fill: #39345c;
}
.modal__close--purple:focus,
.modal__close--purple:hover {
  color: #39345c;
}
.modal__body {
  padding: 2rem 1rem 2rem;
}
.modal__body--medium {
  padding: 2rem 0 0;
}
@media (min-width: 771px) {
  .modal__body--medium {
    padding: 2rem 1rem 2rem;
  }
}
.modal__body--small {
  max-width: 440px;
  margin: 0 auto;
}
@media (min-width: 771px) {
  .modal-image--offset {
    margin-top: -100px;
  }
}
@media (max-width: 770px) {
  .modal--person {
    padding-bottom: 0;
  }
}
@media (min-width: 771px) {
  .modal--person:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: -o-linear-gradient(
      346.67deg,
      rgba(113, 104, 183, 0) 31.08%,
      rgba(113, 104, 183, 0.05) 95.31%
    );
    background: linear-gradient(
      103.33deg,
      rgba(113, 104, 183, 0) 31.08%,
      rgba(113, 104, 183, 0.05) 95.31%
    );
    width: 60%;
    height: 400px;
    z-index: -1;
  }
}
.breadcrumbs {
  margin-bottom: 0.5rem;
}
.breadcrumb__item {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb__item:last-child .breadcrumb__link:after {
  content: none;
}
.breadcrumb__link {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  color: #39345c;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 0.4rem;
  margin-left: 0.4rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.breadcrumb__link:focus,
.breadcrumb__link:hover {
  color: #7168b7;
}
.breadcrumb__link:after {
  content: "/";
  position: absolute;
  right: -12px;
  top: 1px;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  color: #000000;
}
.file-upload__input {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
}
.file-upload__input + .file-upload__label {
  display: inline-block;
  overflow: hidden;
  margin-bottom: 0;
  cursor: pointer;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.file-upload-label {
  display: block;
  padding-top: 22px !important;
}
.file-upload__output {
  display: block;
  margin-top: 10px;
  line-height: 1;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
}
.file-upload__icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  cursor: pointer;
  vertical-align: middle;
  top: -2px;
}
.file-upload__icon:before,
.file-upload__icon:after {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: #000;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -1px;
}
.file-upload__icon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.file-upload__icon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion__item {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #000000;
}
.accordion__item.is-active > .accordion__trigger {
  -webkit-transition: none 400ms "ease-out";
  -o-transition: none 400ms "ease-out";
  transition: none 400ms "ease-out";
}
.accordion__item.is-active > .accordion__trigger:after {
  background-image: url("fonts/chevron-up.svg");
}
.accordion__item.is-active > .accordion__content {
  visibility: visible;
  overflow: visible;
  width: auto;
  height: auto;
  padding: 1rem 4rem 1rem 1rem;
  opacity: 1;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
.accordion__trigger {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding: 1rem 4rem 1rem 1rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  color: #000000;
  -webkit-transition: none 400ms "ease-out";
  -o-transition: none 400ms "ease-out";
  transition: none 400ms "ease-out";
  font-size: 20px;
  font-size: 1.25rem;
}
.accordion__trigger:after {
  content: "" !important;
  width: 28px;
  height: 19px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("fonts/chevron-down.svg");
}
.accordion__content {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  border-top: 0;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
@media (min-width: 771px) {
  .accordion--sm {
    display: none;
  }
}
@media (max-width: 770px) {
  .accordion-group--sm {
    margin: 0;
    margin-bottom: 3rem;
  }
  .accordion-group--sm .accordion__item--border-top {
    border-top: 1px solid #7168b7;
  }
  .accordion-group--sm .accordion__item--sm {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #7168b7;
    padding: 0;
    margin-bottom: 0;
  }
  .accordion-group--sm
    .accordion__item--sm.is-active
    > .accordion__trigger--sm {
    -webkit-transition: none 400ms "ease-out";
    -o-transition: none 400ms "ease-out";
    transition: none 400ms "ease-out";
  }
  .accordion-group--sm
    .accordion__item--sm.is-active
    > .accordion__trigger--sm:after {
    background-image: url("fonts/chevron-up-purple-light.svg");
  }
  .accordion-group--sm
    .accordion__item--sm.is-active
    > .accordion__content--sm {
    visibility: visible;
    overflow: visible;
    width: auto;
    height: auto;
    padding: 0.5rem 0 1rem 0;
    opacity: 1;
    -webkit-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  }
  .accordion-group--sm .accordion__trigger--sm {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding: 1.2rem 4rem 1.2rem 0;
    cursor: pointer;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .accordion-group--sm .accordion__trigger--sm:after {
    content: "" !important;
    width: 18px;
    height: 19px;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("fonts/chevron-down-purple-light.svg");
  }
  .accordion-group--sm .accordion__content--sm {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    border-top: 0;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}
.load-more.is-last .load-more {
  height: auto;
}
.load-more.is-last .load-more__button {
  display: none;
}
.load-more.is-disabled .load-more__button {
  display: none;
}
.load-more__spinner {
  z-index: 1;
  display: none;
}
.load-more__spinner.is-active {
  display: inline-block;
}
.load-more__button {
  cursor: pointer;
}
.dropdown {
  position: relative;
}
@media (min-width: 770px) {
  .dropdown:focus .dropdown__content,
  .dropdown:hover .dropdown__content {
    visibility: visible;
    height: auto;
    opacity: 1;
  }
  .dropdown:focus .dropdown__trigger:after,
  .dropdown:hover .dropdown__trigger:after {
    background-image: url("fonts/chevron-up.svg");
  }
}
.dropdown.is-active .dropdown__content {
  visibility: visible;
  height: auto;
  opacity: 1;
}
.dropdown.is-active .dropdown__trigger:after {
  background-image: url("fonts/chevron-up.svg");
}
.dropdown .dropdown__trigger {
  cursor: pointer;
}
.dropdown .dropdown__trigger:after {
  content: "";
  font-size: 16px;
  font-size: 1rem;
  width: 10px;
  height: 8px;
  display: block;
  position: absolute;
  top: 50%;
  right: -3px;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-position: center;
  background-size: cover;
  background-image: url("fonts/chevron-down.svg");
}
.dropdown .dropdown__content {
  position: absolute;
  top: 100%;
  right: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 0;
  opacity: 0;
  background-color: white;
  -webkit-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
@media (max-width: 991px) {
  .dropdown .dropdown__trigger--big::after {
    right: -10px;
    width: 22px;
    height: 20px;
    top: 55%;
  }
}
@media (min-width: 992px) {
  .dropdown .dropdown__trigger--big::after {
    right: 2px;
  }
}
@media (min-width: 1200px) {
  .dropdown .dropdown__trigger--big::after {
    right: 6px;
  }
}
.dropdown--full {
  position: static;
}
.dropdown__content--shadow {
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
@media (min-width: 992px) {
  .dropdown__content--center {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.dropdown .dropdown__content--full {
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .dropdown .dropdown__content--full {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    background-color: #ffffff;
    overflow: auto;
    height: calc(100% - 70px) !important;
    padding: 2rem 0 2rem;
  }
}
.dropdown .dropdown__content--small {
  width: 45px;
}
@media (max-width: 991px) {
  .dropdown .dropdown__content--small {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: auto;
    background-color: #ffffff;
    overflow: auto;
    height: calc(100% - 70px) !important;
    padding: 3rem 0 2rem;
  }
}
@media (min-width: 771px) {
  .dropdown--sm {
    display: none;
  }
}
.dropdown__list {
  text-align: center;
}
@media (min-width: 992px) {
  .dropdown__list {
    text-align: left;
    margin: 0;
  }
}
.dropdown__list--language {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .dropdown__list--language {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .dropdown__list--language .dropdown__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.dropdown__list--language .dropdown__item:last-child .dropdown__link:after {
  display: none;
}
.dropdown__list--language .dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .dropdown__list--language .dropdown__link {
    position: relative;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1rem 2rem;
    width: 100%;
    background-color: rgba(113, 104, 183, 0.05);
    min-height: 70px;
    padding: 1rem 1rem;
    -webkit-transition: background-color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: background-color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: background-color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  }
  .dropdown__list--language .dropdown__link:hover {
    background-color: rgba(113, 104, 183, 0.2);
  }
  .dropdown__list--language .dropdown__link .language__text {
    text-align: left;
    padding-left: 0.9375rem;
    text-transform: none;
  }
}
@media (min-width: 992px) {
  .dropdown__list--language .dropdown__link {
    width: 45px;
    height: 40px;
  }
  .dropdown__list--language .dropdown__link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: calc(100% - 10px);
    height: 1px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(113, 104, 183, 0.2);
  }
}
.dropdown__item {
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .dropdown__item {
    display: block;
  }
}
.dropdown__item.is-active .dropdown__link {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  opacity: 1;
}
.dropdown__link {
  position: relative;
  display: block;
  padding: 0.25rem 0.25rem;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
}
.dropdown__link:focus,
.dropdown__link:hover {
  opacity: 1;
}
.cookies-bar {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  width: calc(100% - 10px);
  padding: 1.5625rem 1.5625rem;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  z-index: 99;
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.cookies-bar.is-active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  bottom: 5px;
  left: 5px;
  right: 5px;
}
@media (min-width: 771px) {
  .cookies-bar.is-active {
    bottom: 30px;
    left: 30px;
  }
}
@media (min-width: 576px) {
  .cookies-bar {
    max-width: 350px;
  }
}
@media (min-width: 771px) {
  .cookies-bar {
    padding: 2.5rem 2.5rem;
  }
}
.cookies-bar a {
  color: #7168b7;
  text-decoration: underline;
}
.hero-section {
  padding: 3.125rem 0 4.375rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-section {
    padding: 9.0625rem 0 13.75rem;
  }
}
.hero-country {
  position: relative;
  width: 400px;
  margin: 0 auto;
  margin-top: -60px;
}
.hero-country-country {
  position: absolute;
  bottom: 90px;
  left: 20px;
  z-index: 3;
}
.hero-country-image {
  z-index: 1;
  position: relative;
}
.hero-country-triangles {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 460px;
  height: 370px;
}
.slider-event {
  position: relative;
  margin: -100px -80px;
}
.event__item {
  padding: 100px 80px;
}
.event__content {
  position: relative;
  padding: 1.875rem 1.875rem 3.125rem;
  -webkit-box-shadow: 0px 10px 80px rgba(113, 104, 183, 0.5);
  box-shadow: 0px 10px 80px rgba(113, 104, 183, 0.5);
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 771px) {
  .event__content {
    margin-bottom: 0;
    padding: 1.875rem 3.125rem 3.125rem;
  }
}
.event__info-block {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
@media (min-width: 771px) {
  .event__info-block {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media (min-width: 771px) {
  .event__image-block {
    position: relative;
    margin-top: -140px;
    right: -20px;
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .event__image-block {
    right: -70px;
  }
}
.event__name {
  color: #ffffff;
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}
.event-list__item {
  display: block;
}
.event-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.event-list__icon {
  position: relative;
  top: 2px;
  width: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}
.event-list__icon svg {
  fill: #ffffff;
  opacity: 0.5;
  font-size: 30px;
  font-size: 1.875rem;
}
.event-list__text {
  padding-left: 0.9375rem;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  word-break: break-all;
  font-size: 16px;
  font-size: 1rem;
}
.event-person__info {
  margin: -60px auto 0;
  max-width: 210px;
}
.event-person__type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.1rem 1rem 0.2rem;
  position: relative;
  z-index: 2;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-left: 15px;
}
.event-person__type:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 0%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  -webkit-transform: translate(-50%, -50%) skewX(-8deg);
  -ms-transform: translate(-50%, -50%) skewX(-8deg);
  transform: translate(-50%, -50%) skewX(-8deg);
  z-index: -1;
}
.event-person__name {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  font-size: 21px;
  font-size: 1.3125rem;
  text-transform: uppercase;
  margin-left: 30px;
}
.event-person__name small {
  display: block;
  text-transform: uppercase;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 300;
  color: #ffffff;
  margin-left: 20px;
  font-size: 36px;
  font-size: 2.25rem;
}
.event-person__web {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 1.5rem 0.8rem;
  position: relative;
  z-index: 2;
}
.event-person__web:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 6.40909px 12.8182px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 6.40909px 12.8182px rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(-50%, -50%) skewX(-8deg);
  -ms-transform: translate(-50%, -50%) skewX(-8deg);
  transform: translate(-50%, -50%) skewX(-8deg);
  z-index: -1;
}
.newsletter__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .newsletter__content {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
}
.newsletter__icon {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 1.875rem;
}
@media (min-width: 576px) {
  .newsletter__icon {
    width: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    margin-bottom: 0;
  }
}
.newsletter__icon svg {
  font-size: 70px;
  font-size: 4.375rem;
}
.newsletter__icon--ext {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 1.875rem;
}
@media (min-width: 576px) {
  .newsletter__icon--ext {
    width: 90px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    margin-bottom: 0;
  }
}
.newsletter__icon--ext svg {
  font-size: 70px;
  font-size: 4.375rem;
}
.newsletter__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.newsletter__text {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
@media (min-width: 576px) {
  .newsletter__text {
    padding-left: 2.5rem;
  }
}
@media (min-width: 772px) and (max-width: 992px) {
  .newsletter__text--ext .beta {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (min-width: 577px) and (max-width: 771px) {
  .newsletter__text--ext .beta {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (max-width: 575px) {
  .newsletter__text--ext {
    margin: 0 -5px;
  }
  .newsletter__text--ext .beta {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.country-list--box .country-list__item {
  margin-bottom: 0.625rem;
}
.country-list--box .country-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  min-height: 50px;
  padding: 0.3rem 0.6rem;
  padding-right: 0.4rem;
  -webkit-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.country-list--box .country-list__link:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(113, 104, 183, 0.2);
}
.country-list--box .country-list__text {
  color: #39345c;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 770px) {
  .country-list--offset {
    margin: 0 -15px;
  }
}
@media (max-width: 770px) {
  .country-list--two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .country-list--two .country-list__item {
    display: inline-block;
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 0.9375rem;
  }
}
.country-list__item {
  display: block;
  margin-bottom: 0.3125rem;
}
.country-list__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.2rem;
}
.country-list__icon {
  width: 25px;
  max-width: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
  height: 25px;
  border-radius: 100%;
  overflow: hidden;
}
.country-list__icon svg {
  font-size: 25px;
  font-size: 1.5625rem;
}
.country-list__icon svg.icon-croatia,
.country-list__icon svg.icon-slovakia,
.country-list__icon svg.icon-austria,
.country-list__icon svg.icon-ukraine,
.country-list__icon svg.icon-greece,
.country-list__icon svg.icon-holland,
.country-list__icon svg.icon-bulgaria {
  position: relative;
  top: -1px;
  font-size: 26px;
  font-size: 1.625rem;
}
.country-list__icon svg.icon-germany,
.country-list__icon svg.icon-hungary,
.country-list__icon svg.icon-austria {
  position: relative;
  top: -2px;
  font-size: 28px;
  font-size: 1.75rem;
}
.country-list__icon--border {
  border: 1px solid #e2e2e2;
}
.country-list__icon--shadow {
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
@media (min-width: 576px) {
  .country-list__icon--big {
    width: 100px;
    max-width: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    height: 100px;
  }
  .country-list__icon--big svg {
    font-size: 100px;
    font-size: 6.25rem;
  }
  .country-list__icon--big svg.icon-crotia,
  .country-list__icon--big svg.icon-slovakia,
  .country-list__icon--big svg.icon-austria,
  .country-list__icon--big svg.icon-ukraine,
  .country-list__icon--big svg.icon-croatia,
  .country-list__icon--big svg.icon-greece,
  .country-list__icon--big svg.icon-holland,
  .country-list__icon--big svg.icon-bulgaria {
    position: relative;
    top: -1px;
    font-size: 102px;
    font-size: 6.375rem;
  }
  .country-list__icon--big svg.icon-germany,
  .country-list__icon--big svg.icon-hungary,
  .country-list__icon--big svg.icon-austria {
    position: relative;
    top: -1px;
    font-size: 102px;
    font-size: 6.375rem;
  }
}
.country-list__text {
  margin-left: 0.9375rem;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
.country-list__number {
  position: absolute;
  top: 0;
  right: 3px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #39345c;
  opacity: 0.5;
}
.contact-list__item {
  display: block;
  margin-bottom: 0.3125rem;
}
.contact-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.2rem;
}
.contact-list__icon {
  width: 25px;
  max-width: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}
.contact-list__icon svg {
  color: #7168b7;
  font-size: 24px;
  font-size: 1.5rem;
}
.contact-list__text {
  margin-left: 0.625rem;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media (max-width: 575px) {
  .client-group {
    margin: 0 10px !important;
  }
}
.client__item {
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .client__item {
    margin-bottom: 1.25rem;
    width: calc(100% / 8);
    max-width: calc(100% / 8);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 8);
    flex: 0 0 calc(100% / 8);
  }
}
.client__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset 0 0 0 1px rgba(113, 104, 183, 0.2);
  box-shadow: inset 0 0 0 1px rgba(113, 104, 183, 0.2);
  min-height: 130px;
  padding: 1rem 0.6rem;
  -webkit-transition: border 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: border 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: border 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.client__content:hover:before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
}
.client__content:hover:after {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 0.35s cubic-bezier(0.5, 0.7, 0.4, 1);
}
.client__content:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.client__content img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  will-change: transform;
}
.client__content:before,
.client__content:after {
  content: "";
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.client__content:after {
  border-left: 1px solid #7168b7;
  border-right: 1px solid #7168b7;
  -webkit-transform: scale3d(1, 0, 1);
  transform: scale3d(1, 0, 1);
}
.client__content:before {
  border-top: 1px solid #7168b7;
  border-bottom: 1px solid #7168b7;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}
.case__item {
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(113, 104, 183, 0.1);
}
@media (min-width: 576px) {
  .case__item {
    padding-bottom: 1.25rem;
  }
}
.case__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.case__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.case__content:focus .case__title,
.case__content:hover .case__title {
  color: #7168b7;
}
.case__content:focus img,
.case__content:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.case__content:focus .a-link__icon svg,
.case__content:hover .a-link__icon svg {
  fill: #7168b7;
}
.case__content:focus .a-link__text,
.case__content:hover .a-link__text {
  color: #7168b7;
}
.case__image-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  height: 170px;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .case__image-block {
    margin-bottom: 0;
    padding: 1.5rem 2rem 1rem;
    width: 230px;
    max-width: 230px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    height: 170px;
  }
}
.case__image-block img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  will-change: transform;
  max-width: 160px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .case__image-block img {
    max-width: 100%;
  }
}
.case__text-block {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  width: 100%;
  padding: 0.5rem 0 0.5rem;
}
@media (min-width: 576px) {
  .case__text-block {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 3.125rem;
  }
}
.case-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #39345c;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .case-info {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 570px;
  }
}
@media (max-width: 991px) {
  .case-info:before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    z-index: -1;
    background-color: #39345c;
  }
}
@media (min-width: 992px) {
  .case-info {
    width: 600px;
    margin-left: -30px;
  }
}
@media (min-width: 1200px) {
  .case-info {
    width: 700px;
    margin-left: -40px;
  }
}
@media (min-width: 1440px) {
  .case-info {
    height: 570px;
    width: 780px;
    margin-left: -130px;
  }
}
.case-info__left-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding: 4rem 1rem 3rem;
}
@media (min-width: 576px) {
  .case-info__left-panel {
    padding: 0 1rem;
  }
}
.case-info__right-panel {
  position: relative;
  height: 290px;
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 576px) {
  .case-info__right-panel {
    height: 100%;
    width: 50%;
    margin-left: 0;
    margin-right: -15px;
  }
}
@media (min-width: 772px) and (max-width: 992px) {
  .case-info__right-panel {
    width: 50%;
    margin-right: calc(((100vw - 700px) / 2) * -1);
  }
}
@media (min-width: 992px) {
  .case-info__right-panel {
    margin-right: 0;
    width: 300px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
}
@media (min-width: 1200px) {
  .case-info__right-panel {
    width: 340px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 340px;
    flex: 0 0 340px;
  }
}
.case-info__img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: top;
  object-position: top;
}
@media (min-width: 576px) {
  .case-info__img {
    -o-object-position: center;
    object-position: center;
  }
}
.case__right-panel {
  margin-top: -5rem;
}
@media (min-width: 576px) {
  .case__right-panel {
    margin-top: 3.125rem;
  }
}
@media (min-width: 992px) {
  .case__right-panel {
    margin-top: 4.375rem;
  }
}
.case-list__img--orig {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.case-list__item {
  display: block;
  position: relative;
  height: 100%;
}
.case-list__item:hover .case-list__title {
  color: #7168b7;
}
.case-list__item:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.case-list__item:hover .case-list__img--orig {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
}
.case-list__item:hover .case-list__img--purple {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.case-list__item img {
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  will-change: transform;
}
.case-list__item .case-list__title {
  -webkit-transition: color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.shape--main-case {
  position: absolute;
  top: auto;
  right: -40px;
  bottom: -90px;
  z-index: 2;
  width: 233px;
  height: 256px;
  pointer-events: none;
}
@media (min-width: 576px) {
  .shape--main-case {
    bottom: 0;
    right: auto;
    left: -90px;
  }
}
.shape--main-service {
  position: absolute;
  top: auto;
  bottom: -90px;
  z-index: 2;
  width: 415px;
  height: 281px;
  right: -40px;
  pointer-events: none;
}
@media (min-width: 576px) {
  .shape--main-service {
    bottom: -30px;
    left: -130px;
    right: auto;
  }
}
@media (min-width: 771px) {
  .shape--main-service {
    left: -210px;
  }
}
.shape--main-blog {
  position: absolute;
  top: 40px;
  right: -160px;
  width: 564px;
  height: 452px;
  pointer-events: none;
  display: none;
}
@media (min-width: 771px) {
  .shape--main-blog {
    display: block;
  }
}
.shape--company-reference {
  position: absolute;
  top: auto;
  left: -40px;
  bottom: -50px;
  z-index: 2;
  width: 191px;
  height: 224px;
  pointer-events: none;
}
@media (min-width: 771px) {
  .shape--company-reference {
    left: -40px;
  }
}
.shape--quote {
  position: absolute;
  top: auto;
  left: -20px;
  bottom: -70px;
  z-index: 2;
  width: 191px;
  height: 224px;
  pointer-events: none;
}
@media (min-width: 771px) {
  .shape--quote {
    left: -60px;
  }
}
.shape--services-types {
  position: absolute;
  left: -135px;
  top: -20px;
  z-index: 2;
  width: 291px;
  height: 272px;
  pointer-events: none;
}
@media (min-width: 771px) {
  .shape--services-types {
    top: 0;
    left: -70px;
  }
}
.service-offer__item {
  margin-bottom: 0.625rem;
}
.service-offer__item--img-absolute {
  margin-bottom: 2.8125rem;
}
@media (max-width: 991px) {
  .service-offer__item--img-absolute:nth-child(2n + 1):nth-last-child(-n + 2),
  .service-offer__item--img-absolute:nth-child(2n + 1):nth-last-child(-n + 2)
    ~ .service-offer__item--img-absolute {
    margin-bottom: 0;
  }
}
.service-offer__item--img-absolute .service-offer__img {
  position: absolute;
  top: -35px;
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 576px) {
  .service-offer__item--img-absolute .service-offer__img {
    left: 30px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.service-offer__item--img-absolute .service-offer__img img {
  width: 100%;
}
.service-offer__item--img-absolute .service-offer__content {
  padding: 2rem 1rem 1rem;
  height: 100%;
}
.service-offer__item--img-absolute .service-offer__text {
  padding-left: 0;
  text-align: center;
}
@media (min-width: 576px) {
  .service-offer__item--img-absolute .service-offer__text {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .service-offer__item--four {
    width: 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}
.service-offer__item--img-small .service-offer__img {
  position: absolute;
  top: -25px;
  width: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 576px) {
  .service-offer__item--img-small .service-offer__img {
    left: 1rem;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.service-offer__item--img-small .service-offer__img img {
  width: 100%;
}
.service-offer__item--img-small .service-offer__content {
  padding: 1rem 1.5rem 0.6rem;
  padding-right: 1rem;
}
.service-offer__item--purple-light .service-offer__content {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: rgba(113, 104, 183, 0.05);
  min-height: 70px;
  padding: 1rem 1rem;
  -webkit-transition: background-color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: background-color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: background-color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.service-offer__item--purple-light .service-offer__content:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: rgba(113, 104, 183, 0.2);
}
.service-offer__item--purple-light .service-offer__text {
  text-align: left;
  padding-left: 0.9375rem;
}
@media (min-width: 1200px) {
  .service-offer__item--five {
    width: 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
.service-offer__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  min-height: 100px;
  padding: 1rem 2rem;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  -webkit-transition: -webkit-box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-box-shadow 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.service-offer__content:focus,
.service-offer__content:hover {
  -webkit-box-shadow: 0px 15px 25px rgba(113, 104, 183, 0.5);
  box-shadow: 0px 15px 25px rgba(113, 104, 183, 0.5);
}
.service-offer__icon {
  width: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
}
.service-offer__icon svg {
  font-size: 36px;
  font-size: 2.25rem;
}
.service-offer__img {
  width: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
}
.service-offer__text {
  padding-left: 1.875rem;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  line-height: 1.3;
  font-family: "Roboto Slab", Arial, sans-serif;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
.service-offer__text small {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
}
.contact-us-person--our-team {
  padding-bottom: 3.125rem;
}
@media (min-width: 771px) {
  .contact-us-person--our-team {
    padding-bottom: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.contact-us-person__item {
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(113, 104, 183, 0.2);
}
@media (min-width: 576px) {
  .contact-us-person__item {
    margin-bottom: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.contact-us-person__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 772px) and (max-width: 992px) {
  .contact-us-person__item--contact .contact-us-person__text-block {
    padding-left: 1.2rem;
  }
}
.contact-us-person__item--our-team {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .contact-us-person__item--our-team {
    border-bottom: 0;
  }
}
@media (min-width: 771px) {
  .contact-us-person__item--our-team {
    padding-top: 3.125rem;
    width: 33.33%;
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    border-right: 1px solid rgba(113, 104, 183, 0.2);
  }
  .contact-us-person__item--our-team:nth-child(3n + 3) {
    border-right: 0;
  }
  .contact-us-person__item--our-team:nth-child(3n + 1):nth-last-child(-n + 3),
  .contact-us-person__item--our-team:nth-child(3n + 1):nth-last-child(-n + 3)
    ~ .contact-us-person__item--our-team {
    border-bottom: 0;
    padding-bottom: 3.125rem;
  }
}
.contact-us-person__item--our-team .a-link--more {
  position: absolute;
  bottom: 20px;
  right: 15px;
  opacity: 0;
}
@media (min-width: 771px) {
  .contact-us-person__item--our-team .a-link--more {
    bottom: 15px;
  }
}
.contact-us-person__item--our-team .contact-us-person__content {
  position: static;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
.contact-us-person__item--our-team .contact-us-person__content img {
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  will-change: transform;
}
.contact-us-person__item--our-team
  .contact-us-person__content:hover
  .contact-us-person__name {
  color: #7168b7;
}
.contact-us-person__item--our-team
  .contact-us-person__content:hover
  .contact-us-person__img--orig {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
}
.contact-us-person__item--our-team
  .contact-us-person__content:hover
  .contact-us-person__img--purple {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.contact-us-person__item--our-team .contact-us-person__content:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.contact-us-person__item--our-team
  .contact-us-person__content:hover
  .a-link--more {
  opacity: 1;
}
.contact-us-person__item--our-team
  .contact-us-person__content:hover
  .a-link--more
  .a-link--hover-underline:after {
  width: 100%;
}
.contact-us-person__item--our-team .contact-us-person__name {
  padding-right: 0;
}
.contact-us-person__item--our-team .contact-us-person__image-block {
  width: 140px;
  max-width: 140px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 140px;
  flex: 0 0 140px;
  margin: 0 auto 1.5rem;
  height: 203px;
}
.contact-us-person__item--our-team .contact-us-person__text-block {
  position: static;
  padding-left: 0;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding-top: 0;
}
@media (max-width: 770px) {
  .contact-us-person__item--our-team .contact-us-person__text-block {
    padding-top: 0;
  }
}
.contact-us-person__img--orig {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.contact-us-person__item--side {
  cursor: pointer;
  margin-bottom: 0;
  border-bottom: 0;
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.contact-us-person__item--side .contact-us-person__content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
.contact-us-person__item--side .contact-us-person__name {
  padding-right: 0;
}
.contact-us-person__item--side .contact-us-person__image-block {
  width: 140px;
  max-width: 140px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 140px;
  flex: 0 0 140px;
  margin: 0 auto 1.5rem;
}
.contact-us-person__item--side .contact-us-person__text-block {
  padding-left: 0;
  padding-top: 0;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.contact-us-person__item--white .contact-us-person__position {
  color: #7168b7;
}
.contact-us-person__item--white .contact-us-person-language__text,
.contact-us-person__item--white .contact-us-person__link,
.contact-us-person__item--white .contact-us-person__name {
  color: #ffffff;
}
.contact-us-person__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact-us-person__image-block {
  position: relative;
  width: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
}
@media (min-width: 576px) {
  .contact-us-person__image-block {
    width: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }
}
.contact-us-person__flag {
  position: absolute;
  bottom: -12px;
  left: 55%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
.contact-us-person__flag img {
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
  filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
}
.contact-us-person__text-block {
  position: relative;
  padding-left: 2.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 576px) {
  .contact-us-person__text-block {
    padding-top: 1.875rem;
    padding-left: 2.5rem;
  }
}
.contact-us-person__name {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
  font-size: 1.25rem;
  padding-right: 85px;
  margin-bottom: 0.2rem;
  color: #39345c;
}
.contact-us-person__position {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #39345c;
}
.contact-us-person__link {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: #7168b7;
}
.contact-us-person-language {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3rem 0.7rem;
  min-height: 25px;
  background: rgba(113, 104, 183, 0.2);
  margin-right: 0.5rem;
  margin-bottom: 0.625rem;
}
.contact-us-person-language:last-child {
  margin-right: 0;
}
.contact-us-person-language__icon {
  width: 20px;
  max-width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
}
.contact-us-person-language__icon svg {
  font-size: 20px;
  font-size: 1.25rem;
}
.contact-us-person-language__text {
  margin-left: 0.5rem;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  color: #39345c;
  font-size: 13px;
  font-size: 0.8125rem;
}
.company-reference__image {
  position: relative;
}
@media (max-width: 770px) {
  .company-reference__image {
    margin: 0 -15px;
  }
}
.company-reference__logo {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 90px;
}
.company-reference__quote {
  position: absolute;
  bottom: -35px;
  left: 10px;
  z-index: 2;
}
.cooperation__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
}
.img--ebook {
  position: relative;
  margin-top: -100px;
  text-align: center;
  padding-left: 30px;
}
@media (min-width: 771px) {
  .img--ebook {
    padding-left: 0;
    right: auto;
    margin-right: 0;
    margin-top: 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    transform: translateY(-55%);
  }
}
@media (min-width: 772px) and (max-width: 992px) {
  .img--ebook {
    width: 420px;
    max-width: none;
    margin-left: -10px;
    margin-top: -50px;
  }
}
.about-country {
  margin-top: 5rem;
}
@media (min-width: 771px) {
  .about-country {
    margin-top: 0;
  }
}
.about-country__triangles {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 327px;
  height: 262px;
}
.about-country__question {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -80%);
  -ms-transform: translate(-50%, -80%);
  transform: translate(-50%, -80%);
  width: 141px;
  height: 221px;
}
.about-country-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
@media (min-width: 576px) {
  .about-country-list {
    text-align: left;
  }
}
@media (min-width: 771px) {
  .about-country-list {
    margin: 0 -15px;
  }
}
.about-country-list--row {
  margin-left: -15px;
  text-align: left;
}
@media (min-width: 771px) {
  .about-country-list--row {
    margin-left: 0;
  }
}
.about-country-list--row .about-country-list__icon {
  width: 60px;
  position: relative;
  top: 5px;
}
.about-country-list--row .about-country-list__item {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 1.5625rem;
}
.about-country-list--row .about-country-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 771px) {
  .about-country-list--full .about-country-list__text {
    padding-left: 0;
  }
  .about-country-list--full .about-country-list__item {
    display: block;
    margin-bottom: 3rem;
  }
  .about-country-list--full .about-country-list__icon {
    display: block;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 0.625rem;
    height: 60px;
  }
}
.about-country-list--column .about-country-list__item {
  width: 33.33%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  margin-bottom: 2.5rem;
}
@media (max-width: 575px) {
  .about-country-list--column .about-country-list__item {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 3.125rem;
  }
  .about-country-list--column .about-country-list__item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}
@media (min-width: 577px) and (max-width: 771px) {
  .about-country-list--column .about-country-list__item:nth-last-child(-n + 3) {
    margin-bottom: 0;
  }
}
@media (min-width: 772px) and (max-width: 992px) {
  .about-country-list--column .about-country-list__item {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .about-country-list--column .about-country-list__item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .about-country-list--column .about-country-list__item {
    width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
  }
  .about-country-list--column .about-country-list__item:nth-last-child(-n + 3) {
    margin-bottom: 0;
  }
}
.about-country-list--column .about-country-list__icon {
  margin-bottom: -10px;
}
.about-country-list--big .about-country-list__text small {
  margin-top: 0.3rem;
  font-size: 16px;
  font-size: 1rem;
}
.about-country-list--white .about-country-list__text {
  color: #ffffff;
}
.about-country-list__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-country-list__icon {
  width: 100%;
}
@media (min-width: 576px) {
  .about-country-list__icon {
    width: 60px;
    position: relative;
    top: 5px;
  }
}
.about-country-list__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 0.625rem;
  color: #39345c;
  font-weight: 700;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}
.about-country-list__text small {
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
}
.flag {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
}
.flag__item {
  display: block;
  width: 6px;
  height: 33.33%;
}
.flag--france .flag__item:nth-child(1) {
  background-color: #042894;
}
.flag--france .flag__item:nth-child(2) {
  background-color: #f2f2f2;
}
.flag--france .flag__item:nth-child(3) {
  background-color: #e94038;
}
.flag--denmark .flag__item:nth-child(1) {
  height: 40%;
  background-color: #ce3837;
}
.flag--denmark .flag__item:nth-child(2) {
  height: 20%;
  background-color: #f2f2f2;
}
.flag--denmark .flag__item:nth-child(3) {
  height: 40%;
  background-color: #ce3837;
}
.flag--poland .flag__item:nth-child(1) {
  height: 50%;
  background-color: #f2f2f2;
}
.flag--poland .flag__item:nth-child(2) {
  height: 50%;
  background-color: #e94139;
}
.flag--germany .flag__item:nth-child(1) {
  background-color: #000000;
}
.flag--germany .flag__item:nth-child(2) {
  background-color: #d73a2e;
}
.flag--germany .flag__item:nth-child(3) {
  background-color: #eccf2e;
}
.flag--austria .flag__item:nth-child(1) {
  background-color: #e94038;
}
.flag--austria .flag__item:nth-child(2) {
  background-color: #f2f2f2;
}
.flag--austria .flag__item:nth-child(3) {
  background-color: #e94038;
}
.flag--italy .flag__item:nth-child(1) {
  background-color: #58ab49;
}
.flag--italy .flag__item:nth-child(2) {
  background-color: #f2f2f2;
}
.flag--italy .flag__item:nth-child(3) {
  background-color: #b42f2e;
}
.flag--slovakia .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--slovakia .flag__item:nth-child(2) {
  background-color: #24319c;
}
.flag--slovakia .flag__item:nth-child(3) {
  background-color: #b42f2e;
}
.flag--czech-republic .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--czech-republic .flag__item:nth-child(2) {
  background-color: #bc3129;
}
.flag--czech-republic .flag__item:nth-child(3) {
  background-color: #274275;
}
.flag--hungary .flag__item:nth-child(1) {
  background-color: #b42f2e;
}
.flag--hungary .flag__item:nth-child(2) {
  background-color: #f2f2f2;
}
.flag--hungary .flag__item:nth-child(3) {
  background-color: #468c46;
}
.flag--bulgaria .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--bulgaria .flag__item:nth-child(2) {
  background-color: #58ab49;
}
.flag--bulgaria .flag__item:nth-child(3) {
  background-color: #bc3129;
}
.flag--romania .flag__item:nth-child(1) {
  background-color: #1d307f;
}
.flag--romania .flag__item:nth-child(2) {
  background-color: #e9cf2f;
}
.flag--romania .flag__item:nth-child(3) {
  background-color: #b43133;
}
.flag--russia .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--russia .flag__item:nth-child(2) {
  background-color: #3044c5;
}
.flag--russia .flag__item:nth-child(3) {
  background-color: #dc1414;
}
.flag--spain .flag__item:nth-child(1) {
  height: 25%;
  background-color: #db1111;
}
.flag--spain .flag__item:nth-child(2) {
  height: 50%;
  background-color: #ffe603;
}
.flag--spain .flag__item:nth-child(3) {
  height: 25%;
  background-color: #db1111;
}
.flag--ukraine .flag__item:nth-child(1) {
  height: 50%;
  background-color: #77e1fc;
}
.flag--ukraine .flag__item:nth-child(2) {
  height: 50%;
  background-color: #e5e51f;
}
.flag--croatia .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--croatia .flag__item:nth-child(2) {
  background-color: #3044c5;
}
.flag--croatia .flag__item:nth-child(3) {
  background-color: #dc1414;
}
.flag--slovenia .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--slovenia .flag__item:nth-child(2) {
  background-color: #3044c5;
}
.flag--slovenia .flag__item:nth-child(3) {
  background-color: #dc1414;
}
.flag--england .flag__item:nth-child(1) {
  height: 40%;
  background-color: #1a237b;
}
.flag--england .flag__item:nth-child(2) {
  position: relative;
  height: 20%;
  background-color: #bd0034;
}
.flag--england .flag__item:nth-child(2):before,
.flag--england .flag__item:nth-child(2):after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 4px;
  background-color: #ffffff;
}
.flag--england .flag__item:nth-child(2):before {
  top: -4px;
}
.flag--england .flag__item:nth-child(2):after {
  bottom: -4px;
}
.flag--england .flag__item:nth-child(3) {
  height: 40%;
  background-color: #1a237b;
}
@media (max-width: 770px) {
  .block__item--center .block__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
  }
  .block__item--center .block__icon-block {
    margin-left: auto;
    margin-right: auto;
  }
  .block__item--center .block__text-block {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-left: 0;
  }
}
.block__item--bg {
  height: 100%;
}
.block__item--bg .block__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(113, 104, 183, 0.05);
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 150px;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 1rem;
  -webkit-transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.block__item--bg .block__content:hover {
  background-color: rgba(113, 104, 183, 0.1);
}
.block__item--bg .block__icon-block {
  margin: 0 auto;
  margin-bottom: 0.3125rem;
}
.block__item--bg .block__text-block {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding-left: 0;
}
.block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__text-block {
  margin-top: 0.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 1.25rem;
}
.service-hexagon__icon {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200px;
}
@media (min-width: 370px) {
  .service-hexagon__icon {
    width: 220px;
  }
}
.service-map__europe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.header-flag {
  display: inline;
  -webkit-filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
  filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
}
.header-flag svg {
  width: 70px;
  font-size: 32px;
  font-size: 2rem;
}
.header-price--big {
  font-size: 66px;
  font-size: 4.125rem;
}
@media (min-width: 992px) {
  .is-centered {
    top: 60px;
    left: 80px;
  }
}
@media (min-width: 992px) {
  .is-centered-ext {
    top: 0;
    left: 40px;
  }
}
.big-box {
  position: absolute;
  width: 800px;
  height: 800px;
  margin-top: -400px;
  margin-left: -400px;
  top: 40%;
  left: 40%;
  -webkit-animation: bigBoxAnimation 15s linear infinite;
  animation: bigBoxAnimation 15s linear infinite;
  z-index: 1;
}
.big-box--country {
  top: 50%;
  left: 10%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
}
.big-box__item-1,
.big-box__item-2,
.big-box__item-3 {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  -webkit-animation: boxAnimation 2.95s cubic-bezier(0.02, 0.01, 0.31, 1)
    infinite;
  animation: boxAnimation 2.95s cubic-bezier(0.02, 0.01, 0.31, 1) infinite;
}
.big-box__item-2 {
  -webkit-animation: boxAnimation 3.2s cubic-bezier(0.02, 0.01, 0.31, 1)
    infinite;
  animation: boxAnimation 3.2s cubic-bezier(0.02, 0.01, 0.31, 1) infinite;
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
  -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.big-box__item-3 {
  -webkit-animation: boxAnimation 3.5s cubic-bezier(0.02, 0.01, 0.31, 1)
    infinite;
  animation: boxAnimation 3.5s cubic-bezier(0.02, 0.01, 0.31, 1) infinite;
}
.big-box__item-1::after,
.big-box__item-2::after,
.big-box__item-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #33c2bd;
  border-radius: 100%;
  -webkit-animation: spanAnimation 3s cubic-bezier(0.3, 0.27, 0.07, 1.64)
    infinite;
  animation: spanAnimation 3s cubic-bezier(0.3, 0.27, 0.07, 1.64) infinite;
  -webkit-box-shadow: #33c2bd 0 0 20px 2px;
  box-shadow: #33c2bd 0 0 20px 2px;
}
@-webkit-keyframes bigBoxAnimation {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes bigBoxAnimation {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes boxAnimation {
  50% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }
}
@keyframes boxAnimation {
  50% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }
}
@-webkit-keyframes spanAnimation {
  50% {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
}
@keyframes spanAnimation {
  50% {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
}
.number__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(113, 104, 183, 0.1);
  font-size: 66px;
  font-size: 4.125rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  color: #39345c;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.9375rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 771px) {
  .number__item {
    margin-left: 0;
    margin-right: 0;
  }
}
.shop-step-bg {
  position: relative;
  min-height: 360px;
  background-color: #39345c;
}
.shop-step-image-1 {
  position: absolute;
  left: -30px;
  bottom: 0;
}
@media (max-width: 768px) {
  .shop-step-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 200px;
  }
  .shop-step-image-1 {
    position: relative;
    left: -30px;
    bottom: -10px;
    max-width: 95%;
  }
}
.shop-step-image-2 {
  position: absolute;
  bottom: -50px;
  right: 5px;
}
@media (max-width: 550px) {
  .shop-step-image-2 {
    max-width: 95%;
    bottom: -40px;
    right: 0;
  }
}
.shop-step-image-3 {
  width: 110%;
  max-width: 110%;
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}
@media (max-width: 1220px) {
  .shop-step-image-3 {
    bottom: auto;
    top: 50%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .shop-step-image-3 {
    max-width: 100%;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
}
.shop-step-image-4 {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .shop-step-image-4 {
    max-width: 100%;
    position: relative;
    bottom: auto;
    width: 100%;
    left: auto;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    padding: 30px 15px;
  }
}
.shop-step-image-5 {
  position: relative;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
}
@media (max-width: 1220px) {
  .shop-step-image-5 {
    width: 105%;
    max-width: 105%;
  }
}
@media (max-width: 768px) {
  .shop-step-image-5 {
    max-width: 100%;
    width: 100%;
    top: auto;
    left: auto;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
}
@media (min-width: 771px) {
  .shop-process-step-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translate(0) !important;
    -ms-transform: translate(0) !important;
    transform: translate(0) !important;
  }
}
.shop-process-step {
  padding: 0 10px;
  text-align: center;
}
@media (min-width: 771px) {
  .shop-process-step {
    display: block;
    min-width: auto;
    width: 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
@media (max-width: 770px) {
  .slider-group--process {
    margin: 0 -15px;
  }
}
.shop-process-step:last-child .shop-process-step-icon:after {
  display: none;
}
.shop-process-step-icon {
  max-width: 150px;
  background-color: #fff;
  margin: 0 auto;
}
@media (min-width: 771px) {
  .shop-process-step-icon {
    position: relative;
  }
}
.shop-process-step-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  width: 100px;
  border: 1px dashed #7168b7;
  border-radius: 10px;
}
@media (max-width: 770px) {
  .shop-process-step-icon:after {
    top: 60%;
    left: calc(50% + 80px);
    width: 100%;
  }
}
.shop-process-step-content {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 771px) {
  .shop-process-step-content {
    max-width: 150px;
  }
}
.shop-process-step-content img {
  margin-bottom: 0.5rem;
}
.shop-process-number {
  color: #39345c;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 0%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
  opacity: 0.1;
  font-size: 66px;
  font-size: 4.125rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.eshop-hero {
  margin: 3rem -10px 0;
}
@media (min-width: 771px) {
  .eshop-hero {
    margin: 0;
    margin-top: -19rem;
  }
}
.info-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: rgba(113, 104, 183, 0.1);
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: -15px;
  margin-right: -15px;
  padding: 3.125rem 1.5625rem 3.125rem;
}
@media (min-width: 576px) {
  .info-block {
    padding: 3.125rem 2.8125rem 3.125rem;
  }
}
@media (min-width: 771px) {
  .info-block {
    margin-left: 0;
    margin-right: 0;
  }
}
.info-block--highlighted {
  background-color: #39345c;
}
.info-block--highlighted .info-block__text {
  color: #ffffff;
}
.info-block--quote {
  padding: 3.75rem 1.5625rem 3.75rem;
}
@media (min-width: 576px) {
  .info-block--quote {
    padding: 3.75rem 2.8125rem 3.75rem;
  }
}
.info-block--quote--triangles {
  margin-bottom: 5rem;
}
.info-block--list {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1.25rem 1.5625rem 1.25rem;
}
@media (min-width: 576px) {
  .info-block--list {
    padding: 1.25rem 2.8125rem 1.25rem;
  }
}
.info-block--list ul {
  margin-bottom: 0;
}
.info-block__image {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100%;
  overflow: hidden;
}
.info-block__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 2rem;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  color: #33c2bd;
  font-size: 20px;
  font-size: 1.25rem;
}
.info-block__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: solid 1px transparent;
  border-radius: 100%;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#fff),
      to(#fff)
    ),
    -webkit-gradient(linear, left top, right top, from(#7168b7), to(#33c2bd));
  background-image: -o-linear-gradient(#fff, #fff),
    -o-linear-gradient(left, #7168b7 0%, #33c2bd 100%);
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  z-index: -1;
}
.info-block__text {
  font-family: "Roboto", Arial, sans-serif;
  color: #39345c;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.info-block__author {
  color: #39345c;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 1.25rem;
  opacity: 0.5;
}
.info-block__title {
  margin: 0;
  margin-bottom: 1.5rem;
  color: #39345c;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(15%, #7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 15%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 15%, #33c2bd 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  font-size: 20px;
  font-size: 1.25rem;
}
.career-form {
  position: relative;
  padding: 3.125rem 1rem 3rem;
  background-color: #39345c;
}
@media (max-width: 575px) {
  .career-form .alfa {
    font-size: 34px;
    font-size: 2.125rem;
  }
  .career-form p {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 770px) {
  .career-country-list {
    display: block;
    overflow: auto;
    white-space: nowrap;
    margin: 0 -15px;
  }
}
@media (min-width: 771px) {
  .career-country-list {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    left: 0;
  }
}
.career-country-list__item {
  margin-bottom: 0.625rem;
  display: inline-block;
  min-width: 120px;
  padding: 1rem 0.3rem;
}
@media (max-width: 770px) {
  .career-country-list__item:first-child {
    padding-left: 2rem;
  }
  .career-country-list__item:last-child {
    padding-right: 2rem;
  }
}
@media (min-width: 771px) {
  .career-country-list__item {
    display: block;
    min-width: auto;
    padding: 0;
  }
}
.career-country-list__item:last-child {
  margin-bottom: 0;
}
.career-country-list__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  color: #39345c;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  min-height: 60px;
  -webkit-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  padding: 0.5rem 1.5rem;
}
.career-country-list__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  background-color: #7168b7;
  -webkit-transition: width 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: width 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: width 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.career-country-list__link.is-active,
.career-country-list__link:hover {
  color: #7168b7;
}
.career-country-list__link.is-active:after,
.career-country-list__link:hover:after {
  width: 100%;
}
.job__item {
  position: relative;
}
.job__item:hover {
  z-index: 2;
}
.job__item:first-child .job__content {
  padding-top: 0;
}
.job__content {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid rgba(113, 104, 183, 0.2);
}
.job__content:hover .job__title {
  color: #7168b7;
}
.job__country {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}
.job__country .country-list__icon {
  margin-right: 0.5rem;
}
.job__title {
  display: block;
  margin-bottom: 1.25rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  color: #39345c;
  font-size: 20px;
  font-size: 1.25rem;
}
.job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-right: 1.5625rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 576px) {
  .job-list__item {
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.job-list__item:last-child {
  margin-right: 0;
}
.job-list__item--detail {
  position: relative;
  margin-right: 0;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: block;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .job-list__item--detail {
    padding: 0;
  }
  .job-list__item--detail:nth-child(2n + 2) .job-list__content:after {
    display: none;
  }
  .job-list__item--detail .job-list__content:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(113, 104, 183, 0.2);
  }
  .job-list__item--detail:nth-last-child(-n + 2) .job-list__content:before {
    display: none;
  }
}
.job-list__item--detail:last-child .job-list__content:after {
  display: none;
}
.job-list__item--detail .job-list__text {
  width: 100%;
  margin-top: 0.6rem;
  max-width: 170px;
  margin-left: auto;
  margin-right: auto;
}
.job-list__item--detail .job-list__type {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
  width: 100%;
}
.job-list__item--detail .job-list__icon {
  margin-right: 0;
  width: 35px;
  margin-bottom: 0.8rem;
}
.job-list__item--detail .job-list__icon svg {
  font-size: 35px;
  font-size: 2.1875rem;
}
.job-list__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem 0.9375rem;
}
@media (min-width: 771px) {
  .job-list__content {
    padding: 0;
  }
}
.job-list__content:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(113, 104, 183, 0.2);
}
@media (min-width: 771px) {
  .job-list__content:after {
    height: 100px;
  }
}
.job-list__icon {
  height: 30px;
  margin-right: 0.6rem;
}
.job-list__type {
  color: #7168b7;
  margin-right: 0.6rem;
  padding-right: 0.6rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  border-right: 1px solid rgba(113, 104, 183, 0.2);
}
.job-list__text {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #39345c;
  font-size: 16px;
  font-size: 1rem;
}
.backstage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 771px) {
  .backstage__item {
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .backstage__item {
    height: 290px;
  }
}
.timeline {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.2;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(113, 104, 183, 0)),
    color-stop(10%, #7168b7),
    color-stop(90%, #7168b7),
    to(rgba(113, 104, 183, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(113, 104, 183, 0) 0%,
    #7168b7 10%,
    #7168b7 90%,
    rgba(113, 104, 183, 0) 100%
  );
  background: linear-gradient(
    top,
    rgba(113, 104, 183, 0) 0%,
    #7168b7 10%,
    #7168b7 90%,
    rgba(113, 104, 183, 0) 100%
  );
}
.timeline-group {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.timeline-group--2015 {
  padding-bottom: 4rem;
}
.timeline-group--2016 {
  padding-bottom: 2rem;
}
.timeline__year {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  z-index: 2;
  background-color: #39345c;
  border-radius: 25px;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 0.1rem 0.5rem;
  min-width: 40px;
}
.timeline__item {
  position: relative;
  margin-bottom: 1rem;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__info-block {
  position: relative;
  display: inline-block;
  padding: 0.8rem 0.8rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  width: 150px;
}
.timeline__line {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  background-color: #39345c;
  height: 1px;
  z-index: -1;
}
.timeline__dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #39345c;
}
.timeline__item--left {
  margin-left: calc(50% - 75px);
}
.timeline__item--left.timeline__item--short {
  margin-top: -60px;
  right: calc(115px + 75px);
}
@media (min-width: 771px) {
  .timeline__item--left.timeline__item--short {
    right: calc(60px + 75px);
  }
}
@media (min-width: 992px) {
  .timeline__item--left.timeline__item--short {
    right: calc(115px + 75px);
  }
}
.timeline__item--left.timeline__item--short .timeline__line {
  right: -115px;
  width: 115px;
}
@media (min-width: 771px) {
  .timeline__item--left.timeline__item--short .timeline__line {
    right: -60px;
    width: 60px;
  }
}
@media (min-width: 992px) {
  .timeline__item--left.timeline__item--short .timeline__line {
    right: -115px;
    width: 115px;
  }
}
.timeline__item--left.timeline__item--short .timeline__dot {
  right: -118px;
}
@media (min-width: 771px) {
  .timeline__item--left.timeline__item--short .timeline__dot {
    right: -63px;
  }
}
@media (min-width: 992px) {
  .timeline__item--left.timeline__item--short .timeline__dot {
    right: -118px;
  }
}
.timeline__item--left.timeline__item--long {
  margin-top: -30px;
  right: calc(280px + 75px);
}
@media (min-width: 771px) {
  .timeline__item--left.timeline__item--long {
    right: calc(160px + 75px);
  }
}
@media (min-width: 992px) {
  .timeline__item--left.timeline__item--long {
    right: calc(280px + 75px);
  }
}
.timeline__item--left.timeline__item--long .timeline__line {
  right: -280px;
  width: 280px;
}
@media (min-width: 771px) {
  .timeline__item--left.timeline__item--long .timeline__line {
    right: -160px;
    width: 160px;
  }
}
@media (min-width: 992px) {
  .timeline__item--left.timeline__item--long .timeline__line {
    right: -280px;
    width: 280px;
  }
}
.timeline__item--left.timeline__item--long .timeline__dot {
  right: -283px;
}
@media (min-width: 771px) {
  .timeline__item--left.timeline__item--long .timeline__dot {
    right: -163px;
  }
}
@media (min-width: 992px) {
  .timeline__item--left.timeline__item--long .timeline__dot {
    right: -283px;
  }
}
.timeline__item--right {
  margin-left: calc(50% - 75px);
}
.timeline__item--right.timeline__item--short {
  left: calc(115px + 75px);
}
@media (min-width: 771px) {
  .timeline__item--right.timeline__item--short {
    left: calc(60px + 75px);
  }
}
@media (min-width: 992px) {
  .timeline__item--right.timeline__item--short {
    left: calc(115px + 75px);
  }
}
.timeline__item--right.timeline__item--short .timeline__line {
  left: -115px;
  width: 115px;
}
@media (min-width: 771px) {
  .timeline__item--right.timeline__item--short .timeline__line {
    left: -60px;
    width: 60px;
  }
}
@media (min-width: 992px) {
  .timeline__item--right.timeline__item--short .timeline__line {
    left: -115px;
    width: 115px;
  }
}
.timeline__item--right.timeline__item--short .timeline__dot {
  left: -118px;
}
@media (min-width: 771px) {
  .timeline__item--right.timeline__item--short .timeline__dot {
    left: -63px;
  }
}
@media (min-width: 992px) {
  .timeline__item--right.timeline__item--short .timeline__dot {
    left: -118px;
  }
}
.timeline__item--right.timeline__item--long {
  margin-top: -70px;
  left: calc(280px + 75px);
}
@media (min-width: 771px) {
  .timeline__item--right.timeline__item--long {
    left: calc(160px + 75px);
  }
}
@media (min-width: 992px) {
  .timeline__item--right.timeline__item--long {
    left: calc(280px + 75px);
  }
}
.timeline__item--right.timeline__item--long .timeline__line {
  left: -280px;
  width: 280px;
}
@media (min-width: 771px) {
  .timeline__item--right.timeline__item--long .timeline__line {
    left: -160px;
    width: 160px;
  }
}
@media (min-width: 992px) {
  .timeline__item--right.timeline__item--long .timeline__line {
    left: -280px;
    width: 280px;
  }
}
.timeline__item--right.timeline__item--long .timeline__dot {
  left: -283px;
}
@media (min-width: 771px) {
  .timeline__item--right.timeline__item--long .timeline__dot {
    left: -163px;
  }
}
@media (min-width: 992px) {
  .timeline__item--right.timeline__item--long .timeline__dot {
    left: -283px;
  }
}
.timeline__item--2014-2 {
  margin-top: -60px;
}
.timeline__item--2014-3 {
  margin-top: -70px;
}
.timeline__item--2014-4 {
  margin-top: -30px;
}
.timeline__item--2016-1.timeline__item--left.timeline__item--long {
  margin-top: 0;
}
.stats-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 370px) {
  .stats-title {
    height: 360px;
  }
}
@media (min-width: 576px) {
  .stats-title {
    padding: 0;
    height: 580px;
  }
}
.stats-title .alfa {
  position: relative;
  z-index: 3;
}
.stats-hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 497px;
  height: 578px;
}
.stats-lines {
  position: absolute;
  top: 45%;
  left: 42%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 451px;
  height: 569px;
}
.stats-triangles {
  position: absolute;
  top: 54%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 595px;
  height: 521px;
  max-width: none;
  display: none;
}
@media (min-width: 576px) {
  .stats-triangles {
    display: block;
  }
}
.stats__item {
  margin-bottom: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 577px) and (max-width: 771px) {
  .stats__item:nth-child(1):after,
  .stats__item:nth-child(2):after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    height: 1px;
    width: 80%;
    background-color: rgba(113, 104, 183, 0.2);
  }
}
@media (max-width: 575px) {
  .stats__item:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    height: 1px;
    width: 180px;
    background-color: rgba(113, 104, 183, 0.2);
  }
  .stats__item:last-child:after {
    display: none;
  }
}
@media (min-width: 576px) {
  .stats__item {
    border-right: 1px solid rgba(113, 104, 183, 0.2);
  }
  .stats__item:last-child {
    border-right: 0;
  }
}
.contact-form {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  margin: 0 -15px;
}
@media (min-width: 771px) {
  .contact-form {
    margin: 0;
    margin-bottom: -140px;
    z-index: 2;
    position: relative;
  }
}
.contact-gradient {
  padding: 3.125rem 1.25rem;
  position: relative;
  height: 100%;
  background: -o-linear-gradient(
    346.67deg,
    rgba(113, 104, 183, 0) 31.08%,
    rgba(113, 104, 183, 0.1) 95.31%
  );
  background: linear-gradient(
    103.33deg,
    rgba(113, 104, 183, 0) 31.08%,
    rgba(113, 104, 183, 0.1) 95.31%
  );
}
.contact-map path {
  opacity: 0.2;
  fill: #7168b7;
}
.contact-map path.is-active {
  fill: #7168b7;
  opacity: 1;
}
@media (min-width: 992px) {
  .side-panel--faq {
    width: 400px;
    max-width: 400px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
  }
}
@media (min-width: 992px) {
  .main-content--faq {
    width: calc(100% - 400px);
    max-width: calc(100% - 400px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 400px);
    flex: 0 0 calc(100% - 400px);
  }
}
@media (min-width: 992px) {
  .side-panel--blog {
    width: 320px;
    max-width: 320px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
  }
}
@media (max-width: 991px) {
  .side-panel--blog {
    min-height: 70px;
  }
}
@media (min-width: 992px) {
  .main-content--blog {
    width: calc(100% - 320px);
    max-width: calc(100% - 320px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 320px);
    flex: 0 0 calc(100% - 320px);
  }
}
.side-panel.is-active .side__item--popup {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.side-panel.is-animate .side__btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.side-panel.is-fixed .side__btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
@media (max-width: 991px) {
  .side__item--popup {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #ffffff;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .side__item--popup .side__content {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
.side__content {
  background-color: #39345c;
  padding: 4.375rem 1.25rem 1.875rem;
}
.side__content--2-2 {
  padding: 3.125rem 1.25rem 3.125rem;
}
.side__content--3-3 {
  padding: 3.125rem 1.25rem 3.125rem;
}
.side__content--shadow {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
@media (max-width: 770px) {
  .side__item--sm-ofset {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.side-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .side-title--mobile {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .side-title--mobile .side-title__icon {
    margin-bottom: 0.8rem;
  }
  .side-title--mobile .side-title__icon svg {
    fill: #7168b7;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .side-title--mobile .side-title__text {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.side-title__icon {
  width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
}
.side-title__icon svg {
  fill: #7168b7;
  font-size: 20px;
  font-size: 1.25rem;
}
.side-title__text {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding-left: 0.625rem;
  color: #7168b7;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.blog-side-list--ext {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .blog-side-list--ext {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 772px) and (max-width: 992px) {
  .blog-side-list--ext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
  .blog-side-list--ext .blog-side-list__item {
    width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    padding: 0 5px;
  }
}
@media (min-width: 577px) and (max-width: 771px) {
  .blog-side-list--ext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
  .blog-side-list--ext .blog-side-list__item {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 0 5px;
  }
}
.blog-side-list--ext .blog-side-list__item {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0.625rem;
}
@media (min-width: 992px) {
  .blog-side-list--ext .blog-side-list__item {
    margin-bottom: 0.125rem;
  }
}
@media (max-width: 991px) {
  .blog-side-list--ext .blog-side-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 70px;
    padding: 0.5rem 2rem;
    background-color: rgba(113, 104, 183, 0.1);
    font-family: "Roboto Slab", Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    font-size: 1rem;
  }
}
.blog-side-list__item {
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid rgba(113, 104, 183, 0.1);
}
.blog-side-list__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.blog-side-list__link {
  padding: 0.5rem 0;
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #39345c;
}
.blog-side-list__link:hover {
  color: #7168b7;
}
.blog-side-list__title {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  color: rgba(57, 52, 92, 0.5);
  background-color: #ffffff;
  z-index: 2;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .blog-side-list__title {
    padding-right: 0.625rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .blog-side-list__title:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(113, 104, 183, 0.1);
    z-index: -1;
  }
}
.side__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  height: 70px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  cursor: pointer;
}
.side__btn .side-title {
  margin-bottom: 0;
  margin-top: 0;
}
.faq__item {
  margin-bottom: 5rem;
}
.faq__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 771px) {
  .faq__item {
    margin-bottom: 5rem;
  }
  .faq__item:nth-child(2n + 1):nth-last-child(-n + 2),
  .faq__item:nth-child(2n + 1):nth-last-child(-n + 2) ~ .faq__item {
    margin-bottom: 0;
  }
}
.faq-list__link {
  display: block;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  border-top: 1px solid rgba(113, 104, 183, 0.1);
  text-decoration: underline;
  color: #39345c;
}
.faq-list__link:hover {
  color: #7168b7;
}
.faq__hexagon img {
  position: relative;
  z-index: 2;
  top: -5px;
}
.about-group {
  position: relative;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0.6;
}
.about-group .about-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-group .about-mask--1 {
  -webkit-mask-image: url("fonts/about-lines.svg");
  mask-image: url("fonts/about-lines.svg");
}
.about-group .about-mask--2 {
  -webkit-mask-image: url("fonts/about-lines-2.svg");
  mask-image: url("fonts/about-lines-2.svg");
}
.about-group svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog-info__item {
  display: inline-block;
  border-right: 1px solid rgba(113, 104, 183, 0.2);
  margin-right: 0.625rem;
  padding-right: 0.625rem;
  min-width: 120px;
}
@media (min-width: 771px) {
  .blog-info__item {
    min-width: auto;
  }
}
.blog-info__item:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.blog-info__text {
  display: block;
  color: #39345c;
  font-size: 13px;
  font-size: 0.8125rem;
}
.blog-info__text--gray {
  color: rgba(57, 52, 92, 0.5);
}
.blog__quote {
  position: absolute;
  bottom: -45px;
  left: 0;
  z-index: 2;
}
.blog-btn__item--share:not(:hover) .blog-btn__text {
  display: inline-block;
  color: #7168b7;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(15%, #7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 15%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 15%, #33c2bd 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
.blog-btn__item--share .blog-btn__text {
  text-transform: none;
}
.blog-btn__item--share .blog-btn__content svg {
  font-size: 26px;
  font-size: 1.625rem;
  margin-left: 0;
  margin-right: 0.3rem;
}
.blog-btn__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  color: #39345c;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  min-height: 100px;
  -webkit-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  padding: 0.5rem 1.5rem;
  color: #7168b7;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
.blog-btn__content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  background-color: #7168b7;
  -webkit-transition: width 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: width 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: width 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.blog-btn__content:after {
  width: 100%;
}
.blog-btn__content svg {
  margin-left: 0.3rem;
  font-size: 18px;
  font-size: 1.125rem;
  fill: #7168b7;
}
.blog-btn__content:hover {
  background-color: #7168b7;
  color: #ffffff;
}
.blog-btn__content:hover svg {
  fill: #ffffff;
}
.europe-map {
  position: relative;
}
@media (min-width: 576px) {
  .europe-map {
    margin-top: -40px;
  }
}
@media (min-width: 771px) {
  .europe-map {
    width: 800px;
    height: 530px;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .europe-map {
    margin-top: 0;
    position: absolute;
    top: 60%;
    right: -210px;
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
    right: -80px;
  }
}
@media (min-width: 1200px) {
  .europe-map {
    right: 30px;
  }
}
@media (min-width: 1440px) {
  .europe-map {
    right: -80px;
  }
}
@media (min-width: 1600px) {
  .europe-map {
    right: -190px;
  }
}
.europe-map-flag__item {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
@media (max-width: 575px) {
  .europe-map-flag__item img {
    width: 19px;
    height: 20px;
  }
}
.europe-map-flag__item--england {
  top: 40px;
  left: 80px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--england {
    top: 140px;
    left: 135px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--england {
    top: 100px;
    left: 210px;
  }
}
.europe-map-flag__item--france {
  top: 100px;
  left: 95px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--france {
    top: 250px;
    left: 160px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--france {
    top: 250px;
    left: 240px;
  }
}
.europe-map-flag__item--spain {
  top: 140px;
  left: 40px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--spain {
    top: 320px;
    left: 80px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--spain {
    top: 360px;
    left: 110px;
  }
}
.europe-map-flag__item--holland {
  top: 56px;
  left: 114px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--holland {
    top: 166px;
    left: 198px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--holland {
    top: 136px;
    left: 295px;
  }
}
.europe-map-flag__item--germany {
  top: 70px;
  left: 135px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--germany {
    top: 195px;
    left: 235px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--germany {
    top: 180px;
    left: 355px;
  }
}
.europe-map-flag__item--italy {
  top: 145px;
  left: 150px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--italy {
    top: 320px;
    left: 255px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--italy {
    top: 340px;
    left: 370px;
  }
}
.europe-map-flag__item--austria {
  top: 102px;
  left: 155px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--austria {
    top: 247px;
    left: 265px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--austria {
    top: 246px;
    left: 420px;
  }
}
.europe-map-flag__item--czech-republic {
  top: 80px;
  left: 165px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--czech-republic {
    top: 205px;
    left: 285px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--czech-republic {
    top: 200px;
    left: 430px;
  }
}
.europe-map-flag__item--poland {
  top: 65px;
  left: 190px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--poland {
    top: 175px;
    left: 330px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--poland {
    top: 165px;
    left: 480px;
  }
}
.europe-map-flag__item--slovakia {
  top: 90px;
  left: 187px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--slovakia {
    top: 230px;
    left: 325px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--slovakia {
    top: 230px;
    left: 480px;
  }
}
.europe-map-flag__item--hungary {
  top: 108px;
  left: 190px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--hungary {
    top: 256px;
    left: 330px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--hungary {
    top: 265px;
    left: 495px;
  }
}
.europe-map-flag__item--slovinia {
  top: 114px;
  left: 161px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--slovinia {
    top: 270px;
    left: 280px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--slovinia {
    top: 283px;
    left: 416px;
  }
}
.europe-map-flag__item--croatia {
  top: 118px;
  left: 177px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--croatia {
    top: 275px;
    left: 310px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--croatia {
    top: 293px;
    left: 446px;
  }
}
.europe-map-flag__item--ukraine {
  top: 86px;
  left: 248px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--ukraine {
    top: 220px;
    left: 430px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--ukraine {
    top: 210px;
    left: 640px;
  }
}
.europe-map-flag__item--romania {
  top: 120px;
  left: 220px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--romania {
    top: 280px;
    left: 380px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--romania {
    top: 300px;
    left: 560px;
  }
}
.europe-map-flag__item--bulgaria {
  top: 146px;
  left: 220px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--bulgaria {
    top: 320px;
    left: 385px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--bulgaria {
    top: 360px;
    left: 565px;
  }
}
.europe-map-flag__item--greece {
  top: 172px;
  left: 203px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--greece {
    top: 365px;
    left: 355px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--greece {
    top: 425px;
    left: 525px;
  }
}
@media (max-width: 770px) {
  .europe-map-info {
    display: block;
    overflow: auto;
    white-space: nowrap;
    margin: 0 -15px;
  }
}
@media (min-width: 771px) {
  .europe-map-info {
    position: absolute;
    bottom: -30px;
    right: 50px;
  }
}
@media (min-width: 992px) {
  .europe-map-info {
    right: -40px;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .europe-map-info {
    right: 60px;
  }
}
@media (min-width: 771px) {
  .europe-map-info.is-set-left {
    right: auto;
    left: 40px;
  }
}
@media (min-width: 992px) {
  .europe-map-info.is-set-left {
    left: 140px;
  }
}
@media (min-width: 1200px) {
  .europe-map-info.is-set-left {
    left: 80px;
  }
}
@media (min-width: 1440px) {
  .europe-map-info.is-set-left {
    left: 40px;
  }
}
.europe-map-info__item {
  display: block;
  -webkit-transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1),
    transform 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1),
    transform 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1),
    transform 450ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-transform 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
}
@media (max-width: 770px) {
  .europe-map-info__item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: inline-block;
    padding: 1rem 0.3rem 1.5rem;
  }
}
@media (max-width: 770px) and (max-width: 770px) {
  .europe-map-info__item:first-child {
    padding-left: 2rem;
  }
  .europe-map-info__item:last-child {
    padding-right: 2rem;
  }
}
@media (min-width: 771px) {
  .europe-map-info__item {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
  }
}
.europe-map-info__item.is-active {
  visibility: visible;
  opacity: 1;
  width: auto;
  height: auto;
}
@media (min-width: 771px) {
  .europe-map-info__item.is-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.europe-map-info__content {
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
}
@media (max-width: 770px) {
  .europe-map-info__content {
    min-width: 130px;
    background: #f4f2f9;
  }
}
.europe-map-info__header-block {
  position: relative;
  padding: 0.9375rem 0.9375rem;
}
@media (min-width: 771px) {
  .europe-map-info__header-block {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(113, 104, 183, 0.2);
    padding: 0.9375rem 1.875rem;
  }
}
.europe-map-info__header-block img {
  margin-bottom: 0.2rem;
}
@media (min-width: 771px) {
  .europe-map-info__header-block img {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 771px) {
  .europe-map-info__left-panel {
    padding-right: 50px;
  }
}
@media (max-width: 770px) {
  .europe-map-info__left-panel .delta {
    position: relative;
    padding-right: 12px;
  }
  .europe-map-info__left-panel .delta:after {
    content: "";
    font-size: 16px;
    font-size: 1rem;
    width: 10px;
    height: 11px;
    display: block;
    position: absolute;
    top: 55%;
    right: -3px;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-position: center;
    background-image: url("fonts/chevron-right.svg");
  }
}
.europe-map-info__info-block {
  background-color: #ffffff;
  padding: 0.625rem 1.875rem 1.25rem;
  display: none;
}
@media (min-width: 771px) {
  .europe-map-info__info-block {
    display: block;
  }
}
.europe-map-list__item {
  display: block;
}
.europe-map-list__link {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #39345c;
}
.europe-map-list__link:hover {
  color: #7168b7;
}
.europe-map__svg {
  position: relative;
  width: 310px;
  height: 220px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .europe-map__svg {
    width: 540px;
    height: 530px;
  }
}
@media (min-width: 771px) {
  .europe-map__svg {
    width: 100%;
    height: 100%;
  }
}
.europe-map__svg svg {
  width: 100%;
  height: 100%;
}
.path__item {
  cursor: pointer;
}
.path__item path {
  -webkit-transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: opacity 450ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.path__item.is-active path,
.path__item:hover path {
  opacity: 0.4;
}
.video-block {
  position: relative;
}
.video-block video {
  width: 100%;
}
.video-block.is-playing .video-block__icon {
  margin-top: 0;
  top: -30px;
  width: 60px;
  height: 60px;
  margin-left: -30px;
}
.video-block.is-playing .video-block__icon svg {
  font-size: 26px;
  font-size: 1.625rem;
}
@media (min-width: 771px) {
  .video-block.is-playing .video-block__icon {
    margin-top: 0;
    top: -45px;
    width: 90px;
    height: 90px;
    margin-left: -45px;
  }
  .video-block.is-playing .video-block__icon svg {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.video-block.is-playing .video-block__icon.video-block__icon--play {
  display: none;
}
.video-block.is-playing .video-block__icon.video-block__icon--pause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-block__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 0%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
  -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  margin-top: -40px;
  margin-left: -40px;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1),
    -webkit-box-shadow 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
}
.video-block__icon svg {
  fill: #ffffff;
  -webkit-filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
  filter: drop-shadow(0px 10px 15px rgba(113, 104, 183, 0.3));
  font-size: 36px;
  font-size: 2.25rem;
}
@media (min-width: 771px) {
  .video-block__icon svg {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.video-block__icon:hover {
  -webkit-box-shadow: 0px 15px 25px rgba(113, 104, 183, 0.5);
  box-shadow: 0px 15px 25px rgba(113, 104, 183, 0.5);
}
.video-block__icon:hover.video-block__icon--play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-block__icon:hover.video-block__icon--pause {
  display: none;
}
.video-block__icon.video-block__icon--play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-block__icon.video-block__icon--pause {
  display: none;
}
@media (min-width: 771px) {
  .video-block__icon {
    margin-top: -65px;
    margin-left: -65px;
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 575px) {
  .connect__group {
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (min-width: 772px) and (max-width: 992px) {
  .connect__item {
    margin-bottom: 2rem;
  }
  .connect__item:nth-last-child(-n + 3) {
    margin-bottom: 0;
  }
}
@media (min-width: 577px) and (max-width: 771px) {
  .connect__item {
    margin-bottom: 2rem;
  }
  .connect__item:nth-last-child(-n + 3) {
    margin-bottom: 0;
  }
}
.connect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 576px) {
  .connect__content {
    height: 165px;
    border: 1px solid rgba(113, 104, 183, 0.2);
    background: #ffffff;
    -webkit-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: all 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  }
  .connect__content svg {
    -webkit-transition: fill 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: fill 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: fill 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  }
  .connect__content svg .hexagon--50 {
    -webkit-transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: background-color 250ms cubic-bezier(0.5, 0.7, 0.4, 1);
  }
  .connect__content:hover {
    border-color: #ffffff;
    -webkit-box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
    box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  }
  .connect__content:hover svg {
    fill: #ffffff;
  }
  .connect__content:hover .hexagon--50 {
    background-color: #7168b7;
  }
}
@media (min-width: 576px) {
  .connect__icon-block {
    margin-bottom: 1.2rem;
  }
}
.service-triangle {
  z-index: 3;
  position: relative;
}
.support-triangle-purple {
  position: absolute;
  top: 60%;
  left: 82%;
}
.support-triangle-purple-small {
  position: absolute;
  top: 48%;
  left: 88%;
}
.support-triangle-purple-xsmall {
  position: absolute;
  top: 56%;
  left: 92%;
}
.support-triangle-green {
  position: absolute;
  top: 46%;
  left: 19%;
}
.support-triangle-purple-lines {
  position: absolute;
  top: 44%;
  left: 53%;
}
.depo-triangle-green {
  position: absolute;
  top: 50%;
  left: 52%;
}
.depo-triangle-green-small {
  position: absolute;
  top: 57%;
  left: 65%;
}
.depo-triangle-green-xsmall {
  position: absolute;
  top: 47%;
  left: 65%;
}
.depo-triangle-green-02 {
  position: absolute;
  top: 48%;
  left: 73%;
}
.depo-triangle-purple-lines {
  position: absolute;
  top: 17%;
  left: 16%;
}
.translate-triangle-green {
  position: absolute;
  top: 40%;
  left: 57%;
}
.translate-triangle-green-small {
  position: absolute;
  top: 54%;
  left: 55%;
}
.translate-triangle-green-xsmall {
  position: absolute;
  top: 54%;
  left: 64%;
}
.translate-triangle-green-02 {
  position: absolute;
  top: 60%;
  left: 58%;
}
.translate-triangle-purple-lines {
  position: absolute;
  top: 20%;
  left: 16%;
}
.research-triangle-green {
  position: absolute;
  top: 59%;
  left: 60%;
}
.research-triangle-green-small {
  position: absolute;
  top: 46%;
  left: 61%;
}
.research-triangle-green-xsmall {
  position: absolute;
  top: 40%;
  left: 57%;
}
.research-square-purple {
  position: absolute;
  top: 27%;
  left: 24%;
}
.marketing-triangle-green {
  position: absolute;
  top: 52%;
  left: 37%;
}
.marketing-triangle-green-small {
  position: absolute;
  top: 64%;
  left: 35%;
}
.marketing-triangle-green-xsmall {
  position: absolute;
  top: 66%;
  left: 47%;
}
.marketing-triangle-green-02 {
  position: absolute;
  top: 74%;
  left: 41%;
}
.marketing-triangle-purple-lines {
  position: absolute;
  top: 47%;
  left: 1%;
}
.social-triangle-green {
  position: absolute;
  top: 34%;
  left: 82%;
}
.social-triangle-green-small {
  position: absolute;
  top: 45%;
  left: 76%;
}
.social-triangle-green-xsmall {
  position: absolute;
  top: 46%;
  left: 90%;
}
.social-triangle-green-02 {
  position: absolute;
  top: 46%;
  left: 81%;
}
.social-triangle-purple-lines {
  position: absolute;
  top: 37%;
  left: 31%;
}
.social-triangle-purple-02 {
  position: absolute;
  top: 47%;
  left: 1%;
}
.social-triangle-purple {
  position: absolute;
  top: 44%;
  left: 18%;
}
.social-triangle-purple-02-small {
  position: absolute;
  top: 43%;
  left: 25%;
}
.call-triangle-green {
  position: absolute;
  top: 15%;
  left: 54%;
}
.call-triangle-green-small {
  position: absolute;
  top: 24%;
  left: 65%;
}
.call-triangle-green-xsmall {
  position: absolute;
  top: 13%;
  left: 65%;
}
.call-triangle-green-02 {
  position: absolute;
  top: 15%;
  left: 73%;
}
.call-square-green-lines {
  position: absolute;
  top: 57%;
  left: 22%;
}
.dph-triangle-green {
  position: absolute;
  top: 1%;
  left: 58%;
}
.dph-triangle-green-small {
  position: absolute;
  top: 14%;
  left: 56%;
}
.dph-triangle-green-xsmall {
  position: absolute;
  top: 17%;
  left: 69%;
}
.dph-triangle-purple-lines {
  position: absolute;
  top: 49%;
  left: 2%;
}
.account-triangle-green {
  position: absolute;
  top: 16%;
  left: 54%;
}
.account-triangle-green-small {
  position: absolute;
  top: 24%;
  left: 66%;
}
.account-triangle-green-xsmall {
  position: absolute;
  top: 19%;
  left: 70%;
}
.account-square-green-lines {
  position: absolute;
  top: 55%;
  left: 22%;
}
.shop-triangle-green {
  position: absolute;
  top: 6%;
  left: 77%;
}
.shop-triangle-green-small {
  position: absolute;
  top: 24%;
  left: 66%;
}
.shop-triangle-green-xsmall {
  position: absolute;
  top: 25%;
  left: 76%;
}
.shop-triangle-purple-lines {
  position: absolute;
  top: 53%;
  left: 32%;
}
.country-triangle-green {
  position: absolute;
  top: 50%;
  left: 83%;
}
.country-triangle-green-small {
  position: absolute;
  top: 56%;
  left: 75%;
}
.country-triangle-purple-small {
  position: absolute;
  top: 34%;
  left: 90%;
}
.country-triangle-purple-small-1 {
  position: absolute;
  top: 68%;
  left: 98%;
}
.country-triangle-purple-02 {
  position: absolute;
  top: 15%;
  left: 76%;
}
.country-square-purple-lines {
  position: absolute;
  top: 65%;
  left: 86%;
}
.country-triangle-green-shadow {
  position: absolute;
  top: 43%;
  left: 76%;
}

.relative {
  position: relative;
}
.content-loader .loading-post {
  display: block !important;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  left: 50%;
}
.content-loader {
  background-color: rgba(128, 128, 128, 0.2);
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9999999;
}
#divLoading.content-loader {
  position: fixed !important;
}
.loading-spinner {
  display: inline-block;
  border: 6px solid #e6edff;
  border-left-color: rgb(230, 237, 255);
  border-left-color: #7168b7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: donut-spin 1.2s linear infinite;
  animation: donut-spin 1.2s linear infinite;
}
.typography img {
  height: auto;
}
.typography iframe {
  max-width: 100%;
}
.typography .info-block--quote img {
  width: unset;
  height: unset;
  margin: 0;
}
div.info-block__text p,
.typography p.info-block__text {
  font-family: "Roboto", Arial, sans-serif;
  color: #39345c;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.checkbox--white
  .checkbox__input-hidden:checked
  + input[type="hidden"]
  + .checkbox__label
  .checkbox__box:after,
.checkbox--white
  .checkbox__input-hidden:checked
  + .checkbox__label
  .checkbox__box:after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}
.checkbox__input-hidden:checked
  + input[type="hidden"]
  + .checkbox__label
  .checkbox__box:after,
.checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 5px;
  width: 7px;
  height: 13px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.alert {
  padding: 0.5rem;
  margin: 1rem 0;
  border: 1px solid transparent;
}
.alert.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.form__placeholder-textarea .form__label.form__label--white {
  background-color: transparent;
}
.header-flag img {
  vertical-align: baseline;
}
.grecaptcha-badge {
  visibility: hidden;
}
.recaptcha-license-text {
  color: rgba(256, 256, 256, 0.3);
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.recaptcha-license-text a {
  color: rgba(256, 256, 256, 0.6);
}
.flag--slovinia .flag__item:nth-child(1) {
  background-color: #f2f2f2;
}
.flag--slovinia .flag__item:nth-child(2) {
  background-color: #3044c5;
}
.flag--slovinia .flag__item:nth-child(3) {
  background-color: #dc1414;
}
.flag--holland .flag__item:nth-child(1) {
  background-color: #9f1330;
}
.flag--holland .flag__item:nth-child(2) {
  background-color: #ffffff;
}
.flag--holland .flag__item:nth-child(3) {
  background-color: #314588;
}
.flag--croatia .flag__item:nth-child(1) {
  background-color: #dc1414;
}
.flag--croatia .flag__item:nth-child(2) {
  background-color: #f2f2f2;
}
.flag--croatia .flag__item:nth-child(3) {
  background-color: #3044c5;
}
.article__image-block img {
  min-height: 50px;
  height: auto;
}
.backstage .backstage__item {
  height: 400px;
}
@media (min-width: 992px) {
  .main-nav__link {
    height: 90px;
  }
  .header__navigation.is-scrolling .main-nav__link {
    height: 61px;
  }
}
::-moz-selection {
  color: white;
  background: #7268af;
  -webkit-text-fill-color: initial;
  -moz-text-fill-color: initial;
}
::selection {
  color: white;
  background: #7268af;
  -webkit-text-fill-color: initial;
  -moz-text-fill-color: initial;
}
.typography ul li,
.typography ol li {
  margin-bottom: 0.5rem;
}
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  margin-top: 1rem;
}
.country-list__icon img {
  height: 100%;
  width: 100%;
}
.bg-gradient-purple {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(15%, #7168b7),
    to(#33c2bd)
  );
  background: -o-linear-gradient(left, #7168b7 15%, #33c2bd 100%);
  background: linear-gradient(90deg, #7168b7 15%, #33c2bd 100%);
}
.blog-article-link-item .article__title {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.container-extra-large {
  margin: 0 auto;
  padding: 0 15px;
}
.container-extra-large {
  width: 100%;
}
@media (min-width: 771px) {
  .container-extra-large {
    width: 730px;
  }
}
@media (min-width: 992px) {
  .container-extra-large {
    width: 950px;
  }
}
@media (min-width: 1200px) {
  .container-extra-large {
    width: 1140px;
  }
}
@media (min-width: 1640px) {
  .container-extra-large {
    width: 1340px;
  }
}
.typography p,
.typography p + p:not(last-child) {
  margin-bottom: 0.7rem !important;
}
.typography img {
  margin-bottom: 0;
}
.connect__group {
  justify-content: center;
}
.team-member-item {
  display: flex;
  justify-content: center;
  position: relative;
}
.team-section-desktop .team-member-item {
  width: 7.6923%;
}
.team-section-desktop .row:nth-of-type(even) .team-member-item:first-of-type {
  margin-left: 3.84615%;
}
.team-section-mobile .row:nth-of-type(even) .team-member-item:first-of-type {
  margin-left: 7.14285%;
}
.team-section-mobile .team-member-item {
  width: 14.2857%;
}
.team-section-desktop .row {
  margin-top: -10px;
}
.team-section-desktop .row:first-of-type {
  margin-top: 0;
}
.team-section-mobile .row {
  margin-top: -10px;
}
.team-section-mobile .row:first-of-type {
  margin-top: 0;
}
.team-member-item:focus .hover-image,
.team-member-item:hover .hover-image,
.team-member-item .main-image {
  display: block;
}
.team-member-item:focus .main-image,
.team-member-item:hover .main-image,
.team-member-item .hover-image {
  display: none;
}
.team-member-item .hover-image:focus,
.team-member-item .hover-image:hover {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.team-section-mobile .team-member-item img {
  max-width: 100%;
}
.team-member-item .team-member-info {
  visibility: hidden;
  width: 220px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 92px;
}
.team-member-item:hover .team-member-info {
  visibility: visible;
}
.team-member-item .team-member-info::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.tippy-box h4 {
  margin-bottom: 0;
}
.team-member-position {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
}
.tippy-box[data-theme~="white"] {
  background-color: white;
  color: #39345c;
  text-align: center;
  box-shadow: 0px 10px 15px rgba(113, 104, 183, 0.3);
  min-width: 150px;
  border-radius: 0;
  padding: 5px 10px;
}
.tippy-box[data-theme~="white"][data-placement^="top"] > .tippy-arrow::before {
  border-top-color: white;
}
.tippy-box[data-theme~="white"][data-placement^="bottom"]
  > .tippy-arrow::before {
  border-bottom-color: white;
}
.tippy-box[data-theme~="white"][data-placement^="left"] > .tippy-arrow::before {
  border-left-color: white;
}
.tippy-box[data-theme~="white"][data-placement^="right"]
  > .tippy-arrow::before {
  border-right-color: white;
}
.padding-bottom-4 {
  padding-bottom: 4rem;
}
.form__textarea--outline.form__input--white {
  border-color: #fff;
  border-image-source: unset;
}
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background: linear-gradient(90deg, #7168b7 0%, #33c2bd 100%);
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  left: 0px;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.switch-control {
  display: flex;
  align-items: center;
}
.switch + label {
  margin-left: 0.5rem;
  cursor: pointer;
  color: #39345c;
}
.cookies-bar {
  flex-direction: column;
  max-width: 550px;
  align-items: flex-start;
}
.cookies-bar .switch-control {
  margin-bottom: 0.5rem;
}
.btn.btn--text {
  color: #39345c;
  border: none;
  background-color: transparent;
}
.btn.btn--text:hover,
.btn.btn--text:active,
.btn.btn--text:focus {
  color: #7168b7;
}
.cookie-button-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 771px) {
  .cookie-button-section {
    flex-direction: column;
  }
  .cookie-button-section .btn {
    margin-bottom: 0.5rem;
  }
}
.typography--h2-gradient h2 {
  display: inline-block;
  -webkit-box-decoration-break: clone;
}
.block__content__tooltip {
  display: none;
}
.block__content:hover .block__content__tooltip {
  display: block;
}
.block__content:hover .block__content__standard {
  display: none;
}
.reverse-triangle-green {
  position: absolute;
  top: 10%;
  left: 67%;
}
.reverse-triangle-green-small {
  position: absolute;
  top: 24%;
  left: 66%;
}
.reverse-triangle-green-xsmall {
  position: absolute;
  top: 25%;
  left: 76%;
}
.reverse-triangle-purple-lines {
  position: absolute;
  top: 53%;
  left: 32%;
}
.service-offer__item--purple-light .service-offer__content {
  height: 100%;
}
.header__banner {
  min-height: 40px;
  background-color: #554f8a;
  margin-left: -30px;
  margin-right: -30px;
  display: none;
  justify-content: center;
  padding: 8px;
}
.header__banner.is-active {
  display: flex;
}
.header__banner-text-wrapper,
.header__banner-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__banner-text-wrapper {
  padding-left: 30px;
  padding-right: 40px;
}
.header__banner-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 0;
}
.header__banner .a-link__text {
  color: #fff;
}
.header__banner .a-link {
  border: 1px solid #fff;
  display: inline;
  padding: 3px 8px;
  margin-left: 1rem;
}
.header__banner-mobile-btn {
  display: none;
}
.header__banner .close {
  position: absolute;
  right: 10px;
  top: 14px;
  cursor: pointer;
}
.header__banner svg {
  fill: #fff;
}
.header__banner img {
  max-height: 30px;
  width: auto;
  margin-right: 1rem;
}
.header__banner-mobile-btn {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .header__navigation.is-scrolling {
    height: var(--header-navigation-height-scrolling, 75px);
  }
  .header__navigation {
    height: var(--header-navigation-height, 90px);
  }
}
@media (max-width: 991.99px) {
  .header__navigation .header__hamburger {
    top: var(--header-navigation-banner-height, 0);
  }
  .header__banner-mobile-btn {
    display: inline;
  }
  .header__banner .a-link {
    display: none;
  }
  .header__banner-text {
    display: block;
  }
}
.modal__overlay {
  display: none;
}
.modal__overlay--purple {
  z-index: 999;
}
.modal__overlay.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.modal-md {
  max-width: 600px;
  height: auto;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.modal.modal-md .modal__close {
  width: 40px;
  height: 40px;
}
.modal-md .modal__close svg {
  font-size: 20px;
}
.modal-md .alfa {
  font-size: 30px;
  line-height: 120%;
}
.modal--light-purple {
  background-color: #554f8a;
}
@media (min-width: 771px) {
  .modal-md {
    padding: 2rem 0 2rem;
  }
}
.btn--white-outline {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.btn--white-outline:not(:hover) span {
  color: #fff;
  background: transparent;
}
.btn--white-outline:active,
.btn--white-outline:focus,
.btn--white-outline:hover {
  color: #554f8a;
  background: #fff;
}
@media print {
  *:not(.clip-text) {
    overflow: visible !important;
  }
  body * {
    visibility: hidden;
  }
  main,
  main * {
    visibility: visible;
  }
  main {
    position: absolute;
    left: 0;
    top: 0;
  }
  .print-hidden {
    display: none;
  }
}
.blog-btn__content.blog-btn {
  background-color: #7168b7;
  color: #ffffff;
}
.blog-btn__content.blog-btn:hover {
  color: #7168b7;
  background-color: #ffffff;
}
.flag--belgium .flag__item:nth-child(1) {
  background-color: #000;
}
.flag--belgium .flag__item:nth-child(2) {
  background-color: #f3d02f;
}
.flag--belgium .flag__item:nth-child(3) {
  background-color: #bc0030;
}
.europe-map-flag__item--belgium {
  top: 70px;
  left: 107px;
}
@media (min-width: 576px) {
  .europe-map-flag__item--belgium {
    top: 190px;
    left: 185px;
  }
}
@media (min-width: 771px) {
  .europe-map-flag__item--belgium {
    top: 170px;
    left: 290px;
  }
}
