@charset "UTF-8";
/* RWD */
/* RWD */
/***** HEADERS *****/
/***** CONTAINERS *****/
.horizontal-items {
  list-style-type: none;
}
@media (min-width: 420px) {
  .horizontal-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.horizontal-items > li {
  padding: 0 20px;
}
.horizontal-items > li:first-child {
  padding-left: 0;
}
.horizontal-items > li:last-child {
  padding-right: 0;
}

/***** TEXT *****/
.text {
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1700px) {
  .text {
    font-size: 16px;
    line-height: 26px;
  }
}
.text p {
  padding: 5px 0;
}
.text p:first-child {
  padding-top: 0;
}
.text p:last-child {
  padding-bottom: 0;
}
.text em {
  font-style: italic;
}
.text a {
  color: #000;
}
.text a:hover, .text a:focus {
  color: #1C2956;
}
.text ol {
  list-style-type: none;
  padding: 0 0 0 8px;
  counter-reset: textOrderedList;
}
.text ol > li {
  position: relative;
  padding: 2px 0 2px 32px;
}
.text ol > li:before {
  content: counters(textOrderedList, ".") ".";
  counter-increment: textOrderedList;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  padding: 0;
  text-align: right;
}
.text ul {
  list-style-type: none;
  padding: 0 0 0 24px;
}
.text ul > li {
  position: relative;
  padding: 2px 0 2px 16px;
}
.text ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  padding: 0;
  background: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.text--light a {
  color: #fff;
}

.text--large {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1700px) {
  .text--large {
    font-size: 20px;
    line-height: 28px;
  }
}
.text--large p {
  padding: 8px 0;
}
.text--large ul {
  padding: 0 0 0 24px;
}
.text--large ul > li {
  padding: 2px 0 2px 16px;
}
.text--large ul > li:before {
  top: 12px;
  width: 6px;
  height: 6px;
}

.text--small {
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .text--small {
    font-size: 14px;
    line-height: 22px;
  }
}
.text--small ol {
  padding: 0 0 0 6px;
}
.text--small ol > li {
  padding: 1px 0 1px 30px;
}
.text--small ol > li:before {
  top: 1px;
}
.text--small ul {
  padding: 0 0 0 24px;
}
.text--small ul > li {
  padding: 1px 0 1px 12px;
}
.text--small ul > li:before {
  top: 10px;
  width: 4px;
  height: 4px;
}

.text--distinguished {
  font-weight: 700;
}

/***** BUTTONS *****/
.button {
  clear: both;
  display: inline-block;
  margin: 0 0 0 -3px;
  border: 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 0;
  color: #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button__wrapper {
  padding: 8px 32px;
  position: relative;
}
.button__wrapper:before, .button__wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.button__wrapper:before {
  top: 0;
  background: #1C2956;
}
.button__wrapper:after {
  top: -100%;
  background: #23AABA;
}
.button__inner {
  position: relative;
  z-index: 10;
}
.button:hover .button__wrapper:after {
  top: 0;
}

.button--large {
  font-size: 16px;
}
.button--large .button__wrapper {
  padding: 10px 40px;
}

.button--small {
  font-size: 12px;
}
.button--small .button__wrapper {
  padding: 8px 24px;
}

.button--dark .button__wrapper:before {
  background: #000;
}

.button--light {
  color: #1C2956;
}
.button--light .button__wrapper:before {
  background: #fff;
}
.button--light .button__wrapper:after {
  background: #1C2956;
}
.button--light:hover, .button--light:focus {
  color: #fff;
}

.button--stroke {
  color: #1C2956;
}
.button--stroke .button__wrapper:before {
  border: 1px solid #1C2956;
  background: transparent;
}
.button--stroke .button__wrapper:after {
  background: #1C2956;
}
.button--stroke:hover, .button--stroke:focus {
  color: #fff;
}
.button--dark.button--stroke {
  color: #000;
}
.button--dark.button--stroke .button__wrapper:before {
  border-color: #000;
}
.button--dark.button--stroke .button__wrapper:after {
  background: #000;
}
.button--dark.button--stroke:hover, .button--dark.button--stroke:focus {
  color: #fff;
}

.button--light.button--stroke {
  color: #fff;
}
.button--light.button--stroke .button__wrapper:before {
  border-color: #fff;
}
.button--light.button--stroke .button__wrapper:after {
  background: #fff;
}
.button--light.button--stroke:hover, .button--light.button--stroke:focus {
  color: #1C2956;
}

.button--static:hover .button__wrapper:after, .button--static:focus .button__wrapper:after {
  top: -100%;
}

.button-container {
  padding: 20px 0 0 0;
}

/***** FORMS *****/
.form__field-container {
  padding: 12px 0;
}
.form__info-container {
  padding: 20px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.form--bounded {
  max-width: 400px;
}

.form-field {
  display: block;
  width: 100%;
}
.form-field__wrapper {
  position: relative;
  display: block;
}
.form-field__inner {
  position: relative;
}
.form-field__decoration {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form-field__header {
  padding: 0 0 5px 0;
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}
@media (min-width: 420px) {
  .form-field__header {
    padding: 0 0 8px 0;
  }
}
@media (min-width: 768px) {
  .form-field__header {
    text-align: left;
  }
}
@media (min-width: 1700px) {
  .form-field__header {
    font-size: 16px;
  }
}
.form-field__title {
  color: #000;
  position: relative;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form-field__core, .std-dropdown__header {
  display: block;
  padding: 8px 8px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 1px solid #000;
  background: none;
  color: #B7B7B7;
  position: relative;
  font-size: 12px;
  text-align: left;
  z-index: 5;
  font-family: "spartan", sans-serif;
  font-weight: 500;
  letter-spacing: 0.185em;
  line-height: 23px;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 1700px) {
  .form-field__core, .std-dropdown__header {
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.form-field__core:focus, .std-dropdown__header:focus {
  border-color: #000;
}
.form-field__core--code {
  font-family: "Courier New", monospace;
}
.form-field__core::-webkit-input-placeholder, .std-dropdown__header::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .std-dropdown__header:-moz-placeholder, .form-field__core::-moz-placeholder, .std-dropdown__header::-moz-placeholder, .form-field__core:-ms-input-placeholder, .std-dropdown__header:-ms-input-placeholder {
  color: #E1E1E1;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core::-webkit-input-placeholder, .std-dropdown__header::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .std-dropdown__header:-moz-placeholder, .form-field__core::-moz-placeholder, .std-dropdown__header::-moz-placeholder, .form-field__core:-ms-input-placeholder, .std-dropdown__header:-ms-input-placeholder {
    text-align: left;
  }
}
.form-field__field-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field__suffix {
  padding: 0 0 0 12px;
}
.form-field.error .form-field__title {
  color: #DB2B39;
}
.form-field.error .form-field__core, .form-field.error .std-dropdown__header {
  border-color: #DB2B39;
}

.form-field--underline .form-field__header {
  padding: 0 0 2px 0;
}
@media (min-width: 420px) {
  .form-field--underline .form-field__header {
    padding: 0 0 5px 0;
  }
}
.form-field--underline .form-field__core, .form-field--underline .std-dropdown__header {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.form-field--horizontal .form-field__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field--horizontal .form-field__header {
  padding: 0 12px 0 0;
}
.form-field--horizontal .form-field__field-container {
  width: 100%;
}

.choice-field {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
@media (min-width: 1700px) {
  .choice-field {
    width: 18px;
    height: 18px;
  }
}
.choice-field__core {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  opacity: 0;
}
.choice-field__field {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.choice-field__field:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1700px) {
  .choice-field__field:before {
    width: 12px;
    height: 12px;
  }
}
.choice-field__core:checked ~ .choice-field__field {
  border-color: #000;
}
.choice-field__core:checked ~ .choice-field__field:before {
  background: #1C2956;
}
.choice-field.choice-field--radio .choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.choice-field.choice-field--radio .choice-field__field:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.choice-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.choice-item__field {
  padding: 2px 0 0 0;
}
.choice-item__description {
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .choice-item__description {
    font-size: 16px;
    line-height: 22px;
    padding-left: 16px;
  }
}

.choice-list {
  list-style-type: none;
}
.choice-list > li {
  padding: 4px 0;
}
.choice-list > li:first-child {
  padding-top: 0;
}
.choice-list > li:last-child {
  padding-bottom: 0;
}

/***** VARIA *****/
.icon-item {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 1700px) {
  .icon-item {
    max-width: 400px;
  }
}
.icon-item__icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1700px) {
  .icon-item__icon {
    width: 120px;
    height: 120px;
  }
}
.icon-item__icon-container {
  padding: 0 0 20px 0;
}
.icon-item__header {
  padding: 0 0 20px 0;
}

.icon-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.icon-label__icon-container {
  padding: 0 12px 0 0;
}
.icon-label__icon {
  display: block;
  width: 26px;
}
@media (min-width: 1700px) {
  .icon-label__icon {
    width: 32px;
  }
}
.icon-label__icon--small {
  width: 20px;
}
@media (min-width: 1700px) {
  .icon-label__icon--small {
    width: 24px;
  }
}

.icon-label--decorated .icon-label__icon-container {
  position: relative;
  padding-right: 32px;
}
.icon-label--decorated .icon-label__icon-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  right: 16px;
  width: 1px;
  height: 80%;
  background: rgba(0, 0, 0, 0.2);
}

.titled-label__header {
  font-size: 14px;
  padding: 0 0 8px 0;
}
@media (min-width: 1700px) {
  .titled-label__header {
    font-size: 15px;
  }
}
.titled-label__content {
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 1300px) {
  .titled-label__content {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .titled-label__content {
    font-size: 26px;
  }
}

/***** ICONS *****/
.icon-plus {
  width: 16px;
  height: 16px;
  position: relative;
}
.icon-plus:before, .icon-plus:after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
}
.icon-plus:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin: -1px 0 0 0;
}
.icon-plus:after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
}
.icon-plus--large {
  width: 35px;
  height: 35px;
}

.icon-plus--rotated {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-plus--light:before, .icon-plus--light:after {
  background: #fff;
}

.icon-arrow {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.icon-arrow--small {
  width: 8px;
  height: 8px;
}

.icon-arrow--large {
  width: 16px;
  height: 16px;
}

.icon-arrow--huge {
  width: 20px;
  height: 20px;
}

.icon-arrow--west {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
}

.icon-arrow--north {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-arrow--east {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-arrow--south {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

/***** MODULES *****/
.hawk-dropdown {
  position: relative;
  display: block;
}
.hawk-dropdown__sensor, .hawk-dropdown__start-escape-sensor {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -10000;
}
.hawk-dropdown__end-sensor, .hawk-dropdown__escape-sensor {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: -10000;
}
.hawk-dropdown__header {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.hawk-dropdown__list-container {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 10;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hawk-dropdown__list > li {
  display: block;
}
.hawk-dropdown__list a {
  display: block;
}
.hawk-dropdown.hawk-dropdown--open {
  z-index: 8000;
}

.hawk-dropdown--expanding .hawk-dropdown__list-container {
  position: relative;
  top: 0;
}

.hawk-dropdown--upwards .hawk-dropdown__list-container {
  top: auto;
  bottom: 100%;
}

.std-dropdown__header:hover, .std-dropdown__header:focus {
  border-color: #000;
}
.std-dropdown__title {
  font-size: 14px;
  font-weight: 500;
}
.std-dropdown__list {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  border-top: 0;
  padding: 8px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.std-dropdown.hawk-dropdown--open .std-dropdown__header {
  border-color: #1C2956;
  border-bottom-color: transparent;
}
.std-dropdown.hawk-dropdown--open .std-dropdown__list {
  border-color: #1C2956;
}

.dropdown-item {
  cursor: pointer;
  position: relative;
}
.dropdown-item__description {
  padding: 4px 12px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropdown-item__description:hover, .dropdown-item__field:focus ~ .dropdown-item__description {
  background: #3C6BB4;
  color: #fff;
}
.dropdown-item__field:checked ~ .dropdown-item__description {
  background: #201E1E;
}
.dropdown-item__field {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.std-pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
.std-pager__pages {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.std-pager__item {
  padding: 0 4px;
}
.std-pager__separator {
  padding: 0 10px;
}
.std-pager__previous, .std-pager__next {
  cursor: pointer;
}
.std-pager__previous {
  padding: 0 12px 0 0;
}
.std-pager__next {
  padding: 0 0 0 12px;
}

.pager-item {
  cursor: pointer;
  position: relative;
}
.pager-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #1C2956;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.pager-item.active:before {
  opacity: 1;
}

.form__info-wrapper {
  display: none;
}
.form__info {
  opacity: 0;
}

.hawk-layered-section {
  position: relative;
}
.hawk-layered-section__above-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.hawk-layered-section__above-layer-inner, .hawk-layered-section__base-layer-inner {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.hawk-more-content {
  display: none;
}

.hawk-sliding-layer-section {
  position: relative;
  overflow: hidden;
}
.hawk-sliding-layer-section__layer {
  position: absolute;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  margin: 0 40px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hawk-sliding-layer-section--active .hawk-sliding-layer-section__layer {
  right: 0;
  margin: 0;
}

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9000;
}
.overlayer__content-container {
  display: none;
}

.std-overlayer {
  background: rgba(0, 0, 0, 0.8);
}
.std-overlayer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.std-overlayer__inner {
  margin: 40px 0;
  padding: 32px 40px;
  position: relative;
}
.std-overlayer__close {
  position: absolute;
  top: 8vh;
  right: 4vw;
  cursor: pointer;
}
@media (min-width: 420px) {
  .std-overlayer__close {
    top: 10vh;
    right: 10vw;
  }
}
@media (min-width: 2000px) {
  .std-overlayer__close {
    top: 9vh;
    right: 8vw;
  }
}

/** END_MODULES **/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.site-header {
  padding: 64px 40px;
  position: relative;
}
@media (min-width: 1500px) {
  .site-header {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 1700px) {
  .site-header {
    padding-left: 140px;
    padding-right: 140px;
  }
}
.site-header__bar {
  position: absolute;
  top: 0;
  right: 140px;
  padding: 40px 0 0 0;
}

.site-title {
  font-size: 42px;
}
@media (min-width: 1700px) {
  .site-title {
    font-size: 52px;
  }
}

.site-content {
  padding: 0;
}

.icon-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.icon-hamburger__inner {
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger__inner > div {
  position: absolute;
  right: 0;
  height: 2px;
  background: #000;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon-hamburger__inner > div:nth-child(1),
.icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger__inner > div:nth-child(2),
.icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
}
.icon-hamburger__inner > div:nth-child(3),
.icon-hamburger__inner > div:nth-child(6) {
  top: 14px;
}
.icon-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger__inner > div:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item {
  background: #000;
  left: -100%;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger:hover .icon-hamburger__inner > .icon-hamburger__hover-item, .icon-hamburger:focus .icon-hamburger__inner > .icon-hamburger__hover-item {
  left: 0;
}

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger.open .icon-hamburger__inner > div {
  background: #000;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--primary .icon-hamburger__inner > div {
  background: #1C2956;
}

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff;
}

.icon-hamburger--large {
  width: 32px;
}
.icon-hamburger--large .icon-hamburger__inner {
  height: 20px;
}
.icon-hamburger--large .icon-hamburger__inner > div {
  height: 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(5) {
  top: 8px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(6) {
  top: 16px;
}

.icon-hamburger--small {
  width: 20px;
  height: 12px;
}
.icon-hamburger--small .icon-hamburger__inner > div {
  height: 2px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(5) {
  top: 5px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(6) {
  top: 10px;
}

/***** MENU *****/
.menu-toggler-container {
  cursor: pointer;
}

#menu-toggler {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 9000;
}
@media (min-width: 650px) {
  #menu-toggler {
    right: 40px;
    top: 40px;
  }
}
@media (min-width: 1300px) {
  #menu-toggler {
    right: 60px;
    top: 74px;
  }
}
.slide-menu {
  position: fixed;
  z-index: 6800;
  display: block;
  text-align: center;
  width: 100%;
  background: #fff;
  overflow: auto;
  height: 100%;
}
@media (min-width: 992px) {
  .slide-menu {
    background: #fff;
    text-align: left;
  }
}
.slide-menu__decoration-container {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-20%, 0, 0);
  -moz-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
  display: none;
}
@media (min-width: 650px) and (min-height: 630px) {
  .slide-menu__decoration-container {
    display: block;
  }
}
@media (min-width: 992px) {
  .slide-menu__decoration-container {
    width: 36%;
    display: block;
  }
}
@media (min-width: 1300px) {
  .slide-menu__decoration-container {
    width: 34%;
  }
}
.slide-menu__decoration {
  padding: 0 0 130% 0;
  background: url("../img/decorations/decoration-south-west-heads.svg") no-repeat left bottom;
  background-size: contain;
}
@media (min-width: 1300px) {
  .slide-menu__decoration {
    padding-bottom: 120%;
  }
}
.slide-menu .slide-menu__wrapper {
  height: 100%;
  position: relative;
}
.slide-menu .slide-menu__inner {
  padding: 40px 20px;
  position: relative;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: right;
    padding: 40px 60px;
  }
}
@media (min-width: 992px) {
  .slide-menu__container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
  }
}
.slide-menu__menu-container {
  background: #fff;
}
@media (min-width: 992px) {
  .slide-menu__menu-container {
    padding: 0 0 0 15%;
  }
}
@media (min-width: 1300px) {
  .slide-menu__menu-container {
    padding-left: 18%;
  }
}
@media (min-width: 1700px) {
  .slide-menu__menu-container {
    padding-left: 22%;
  }
}
.slide-menu__menu-wrapper {
  text-align: left;
  display: flex;
  justify-content: center;
}
.slide-menu__header {
  text-align: left;
  padding: 20px 40px 0 40px;
}
@media (min-width: 992px) {
  .slide-menu__header {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1300px) {
  .slide-menu__header {
    padding: 28px 0 0 80px;
  }
}
.slide-menu__additional-menu-container {
  position: relative;
}
@media (min-width: 992px) {
  .slide-menu__additional-menu-container {
    background: #1C2956;
    padding: 0 8% 0 0;
  }
}
@media (min-width: 1300px) {
  .slide-menu__additional-menu-container {
    padding: 0 8% 0 32px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__additional-menu-container {
    padding: 0 14% 0 60px;
  }
}
.slide-menu__social-media {
  position: absolute;
  right: 32px;
  top: 0;
  -webkit-transform: translate3d(0, -66%, 0);
  -moz-transform: translate3d(0, -66%, 0);
  transform: translate3d(0, -66%, 0);
}
@media (min-width: 992px) {
  .slide-menu__social-media {
    bottom: auto;
    top: 0;
    left: 0;
    right: auto;
    padding: 32px;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@media (min-width: 1700px) {
  .slide-menu__social-media {
    padding: 40px 40px 0 0;
  }
}

/** fade **/
.slide-menu--fade {
  display: none;
}

.slide-menu--fade.slide-menu--top {
  top: -2px;
  left: 0;
  right: auto;
  bottom: auto;
}

.slide-menu--fade.slide-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
}

.slide-menu--fade.slide-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}

/** slide **/
.slide-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slide-menu--slide.slide-menu--top {
  top: -110%;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: -2px;
}

.slide-menu--slide.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide.slide-menu--left.slide-menu--open {
  left: 0;
}

/** slide-fade **/
.slide-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
}
.slide-menu--slide-fade .slide-menu__inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
}
.slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in 0.4s;
  -moz-transition: opacity 0.3s ease-in 0.4s;
  -o-transition: opacity 0.3s ease-in 0.4s;
  transition: opacity 0.3s ease-in 0.4s;
}

.slide-menu--slide-fade.slide-menu--top {
  -webkit-transform: translate3d(0, -200%, 0);
  -moz-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: 0;
}

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide-fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide-fade.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
  left: 0;
}

/***** SECTIONS *****/
.site-section__layer {
  padding: 0 20px;
}
@media (min-width: 420px) {
  .site-section__layer {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .site-section__layer {
    padding: 0 60px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer {
    padding: 0 100px;
  }
}
@media (min-width: 1700px) {
  .site-section__layer {
    padding: 0 10%;
  }
}
.site-section__wrapper {
  padding: 40px 0;
}
@media (min-width: 992px) {
  .site-section__wrapper {
    padding: 64px 0;
  }
}
@media (min-width: 1700px) {
  .site-section__wrapper {
    padding: 80px 0;
  }
}
.site-section__wrapper--only-top {
  padding-bottom: 0;
}
.site-section__wrapper--only-bottom {
  padding-top: 0;
}
.site-section__row {
  padding: 64px 0;
}
.site-section__row:first-child {
  padding-top: 0;
}
.site-section__row:last-child {
  padding-bottom: 0;
}

/** END_SECTIONS **/
/***** THIS PROJECT *****/
@font-face {
  font-family: "spartan";
  src: url("../../fonts/spartanmb-light-webfont.woff2") format("woff2"), url("../../fonts/spartanmb-light-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "spartan";
  src: url("../../fonts/spartanmb-regular-webfont.woff2") format("woff2"), url("../../fonts/spartanmb-regular-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "spartan";
  src: url("../../fonts/spartanmb-semibold-webfont.woff2") format("woff2"), url("../../fonts/spartanmb-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "spartan";
  src: url("../../fonts/spartanmb-bold-webfont.woff2") format("woff2"), url("../../fonts/spartanmb-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
.bounded-section {
  max-width: 500px;
}

.presentation-list {
  list-style-type: none;
}
.presentation-list > li {
  padding: 20px 0;
}
.presentation-list > li:first-child {
  padding-top: 0;
}
.presentation-list > li:last-child {
  padding-bottom: 0;
}

.presentation-list--more-space > li {
  padding: 32px 0;
}

.plain-list {
  list-style-type: none;
}
.plain-list > li {
  padding: 2px 0;
  display: block;
}

.plain-list--more-space > li {
  padding: 8px 0;
}
.plain-list--more-space > li:first-child {
  padding-top: 0;
}
.plain-list--more-space > li:last-child {
  padding-bottom: 0;
}

.section-for-light-examples {
  background: #222222;
  padding: 32px 0;
}

.examples-list {
  list-style-type: none;
  padding: 0 0 0 20px;
}
.examples-list > li {
  padding: 20px 0;
}
.examples-list > li:first-child {
  padding-top: 0;
}
.examples-list > li:last-child {
  padding-bottom: 0;
}

.subsections {
  list-style-type: none;
}
.subsections > li {
  padding: 32px 0;
}
.subsections > li:first-child {
  padding-top: 0;
}
.subsections > li:last-child {
  padding-bottom: 0;
}

.subsection {
  padding: 0 0 0 32px;
}

.listing {
  border: 1px solid #4b4b4b;
  background: #f5f5f5;
  padding: 20px 16px;
  white-space: normal;
  overflow-x: auto;
}

.simple-listing {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 0 20px 0;
}

.simple-listing--bounded {
  white-space: normal;
  overflow: visible;
}

.figure__header {
  padding: 0 0 10px 0;
}

.scrollable-section {
  max-height: 320px;
}
.scrollable-section .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #222222;
}

.scrollable-section--unbounded {
  max-height: 100%;
}

.caption-title {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
}
.caption-title__number {
  font-weight: 700;
  font-style: normal;
}
.caption-title__number:after {
  content: " –";
  margin: 0 4px 0 4px;
  font-weight: 400;
}

.inline-code {
  font-style: italic;
  font-weight: 400;
}

.code {
  font-weight: 400;
  font-family: "Courier New", monospace;
}

.presentation-section__listing {
  padding: 20px 0 0 0;
}

.comparison-section {
  position: relative;
}
@media (min-width: 768px) {
  .comparison-section:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fafafa;
  }
}
.comparison-section__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .comparison-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .comparison-row__result {
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.comparison-row__source {
  background: #fafafa;
}
@media (min-width: 768px) {
  .comparison-row__source {
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.row {
  padding: 40px 0 0 0;
}
.row:first-child {
  padding-top: 0;
}
.row:last-child {
  padding-bottom: 0;
}

.row--more-space {
  padding-top: 80px;
}

.descripted-items-section {
  padding: 0 240px 0 0;
}
.descripted-items-section__item {
  position: relative;
}
.descripted-items-section__item-description {
  position: absolute;
  left: 100%;
  text-align: right;
  top: 0;
  width: 240px;
  border-top: 1px dashed #777;
  border-right: 1px dashed #777;
  padding: 8px 12px 0 0;
  font-size: 12px;
  color: #777;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.descripted-items-section__item-description--second {
  top: 40px;
  width: 200px;
}

.article__introduction {
  padding: 0 0 20px 0;
}
.article__row {
  padding: 32px 0 0 0;
}
.article__footer {
  margin: 40px 0 0 0;
}

.color-sample {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.color-sample--bright {
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.color-sample--bright:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background: #000;
}

.edge-section {
  position: relative;
  height: 100%;
  padding: 0 0 0 54px;
  background: #fafafa;
}
.edge-section__edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1C2956;
  cursor: pointer;
}
.edge-section__edge-inner {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(-90deg) translate3d(-50%, 0, 0);
  -moz-transform: rotate(-90deg) translate3d(-50%, 0, 0);
  transform: rotate(-90deg) translate3d(-50%, 0, 0);
  transform-origin: left top;
}
.edge-section__content {
  padding: 40px;
  max-height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.std-table {
  text-align: left;
  border-collapse: collapse;
}
.std-table__header {
  font-size: 16px;
  font-weight: 700;
}
.std-table__cell {
  padding: 16px 32px;
  vertical-align: top;
  border-bottom: 1px solid #E5E5E5;
  border-collapse: collapse;
  max-width: 400px;
}
.std-table__cell:first-child {
  padding-left: 0;
}
.std-table__cell:last-child {
  padding-right: 0;
}
.std-table__cell--header {
  border-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.property__name {
  font-weight: 700;
}
.property__type {
  padding: 4px 0 0 0;
  font-style: italic;
}

.parameter__name {
  font-weight: 700;
}
.parameter__type {
  padding: 4px 0 0 0;
  font-style: italic;
}
.parameter__description {
  padding: 4px 0 0 0;
}

.horizontal-menu__core {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
.horizontal-menu__core > li {
  padding: 0 12px;
}

.menu-item {
  color: #000;
  text-decoration: none;
}

.std-link {
  color: #444444;
}
.std-link:hover, .std-link:focus {
  color: #000;
}

@media (min-width: 768px) {
  .tiles-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.tiles-list > li {
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .tiles-list > li {
    width: 33.33%;
  }
}
.tiles-list > li:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(2), .tiles-list > li:nth-child(3) {
    padding-top: 0;
  }
}
.tiles-list > li:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(3n+1) {
    padding-right: 2%;
  }
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(3n+2) {
    padding-left: 1%;
    padding-right: 1%;
  }
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(3n+3) {
    padding-left: 2%;
  }
}

.simple-ajax-request-container__result {
  padding: 32px 0 0 0;
}

.site-footer__layer {
  background: #222222;
  color: #fafafa;
  padding: 0 20px;
}
@media (min-width: 480px) {
  .site-footer__layer {
    padding: 0 40px;
  }
}
@media (min-width: 1500px) {
  .site-footer__layer {
    padding: 0 100px;
  }
}
@media (min-width: 1700px) {
  .site-footer__layer {
    padding: 0 140px;
  }
}
.site-footer__wrapper {
  /*padding: 32px 0;

  @media (min-width: $desktop-xl) {
    padding: 48px 0;
  }*/
}

@media (min-width: 768px) {
  .col-9 {
    width: 75%;
  }
}

@media (min-width: 992px) {
  .col-9-from-992 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-9-from-768 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-8-from-992 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1100px) {
  .col-8-from-1100 {
    width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-7-from-992 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-6-from-992 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-5 {
    width: 40.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-5-from-992 {
    width: 40.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-4-from-992 {
    width: 33.3333333333%;
  }
}

@media (min-width: 1100px) {
  .col-4-from-1100 {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-3-from-992 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-3-from-768 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-3-desktop {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-2 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-1 {
    width: 16.6666666667%;
  }
}

.flex-container--horizontal-center {
  display: flex;
  justify-content: center !important;
}
@media (min-width: 768px) {
  .flex-container--from-768 {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .flex-container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .flex-container--to-left {
    margin-left: 2px;
  }
}
@media (min-width: 1500px) {
  .flex-container--to-left {
    margin-left: -98px;
  }
}
@media (min-width: 1700px) {
  .flex-container--to-left {
    margin-left: -10%;
  }
}
.flex-container--space-above {
  margin-top: 126px;
}
.flex-container--small-space-above {
  margin-top: 60px;
}
.flex-container--space-below {
  margin-top: 60px;
}

@media (min-width: 768px) {
  .flex-container-from-768 {
    display: flex;
    justify-content: space-between;
  }
}

.flex-column {
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .flex-column {
    padding: 0;
  }
}

.site-bar {
  width: calc(100vw - 155px);
}
.site-bar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-bar__logo-container {
  margin-left: 20px;
}
@media (min-width: 1300px) {
  .site-bar__logo-container {
    margin-left: 60px;
    margin-right: 40px;
  }
}

.logo-pgf {
  background-image: url("/img/pgf-logo.svg");
  background-repeat: no-repeat;
  height: 70px;
  width: 54px;
  display: block;
}

.horizontal-menu__content {
  display: flex;
  flex-direction: row;
  list-style: none;
}
.horizontal-menu__content > li {
  margin-right: 26px;
}
@media (min-width: 1700px) {
  .horizontal-menu__content > li {
    margin-right: 50px;
  }
}
.horizontal-menu__content > li:last-child {
  margin-right: 0;
}
.horizontal-menu__content > li a {
  text-decoration: none;
  color: #1C2956;
  font-weight: 700;
  font-size: 13px;
  line-height: 111%;
  letter-spacing: 0.03em;
}
@media (min-width: 1500px) {
  .horizontal-menu__content > li a {
    font-size: 15px;
  }
}
.horizontal-menu__content > li a:hover {
  color: #3C6BB4;
}

.icon-hamburger__inner > div:last-child {
  width: 16px;
}

@media (min-width: 1100px) {
  .site-section--full-heigth {
    height: 100vh;
  }
}
@media (min-width: 1100px) {
  .site-section--almost-full-heigth {
    height: 70vh;
  }
}
.site-section__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  opacity: 0.5;
}
.site-section--with-bg {
  background-size: cover;
}
@media (min-width: 768px) {
  .site-section__inner--to-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
}
@media (min-width: 1100px) {
  .site-section__inner--more-space-below {
    margin-bottom: 240px;
  }
}
.site-section__inner--center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-section__mobile-layer-bg {
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-height: 400px;
  background-size: cover;
  height: 260px;
}
@media (min-width: 768px) {
  .site-section__mobile-layer-bg {
    display: none;
  }
}
.site-section__layer--full-width {
  padding: 0;
}
.site-section__wrapper--full-height {
  padding: 0;
}
@media (min-width: 1500px) {
  .site-section__wrapper--video {
    padding-bottom: 10%;
  }
}
.site-section__title--small {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  display: flex;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: #B7B7B7;
}
.site-section__layer--to-left {
  padding: 0 20px;
}
@media (min-width: 420px) {
  .site-section__layer--to-left {
    padding: 0 0 0 40px;
  }
}
@media (min-width: 1100px) {
  .site-section__layer--to-left {
    padding: 0 0 0 60px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--to-left {
    padding: 0 0 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--to-left {
    padding: 0 0 0 100px;
  }
}

.site-footer .socialmedia {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer .socialmedia {
    justify-content: flex-start;
  }
}
@media (min-width: 1100px) {
  .site-footer .socialmedia {
    justify-content: flex-end;
  }
}

.socialmedia--to-right {
  display: flex;
  justify-content: center;
}
@media (min-width: 1100px) {
  .socialmedia--to-right {
    justify-content: flex-end;
  }
}
.socialmedia .icon-hover {
  height: 21px;
  width: 20px;
}

.socialmedia__content {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  height: 22px;
}
.socialmedia__content > li {
  margin-right: 20px;
  display: flex;
}
@media (min-width: 1100px) {
  .socialmedia__content > li:last-child {
    margin-right: 0;
  }
}

.section-pretitle {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.3em;
  color: #000;
}
@media (min-width: 1700px) {
  .section-pretitle {
    font-size: 16px;
    line-height: 16px;
  }
}
.section-pretitle--decorated {
  font-family: "Montserrat", sans-serif;
  color: #201E1E;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  border-bottom: 2px solid #201E1E;
  padding-bottom: 16px;
  width: 290px;
}
.section-pretitle--space-below {
  margin-bottom: 20px;
}
.section-pretitle--more-space-below {
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .section-pretitle--more-space-below {
    margin-bottom: 50px;
  }
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #1C2956;
}
@media (min-width: 1100px) {
  .section-title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (min-width: 1700px) {
  .section-title {
    font-size: 44px;
  }
}
.section-title--small {
  font-size: 25px;
  line-height: 35px;
  letter-spacing: 0.03em;
}
.section-title--medium {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: -0.01em;
}
@media (min-width: 550px) {
  .section-title--medium {
    font-size: 36px;
    line-height: 48px;
  }
}
.section-title--space-bottom {
  margin-bottom: 50px;
}
.section-title--space-below {
  margin-bottom: 20px;
}
@media (min-width: 550px) {
  .section-title--narrow {
    max-width: 60%;
  }
}
@media (min-width: 1300px) {
  .section-title--narrow {
    max-width: 400px;
  }
}
@media (min-width: 1300px) {
  .section-title--narrower {
    max-width: 350px;
  }
}
@media (min-width: 1300px) {
  .section-title--wide {
    max-width: 580px;
  }
}
@media (min-width: 1300px) {
  .section-title--wider {
    max-width: 620px;
  }
}
@media (min-width: 1300px) {
  .section-title--very-wide {
    max-width: 650px;
  }
}
@media (min-width: 1300px) {
  .section-title--top-section {
    max-width: 80%;
  }
}
.section-title--more-space-below {
  margin-bottom: 50px;
}
.section-title--more-space-bottom {
  margin-bottom: 80px;
}

.socialmedia--bottom-right {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (min-width: 1300px) {
  .socialmedia--bottom-right {
    bottom: 95px;
    right: 104px;
  }
}
.socialmedia--bottom-right-2 {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (min-width: 1300px) {
  .socialmedia--bottom-right-2 {
    bottom: 70px;
    right: 200px;
  }
}
.socialmedia--big {
  transform: scale(1.2);
}

.section-header {
  position: relative;
}
.section-header--right {
  margin-top: 0;
  /*@media (min-width: $tablet-m) {
    margin-top: 30%;
  }*/
}
@media (min-width: 1300px) {
  .section-header--right {
    margin-left: 55%;
    margin-top: 6%;
  }
}
@media (min-width: 1500px) {
  .section-header--right {
    margin-top: 10%;
  }
}
.section-header--left {
  margin-top: 0;
  /*@media (min-width: $tablet-xs) {
    margin-top: 10%;
  }*/
  /*@media (min-width: $tablet-m) {
    margin-top: 30%;
  }*/
}
@media (min-width: 1300px) {
  .section-header--left {
    margin-left: 10%;
    margin-top: 10%;
  }
}
.section-header--center {
  display: flex;
  justify-content: center;
}
.section-header--on-video {
  z-index: 1;
  position: relative;
}
@media (min-width: 1300px) {
  .section-header--on-video {
    margin-left: 590px;
    margin-top: 150px;
  }
}
.section-header--decorated {
  background-color: #fff;
  padding: 0;
  max-width: 417px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .section-header--decorated {
    padding: 80px 40px;
  }
}
@media (min-width: 1300px) {
  .section-header--decorated {
    padding: 107px 99px 62px 84px;
  }
}
.section-header--space-both {
  margin: 90px 0;
  padding: 0 40px;
}
@media (min-width: 1100px) {
  .section-header--space-both {
    padding: 0;
  }
}
.section-header--mobile-space-below {
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .section-header--mobile-space-below {
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  .section-header--desktop-space-above {
    margin-top: 25%;
  }
}
.section-header--dark {
  background-color: #1C2956;
}
.section-header--dark .section-pretitle, .section-header--dark .section-title, .section-header--dark .section-text {
  color: #fff;
}
@media (min-width: 1100px) {
  .section-header--left-space {
    margin-left: 25%;
  }
}

.horizontal-menu {
  display: none;
}
@media (min-width: 1300px) {
  .horizontal-menu {
    display: block;
  }
}

.statistics {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .statistics {
    flex-direction: row;
  }
}
.statistics__item {
  height: 216px;
  padding-left: 36px;
  border-left: 3px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1300px) {
  .statistics__item {
    margin-left: -1px;
  }
  .statistics__item:nth-child(1) {
    margin-top: 20px;
  }
  .statistics__item:nth-child(2) {
    margin-top: 0;
  }
  .statistics__item:nth-child(3) {
    margin-top: 0;
  }
  .statistics__item:nth-child(4) {
    margin-top: 280px;
  }
}
@media (min-width: 1300px) {
  .statistics__item--quarter {
    width: 25%;
  }
}
.statistics__item--no-decoration {
  border-left: 3px solid transparent;
}
.statistics__item--small {
  height: 96px;
}
@media (min-width: 1100px) {
  .statistics__item--space-above {
    margin-top: 120px !important;
  }
}
.statistics__item-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0.05em;
  color: #1C2956;
}
@media (min-width: 1100px) {
  .statistics__item-number--space-below {
    margin-bottom: 20px;
  }
}
.statistics__item-description {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.2em;
  color: #1C2956;
}
.statistics__item-description--narrow {
  max-width: 200px;
}
.statistics__item-description--wide {
  max-width: 230px;
}
.statistics__item-description--small {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.statistics--steps {
  margin-top: 90px;
}
.statistics--steps .statistics__item:nth-child(1) {
  border-left: 3px solid transparent;
  display: none;
}
@media (min-width: 1300px) {
  .statistics--steps .statistics__item:nth-child(1) {
    display: block;
  }
}
@media (min-width: 1300px) {
  .statistics--steps .statistics__item {
    margin-left: -1px;
  }
  .statistics--steps .statistics__item:nth-child(1) {
    margin-top: 0;
  }
  .statistics--steps .statistics__item:nth-child(2) {
    margin-top: 0;
  }
  .statistics--steps .statistics__item:nth-child(3) {
    margin-top: 0;
  }
  .statistics--steps .statistics__item:nth-child(4) {
    margin-top: 0;
  }
}

.number-tile {
  height: 216px;
  padding-left: 36px;
  border-left: 3px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1300px) {
  .number-tile {
    margin-left: -1px;
  }
  .number-tile:nth-child(1) {
    margin-top: 20px;
  }
  .number-tile:nth-child(2) {
    margin-top: 0;
  }
  .number-tile:nth-child(3) {
    margin-top: 0;
  }
  .number-tile:nth-child(4) {
    margin-top: 280px;
  }
}
@media (min-width: 1300px) {
  .number-tile--quarter {
    width: 25%;
  }
}
.number-tile--no-decoration {
  border-left: 3px solid transparent;
}
.number-tile--small {
  height: 96px;
}
.number-tile--space-above {
  margin-top: 120px !important;
}
.number-tile__number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0.05em;
  color: #1C2956;
}
.number-tile__number--space-below {
  margin-bottom: 20px;
}
.number-tile__description {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2em;
  color: #1C2956;
}
@media (min-width: 550px) {
  .number-tile__description {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (min-width: 550px) {
  .number-tile__description--narrow {
    max-width: 200px;
  }
}
.number-tile__description--wide {
  max-width: 230px;
}
.number-tile__description--small {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.section-01 {
  height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1100px) {
  .section-01 {
    display: block;
  }
}
.section-01 .socialmedia {
  position: absolute;
  bottom: 20px;
  right: 15px;
}
@media (min-width: 1300px) {
  .section-01 .socialmedia {
    bottom: 40px;
    right: 60px;
  }
}
.section-01 .site-section__layer {
  margin-top: -45%;
}
@media (min-width: 550px) {
  .section-01 .site-section__layer {
    margin-top: 0;
  }
}

.slide-menu .socialmedia {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (min-width: 1300px) {
  .slide-menu .socialmedia {
    bottom: 70px;
    right: 170px;
  }
}

.section-02 {
  position: relative;
  overflow: hidden;
}

.section-03 {
  position: relative;
  min-height: 380px;
}
@media (min-width: 1100px) {
  .section-03 {
    min-height: 550px;
  }
}
@media (min-width: 768px) {
  .section-03 .site-section__wrapper {
    padding: 64px 0 0 0;
  }
}

.section-05-1 {
  position: relative;
}

.section-05, .section-20 {
  overflow: hidden;
  position: relative;
}
.background-grid {
  display: none;
}
@media (min-width: 1300px) {
  .background-grid {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 0 80px;
  }
  .background-grid__line {
    height: 100%;
    width: 25%;
    border-left: 1px solid #EEEEEE;
  }
  .background-grid__line--hide {
    opacity: 0;
  }
}
@media (min-width: 1500px) {
  .background-grid {
    padding: 0 100px;
  }
}
@media (min-width: 1700px) {
  .background-grid {
    padding: 0 10%;
  }
}

.section__video {
  display: none;
}
@media (min-width: 1100px) {
  .section__video {
    display: block;
    width: 890px;
    height: 450px;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
  }
}

.link-with-arrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.295em;
  color: #3C6BB4;
  text-decoration: none;
  position: relative;
}
@media (min-width: 1100px) {
  .link-with-arrow {
    font-size: 15px;
  }
}
.link-with-arrow:after {
  content: "";
  display: block;
  width: 55px;
  height: 35px;
  position: absolute;
  right: -65px;
  top: -7px;
  background-image: url("../../img/icons/arrow-left.png");
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 1;
  transform: rotate(180deg);
}
.link-with-arrow:before {
  content: "";
  display: block;
  width: 55px;
  height: 35px;
  position: absolute;
  right: -65px;
  top: -7px;
  background-image: url("../../img/icons/arrow-left-hover.png");
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
  transform: rotate(180deg);
}
.link-with-arrow--right:after, .link-with-arrow--right:before {
  transform: rotate(180deg);
}
.link-with-arrow--button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.link-with-arrow--link {
  width: max-content;
}
.link-with-arrow--space-above {
  margin-top: 40px;
}
@media (min-width: 1100px) {
  .link-with-arrow--space-above {
    margin-top: 60px;
  }
}
.link-with-arrow--light {
  color: #fff;
}
.link-with-arrow--light:after {
  background-image: url("../../img/icons/arrow-left-light.png");
}
.link-with-arrow--light:before {
  background-image: url("../../img/icons/arrow-left-light-hover.png");
}
.link-with-arrow--dark {
  color: #000;
}
.link-with-arrow--dark:after {
  background-image: url("../../img/icons/arrow-left-dark.png");
}
.link-with-arrow--dark:before {
  background-image: url("../../img/icons/arrow-left-dark-hover.png");
}
.link-with-arrow:hover:after {
  opacity: 0;
}
.link-with-arrow:hover:before {
  opacity: 1;
}

.logo-bg {
  background-image: url("../../img/logo-big-bg.svg");
  background-repeat: no-repeat;
  background-position: top right;
}

.section-text {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
}
@media (min-width: 1700px) {
  .section-text {
    font-size: 15px;
  }
}
.section-text p {
  margin-bottom: 26px;
}
.section-text p:last-child {
  margin-bottom: 0;
}
.section-text--narrow {
  max-width: 250px;
}
.section-text--wide {
  max-width: 350px;
}
.section-text--wider {
  max-width: 410px;
}
.section-text--very-wide {
  max-width: 650px;
}
.section-text--more-wide {
  max-width: 365px;
}
.section-text--space-below {
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .section-text--space-below {
    margin-bottom: 60px;
  }
}
@media (min-width: 1100px) {
  .section-text--more-space-below {
    margin-bottom: 110px;
  }
}
.section-text b, .section-text strong {
  font-size: 20px;
  color: #1C2956;
}
@media (min-width: 1100px) {
  .section-text--left-space {
    margin-left: 235px;
  }
}

.horizontal-tiles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
}
@media (min-width: 550px) {
  .horizontal-tiles {
    margin-top: 130px;
  }
}
@media (min-width: 1100px) {
  .horizontal-tiles {
    flex-direction: row;
  }
}
.horizontal-tiles:after {
  content: "";
  height: 107px;
  width: 107px;
  display: block;
  background-image: url("../../img/icons/plus.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 54px);
  top: calc(50% - 50px);
  transform: scale(0.5);
}
@media (min-width: 1100px) {
  .horizontal-tiles:after {
    height: 107px;
    width: 107px;
    top: calc(50% - 54px);
    transform: scale(1);
  }
}

.big-tile {
  background-repeat: no-repeat;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  position: relative;
}
.big-tile:before {
  content: "";
  background: linear-gradient(180deg, rgba(255, 250, 246, 0) 50%, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
  background-image: linear-gradient(rgba(255, 250, 246, 0) 50%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.big-tile:first-child {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .big-tile:first-child {
    margin-bottom: 0;
  }
}
.big-tile:last-child {
  margin-right: 0;
  margin-left: 0;
}
.big-tile__title {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 0.095em;
  color: #201E1E;
  text-align: center;
  z-index: 2;
}
@media (min-width: 1100px) {
  .big-tile__title {
    font-size: 20px;
    text-align: unset;
  }
}
.big-tile__more {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.295em;
  text-transform: uppercase;
  color: #3C6BB4;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 2;
}
@media (min-width: 1100px) {
  .big-tile {
    min-width: 610px;
  }
  .big-tile:first-child {
    margin-left: -80px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .big-tile:last-child {
    margin-right: -80px;
    margin-left: 0;
    margin-top: 0;
  }
}
@media (min-width: 1500px) {
  .big-tile:first-child {
    margin-left: -100px;
  }
  .big-tile:last-child {
    margin-right: -100px;
  }
}
@media (min-width: 1700px) {
  .big-tile:first-child {
    margin-left: -10%;
  }
  .big-tile:last-child {
    margin-right: -10%;
  }
}
@media (min-width: 2000px) {
  .big-tile {
    min-height: 500px;
    min-width: 880px;
  }
}
.big-tile:hover .big-tile__more {
  opacity: 1;
}

.horizontal-carousel-container, .history-carousel-container {
  margin-top: 130px;
  margin-bottom: 100px;
  position: relative;
}
@media (min-width: 1100px) {
  .horizontal-carousel-container--decorated:after, .history-carousel-container--decorated:after {
    content: "";
    background-color: #1C2956;
    height: 380px;
    width: 170px;
    position: absolute;
    right: -80px;
    top: -90px;
  }
}
@media (min-width: 1500px) {
  .horizontal-carousel-container--decorated:after, .history-carousel-container--decorated:after {
    right: -100px;
  }
}
@media (min-width: 1700px) {
  .horizontal-carousel-container--decorated:after, .history-carousel-container--decorated:after {
    right: calc(-10% - 40px);
  }
}

.horizontal-carousel {
  list-style: none;
}

@media (min-width: 1100px) {
  .horizontal-carousel-container--right-arrow, .history-carousel-container--right-arrow {
    margin-right: 200px;
  }
}

.tile-with-icon-container {
  display: block;
  padding: 30px 40px 55px 55px;
}

.tile-with-icon {
  width: 174px;
  height: 134px;
  padding: 45px 25px;
  background: #F0F0F0;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  box-shadow: -20px 20px 29px rgba(0, 45, 115, 0.1);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 30px 0 40px;
}
@media (min-width: 1100px) {
  .tile-with-icon {
    margin: 0;
  }
}
.tile-with-icon--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tile-with-icon a {
  text-decoration: none;
}
.tile-with-icon__title {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  position: relative;
}
.tile-with-icon__title:after {
  content: "";
  height: 1px;
  width: 50px;
  position: absolute;
  top: 30px;
  right: 0px;
  background-color: #000;
}
.tile-with-icon__title--big {
  font-size: 20px;
}
.tile-with-icon__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.295em;
  color: #3C6BB4;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
  margin-top: 10px;
}
.tile-with-icon__icon {
  height: 100%;
  width: 100%;
}
.tile-with-icon__icon img {
  width: max-content !important;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 50px;
}
.tile-with-icon__icon-normal {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.tile-with-icon__icon-hover {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: none !important;
}
@media (min-width: 1100px) {
  .tile-with-icon__icon-hover {
    display: block !important;
  }
}
.tile-with-icon:hover {
  box-shadow: -20px 20px 29px #3C6BB4;
}
.tile-with-icon:hover .tile-with-icon__link {
  opacity: 1;
}
.tile-with-icon:hover .tile-with-icon__icon-normal {
  opacity: 0;
}
.tile-with-icon:hover .tile-with-icon__icon-hover {
  opacity: 1;
}
.tile-with-icon__description {
  display: none;
}

.site-section__decoration {
  position: absolute;
  height: 935px;
  width: 739px;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url("/img/logo-bg.svg");
}

.site-section__decoration-2 {
  position: absolute;
  height: 900px;
  width: 664px;
  top: 0;
  right: 0;
  z-index: -1;
  margin-top: 65%;
}
@media (min-width: 550px) {
  .site-section__decoration-2 {
    margin-top: 10%;
  }
}

.site-footer__layer {
  background-color: #1C2956;
}
@media (min-width: 1100px) {
  .site-footer__layer {
    padding: 0 80px;
  }
}

.link-underline {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 35px;
  letter-spacing: 0.185em;
  color: #201E1E;
  text-decoration: none;
  border-bottom: 2px solid #201E1E;
  padding-bottom: 0;
}
@media (min-width: 1100px) {
  .link-underline {
    font-size: 15px;
  }
}

.section-to-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.section-to-right--space-below {
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .section-to-right--space-below {
    margin-bottom: 40px;
  }
}

.tile-slider-container {
  position: relative;
}
@media (min-width: 1100px) {
  .tile-slider-container--left-space {
    margin-left: 15%;
  }
}
@media (min-width: 1100px) {
  .tile-slider-container--right-space {
    margin-right: 15%;
  }
}

.tile-slider {
  list-style: none;
}
.tile-slider__title {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: #B7B7B7;
  margin-bottom: 20px;
  margin-top: 50px;
}
@media (min-width: 1100px) {
  .tile-slider__title {
    margin-left: -6px;
  }
}
@media (min-width: 1100px) {
  .tile-slider--to-left {
    margin-left: -60px;
  }
}
@media (min-width: 1100px) {
  .tile-slider--to-right {
    margin-left: -60px;
  }
}

.std-tile {
  color: #fff;
  background-color: #1C2956;
  height: 230px;
  padding: 20px 25px 50px 25px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1100px) {
  .std-tile {
    padding: 20px 25px;
    width: 370px;
    margin: 20px 40px 60px 55px;
    box-shadow: -11px 12px 23px rgba(16, 46, 111, 0.1);
  }
}
@media (min-width: 1500px) {
  .std-tile {
    width: 446px;
  }
}
.std-tile--light {
  color: #000;
  background-color: #fff;
  border: 1px solid rgba(16, 46, 111, 0.1);
}
@media (min-width: 1100px) {
  .std-tile--light {
    border: none;
  }
}
.std-tile--light .std-tile__category span {
  border-bottom: 1px solid #000;
}
.std-tile__categories {
  display: flex;
  flex-direction: row;
}
.std-tile__category {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.15em;
  padding-bottom: 0;
  max-width: max-content;
  margin-bottom: 36px;
  border-bottom: 1px solid #fff;
  margin-right: 15px;
}
@media (min-width: 1500px) {
  .std-tile__category {
    font-size: 12px;
  }
}
.std-tile__category:last-child {
  margin-right: 0;
}
.std-tile__category span {
  border-bottom: 1px solid #fff;
  margin-right: 15px;
}
.std-tile__category span:last-child {
  margin-right: 0;
}
.std-tile__date {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 27px;
}
.std-tile__content {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 25px;
  margin-left: 112px;
}
.std-tile__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.295em;
  color: #3C6BB4;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 112px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1100px) {
  .std-tile__link {
    opacity: 0;
  }
}
.std-tile:hover {
  box-shadow: -20px 20px 27px #3C6BB4;
}
.std-tile:hover .std-tile__link {
  opacity: 1;
}
.std-tile--small {
  height: 190px;
  padding: 20px 25px 60px 25px;
}
@media (min-width: 1100px) {
  .std-tile--small {
    padding: 20px 25px 40px 25px;
    width: 365px;
    margin: 15px 20px;
    margin-bottom: 40px;
  }
}
.std-tile--small .std-tile__category {
  font-size: 10px;
}
.std-tile--small .std-tile__date {
  font-size: 8px;
}
.std-tile--small .std-tile__content {
  font-size: 13px;
}

.image-full-width {
  display: block;
  width: 100%;
  height: auto;
}

.col-center--hv {
  display: flex;
  align-items: center;
}
@media (min-width: 1100px) {
  .col-center--hv {
    justify-content: center;
  }
}

.center-vertical {
  display: flex;
  align-items: center;
}

.square-tile {
  background-color: #F0F0F0;
  padding: 25% 0;
}
@media (min-width: 1100px) {
  .square-tile {
    padding: 0;
  }
}
.square-tile--dark {
  background-color: #1C2956;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 41px;
  letter-spacing: 0.03em;
  text-align: center;
}
.square-tile__logo img {
  height: 135px;
  width: 104px;
}

.section-06 {
  background-size: 0;
}
@media (min-width: 768px) {
  .section-06 {
    background-size: cover;
  }
}

.section-06-2 {
  background-size: 0;
  display: flex;
  flex-direction: column;
}
.section-06-2 .site-section__layer {
  background-color: #1C2956;
}
.section-06-2 .site-section__wrapper {
  padding: 0 0 40px 0 !important;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section-06-2 {
    height: 100vh;
    align-items: flex-end;
    flex-direction: row;
    background-size: cover;
    background-position: center;
  }
  .section-06-2 .site-section__layer {
    background-color: transparent;
  }
  .section-06-2 .site-section__wrapper {
    margin-top: 0;
  }
}

.section-08 .site-section__wrapper, .section-08-2 .site-section__wrapper {
  padding-bottom: 0;
}
.section-08 .col-center--hv, .section-08-2 .col-center--hv {
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  .section-08 .site-section__layer, .section-08-2 .site-section__layer {
    padding: 0;
  }
}
@media (min-width: 1500px) {
  .section-08 .site-section__layer, .section-08-2 .site-section__layer {
    padding: 0 100px;
  }
}
@media (min-width: 1700px) {
  .section-08 .site-section__layer, .section-08-2 .site-section__layer {
    padding: 0 10%;
  }
}

.section-09 {
  border-bottom: 1px solid #E5E5E5;
  margin-top: 50px;
}
@media (min-width: 1100px) {
  .section-09 {
    margin-top: 0;
  }
}
.section-09 .site-section__wrapper {
  padding: 0;
}

.col-image-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 33%;
}

.site-section__layer--full-width {
  padding: 0 20px;
}
@media (min-width: 420px) {
  .site-section__layer--full-width {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .site-section__layer--full-width {
    padding: 0;
  }
}

.site-section__layer--no-spaces {
  padding: 0;
}

.small-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #000;
  max-width: 130px;
  position: relative;
}
@media (min-width: 1700px) {
  .small-title {
    font-size: 12px;
    max-width: 170px;
  }
}
.small-title--decorated {
  margin-bottom: 18px;
  min-height: 32px;
}
.small-title--decorated:after {
  content: "";
  height: 2px;
  width: 284px;
  background-color: #000;
  position: absolute;
  bottom: -18px;
  left: 0;
}

.logo-static {
  margin-top: 60px;
}
@media (min-width: 1100px) {
  .logo-static {
    margin-top: 70px;
  }
}

.logo-slider-container {
  margin-top: 60px;
}
@media (min-width: 1100px) {
  .logo-slider-container {
    margin-top: 70px;
  }
}

.logo-slider {
  list-style: none;
}
.logo-slider .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider .owl-item {
  display: flex;
  justify-content: center;
}
.col-mobile-space-above {
  margin-top: 60px;
}
@media (min-width: 1100px) {
  .col-mobile-space-above {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .column-decorated {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.site-footer__logo {
  margin-bottom: 60px;
}
.site-footer__adress {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.08em;
}
.site-footer__contact {
  list-style: none;
  margin-top: 50px;
}
.site-footer__contact > li {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  line-height: 20px;
  align-items: baseline;
}
.site-footer__contact > li .site-footer__title {
  margin-right: 16px;
  text-transform: uppercase;
}
.site-footer__contact > li:last-child {
  margin-bottom: 0;
}
.site-footer__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.295em;
  text-transform: uppercase;
}
.site-footer__title--space-below {
  margin-bottom: 20px;
}
.site-footer__title--narrow {
  max-width: 240px;
}
.site-footer .col-3 {
  padding: 75px 0 55px 0;
}
.site-footer .col-9 {
  padding: 0 0 55px 0;
}
@media (min-width: 1100px) {
  .site-footer .col-9 {
    padding: 75px 0 55px 0;
    margin-left: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.site-footer .col-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1100px) {
  .site-footer .col-3 {
    display: block;
  }
}
.site-footer__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer__menu {
    align-items: unset;
  }
}
@media (min-width: 1100px) {
  .site-footer__menu {
    /*flex-wrap: wrap;
    max-height: 240px;*/
    align-items: unset;
  }
}
.site-footer__menu > li {
  margin-bottom: 36px;
  max-width: max-content;
}
.site-footer__menu > li a {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.site-footer__menu > li a:hover {
  color: #3C6BB4;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (min-width: 1100px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0;
  }
}
.site-footer__bottom-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
}
@media (min-width: 1100px) {
  .site-footer__bottom-menu {
    flex-direction: row;
  }
}
.site-footer__bottom-menu > li {
  margin-right: 35px;
}
.site-footer__bottom-menu > li:last-child {
  margin-right: 0;
}
.site-footer__bottom-menu > li a {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}
.site-footer__bottom-menu > li a:hover {
  color: #3C6BB4;
}
.site-footer__bottom-copyrights {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: .site-footer__bottom-copyrights light-color;
}

.column-to-right {
  display: flex;
  justify-content: center;
}
@media (min-width: 1100px) {
  .column-to-right {
    justify-content: flex-end;
  }
}

@media (min-width: 1100px) {
  .column-to-left {
    margin-left: -60px;
  }
}
@media (min-width: 1300px) {
  .column-to-left {
    margin-left: -80px;
  }
}
@media (min-width: 1500px) {
  .column-to-left {
    margin-left: -100px;
  }
}
@media (min-width: 1700px) {
  .column-to-left {
    margin-left: 0 10%;
  }
}

.image-auto-width {
  width: 100% !important;
}
@media (min-width: 650px) {
  .image-auto-width {
    width: 60% !important;
  }
}
@media (min-width: 1100px) {
  .image-auto-width {
    width: auto !important;
  }
}
.image-auto-width--space-below {
  margin-bottom: 45px;
}
@media (min-width: 650px) {
  .image-auto-width--big {
    width: 100% !important;
  }
}
@media (min-width: 1100px) {
  .image-auto-width--big {
    width: auto !important;
  }
}

.medium-image {
  width: 60% !important;
  max-width: 480px;
}
@media (min-width: 1100px) {
  .medium-image {
    width: 80% !important;
  }
}

@media (min-width: 1100px) {
  .section-slider .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
  }
}
.section-slider .owl-carousel {
  display: block;
}

.icon-hover {
  position: relative;
}
.icon-hover:after, .icon-hover:before {
  content: "";
  background-repeat: no-repeat;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.icon-hover:after {
  opacity: 1;
}
.icon-hover:before {
  opacity: 0;
}
.icon-hover:hover:after {
  opacity: 0;
}
.icon-hover:hover:before {
  opacity: 1;
}

.icon-facebook:after, .icon-facebook:before {
  height: 20px;
  width: 20px;
}
.icon-facebook:after {
  background-image: url("/img/icons/facebook.svg");
}
.icon-facebook:before {
  background-image: url("/img/icons/facebook-hover.svg");
}
.icon-facebook--light:after {
  background-image: url("/img/icons/facebook-light.svg");
}

.icon-linkedin:after, .icon-linkedin:before {
  height: 20px;
  width: 20px;
}
.icon-linkedin:after {
  background-image: url("/img/icons/linkedin.svg");
}
.icon-linkedin:before {
  background-image: url("/img/icons/linkedin-hover.svg");
}
.icon-linkedin--light:after {
  background-image: url("/img/icons/linkedin-light.svg");
}

.icon-instagram:after, .icon-instagram:before {
  height: 20px;
  width: 20px;
}
.icon-instagram:after {
  background-image: url("/img/icons/instagram.svg");
}
.icon-instagram:before {
  background-image: url("/img/icons/instagram-hover.svg");
}
.icon-instagram--light:after {
  background-image: url("/img/icons/instagram-light.svg");
}

.socialmedia__content > li:last-child .icon-hover {
  margin-right: 0;
}

#mouse-circle {
  opacity: 0;
}
@media (min-width: 992px) {
  #mouse-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    margin: -140px 0px 0px -140px;
    border: 1px solid #3C6BB4;
    border-radius: 50%;
    pointer-events: none !important;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0);
    z-index: 9999;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #mouse-circle:after {
    content: "";
    height: 35px;
    width: 29px;
    display: block;
    background-image: url("/img/icons/play.svg");
    background-repeat: no-repeat;
  }
}

.cursor-hover-play {
  cursor: pointer;
}

body {
  overflow-x: hidden !important;
}

.circle-button {
  display: none;
}
@media (min-width: 992px) {
  .circle-button {
    position: absolute;
    height: 140px;
    width: 140px;
    display: block;
    cursor: pointer;
  }
}
.circle-button:before {
  content: "";
  position: absolute;
  height: 140px;
  width: 140px;
  display: block;
  background-image: url("/img/icons/circle-button.png");
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.circle-button:after {
  content: "";
  position: absolute;
  height: 140px;
  width: 140px;
  display: block;
  background-image: url("/img/icons/circle-button-hover.png");
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.circle-button:hover:before {
  opacity: 0;
}
.circle-button:hover:after {
  opacity: 1;
}
.circle-button--tile-slider {
  bottom: 120px;
  right: -15%;
}
.circle-button--section-slider {
  bottom: 40px;
  left: 40px;
}
.circle-button--section-slider-2 {
  bottom: -60px;
  left: 40px;
}
.circle-button--reverse {
  transform: rotate(180deg);
}
.circle-button--horizontal-carousel {
  z-index: 99;
  bottom: 30%;
  right: -15%;
}
.circle-button--horizontal-carousel-2 {
  top: 70px;
  right: -200px;
}
.circle-button--people {
  bottom: calc(50% - 70px);
  right: 0;
}
.circle-button--center {
  position: relative;
  bottom: unset;
  right: unset;
}
.circle-button--mobile {
  display: block;
}
@media (max-width: 992px) {
  .circle-button--mobile-slider {
    display: block;
    position: absolute;
    top: -70px;
    right: 20%;
    transform: scale(0.5);
    height: 38px;
    width: 38px;
  }
}
@media (max-width: 992px) {
  .circle-button--mobile-slider-bottom {
    display: block;
    position: absolute;
    bottom: 0;
    right: 20%;
    transform: scale(0.5);
    height: 38px;
    width: 38px;
  }
}

.overlayer__content-container {
  height: 80vh;
  width: 80vw;
}
@media (min-width: 2000px) {
  .overlayer__content-container {
    width: 82vw;
  }
}

.overlayer__content, .video, .video iframe {
  height: 100%;
  width: 100%;
}

.section-11 {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 50%;
}
@media (max-width: 992px) {
  .section-11 {
    background-image: none !important;
  }
}
.col-dark {
  background-color: #1C2956;
}
.col-dark .section-title, .col-dark .section-text, .col-dark .section-pretitle {
  color: #fff;
}

.col-light {
  background-color: #F0F0F0;
}

.numbered-list {
  list-style: none;
  counter-reset: my-input-counter;
}
.numbered-list > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 1300px) {
  .numbered-list > li {
    margin-bottom: 0;
  }
}
.numbered-list > li:before {
  counter-increment: my-input-counter;
  content: counter(my-input-counter);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0.05em;
  color: #1C2956;
  min-width: 28px;
  margin-right: 33px;
}

@media (min-width: 1300px) {
  .people {
    margin-left: 60px;
  }
}
.people__group-title {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: #717171;
}
.people__list {
  list-style: none;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: revert;
  flex-wrap: wrap;
}
@media (min-width: 1300px) {
  .people__list {
    margin: 20px -100px 0 0;
  }
}

.person-tile {
  width: max-content;
  margin-right: 70px;
  margin-bottom: 80px;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .person-tile {
    margin-right: 100px;
  }
}
.person-tile__photo {
  filter: drop-shadow(-20px 20px 29px rgba(0, 45, 115, 0.1));
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 287px;
  width: 256px;
}
.person-tile__name {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  margin-top: 35px;
  margin-bottom: 10px;
}
.person-tile__position {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 35px;
  max-width: 256px;
  min-height: 36px;
}
.person-tile:hover .person-tile__photo {
  box-shadow: -20px 20px 27px #3C6BB4;
}

.section-13 {
  background-image: url("/img/logo-bg-small.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}

@media (min-width: 1100px) {
  .section-12 .col-dark {
    margin-top: 64px;
    height: max-content;
  }
}
@media (min-width: 1100px) {
  .section-12 .col-light {
    margin-top: -64px;
    height: max-content;
  }
}

.slide-menu {
  text-align: left;
}
@media (min-width: 1100px) {
  .slide-menu {
    width: 65%;
    height: auto;
    border-radius: 20px 0px 20px 20px;
    max-width: 940px;
  }
}
.slide-menu__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 100px;
}
.slide-menu__menu:nth-child(1) {
  /* position: relative;

  &:after {
    content: '';
    height: 40%;
    width: 1px;
    background-color: $primary-color;
    position: absolute;
    top: 33%;
    right: 0;
  } */
}
.slide-menu__menu:nth-child(2) {
  margin-top: 0;
}
@media (min-width: 1100px) {
  .slide-menu__menu {
    align-items: flex-start;
    max-height: calc(100% - 100px);
    padding: 130px 100px 110px 100px;
    margin-top: 0;
    width: 100%;
  }
}
.slide-menu__menu > li {
  margin-bottom: 40px;
}
@media (min-width: 1100px) {
  .slide-menu__menu > li:last-child {
    margin-bottom: 0;
  }
}
.slide-menu__menu > li a {
  text-decoration: none;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.slide-menu__menu > li a:hover {
  color: #3C6BB4;
}
.slide-menu__menu--right-border {
  position: relative;
}
@media (min-width: 550px) {
  .slide-menu__menu--right-border:after {
    content: "";
    height: calc(100% - 240px);
    width: 1px;
    background-color: #000;
    position: absolute;
    top: 130px;
    right: 0;
  }
}
@media (min-width: 1100px) {
  .slide-menu__wrapper {
    box-shadow: 0px 15px 45px rgba(16, 46, 111, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*&:after {
      content: '';
      // height: 40%;
      height: 70%;
      width: 1px;
      background-color: $dark-color;
      position: absolute;
      // top: 32%;
      top: 15%;
      right: 50%;
    }*/
  }
}

.section-14 {
  position: relative;
}
.section-14 .site-section__wrapper {
  padding: 80px 0 40px 0;
}
@media (min-width: 992px) {
  .section-14 .site-section__wrapper {
    padding: 120px 0 100px 0;
  }
}
@media (min-width: 1700px) {
  .section-14 .site-section__wrapper {
    padding: 140px 0 120px 0;
  }
}

.horizontal-list-section {
  margin-top: 60px;
}
.horizontal-list-section__title {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: #717171;
  margin-bottom: 75px;
}
.horizontal-list-section__title--underline {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 0.185em;
  color: #201E1E;
  text-transform: none;
  position: relative;
  width: max-content;
}
.horizontal-list-section__title--underline:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #201E1E;
}

.horizontal-list {
  list-style: none;
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.horizontal-list > li {
  width: 140px;
  margin-bottom: 50px;
  text-align: center;
  margin-right: 8px;
  margin-left: 8px;
}
@media (min-width: 380px) {
  .horizontal-list > li {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 1100px) {
  .horizontal-list > li {
    margin-right: 60px;
    margin-left: 0;
    margin-bottom: 90px;
  }
  .horizontal-list > li:last-child {
    margin-right: 0;
  }
}
.horizontal-list__icon {
  height: 80px;
  width: auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  margin-bottom: 35px;
}
.horizontal-list--wide > li {
  width: 260px;
}
.horizontal-list--narrow > li {
  width: 210px;
}
@media (min-width: 1100px) {
  .horizontal-list--narrow > li {
    margin-right: 60px;
  }
}
.horizontal-list--mobile-center {
  display: flex;
  justify-content: center;
}
@media (min-width: 650px) {
  .horizontal-list--mobile-center {
    justify-content: unset;
  }
}
.horizontal-list--seven-icons {
  max-width: 1400px;
}

@media (min-width: 1100px) {
  .col-desktop-space-left {
    margin-left: 140px;
  }
}

.col-space-left {
  margin-left: 0;
}
@media (min-width: 650px) {
  .col-space-left {
    margin-left: 60px;
  }
}
@media (min-width: 1100px) {
  .col-space-left {
    margin-left: 140px;
  }
}

.statistics__one-column .statistics__item {
  margin-bottom: 50px;
}

.statistics-two-columns {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .statistics-two-columns {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 1100px) {
  .statistics-two-columns {
    display: block;
  }
}
.statistics-two-columns .statistics__item {
  margin-bottom: 30px;
}
@media (min-width: 1100px) {
  .statistics-two-columns .statistics__item {
    margin-bottom: 100px;
  }
}
@media (min-width: 1100px) {
  .statistics-two-columns--space-above {
    margin-top: 100px;
  }
}

#contact-form {
  margin-top: 64px;
  width: 100%;
}
@media (min-width: 650px) {
  #contact-form {
    width: 80%;
  }
}
@media (min-width: 1100px) {
  #contact-form {
    width: 650px;
  }
}

.form-field {
  margin-bottom: 38px;
}
.form-field__title {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.185em;
  color: #B7B7B7;
}

.form-fields--one-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form-fields--one-line .form-field {
  width: 45%;
}

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

.section-18 {
  position: relative;
}
@media (min-width: 1100px) {
  .section-18:after {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;
    height: 70%;
    width: 70px;
    background-color: #1C2956;
  }
}

.border-tile {
  border: 1px solid #1C2956;
  padding: 30px;
  max-width: max-content;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media (min-width: 1100px) {
  .border-tile {
    margin-right: 20px;
  }
}
.border-tile:hover {
  border: 1px solid #3C6BB4;
}
.border-tile__description {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  width: 195px;
  height: 80px;
  display: flex;
  align-items: center;
}
.border-tile--no-border {
  border: 1px solid transparent;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.border-tile--no-border:hover {
  border: 1px solid #3C6BB4;
}

.col-3--bottom {
  display: flex;
  align-items: flex-end;
}

.section-17 {
  position: relative;
}
.section-17:before {
  display: none;
}
@media (min-width: 1100px) {
  .section-17:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 280px;
  }
}
@media (min-width: 1500px) {
  .section-17:before {
    height: 768px;
    width: 340px;
  }
}

@media (min-width: 992px) {
  .section-06 .site-section__wrapper, .section-06-2 .site-section__wrapper {
    padding: 145px 0;
  }
}

.section-20 {
  overflow: hidden;
  position: relative;
}
.section-20:before {
  content: "";
  background-color: #1C2956;
  width: 140px;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-20 .horizontal-carousel-container {
  margin-bottom: 0;
}

.section-21 .col-3-from-992 {
  padding: 80px 10px;
}
@media (min-width: 1100px) {
  .section-21 .col-3-from-992 {
    padding: 180px 80px;
  }
}
.section-21 .col-9-from-992 {
  padding: 0;
}
.section-21 .investors-section {
  padding: 40px 20px;
}
@media (min-width: 1100px) {
  .section-21 .investors-section {
    padding: 60px 80px;
  }
}

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

.light-color-background {
  background-color: #F0F0F0;
}

.std-vertical-menu {
  list-style: none;
}
.std-vertical-menu > li {
  margin-bottom: 26px;
}
.std-vertical-menu > li:last-child {
  margin-bottom: 0;
}
.std-vertical-menu > li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 50px;
  color: #1C2956;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 3px solid transparent;
  width: 100%;
  display: block;
}
.std-vertical-menu .active a {
  font-weight: 700;
  font-size: 16px;
  border-bottom: 3px solid #3AA7D2;
}
.std-vertical-menu--filters {
  max-width: max-content;
}
.std-vertical-menu--filters > li {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  letter-spacing: 0.15em;
  color: #1C2956;
  cursor: pointer;
  margin-bottom: 40px;
  border-bottom: 3px solid transparent;
  padding-bottom: 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
}
.std-vertical-menu--filters > li:hover {
  font-weight: 700;
  border-bottom: 3px solid #3AA7D2;
}
.std-vertical-menu--filters .active {
  font-weight: 700;
  border-bottom: 3px solid #3AA7D2;
}

.investors-section {
  display: block;
}
.investors-section:last-child {
  margin-bottom: 0;
}
.investors-section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0.02em;
  color: #1C2956;
  margin-bottom: 45px;
}
.investors-section__subtitle {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 20px;
}
.investors-section__text {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000;
  text-align: justify;
}
.investors-section__text p {
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .investors-section--space-above .investors-section__title {
    padding-top: 135px;
  }
}
@media (min-width: 1100px) {
  .investors-section--space-below {
    padding: 60px 80px 95px 80px !important;
  }
}
.investors-section--light {
  background-color: #F8F8F8;
}
.investors-section--dark {
  background-color: #F0F0F0;
}

.sticky {
  position: sticky;
  top: 60px;
}

.description-with-icon-container {
  display: flex;
  justify-content: center;
  margin-top: 86px;
}

.description-with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  min-height: 80px;
}
.description-with-icon__icon {
  margin-right: 34px;
}
.description-with-icon__year {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  align-items: center;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 10px;
}
.description-with-icon__text {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #201E1E;
  max-width: 330px;
}

.vertical-scroll-list {
  list-style: none;
  padding: 50px 0;
}
@media (min-width: 1100px) {
  .vertical-scroll-list {
    padding: 60px 47px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}
.vertical-scroll-list > li {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  margin: 20px 0;
  position: relative;
  padding: 0 0 8px 0;
  cursor: pointer;
}
.vertical-scroll-list > li:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.vertical-scroll-list > li:after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 19px;
  background-image: url("/img/icons/arrow-small.svg");
}

.news-container {
  list-style: none;
}

.news {
  margin-top: 70px;
}
.news__date {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: #717171;
  margin-bottom: 10px;
}
.news__title {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.news__text {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  text-align: justify;
  margin-bottom: 40px;
}
.news__file {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  text-align: justify;
  text-decoration: underline;
  margin-bottom: 6px;
}
.news__file a {
  color: #000;
}

.read-more {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.295em;
  color: #3C6BB4;
  text-transform: uppercase;
  text-decoration: none;
}

.section-31 .section-header {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1100px) {
  .section-31 .section-header {
    margin-left: 130px;
    margin-right: 130px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.section-32 {
  overflow: hidden;
}

.stories-container {
  margin-top: 72px;
  position: relative;
}
@media (min-width: 1100px) {
  .stories-container {
    padding-right: 15%;
  }
}
.stories {
  list-style: none;
}

.single-story {
  height: 315px;
  width: 338px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 50px;
}
.single-story__content {
  background-color: #1C2956;
  padding: 24px 32px;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.single-story__name {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: none;
}
.single-story__position {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: none;
  margin-bottom: 15px;
}
.single-story__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
}

.column-center-v {
  display: flex;
  align-items: center;
}

.column-overlayer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.line {
  display: block;
}

.square-tile {
  background-size: cover;
  height: 25vw;
}

.main-logo {
  background-image: url("/img/pgf-logo-big.svg");
}
.main-logo--big {
  width: 104px;
  height: 135px;
}

address {
  font-style: normal;
}

.column-shadow {
  box-shadow: -8px 10px 27px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.column-shadow:hover {
  box-shadow: -20px 20px 27px #3C6BB4;
}

.details-list {
  list-style-type: none;
}
.details-list__item {
  display: block;
}
.details-list__title {
  cursor: pointer;
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  border-bottom: 1px solid #EEEEEE;
  position: relative;
  padding: 5px 0;
  margin-bottom: 30px;
  user-select: none;
}
.details-list__arrow {
  position: absolute;
  right: 0;
  top: 10px;
}
@media (min-width: 1100px) {
  .details-list--narrow {
    max-width: 75%;
  }
}

.list-decotared {
  list-style: none;
  margin-bottom: 10px;
}
.list-decotared > li {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  padding-bottom: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  display: flex;
  align-items: baseline;
}
.list-decotared > li:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #EEEEEE;
  border-radius: 50%;
  margin-right: 16px;
}
.list-decotared > li:hover {
  font-weight: 700;
}
.list-decotared > li:hover:before {
  background: #1C2956;
}

.icon-plus {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.offer-tile__category {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 49px;
  letter-spacing: 0.05em;
  color: #1C2956;
}
.offer-tile__category--space-below {
  margin-bottom: 20px;
}
.offer-tile__title {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
}
.offer-tile__title--space-below {
  margin-bottom: 20px;
}
.offer-tile__description {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  letter-spacing: 0.02em;
  color: #000;
}
.offer-tile__description--space-below {
  margin-bottom: 50px;
}
@media (min-width: 1100px) {
  .offer-tile--narrow {
    max-width: 75%;
  }
}

.col-4--square {
  height: 290px;
  position: relative;
  display: flex;
}
@media (min-width: 1100px) {
  .col-4--square {
    height: 25vw;
  }
}

.color-tile {
  padding: 60px 36px 40px 36px;
  background-color: #E7E7E7;
  position: relative;
  width: 100%;
}
.color-tile--light {
  background-color: #3C6BB4;
}
.color-tile--light .color-tile__city, .color-tile--light .color-tile__title, .color-tile--light .color-tile__price {
  color: #fff;
}
.color-tile--dark {
  background-color: #1C2956;
}
.color-tile--dark .color-tile__city, .color-tile--dark .color-tile__title, .color-tile--dark .color-tile__price {
  color: #fff;
}
.color-tile__city {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.color-tile__title {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 10px;
}
.color-tile__price {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #000;
}
.color-tile .link-with-arrow {
  position: absolute;
  bottom: 40px;
  right: 110px;
}

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

.section-16, .section-19, .section-30 {
  position: relative;
  overflow: hidden;
}

.decorated-list {
  list-style: none;
  margin-top: 80px;
}
.decorated-list__item {
  text-decoration: none;
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #000;
  border-radius: 32px;
  padding: 8px 50px 8px 20px;
  display: block;
  width: max-content;
  position: relative;
  cursor: pointer;
  user-select: none;
}
@media (min-width: 1100px) {
  .decorated-list__item {
    font-size: 14px;
  }
}
.decorated-list__item:after {
  content: "";
  position: absolute;
  right: 21px;
  width: 8px;
  height: 19px;
  background-image: url("/img/icons/arrow-small.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.decorated-list__item.active + .decorated-list__submenu {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: 10px;
}
.decorated-list__item.active:after {
  transform: rotate(90deg);
}
.decorated-list > li {
  margin-bottom: 30px;
}
.decorated-list > li:last-child a {
  margin-bottom: 0;
}
.decorated-list__submenu {
  opacity: 0;
  height: 0;
  visibility: hidden;
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000;
  list-style: none;
  margin-top: 0;
  margin-left: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.decorated-list__submenu a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #000000;
}
.decorated-list__submenu > li {
  margin-bottom: 9px;
}
.decorated-list__submenu > li:last-child {
  margin-bottom: 0;
}

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

.info-tile {
  margin-bottom: 40px;
}
@media (min-width: 1100px) {
  .info-tile {
    margin-bottom: 0;
  }
}
.info-tile__title {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #1C2956;
}
.info-tile__hours, .info-tile__phone {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 0.185em;
  color: #1C2956;
}
.info-tile__name {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.185em;
  color: #1C2956;
  margin-bottom: 8px;
  margin-top: 8px;
}
.info-tile__email {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.185em;
  color: #1C2956;
  margin-top: 6px;
}
.info-tile__email a {
  text-decoration: none;
  color: #1C2956;
}

.info-container {
  padding: 30px 60px;
}
.info-container .section-title {
  margin-bottom: 24px;
}

.info-container--mobile-wide {
  padding: 30px 30px;
}
@media (min-width: 650px) {
  .info-container--mobile-wide {
    padding: 30px 60px;
  }
  .info-container--mobile-wide .section-title {
    margin-bottom: 50px;
  }
}

.adress-container {
  padding: 50px 40px 20px 40px;
}
.adress-container div:last-child {
  padding-bottom: 0;
}

.adress__title {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #1C2956;
  margin-bottom: 10px;
}
.adress__info {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #1C2956;
  margin-bottom: 30px;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-direction: row;
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 13px;
  letter-spacing: 0.15em;
  color: #B7B7B7;
  align-items: baseline;
  margin-top: 20px;
}
.breadcrumbs > li {
  display: flex;
  align-items: center;
}
.breadcrumbs > li:after {
  content: "";
  background-image: url("/img/icons/breadcrumbs-arrow.svg");
  background-repeat: no-repeat;
  height: 19px;
  width: 8px;
  margin: 0 18px;
  display: inline-block;
}
.breadcrumbs > li:last-child {
  font-weight: 700;
  color: #1C2956;
}
.breadcrumbs > li:last-child:after {
  display: none;
}

.map {
  display: block;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  padding-bottom: 86%;
  background-size: contain;
  position: relative;
}
.map__point {
  position: absolute;
  /*width: 30px;
  height: 30px;*/
  width: 35px;
  height: 50px;
  cursor: pointer;
}
.map__point:hover .map__point-description {
  display: block;
}
.map__point-description {
  width: max-content;
  display: block;
  background-color: #3AA7D2;
  color: #fff;
  padding: 14px 30px;
  position: absolute;
  bottom: 40px;
  left: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: none;
}
.map__point-title {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 5px;
}
.map__point-content {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #fff;
}

.section-article-top {
  background-image: url("/img/article-top.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 574px;
  position: relative;
}

.article__text {
  margin-bottom: 40px;
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #000;
}
.article__text p {
  margin-bottom: 30px;
}
.article__text--small {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
}
.article__text--big {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0.01em;
  color: #1C2956;
}
@media (min-width: 1100px) {
  .article__text--space-left {
    margin-left: 116px;
  }
}
.article__text--space-top {
  margin-top: 60px;
}
@media (min-width: 1100px) {
  .article__text--more-space-left {
    margin-left: 216px;
  }
}
.article__text--justify {
  text-align: justify;
}
.article__tile {
  margin-bottom: 50px;
  padding-left: 60px;
  padding-right: 20px;
  position: relative;
}
@media (min-width: 1100px) {
  .article__tile {
    margin-bottom: 96px;
    padding-left: 116px;
    padding-right: 78px;
  }
}
.article__tile:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background-color: #000;
}

.section-article-content {
  position: relative;
}

.flex-column--space-above {
  padding-top: 60px;
}
.flex-column--mobile-reverse {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 650px) {
  .flex-column--mobile-reverse {
    flex-direction: unset;
  }
}

.section-only-movie {
  position: relative;
}
.section-only-movie .section__video {
  position: relative;
}

.categories-list {
  list-style: none;
  display: flex;
}
.categories-list > li {
  margin-right: 34px;
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.15em;
  color: #201E1E;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.categories-list > li:last-child {
  margin-right: 0;
}
.categories-list a {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.15em;
  color: #201E1E;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.categories-list a:hover {
  border-bottom: 1px solid #201E1E;
}

.section-breadcrumbs .site-section__wrapper {
  padding: 20px 0;
}
@media (min-width: 992px) {
  .section-breadcrumbs .site-section__wrapper {
    padding: 10px 0;
  }
}
@media (min-width: 1700px) {
  .section-breadcrumbs .site-section__wrapper {
    padding: 15px 0;
  }
}

.article-header {
  max-width: 480px;
  position: absolute;
  bottom: 20px;
}
@media (min-width: 1100px) {
  .article-header {
    bottom: 66px;
    right: 142px;
  }
}
.article-header__date {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.15em;
  color: #1C2956;
  margin-bottom: 20px;
}
.article-header__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #1C2956;
}

.news-tiles {
  margin-top: 40px;
}

.news-tile {
  display: block;
  padding-bottom: 125%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/img/article-top.jpg");
}
@media (min-width: 650px) {
  .news-tile {
    padding-bottom: 60%;
  }
}
@media (min-width: 1100px) {
  .news-tile {
    width: 80%;
    padding-bottom: 45%;
  }
}
@media (min-width: 1500px) {
  .news-tile {
    padding-bottom: 50%;
  }
}
.news-tile__content {
  background-color: #1C2956;
  padding: 20px 25px 50px 25px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 1100px) {
  .news-tile__content {
    max-width: 45%;
  }
}
@media (min-width: 1500px) {
  .news-tile__content {
    max-width: 65%;
  }
}
.news-tile__category {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 36px;
  padding-bottom: 5px;
  max-width: max-content;
}
.news-tile__category span {
  margin-right: 20px;
  border-bottom: 1px solid #fff;
}
.news-tile__category span:last-child {
  margin-right: 0;
}
.news-tile__date {
  font-family: "spartan", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 10px;
}
.news-tile__title {
  font-family: "spartan", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (min-width: 1100px) {
  .news-tile__title {
    margin-left: 140px;
    min-height: 100px;
    min-width: 250px;
  }
}

.circle-button--articles-slider {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 2;
}

.site-section--articles {
  position: relative;
}

.std-gallery-container {
  overflow: hidden;
}
@media (min-width: 1100px) {
  .std-gallery-container {
    max-width: 70%;
  }
}

.tile-slider-container--right-space .circle-button--articles-slider {
  right: -15%;
}

.bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none;
}

@media (min-width: 550px) and (max-width: 1100px) {
  .site-footer .col-3, .site-footer .col-9 {
    width: max-content;
  }
}
@media (min-width: 550px) and (max-width: 1100px) {
  .site-footer .col-9 {
    padding: 75px 0 55px 0;
  }
}
@media (min-width: 550px) and (max-width: 1100px) {
  .site-footer .col-9 .col-4 {
    width: 100%;
  }
}
@media (min-width: 550px) and (max-width: 1100px) {
  .site-footer .col-9 .flex-container {
    flex-direction: column;
  }
}
@media (min-width: 550px) and (max-width: 1100px) {
  .site-footer .flex-container {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 550px) and (max-width: 1100px) {
  #offer-bookmarks .flex-container {
    display: flex;
    justify-content: space-between;
  }
  #offer-bookmarks .flex-container #info-details-list {
    margin-right: 50px;
  }
}

.border-tiles__one-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.articles-slider-container .owl-item {
  width: max-content;
}

@media (min-width: 550px) and (max-width: 1100px) {
  .section-40 .flex-container {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 550px) and (max-width: 1100px) {
  .statistics {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .statistics .statistics__item, .statistics .number-tile {
    width: 40%;
    margin-bottom: 20px;
  }
}

@media (min-width: 550px) and (max-width: 1100px) {
  .flex-column--from-768 {
    display: flex;
  }
}
@media (min-width: 550px) and (max-width: 1100px) {
  .flex-column--from-768 .square-tile {
    padding: 12% 0;
  }
  .flex-column--from-768 .square-tile--image {
    padding: 24% 0;
  }
}

.tile-slider--filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.std-tabs {
  margin-bottom: 90px;
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 650px) {
  .std-tabs {
    flex-direction: row;
  }
}
.std-tabs__tab {
  font-family: "spartan", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1C2956;
  padding: 20px 40px;
  background-color: #F1F1F1;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 650px) {
  .std-tabs__tab {
    text-align: left;
  }
}
.std-tabs__tab.active {
  background-color: #1C2956;
  color: #fff;
}

.slide-menu .socialmedia {
  position: relative;
  margin: 30px 0 60px 0;
  display: flex;
  justify-content: center;
  bottom: unset;
  right: unset;
}
.slide-menu .socialmedia__content > li:last-child {
  margin-right: 0;
}
@media (min-width: 1300px) {
  .slide-menu .socialmedia {
    margin: 0;
    position: absolute;
    display: block;
    bottom: 60px;
    left: calc(50% + 100px);
  }
}

.background-grid--animation .background-grid__line--short {
  height: 216px;
  margin-left: -1px;
  border-left: 3px solid #000;
}
.background-grid--animation .background-grid__line--short:nth-child(1), .background-grid--animation .background-grid__line--short:nth-child(2) {
  border-left: 3px solid transparent;
}

.overlayer-team__image {
  display: block;
  padding-bottom: 164%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-bottom: 30px;
}
@media (min-width: 650px) {
  .overlayer-team__image {
    margin-bottom: 0;
  }
}
.overlayer-team__image--icon {
  background-size: contain;
  background-position: center;
}
.overlayer-team__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #1C2956;
  margin-bottom: 20px;
}
@media (min-width: 650px) {
  .overlayer-team__name {
    font-size: 40px;
    line-height: 49px;
  }
}
.overlayer-team__position {
  font-family: "spartan", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 45px;
}

.column-space-left {
  margin-left: 10%;
}

.section-16 .statistics__item {
  border-left: 3px solid transparent;
}

.section-21 .col-9-from-992 .investors-section:first-child {
  background-color: #F0F0F0;
}
@media (min-width: 1100px) {
  .section-21 .col-9-from-992 .investors-section:first-child .investors-section__title {
    padding-top: 135px;
  }
}
.section-21 .col-9-from-992 .investors-section:nth-child(2) {
  background-color: #F8F8F8;
}

.skk_filters .skk_filters_btn_search {
  height: 52px !important;
  margin: 23px 30px 0 0px !important;
  background-color: #3C6BB4 !important;
  border: 1px solid #3C6BB4 !important;
}

.skk_offers th {
  color: #3C6BB4 !important;
  border-bottom: 2px solid #3C6BB4 !important;
}

.skk_filters .skk_filters_btn_search {
  cursor: pointer;
}

.skkPagerActivePage {
  background-color: #3C6BB4;
  color: #fff !important;
}

.section-07 .std-tabs .std-tabs__tab:first-child {
  border-right: 2px solid #fff;
}

.form__info-container {
  padding: 0 0 20px 0;
}
.form__info-container .failure {
  color: #DB2B39;
}
.form__info-container .success {
  color: #090;
}

.std-tile__category {
  list-style: none;
  display: flex;
}
.std-tile__category > li {
  margin-right: 15px;
}
.std-tile__category > li:last-child {
  margin-right: 0;
}

.language-switch {
  list-style: none;
  display: flex;
  position: absolute;
  top: 55px;
  right: 35%;
}
@media (min-width: 550px) {
  .language-switch {
    top: 35px;
    right: 100px;
  }
}
@media (min-width: 1300px) {
  .language-switch {
    top: 30px;
    right: 60px;
  }
}
.language-switch > li:after {
  content: "|";
  margin: 0 6px;
}
.language-switch > li:last-child:after {
  content: "";
  margin: 0;
}
.language-switch a {
  text-decoration: none;
  color: #1C2956;
}
.language-switch a:hovrer {
  color: #3C6BB4;
}
.language-switch a.active {
  font-weight: 700;
}

.header-link-container {
  padding: 0 40px;
  margin-top: 0;
}
@media (min-width: 420px) {
  .header-link-container {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .header-link-container {
    padding: 0 60px;
  }
}
@media (min-width: 1300px) {
  .header-link-container {
    padding: 0 80px;
  }
  .header-link-container .link-with-arrow {
    margin-left: 10%;
  }
}
@media (min-width: 1500px) {
  .header-link-container {
    padding: 0 100px;
  }
}
@media (min-width: 1700px) {
  .header-link-container {
    padding: 0 10%;
  }
}

.header-link-container-right {
  padding: 0 40px;
  margin-top: 0;
}
@media (min-width: 420px) {
  .header-link-container-right {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .header-link-container-right {
    padding: 0 60px;
  }
}
@media (min-width: 1300px) {
  .header-link-container-right {
    padding: 0 80px;
  }
  .header-link-container-right .link-with-arrow {
    margin-left: 55%;
  }
}
@media (min-width: 1500px) {
  .header-link-container-right {
    padding: 0 100px;
  }
}

.overlayer__content-container {
  background: #fff;
  overflow: auto;
}

.section-07 .std-tile {
  margin-bottom: 20px;
}
@media (min-width: 550px) {
  .section-07 .std-tile {
    margin-bottom: 0;
  }
}

.section-07 .std-tile {
  margin-bottom: 55px;
}

@media only screen and (min-device-width: 480px) and (max-device-width: 1024px) and (orientation: landscape) {
  .col-6-from-992 {
    width: 100%;
  }

  .border-tiles__one-column {
    flex-wrap: nowrap;
  }

  .std-tile {
    max-width: 70%;
  }

  .circle-button--tile-slider {
    right: 0%;
    z-index: 99;
  }

  .circle-button--horizontal-carousel {
    bottom: -40%;
    right: 0%;
  }

  .circle-button--people {
    bottom: -40px;
  }
}
.bookmarks-manager__bookmark.active {
  font-weight: 700;
}

#ytplayer-overlayer {
  height: 90%;
  width: 90%;
}

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

.history-carousel-container {
  margin-bottom: 0;
}

.header-icon {
  margin-bottom: 40px;
  width: 40%;
}
@media (min-width: 650px) {
  .header-icon {
    margin-bottom: 0;
    margin-left: 40px;
    width: auto;
  }
}
@media (min-width: 1100px) {
  .header-icon {
    margin-left: 60px;
  }
}

.flex-container--narrow {
  width: fit-content;
}

.flex-container--mobile-reverse {
  display: flex;
}
@media (max-width: 650px) {
  .flex-container--mobile-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (min-width: 650px) {
  .site-section--tablet-half {
    width: 50%;
  }
}
@media (min-width: 1700px) {
  .site-section--tablet-half .site-section__layer {
    padding: 0 20%;
  }
}

@media (min-width: 650px) {
  .tablet-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.site-section--full-width {
  width: 100%;
}

.flex-list {
  display: flex;
  flex-wrap: wrap;
}
.flex-list .info-tile {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .flex-list .info-tile {
    width: calc(50% - 20px);
    margin-bottom: 50px;
    padding-right: 20px;
  }
}
@media (min-width: 1700px) {
  .flex-list .info-tile {
    width: calc(33% - 20px);
  }
}
