@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.content {
  width: 100%;
  float: none; }

.content__region {
  max-width: none; }

.content__attachments {
  display: none; }

.hero {
  min-height: 95vh;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 300px; }
  .hero::after {
    max-height: 250px; }

.hero__content {
  position: relative;
  z-index: 4;
  width: 90%; }

.hero__video__button {
  width: 45px;
  height: 45px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #e68b38; }
  .hero__video__button[href=""] {
    display: none; }
  .hero__video__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/_site/images/design/hero_video_button_text.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 60s;
    animation-duration: 60s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }

#hero__text {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 1.125em;
  line-height: 1.40476em;
  margin: 0 0 2em;
  text-align: center;
  min-width: 100px; }
  @media all and (min-width: 415px) {
    #hero__text {
      font-size: 1.5625em; } }
  #hero__text .lte-ie8 {
    font-size: 1.5625em; }
  @media all and (min-width: 769px) {
    #hero__text {
      font-size: 2em; } }
  #hero__text .lte-ie8 {
    font-size: 2em; }
  @media all and (min-width: 1025px) {
    #hero__text {
      font-size: 2.25em; } }

.hero__down__container {
  display: none; }

.hero__down__lines {
  display: none; }

.hero__video {
  z-index: 1; }
  .hero__video iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.hero__video__admin {
  position: absolute;
  bottom: 45%;
  left: 0;
  background-color: #745b99;
  padding: 10px;
  z-index: 10;
  display: inline-block; }
  .hero__video__admin p {
    margin: 0 0 0.5em; }

.hero__video__popup {
  background-color: #424242;
  position: fixed;
  top: 100vh;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  -o-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s; }
  .hero__video__popup.active {
    opacity: 1;
    visibility: visible;
    top: 0; }
    .mason--admin .hero__video__popup.active {
      top: 110px; }
    .mason--preview .hero__video__popup.active {
      top: 110px; }
    .mason--secure .hero__video__popup.active {
      top: 40px; }
  .hero__video__popup iframe {
    width: 100%;
    height: 100%;
    border: none; }

.hero__video__popup__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  background-color: #424242;
  color: #fff;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s; }
  .hero__video__popup__close:hover {
    background-color: #e68b38; }

@media all and (min-width: 769px) {
  .hero__content {
    width: calc(90% - 150px); }
  .hero__down__container {
    display: block;
    position: relative;
    height: 0;
    z-index: 3; }
  .hero__down {
    position: absolute;
    right: 5%;
    bottom: 40px;
    height: 68px;
    width: 68px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .hero__down::before, .hero__down::after {
      content: "";
      position: absolute;
      height: 14px;
      width: 14px;
      border-radius: 50%;
      background-color: #e68b38;
      opacity: 0;
      z-index: 2;
      -webkit-transition: opacity 0.4s;
      -o-transition: opacity 0.4s;
      transition: opacity 0.4s; }
      .inview .hero__down::before, .inview .hero__down::after {
        opacity: 1; }
    .hero__down::before {
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .hero__down::after {
      bottom: -240px;
      left: -469.5px;
      -webkit-transition-delay: 2.4s;
      -o-transition-delay: 2.4s;
      transition-delay: 2.4s; }
  .hero__down__inner {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.24; }
  .hero__down__lines {
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    width: 499px;
    height: 264px;
    margin-right: -1px; }
    .hero__down__lines g path:nth-child(1) {
      stroke-dasharray: 85;
      stroke-dashoffset: 85;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      -webkit-transition-delay: 1s;
      -o-transition-delay: 1s;
      transition-delay: 1s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .hero__down__lines g path:nth-child(2) {
      stroke-dasharray: 109;
      stroke-dashoffset: 109;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      -webkit-transition-delay: 1.2s;
      -o-transition-delay: 1.2s;
      transition-delay: 1.2s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .hero__down__lines g path:nth-child(3) {
      stroke-dasharray: 358;
      stroke-dashoffset: 358;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      -webkit-transition-delay: 1.7s;
      -o-transition-delay: 1.7s;
      transition-delay: 1.7s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .hero__down__lines g path:nth-child(4) {
      stroke-dasharray: 109;
      stroke-dashoffset: -109;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      -webkit-transition-delay: 2s;
      -o-transition-delay: 2s;
      transition-delay: 2s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .hero__down__lines g path:nth-child(5) {
      stroke-dasharray: 43;
      stroke-dashoffset: -43;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      -webkit-transition-delay: 2.2s;
      -o-transition-delay: 2.2s;
      transition-delay: 2.2s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .inview .hero__down__lines g path {
      stroke-dashoffset: 0; } }

.lte-ie8 .hero__content {
  width: calc(90% - 150px); }

.lte-ie8 .hero__down__container {
  display: block;
  position: relative;
  height: 0;
  z-index: 3; }

.lte-ie8 .hero__down {
  position: absolute;
  right: 5%;
  bottom: 40px;
  height: 68px;
  width: 68px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .lte-ie8 .hero__down::before, .lte-ie8 .hero__down::after {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #e68b38;
    opacity: 0;
    z-index: 2;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; }
    .inview .lte-ie8 .hero__down::before, .inview .lte-ie8 .hero__down::after {
      opacity: 1; }
  .lte-ie8 .hero__down::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .lte-ie8 .hero__down::after {
    bottom: -240px;
    left: -469.5px;
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s; }

.lte-ie8 .hero__down__inner {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.24; }

.lte-ie8 .hero__down__lines {
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 499px;
  height: 264px;
  margin-right: -1px; }
  .lte-ie8 .hero__down__lines g path:nth-child(1) {
    stroke-dasharray: 85;
    stroke-dashoffset: 85;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear; }
  .lte-ie8 .hero__down__lines g path:nth-child(2) {
    stroke-dasharray: 109;
    stroke-dashoffset: 109;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear; }
  .lte-ie8 .hero__down__lines g path:nth-child(3) {
    stroke-dasharray: 358;
    stroke-dashoffset: 358;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-delay: 1.7s;
    -o-transition-delay: 1.7s;
    transition-delay: 1.7s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear; }
  .lte-ie8 .hero__down__lines g path:nth-child(4) {
    stroke-dasharray: 109;
    stroke-dashoffset: -109;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear; }
  .lte-ie8 .hero__down__lines g path:nth-child(5) {
    stroke-dasharray: 43;
    stroke-dashoffset: -43;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transition-delay: 2.2s;
    -o-transition-delay: 2.2s;
    transition-delay: 2.2s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear; }
  .inview .lte-ie8 .hero__down__lines g path {
    stroke-dashoffset: 0; }

@media all and (min-width: 1025px) {
  .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 90px;
    padding-left: 90px; }
  .hero__video__button {
    position: absolute;
    left: 0;
    top: -14px;
    width: 90px;
    height: 90px; } }

@media all and (min-width: 1400px) {
  .hero__content {
    padding-left: 100px;
    padding-right: 100px;
    width: 95%;
    max-width: 1150px; }
  .hero__down {
    right: calc(50vw - 640px); }
  .hero__video__button {
    left: -20px; } }

.quicklinks {
  padding: 30px 30px 0;
  position: relative;
  z-index: 4; }

.quicklinks__list {
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.quicklinks__item {
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px; }
  .quicklinks__item:last-child {
    margin-bottom: 0; }
  .quicklinks__item:nth-child(1) {
    background-color: #e68b38; }
    .quicklinks__item:nth-child(1) .lazy__container::after {
      background-color: #e68b38; }
    .quicklinks__item:nth-child(1) p {
      color: #424242; }
  .quicklinks__item:nth-child(2) {
    background-color: #424242; }
    .quicklinks__item:nth-child(2) .lazy__container::after {
      background-color: #424242; }
  .quicklinks__item:nth-child(3) {
    background-color: #e68b38; }
    .quicklinks__item:nth-child(3) .lazy__container::after {
      background-color: #e68b38; }
    .quicklinks__item:nth-child(3) p {
      color: #424242; }
  .quicklinks__item .lazy__container {
    mix-blend-mode: luminosity;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; }
    .quicklinks__item .lazy__container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.85;
      -webkit-transition: opacity 0.4s;
      -o-transition: opacity 0.4s;
      transition: opacity 0.4s; }
  .quicklinks__item:hover .lazy__container::after {
    opacity: 1; }

.quicklinks__item__title {
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.43478em;
  padding: 29px 30px;
  position: relative;
  z-index: 2;
  margin: 0; }
  @media all and (min-width: 415px) {
    .quicklinks__item__title {
      font-size: 1.125em; } }
  .quicklinks__item__title .lte-ie8 {
    font-size: 1.125em; }
  @media all and (min-width: 769px) {
    .quicklinks__item__title {
      font-size: 1.4375em; } }
  .quicklinks__item__title .lte-ie8 {
    font-size: 1.4375em; }

@media all and (min-width: 415px) {
  .quicklinks {
    padding: 0; }
  .quicklinks__list {
    margin-top: -38px; }
  .quicklinks__item:not(:last-child) {
    width: calc(50% - 10px); } }

.lte-ie8 .quicklinks {
  padding: 0; }

.lte-ie8 .quicklinks__list {
  margin-top: -38px; }

.lte-ie8 .quicklinks__item:not(:last-child) {
  width: calc(50% - 10px); }

@media all and (min-width: 769px) {
  .quicklinks__item {
    margin-bottom: 0;
    width: calc(33.333% - 14px); }
    .quicklinks__item:not(:last-child) {
      width: calc(33.333% - 14px); } }

.lte-ie8 .quicklinks__item {
  margin-bottom: 0;
  width: calc(33.333% - 14px); }
  .lte-ie8 .quicklinks__item:not(:last-child) {
    width: calc(33.333% - 14px); }

.welcome {
  padding: 70px 0; }
  .welcome::before {
    content: "";
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #4c6359;
    position: absolute;
    width: 96.64286%;
    max-width: 1353px;
    top: 0;
    margin-top: -41.71429%;
    left: -23.64286%;
    opacity: 0.25; }

.welcome__intro > * {
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.33333em;
  color: #424242;
  margin: 0 0 1em; }
  @media all and (min-width: 769px) {
    .welcome__intro > * {
      font-size: 1.5625em; } }
  .welcome__intro > * .lte-ie8 {
    font-size: 1.5625em; }
  @media all and (min-width: 1025px) {
    .welcome__intro > * {
      font-size: 1.875em; } }
  .welcome__intro > * strong {
    font-weight: 600; }
    .welcome__intro > * strong:nth-child(4n - 3) {
      color: #424242; }
    .welcome__intro > * strong:nth-child(4n - 2) {
      color: #f28a3d; }
    .welcome__intro > * strong:nth-child(4n - 1) {
      color: #e68b38; }
    .welcome__intro > * strong:nth-child(4n) {
      color: #6b97c0; }

.welcome__text {
  letter-spacing: 0.02em;
  color: #292a2b;
  line-height: 1.8125em;
  margin: 0 0 1.5em; }

.welcome__inner__right {
  aspect-ratio: 501/567;
  position: relative;
  margin-top: 30px; }

.welcome__image__big,
.welcome__image__small {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: absolute !important;
  background-clip: padding-box; }
  .welcome__image__big .lazy__container,
  .welcome__image__small .lazy__container {
    background-clip: padding-box;
    -webkit-transition: background 0.4s;
    -o-transition: background 0.4s;
    transition: background 0.4s; }
    .welcome__image__big .lazy__container.lazy--loaded,
    .welcome__image__small .lazy__container.lazy--loaded {
      background-color: transparent; }

.welcome__image__big {
  width: 89.02196%;
  top: 0;
  right: 0; }

.welcome__image__small {
  width: 56.88623%;
  bottom: 0;
  left: 0;
  border: 15px solid #fff;
  background-clip: padding-box; }

.welcome__line,
.events__line,
.events__line__bottom {
  display: none; }

@media all and (max-width: 499px), all and (min-width: 769px) and (max-width: 1099px) {
  .welcome__stats__item {
    margin-bottom: -25%; }
    .welcome__stats__item:last-child {
      margin-bottom: 0; } }

@media all and (min-width: 500px) and (max-width: 768px), all and (min-width: 1100px) {
  .welcome__stats__container {
    width: 100%;
    aspect-ratio: 464/441; }
  .welcome__stats__item {
    position: absolute;
    width: 56.68103%; }
    .welcome__stats__item:nth-child(1) {
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
    .welcome__stats__item:nth-child(2) {
      bottom: 0;
      left: 0;
      z-index: 3; }
    .welcome__stats__item:nth-child(3) {
      bottom: 0;
      right: 0; } }

@media all and (min-width: 769px) {
  .welcome {
    padding: 50px 0 116px; }
  .welcome__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .welcome__text__container {
    width: 58%;
    margin-right: 32px;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .welcome__inner__left {
    padding-top: 109px; }
  .welcome__inner__right {
    width: 42.10084%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 23px;
    margin-top: 0; }
  .welcome__line,
  .events__line,
  .events__line__bottom {
    display: block;
    position: absolute;
    top: 100%;
    margin-top: -160px;
    left: 41.71429%;
    width: 397px;
    height: 220px;
    z-index: 2; }
    .welcome__line::before, .welcome__line::after,
    .events__line::before,
    .events__line::after,
    .events__line__bottom::before,
    .events__line__bottom::after {
      content: "";
      position: absolute;
      height: 14px;
      width: 14px;
      border-radius: 50%;
      background-color: #e68b38;
      opacity: 0;
      -webkit-transition: opacity 0.4s;
      -o-transition: opacity 0.4s;
      transition: opacity 0.4s; }
      .inview .welcome__line::before, .inview .welcome__line::after, .inview
      .events__line::before, .inview
      .events__line::after, .inview
      .events__line__bottom::before, .inview
      .events__line__bottom::after {
        opacity: 1; }
    .welcome__line::before,
    .events__line::before,
    .events__line__bottom::before {
      top: -7px;
      right: -3px; }
    .welcome__line::after,
    .events__line::after,
    .events__line__bottom::after {
      bottom: -7px;
      left: -5.5px;
      -webkit-transition-delay: 2.4s;
      -o-transition-delay: 2.4s;
      transition-delay: 2.4s; }
    .welcome__line svg,
    .events__line svg,
    .events__line__bottom svg {
      width: 394px;
      height: 220px; }
      .welcome__line svg g path:nth-child(1),
      .events__line svg g path:nth-child(1),
      .events__line__bottom svg g path:nth-child(1) {
        stroke-dasharray: 43;
        stroke-dashoffset: 43;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        -webkit-transition-delay: 1s;
        -o-transition-delay: 1s;
        transition-delay: 1s;
        -webkit-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear; }
      .welcome__line svg g path:nth-child(2),
      .events__line svg g path:nth-child(2),
      .events__line__bottom svg g path:nth-child(2) {
        stroke-dasharray: 109;
        stroke-dashoffset: 109;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        -webkit-transition-delay: 1.2s;
        -o-transition-delay: 1.2s;
        transition-delay: 1.2s;
        -webkit-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear; }
      .welcome__line svg g path:nth-child(3),
      .events__line svg g path:nth-child(3),
      .events__line__bottom svg g path:nth-child(3) {
        stroke-dasharray: 259;
        stroke-dashoffset: 259;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        -webkit-transition-delay: 1.7s;
        -o-transition-delay: 1.7s;
        transition-delay: 1.7s;
        -webkit-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear; }
      .welcome__line svg g path:nth-child(4),
      .events__line svg g path:nth-child(4),
      .events__line__bottom svg g path:nth-child(4) {
        stroke-dasharray: 109;
        stroke-dashoffset: -109;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        -webkit-transition-delay: 2s;
        -o-transition-delay: 2s;
        transition-delay: 2s;
        -webkit-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear; }
      .welcome__line svg g path:nth-child(5),
      .events__line svg g path:nth-child(5),
      .events__line__bottom svg g path:nth-child(5) {
        stroke-dasharray: 43;
        stroke-dashoffset: -43;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        -webkit-transition-delay: 2.2s;
        -o-transition-delay: 2.2s;
        transition-delay: 2.2s;
        -webkit-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear; }
      .inview .welcome__line svg g path, .inview
      .events__line svg g path, .inview
      .events__line__bottom svg g path {
        stroke-dashoffset: 0; } }

.lte-ie8 .welcome {
  padding: 50px 0 116px; }

.lte-ie8 .welcome__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.lte-ie8 .welcome__text__container {
  width: 58%;
  margin-right: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.lte-ie8 .welcome__inner__left {
  padding-top: 109px; }

.lte-ie8 .welcome__inner__right {
  width: 42.10084%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 23px;
  margin-top: 0; }

.lte-ie8 .welcome__line,
.lte-ie8 .events__line,
.lte-ie8 .events__line__bottom {
  display: block;
  position: absolute;
  top: 100%;
  margin-top: -160px;
  left: 41.71429%;
  width: 397px;
  height: 220px;
  z-index: 2; }
  .lte-ie8 .welcome__line::before, .lte-ie8 .welcome__line::after,
  .lte-ie8 .events__line::before,
  .lte-ie8 .events__line::after,
  .lte-ie8 .events__line__bottom::before,
  .lte-ie8 .events__line__bottom::after {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #e68b38;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; }
    .inview .lte-ie8 .welcome__line::before, .inview .lte-ie8 .welcome__line::after, .inview
    .lte-ie8 .events__line::before, .inview
    .lte-ie8 .events__line::after, .inview
    .lte-ie8 .events__line__bottom::before, .inview
    .lte-ie8 .events__line__bottom::after {
      opacity: 1; }
  .lte-ie8 .welcome__line::before,
  .lte-ie8 .events__line::before,
  .lte-ie8 .events__line__bottom::before {
    top: -7px;
    right: -3px; }
  .lte-ie8 .welcome__line::after,
  .lte-ie8 .events__line::after,
  .lte-ie8 .events__line__bottom::after {
    bottom: -7px;
    left: -5.5px;
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s; }
  .lte-ie8 .welcome__line svg,
  .lte-ie8 .events__line svg,
  .lte-ie8 .events__line__bottom svg {
    width: 394px;
    height: 220px; }
    .lte-ie8 .welcome__line svg g path:nth-child(1),
    .lte-ie8 .events__line svg g path:nth-child(1),
    .lte-ie8 .events__line__bottom svg g path:nth-child(1) {
      stroke-dasharray: 43;
      stroke-dashoffset: 43;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      -webkit-transition-delay: 1s;
      -o-transition-delay: 1s;
      transition-delay: 1s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .lte-ie8 .welcome__line svg g path:nth-child(2),
    .lte-ie8 .events__line svg g path:nth-child(2),
    .lte-ie8 .events__line__bottom svg g path:nth-child(2) {
      stroke-dasharray: 109;
      stroke-dashoffset: 109;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      -webkit-transition-delay: 1.2s;
      -o-transition-delay: 1.2s;
      transition-delay: 1.2s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .lte-ie8 .welcome__line svg g path:nth-child(3),
    .lte-ie8 .events__line svg g path:nth-child(3),
    .lte-ie8 .events__line__bottom svg g path:nth-child(3) {
      stroke-dasharray: 259;
      stroke-dashoffset: 259;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      -webkit-transition-delay: 1.7s;
      -o-transition-delay: 1.7s;
      transition-delay: 1.7s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .lte-ie8 .welcome__line svg g path:nth-child(4),
    .lte-ie8 .events__line svg g path:nth-child(4),
    .lte-ie8 .events__line__bottom svg g path:nth-child(4) {
      stroke-dasharray: 109;
      stroke-dashoffset: -109;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      -webkit-transition-delay: 2s;
      -o-transition-delay: 2s;
      transition-delay: 2s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .lte-ie8 .welcome__line svg g path:nth-child(5),
    .lte-ie8 .events__line svg g path:nth-child(5),
    .lte-ie8 .events__line__bottom svg g path:nth-child(5) {
      stroke-dasharray: 43;
      stroke-dashoffset: -43;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      -webkit-transition-delay: 2.2s;
      -o-transition-delay: 2.2s;
      transition-delay: 2.2s;
      -webkit-transition-timing-function: linear;
      -o-transition-timing-function: linear;
      transition-timing-function: linear; }
    .inview .lte-ie8 .welcome__line svg g path, .inview
    .lte-ie8 .events__line svg g path, .inview
    .lte-ie8 .events__line__bottom svg g path {
      stroke-dashoffset: 0; }

@media all and (min-width: 1025px) {
  .welcome__inner {
    max-width: 1240px;
    padding-left: 58px; } }

@media all and (min-width: 1301px) {
  .welcome__text__container {
    margin-right: 50px; } }

@media all and (min-width: 1400px) {
  .welcome::before {
    margin-top: -584px; } }

.news {
  padding: 30px 0;
  position: relative; }
  .news .custom__edit {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin: 0.2em; }
    .news .custom__edit a {
      color: #fff;
      text-decoration: none; }
  .news .curve__bottom path {
    fill: #424242; }

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

.news__header {
  text-align: center;
  margin-bottom: 32px; }
  .news__header .button__link {
    display: none; }

.news__list {
  min-height: 450px; }
  .news__list .owl-item {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s; }
    .news__list .owl-item.active {
      opacity: 1;
      visibility: visible; }

.social__item {
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
  box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2); }
  .social__item:hover .social__item__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

.social__item__image {
  aspect-ratio: 360/200;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #004992; }
  .social__item__image::after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 130px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
    background: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
    opacity: 0.6;
    z-index: 2; }
  .social__item__image[data-img] .tweets__item__image__placeholder {
    display: none; }
  .social__item__image img {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s; }

.tweets__item__image__placeholder {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px 100px; }

.social__item__info {
  padding: 46px 20px 20px;
  position: relative;
  min-height: 250px;
  z-index: 2; }
  .social__item__info .social__item__info__logo {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 256px 256px;
    background-position: bottom -43px right -68px;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    background-image: url("/_site/images/design/logo.png");
    -webkit-filter: grayscale(1);
    filter: grayscale(1); }

.social__label {
  position: absolute;
  top: -27px;
  left: 20px;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #424242; }

.social__item__date {
  font-size: 0.8125em;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.46154em;
  color: #004992;
  margin: 0 0 2.15385em; }

.news__item__title {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.25em;
  line-height: 1.6em;
  color: #292a2b; }

.tweets__item__intro {
  font-size: 1.0625em;
  letter-spacing: 0.02em;
  line-height: 1.58824em;
  overflow: hidden;
  max-height: 7.94em;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #292a2b; }
  .tweets__item__intro a {
    color: inherit;
    text-decoration: none; }

.facebook__item__intro a {
  text-decoration: none;
  font-size: 1.0625em;
  letter-spacing: 0.02em;
  line-height: 1.58824em;
  overflow: hidden;
  max-height: 7.94em;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #292a2b; }

.tweets__item__link,
.facebook__item__link {
  z-index: 2; }

.news__controls,
.events__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  visibility: hidden;
  z-index: 2;
  padding-top: 90px; }
  .news__controls button,
  .events__controls button {
    visibility: visible;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #424242;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
    box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
    -webkit-transition: background 0.4s, color 0.4s, opacity 0.4s, visibility 0.4s;
    -o-transition: background 0.4s, color 0.4s, opacity 0.4s, visibility 0.4s;
    transition: background 0.4s, color 0.4s, opacity 0.4s, visibility 0.4s; }
    .news__controls button.off,
    .events__controls button.off {
      opacity: 0;
      visibility: hidden; }
    .news__controls button:hover,
    .events__controls button:hover {
      color: #fff;
      background-color: #424242; }

.news__prev,
.events__prev {
  margin-left: -20px; }

.news__next,
.events__next {
  margin-right: -20px; }

.news__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px; }

@media all and (min-width: 769px) {
  .news {
    padding: 0px 0 100px; }
    .news::before {
      content: "";
      position: absolute;
      top: 17px;
      left: 30.71429%;
      width: 96.64286%;
      max-width: 1353px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: #e68b38;
      opacity: 0.1; }
    .news::after {
      bottom: 347px; }
  .news__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 50px; }
    .news__header .button__link {
      display: inline-block; }
  .social__item__info {
    padding: 46px 40px 40px; }
  .social__label {
    left: 40px; }
  .news__controls button,
  .events__controls button {
    height: 74px;
    width: 74px;
    font-size: 1.4em; }
  .news__prev,
  .events__prev {
    margin-left: -37px; }
  .news__next,
  .events__next {
    margin-right: -37px; }
  .news__footer {
    display: none; } }

.lte-ie8 .news {
  padding: 0px 0 100px; }
  .lte-ie8 .news::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 30.71429%;
    width: 96.64286%;
    max-width: 1353px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #e68b38;
    opacity: 0.1; }
  .lte-ie8 .news::after {
    bottom: 347px; }

.lte-ie8 .news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 50px; }
  .lte-ie8 .news__header .button__link {
    display: inline-block; }

.lte-ie8 .social__item__info {
  padding: 46px 40px 40px; }

.lte-ie8 .social__label {
  left: 40px; }

.lte-ie8 .news__controls button,
.lte-ie8 .events__controls button {
  height: 74px;
  width: 74px;
  font-size: 1.4em; }

.lte-ie8 .news__prev,
.lte-ie8 .events__prev {
  margin-left: -37px; }

.lte-ie8 .news__next,
.lte-ie8 .events__next {
  margin-right: -37px; }

.lte-ie8 .news__footer {
  display: none; }

@media all and (min-width: 1025px) {
  .news__header {
    padding-left: 30px; } }

@media all and (min-width: 1500px) {
  .news__controls {
    padding-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .news__prev,
  .events__prev {
    margin-left: -100px; }
  .news__next,
  .events__next {
    margin-right: -100px; } }

.events {
  padding-top: 90px;
  padding-bottom: 60px; }
  .events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 290px;
    background-color: #424242; }

.events__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 17px; }

.events__header .button__link a,
.events__footer .button__link a {
  color: #9cbad5; }
  .events__header .button__link a::before,
  .events__footer .button__link a::before {
    color: #9cbad5; }
  .events__header .button__link a::after,
  .events__footer .button__link a::after {
    background-color: #9cbad5; }

.events__header .events__buttons {
  display: none; }

.events__list {
  min-height: 340px; }
  .events__list .owl-item:last-child .events__date::before {
    display: none; }

.events__item {
  display: none; }
  .owl-item .events__item {
    display: block; }
  .events__item:hover .events__date {
    color: #424242;
    background-color: #e68b38; }
  .events__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

.events__date {
  width: 189px;
  height: 189px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  color: #424242;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
  box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
  -webkit-transition: background 0.4s, color 0.4s;
  -o-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s; }
  .events__date::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 3px;
    width: 200%;
    z-index: -1;
    background-color: #e68b38; }
  .events__date span {
    line-height: 1em; }
    .events__date span:first-child {
      letter-spacing: 0.02em;
      font-size: 3.75em;
      font-weight: 200; }
    .events__date span:last-child {
      font-size: 2.0625em;
      letter-spacing: 0.09em;
      font-weight: 300;
      text-transform: uppercase;
      opacity: 0.5; }

.events__time {
  color: #424242;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8125em;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.46154em;
  opacity: 0.5;
  margin: 1.53846em 0 2.15385em; }

.events__info__title {
  color: #424242;
  text-align: center;
  font-size: 1.375em;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  margin: 0 0 1em;
  max-width: 250px; }

.events__controls {
  padding-top: 75px; }

.events__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px; }

@media all and (min-width: 769px) {
  .events {
    padding-bottom: 216px; }
  .events__line,
  .events__line__bottom {
    top: auto;
    margin-top: 0;
    bottom: 100%;
    left: 2%;
    margin-bottom: -160px; }
  .events__line__bottom {
    bottom: -58px;
    margin-bottom: 0;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    z-index: 4; }
  .events__header .events__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .events__controls {
    padding-top: 58px; }
  .events__footer {
    display: none; } }

.lte-ie8 .events {
  padding-bottom: 216px; }

.lte-ie8 .events__line,
.lte-ie8 .events__line__bottom {
  top: auto;
  margin-top: 0;
  bottom: 100%;
  left: 2%;
  margin-bottom: -160px; }

.lte-ie8 .events__line__bottom {
  bottom: -58px;
  margin-bottom: 0;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  z-index: 4; }

.lte-ie8 .events__header .events__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.lte-ie8 .events__controls {
  padding-top: 58px; }

.lte-ie8 .events__footer {
  display: none; }

@media all and (min-width: 1301px) {
  .events__line,
  .events__line__bottom {
    left: 5%; } }

.map__curve__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 68px;
  z-index: 3;
  pointer-events: none; }

#map_canvas.map__container {
  height: 70vw;
  max-height: 460px; }
  @media all and (max-width: 768px) {
    #map_canvas.map__container {
      background-image: url("/_site/images/design/mapholder_mobile.jpg") !important; } }
  #map_canvas.map__container .lte-ie8 {
    background-image: url("/_site/images/design/mapholder_mobile.jpg") !important; }

.map__curve__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 68px;
  z-index: 3;
  pointer-events: none; }

.map__contact {
  padding: 20px; }
  .map__contact p {
    text-align: center;
    letter-spacing: 0.02em;
    margin: 0;
    color: #424242; }
    .map__contact p svg {
      display: block;
      margin: 0 auto 10px;
      color: #e68b38;
      font-size: 20px; }
    .map__contact p a {
      -webkit-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
      .map__contact p a:hover {
        color: #e68b38; }
  .map__contact .map__contact__address {
    font-size: 0.9375em;
    font-weight: 400;
    line-height: 1.66667em; }
  .map__contact .map__contact__phone,
  .map__contact .map__contact__email {
    font-size: 0.9375em;
    font-weight: 600;
    line-height: 1.41176em; }
  .map__contact .map__contact__email {
    margin: 33px 0;
    word-break: break-all; }

@media all and (min-width: 769px) {
  .map__contact__container {
    padding-top: 29px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 1150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    visibility: hidden; }
  .map__contact {
    visibility: visible;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
    box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
    width: 45%;
    max-width: 416px; }
    .map__contact p {
      text-align: left;
      position: relative;
      padding-left: 48px; }
      .map__contact p svg {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    .map__contact .map__contact__address svg {
      top: 4px;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0); } }

.lte-ie8 .map__contact__container {
  padding-top: 29px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  visibility: hidden; }

.lte-ie8 .map__contact {
  visibility: visible;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
  box-shadow: 0px 0px 50px rgba(7, 60, 94, 0.2);
  width: 45%;
  max-width: 416px; }
  .lte-ie8 .map__contact p {
    text-align: left;
    position: relative;
    padding-left: 48px; }
    .lte-ie8 .map__contact p svg {
      margin: 0;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  .lte-ie8 .map__contact .map__contact__address svg {
    top: 4px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }

@media all and (min-width: 1025px) {
  .map__contact {
    padding: 36px 45px 35px; } }

@media all and (min-width: 1450px) {
  #map_canvas.map__container {
    max-height: 650px; } }

.image__quicklinks {
  padding: 40px 0;
  position: relative; }
  .image__quicklinks::before {
    content: "";
    position: absolute;
    top: 40px;
    width: calc(100% - 48px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #4c6359;
    opacity: 0.4;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.image__quicklinks__list {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2; }

.image__quicklinks__item {
  width: 100%;
  margin-bottom: 40px;
  aspect-ratio: 360/168;
  border-radius: 15px;
  background-color: #292a2b;
  padding: 15px;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s; }
  .image__quicklinks__item:hover {
    background-color: #424242; }
    .image__quicklinks__item:hover .lazy__container {
      opacity: 0.15; }
  .image__quicklinks__item .lazy__container {
    opacity: 0.3;
    border-radius: 15px;
    overflow: hidden;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; }

.image__quicklinks__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%; }

.image__quicklinks__item__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 21px 0;
  line-height: 1.33333em;
  -webkit-transition: margin 0.4s;
  -o-transition: margin 0.4s;
  transition: margin 0.4s; }
  @media all and (min-width: 769px) {
    .image__quicklinks__item__title {
      font-size: 1.5625em; } }
  .image__quicklinks__item__title .lte-ie8 {
    font-size: 1.5625em; }
  @media all and (min-width: 1301px) {
    .image__quicklinks__item__title {
      font-size: 1.875em; } }

.image__quicklinks__item__arrow {
  position: relative;
  z-index: 2;
  font-size: 2.5em;
  line-height: 1em;
  margin-bottom: -42px;
  opacity: 0;
  visibility: hidden; }

@media all and (min-width: 769px) {
  .image__quicklinks {
    padding: 90px 0 60px; }
  .image__quicklinks__item:not(:last-child) {
    width: calc(50% - 20px); }
  .image__quicklinks__item:last-child {
    margin-bottom: 0; } }

.lte-ie8 .image__quicklinks {
  padding: 90px 0 60px; }

.lte-ie8 .image__quicklinks__item:not(:last-child) {
  width: calc(50% - 20px); }

.lte-ie8 .image__quicklinks__item:last-child {
  margin-bottom: 0; }

@media all and (min-width: 1025px) {
  .image__quicklinks__list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
  .image__quicklinks__item {
    width: calc(33.333% - 27px);
    aspect-ratio: unset;
    min-height: 168px;
    margin: 10px 0 10px;
    -webkit-transition: background 0.4s, margin 0.1s;
    -o-transition: background 0.4s, margin 0.1s;
    transition: background 0.4s, margin 0.1s; }
    .image__quicklinks__item:last-child {
      margin: 10px 0 10px; }
    .image__quicklinks__item:hover {
      -webkit-transition: background 0.4s, margin 0.4s;
      -o-transition: background 0.4s, margin 0.4s;
      transition: background 0.4s, margin 0.4s;
      margin: 0; }
      .image__quicklinks__item:hover .image__quicklinks__item__title {
        margin: 0; }
      .image__quicklinks__item:hover .image__quicklinks__item__arrow {
        margin: 0;
        opacity: 1;
        visibility: visible; }
    .image__quicklinks__item:not(:last-child) {
      width: calc(33.333% - 27px); }
  .image__quicklinks__item__arrow {
    -webkit-transition: margin 0.4s, opacity 0.4s, visibility 0.4s;
    -o-transition: margin 0.4s, opacity 0.4s, visibility 0.4s;
    transition: margin 0.4s, opacity 0.4s, visibility 0.4s; } }

.footer__logos__list .owl-stage {
  margin: 0 auto;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important; }

.footer__logos__item {
  display: none;
  padding: 55px 35px 30px; }
  .owl-item .footer__logos__item {
    display: block; }
    .owl-item .footer__logos__item img {
      display: block;
      max-height: 100px;
      max-width: calc(100vw - 70px); }
  .footer__logos__item a[href=""] {
    display: none; }
