@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

i, em {
  font-style: italic;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* https://engageinteractive.co.uk/blog/top-10-scss-mixins */
/* my mixins */
/* VARIABLES */
/*$blue-dark: var(--primary);
$dark-blue: var(--primary);
$dark-blue-hover: var(--primary-hover);
$blue-dark-hover: var(--primary-hover);
$light-blue: var(--grey);
$lighter-blue: var(--grey);
$grey: var(--grey);
$blue: var(--secondary);*/
/* BODY */
html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0px;
  padding: 0px;
  text-align: left;
}

body {
  -webkit-text-size-adjust: 100%;
}

/* EXTRA RESET */
a {
  outline: none;
  cursor: pointer;
  -ms-user-select: none;
}

* {
  background-repeat: no-repeat;
}

textarea, input {
  outline: none;
}

b, strong {
  font-weight: 700;
}

/* LAYOUT HELPERS */
.cb, .clr {
  clear: both;
  font-size: 1px;
  line-height: 1px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.nowrap, .nobr {
  white-space: nowrap;
}

.tal, .text-left {
  text-align: left;
}

.tar, .text-right {
  text-align: right;
}

.tac, .text-center {
  text-align: center;
}

*, :before, :after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*-webkit-backface-visibility:hidden;*/
}

/* CONTENT */
html {
  min-width: 320px;
  overflow: auto !important;
  font-size: 20px;
}

body {
  background: #fff;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: #1f4d45;
  min-width: 320px;
  overflow: hidden;
}

body.wp-admin {
  overflow: auto;
}

@media (max-width: 1140px) {
  html,
  body {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  html,
  body {
    font-size: 15px;
    line-height: 1.3;
  }
}
@media (max-width: 580px) {
  html,
  body {
    font-size: 15px;
    line-height: 1.3;
  }
}
.more {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-right: 40px;
  padding-bottom: 20px;
  border-bottom: 1px #73e6b6 solid;
  text-decoration: none;
  z-index: 90;
}
.more:after {
  content: "";
  width: 13px;
  height: 13px;
  background: transparent url("../gfx/icon/arrow2.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 0px;
  bottom: auto;
  left: auto;
}
.more:hover {
  color: #73e6b6;
}

/* GRID */
body {
  /*max-width:1920px;*/
  /*margin:auto;*/
  /*min-width:1024px;*/
}

.container {
  max-width: 1400px !important;
}

.container .row .col-md-fifths {
  padding-right: 7.5px;
  padding-left: 7.5px;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 991px) {
  .container .row .col-md-fifths {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 767px) {
  .container .row .col-md-fifths {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 580px) {
  .container .row .col-md-fifths {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  .container .row .col-md-fifths {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body {
  font-family: "Space Grotesk", sans-serif;
}

b, strong, h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
}

.ui-widget,
textarea, input {
  font-family: "Space Grotesk", sans-serif;
}

/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

/**,
*::before,
*::after {
  box-sizing: inherit;
}*/
:root {
  --column-gap: 15px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

/* plugins */
/**
 * Swiper 8.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 10, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.bck-green {
  background: #204f47;
}

.bck-green-light {
  background: #73e6b6;
}

.bck-green-lighter {
  background: #e3faf0;
}

.fnt-white {
  color: #fff;
}

.fnt-green {
  color: #204f47;
}

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

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

.text-2xl {
  font-size: 1.5rem;
  /*line-height: 2rem;*/
}

.text-3xl {
  font-size: 3.5rem;
}

b, strong,
.font-bold {
  font-weight: 800;
}

.font-extrabold {
  font-weight: 800;
}

h1, h2 {
  line-height: 1.1;
}

h2.smaller,
h1.smaller {
  font-size: 13px;
  font-weight: 500;
  position: relative;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
}
h2.smaller:before,
h1.smaller:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73e6b6;
  display: block;
  margin-right: 9px;
}
h2.smaller.rounded,
h1.smaller.rounded {
  border: 1px #619887 solid;
  border-radius: 10px;
  padding-top: 7px;
  padding-right: 15px;
  display: inline-flex;
  padding-bottom: 7px;
  line-height: 1;
  padding-left: 15px;
}

li a,
p a {
  color: inherit;
}
li a:hover,
p a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .text-2xl {
    font-size: 1.25rem;
  }
  .text-3xl {
    font-size: 3rem;
  }
  h2.smaller, h1.smaller {
    margin-left: -20px;
  }
}
.article.left-col {
  position: relative;
  padding-left: 500px;
}
.article.left-col > :first-child {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 0px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 35px;
  padding-right: 55px;
  max-width: 500px;
}

.padding-top-0 {
  padding-top: 0px !important;
}

.padding-bottom-0 {
  padding-top: 0px !important;
}

.padding-bottom-40 {
  padding-bottom: 40px !important;
}

.padding-bottom-20 {
  padding-bottom: 20px !important;
}

.margin-top-0 {
  margin-top: 0px !important;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

@media (max-width: 991px) {
  .article.left-col {
    position: relative;
    padding-left: 300px;
  }
  .article.left-col > :first-child {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .article.left-col {
    padding-left: 20px;
  }
  .article.left-col > :first-child {
    padding-left: 0px;
    margin-bottom: 20px;
    max-width: none;
    position: static;
  }
}
.btn {
  height: 66px;
  border-radius: 33px;
  min-width: 100px;
  padding: 0px 30px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: all 0.25s linear;
}
.btn.btn-primary {
  background: #204f47;
  color: #fff;
  border: 1px #204f47 solid;
}
.btn.btn-primary:hover {
  background: #2c6a5f;
  color: #fff;
  border: 1px #2c6a5f solid;
}
.btn.btn-secondary {
  background: #73e6b6;
  color: #1f4d45;
  border: 1px #73e6b6 solid;
}
.btn.btn-secondary:hover {
  background: #e3faf0;
  color: #1f4d45;
  border: 1px #e3faf0 solid;
}
.btn.btn-tertiary {
  background: transparent;
  color: #204f47;
  border: 1px #204f47 solid;
}
.btn.btn-tertiary:hover {
  background: #204f47;
  color: #fff;
  border: 1px #204f47 solid;
}
.btn.btn-smaller {
  height: 38px;
  border-radius: 19px;
  font-size: 0.7rem;
  min-width: 80px;
}
.btn.btn-bottom {
  height: 38px;
  border-radius: 19px;
  font-size: 0.7rem;
  min-width: 80px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
}

@media (max-width: 767px) {
  .btn {
    height: 40px;
  }
  .btn.btn-smaller {
    font-size: 13px;
  }
  .btn.btn-bottom {
    position: static;
    font-size: 13px;
  }
}
/* global  */
.header {
  /*background:$green url('../gfx/background/header.jpg') center center no-repeat;*/
  background: #204f47;
  background-size: cover;
  color: #fff;
}
.header .col-12 {
  height: 100px;
  display: flex;
  padding: 20px 35px;
  align-items: center;
  justify-content: flex-start;
}
.header .col-12 .logo {
  font-size: 0px;
  margin-right: 20px;
}
.header .col-12 .logo img {
  width: 213px;
  height: auto;
}


.nav.nav-lang {
			margin-left:20px;

			.language-switcher {
				font-size:0.65rem;
				font-weight:500;
				display:flex;
				align-items:center;

				a {
					color:$white;
					text-decoration: none;
					display: block;
					width:27px;
					height:17px;
					background:transparent url('../gfx/icon/language-switcher.svg') center center no-repeat;
					background-size:contain;
					position:relative;

					&:after {
						content:'';
						display:block;
						width:7px;
						height:7px;
						background:$white;
						border-radius:50%;
						@include pa(50%,auto,auto,auto);
						margin-top:-3.5px;
						transition:all 0.25s linear;
					}
					&.en {
						&:after {
							right:auto;
							left:5px;
						}
					}
					&.cz {
						/*transform: rotate(180deg);
						transform-origin: center;*/

						&:after {
							right:5px;
							left:auto;
						}
					}
					&:hover {
						&:after {
							background: $green-light;
						}
					}
				}
				&:before {
					content:'CZ';
					margin:0px 8px;
					position:relative;
					top:2px;
				}
				&:after {
					content:'EN';
					margin:0px 8px;
					position:relative;
					top:2px;
				}
			}
		}






.header .col-12 .nav.nav-lang {
  margin-left: 20px;
}
.header .col-12 .nav.nav-lang .language-switcher {
  font-size: 0.65rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.header .col-12 .nav.nav-lang .language-switcher a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 27px;
  height: 17px;
  background: transparent url("../gfx/icon/language-switcher.svg") center center no-repeat;
  background-size: contain;
  position: relative;
}
        .header .col-12 .nav.nav-lang .language-switcher a.cz {
          color: #fff;
          text-decoration: none;
          display: block;
          width: 27px;
          height: 17px;
          background: transparent url("../gfx/icon/language-switcher_en.svg") center center no-repeat;
          background-size: contain;
          position: relative; }
.header .col-12 .nav.nav-lang .language-switcher a:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: auto;
  margin-top: -3.5px;
  transition: all 0.25s linear;
}
.header .col-12 .nav.nav-lang .language-switcher a.en:after {
  right: auto;
  left: 5px;
}
.header .col-12 .nav.nav-lang .language-switcher a.cz {
 /* transform: rotate(180deg); 
  transform-origin: center; */
}
.header .col-12 .nav.nav-lang .language-switcher a.cz:after {
  right: 5px;
  left: auto;
}
.header .col-12 .nav.nav-lang .language-switcher a:hover:after {
  background: #73e6b6;
}
.header .col-12 .nav.nav-lang .language-switcher:before {
  content: "CZ";
  margin: 0px 8px;
  position: relative;
  top: 2px;
}
.header .col-12 .nav.nav-lang .language-switcher:after {
  content: "EN";
  margin: 0px 8px;
  position: relative;
  top: 2px;
}
.header .col-12 .nav.nav-primary {
  font-size: 0.75rem;
  font-weight: 500;
}
.header .col-12 .nav.nav-primary ul {
  display: flex;
}
.header .col-12 .nav.nav-primary ul li {
  margin: 0px 20px;
  white-space: nowrap;
}
.header .col-12 .nav.nav-primary ul li a {
  color: #fff;
  text-decoration: none;
}
.header .col-12 .nav.nav-primary ul li a:hover {
  color: #73e6b6;
}
.header .col-12 .header-right {
  margin-left: auto;
  display: flex;
}
.header .col-12 .header-right .contacts {
  font-size: 0.65rem;
  margin-left: 20px;
}
.header .col-12 .header-right .contacts p {
  margin-bottom: 0px;
}
.header .col-12 .header-right .contacts p a {
  color: #fff;
  text-decoration: none;
}
.header .col-12 .header-right .contacts p a:hover {
  text-decoration: underline;
}
.header .col-12 .header-right .btn.btn-tertiary {
  border-color: #fff;
  color: #fff;
  height: 38px;
  border-radius: 19px;
  font-size: 0.7rem;
  width: auto;
  min-width: 80px;
  padding: 0px 15px;
}
.header .col-12 .header-right .btn.btn-tertiary:hover {
  background: #fff;
  color: #204f47;
  border-color: #fff;
}

.header .menu-toggle {
  display: none;
}

@media (max-width: 1200px) {
  .header .col-12 .header-right .contacts {
    display: none;
  }
}
@media (max-width: 991px) {
  .header .col-12 {
    padding: 20px 20px;
  }
  .header .col-12 .logo img {
    width: 180px;
  }
  .header .col-12 .logo {
    margin-right: 12px;
  }
  .header .col-12 .nav.nav-lang {
    margin-left: 12px;
  }
  .header .col-12 .nav.nav-primary ul li {
    margin: 0px 12px;
  }
}
@media (max-width: 820px) {
  .header .menu-toggle {
    display: block;
    width: 38px;
    height: 38px;
    background: transparent url("../gfx/icon/toggle.svg") center center no-repeat;
    background-size: contain;
    margin-left: 15px;
    transition: all 0.25s linear;
    flex-shrink: 0;
  }
  .header .menu-toggle:hover {
    transform: rotate(360deg);
  }
  .header .col-12 .nav.nav-lang,
  .header .col-12 .nav.nav-primary {
    display: none;
  }
}
@media (max-width: 580px) {
  .header .col-12 .logo img {
    width: 150px;
  }
}
.footer {
  /*border-top:1px $text-color solid;*/
  margin-bottom: 20px;
}
.footer .container {
  position: relative;
  padding-top: 35px;
}
.footer .container:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 15px;
  bottom: auto;
  left: 15px;
  display: block;
  height: 1px;
  background: #1f4d45;
}
.footer .container .row .col-12 {
  display: flex;
  align-items: center;
}
.footer .footer-block {
  border: 1px #d1dad9 solid;
  height: 100%;
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 35px;
}
.footer .footer-block h2 {
  margin-bottom: 40px;
  margin-bottom: auto;
}
.footer .footer-block.footer-block-left {
  border-radius: 10px 0px 0px 10px;
}
.footer .footer-block.footer-block-middle {
  border-radius: 0px 10px 10px 0px;
  border-left: none;
}
.footer .footer-block.footer-block-right {
  border-radius: 10px 10px 10px 10px;
  border-left: none;
  flex: 2;
}
.footer .footer-block.footer-block-right section {
  text-align: right;
  font-size: 0.65rem;
  padding-right: 20px;
}
.footer .footer-block.footer-block-right section p a {
  color: #1f4d45;
}
.footer .footer-block section {
  font-size: 0.75rem;
  padding-left: 20px;
  font-weight: 300;
}
.footer .nav.nav-links {
  border-right: none;
}
.footer .nav.nav-links p {
  padding-left: 20px;
  margin-bottom: 5px;
}
.footer .nav.nav-links p:last-of-type {
  margin-bottom: 0px;
}
.footer .nav.nav-links p a {
  text-decoration: none;
  border: 1px #204f47 solid;
  color: #204f47;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 19px;
  font-size: 0.7rem;
  font-weight: 300;
  width: auto;
  min-width: 80px;
  padding: 0px 15px;
  transition: all 0.25s linear;
}
.footer .nav.nav-links p a:hover {
  background: #204f47;
  color: #fff;
  border-color: #204f47;
}
.footer .address {
  margin-top: 40px;
  font-size: 0.75rem;
  padding-left: 20px;
  font-weight: 300;
}
.footer .address a {
  color: #1f4d45;
}
.footer .claim {
  padding: 0px 40px;
  margin-bottom: 35px;
  width: 100%;
}
.footer .claim img {
  width: 100%;
}
.footer .nav.nav-social {
  margin-left: auto;
  padding: 0px 40px;
  margin-bottom: 35px;
}
.footer .nav.nav-social .claim2 {
  display: none;
}
.footer .nav.nav-social ul {
  display: flex;
  position: relative;
  top: -5px;
}
.footer .nav.nav-social ul li {
  margin: 0px 3px;
}
.footer .nav.nav-social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #204f47;
  color: #fff;
  line-height: 1;
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: 1px #204f47 solid;
  transition: all 0.25s linear;
}
.footer .nav.nav-social ul li a:hover {
  background: #fff;
  color: #204f47;
}

@media (max-width: 1335px) {
  .footer .footer-block.footer-block-right {
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .footer {
    margin-bottom: 110px;
  }
  .footer .container .row .col-12 {
    flex-wrap: wrap;
  }
  .footer .footer-block {
    width: 33.33%;
    flex: none;
  }
  .footer .footer-block.footer-block-right {
    width: 100%;
    flex: none;
    height: 100px;
    border-left: 1px #d1dad9 solid;
    border-top: none;
  }
  .footer .nav.nav-social,
  .footer .claim {
    padding: 0px 20px;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-bottom: 20px;
  }
  .footer .footer-block {
    width: 100%;
    height: auto;
    border: 1px #d1dad9 solid;
    border-radius: 10px;
    border-top: none;
    padding: 20px;
  }
  .footer .nav.nav-links {
    border-top: 1px #d1dad9 solid;
    border-right: 1px #d1dad9 solid;
    border-radius: 10px;
  }
  .footer .footer-block.footer-block-middle {
    border-left: 1px #d1dad9 solid;
    border-radius: 10px;
  }
  .footer .footer-block h2 {
    margin-bottom: 15px;
    margin-left: 0px;
  }
  .footer .address {
    margin-top: 0px;
  }
  .footer .footer-block.footer-block-right {
    height: auto;
  }
  .footer .footer-block.footer-block-right section {
    text-align: left;
  }
  .footer .nav.nav-social,
  .footer .claim {
    padding: 0px 0px;
  }
}
@media (max-width: 480px) {
  .footer .nav.nav-links {
    display: none;
  }
  .footer .container > div:nth-of-type(2) .col-12 > div:nth-of-type(1) {
    border-top: 1px #d1dad9 solid;
  }
  .footer .footer-block section,
  .footer .address {
    padding-left: 0px;
  }
  .footer .nav.nav-social {
    margin-left: 0px;
  }
  .footer .claim {
    display: none;
  }
  .footer .nav.nav-social {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
  }
  .footer .nav.nav-social ul {
    top: 0px;
  }
  .footer .nav.nav-social .claim2 {
    display: block;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    margin-left: 30px;
  }
}
/* content */
.content {
  padding-top: 60px;
}

@media (max-width: 991px) {
  .content {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .content {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 580px) {
  .content {
    padding-top: 30px;
  }
}
.content.textpage .article.excerpt {
  margin-bottom: 50px;
  padding: 0px 35px;
}
.content.textpage .article.excerpt h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
.content.textpage .article.excerpt p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 25px;
}
.content.textpage .article.article-smaller {
  padding-left: 500px;
  position: relative;
  border-top: 1px #1f4d45 solid;
  padding-top: 60px;
  margin-bottom: 30px;
  font-weight: 300;
}
.content.textpage .article.article-smaller > :first-child {
  position: absolute;
  top: 60px;
  right: auto;
  bottom: auto;
  left: 0px;
  font-size: 0.75rem;
  font-weight: 300;
  padding-left: 35px;
  padding-right: 35px;
  max-width: 500px;
  text-transform: uppercase;
}
.content.textpage .article.article-smaller .rounded-block {
  margin-bottom: 0px;
}
.content.textpage blockquote,
.content.textpage .rounded-block.green {
  background: #e3faf0;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 60px;
}
.content.textpage blockquote p,
.content.textpage .rounded-block.green p {
  font-size: 1rem !important;
}
.content.textpage blockquote p:last-of-type,
.content.textpage .rounded-block.green p:last-of-type {
  margin-bottom: 0px !important;
}
.content.textpage .article.left-col {
  border-top: 1px #d2dbda solid;
  padding-top: 50px;
  margin-bottom: 60px;
  font-weight: 300;
}
.content.textpage .article.left-col.border-top {
  border-top: 1px #204f47 solid;
}
.content.textpage .article.left-col > :first-child {
  top: 50px;
}
.content.textpage .article.left-col p {
  margin-bottom: 35px;
  font-size: 1.25rem;
}
.content.textpage .article.left-col table {
  width: 100%;
  margin-bottom: 35px;
}
.content.textpage .article.left-col table thead tr td, .content.textpage .article.left-col table thead tr th {
  background: #204f47;
  padding: 12px 25px;
  border-right: 1px #204f47 solid;
  color: #fff;
  font-weight: 700;
}
.content.textpage .article.left-col table thead tr td:first-child, .content.textpage .article.left-col table thead tr th:first-child {
  border-radius: 10px 0px 0px 0px;
}
.content.textpage .article.left-col table thead tr td:last-child, .content.textpage .article.left-col table thead tr th:last-child {
  border-radius: 0px 10px 0px 0px;
  border-right: none;
}
.content.textpage .article.left-col table tbody tr td {
  padding: 12px 25px;
  border-right: 1px #e3faf0 solid;
  border-bottom: 1px #bad7cf solid;
  background: #e3faf0;
}
.content.textpage .article.left-col table tbody tr:nth-of-type(odd) td {
  background: #e3faf0;
}
.content.textpage .article.left-col table tbody tr:last-of-type td {
  border-bottom: none;
}
.content.textpage .article.left-col table tbody tr:last-of-type td:first-child {
  border-radius: 0px 0px 0px 10px;
}
.content.textpage .article.left-col table tbody tr:last-of-type td:last-child {
  border-radius: 0px 0px 10px 0px;
}
.content.textpage .article.left-col ol {
  margin-bottom: 35px;
  counter-reset: item;
}
.content.textpage .article.left-col ol li {
  padding-left: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  border-bottom: 1px #e8edec solid;
  counter-increment: item;
}
.content.textpage .article.left-col ol li:before {
  content: counter(item) ". ";
  color: #73e6b6;
  display: inline-block;
  font-weight: 700;
  position: absolute;
  top: 11px;
  right: auto;
  bottom: auto;
  left: 0px;
}
.content.textpage .article.left-col ul {
  margin-bottom: 35px;
}
.content.textpage .article.left-col ul li {
  padding-left: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  border-bottom: 1px #e8edec solid;
}
.content.textpage .article.left-col ul li:before {
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  background: #73e6b6;
  border-radius: 0%;
  position: absolute;
  top: 23px;
  right: auto;
  bottom: auto;
  left: 0px;
}

@media (max-width: 1140px) {
  .content.textpage .article.article-smaller {
    padding-left: 340px;
  }
}
@media (max-width: 991px) {
  .article.left-col {
    position: relative;
    padding-left: 300px;
  }
  .content.textpage .article.left-col {
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .article.left-col {
    padding-left: 0px;
  }
  .content.textpage .article.left-col:before {
    content: "";
    height: 1px;
    display: block;
    background: #d2dbda;
    position: absolute;
    top: -1px;
    right: -20px;
    bottom: auto;
    left: -20px;
  }
  .content.textpage .article.article-smaller {
    padding-left: 0px;
    padding-top: 30px;
  }
  .content.textpage .article.article-smaller:before {
    content: "";
    height: 1px;
    display: block;
    background: #1f4d45;
    position: absolute;
    top: -1px;
    right: -20px;
    bottom: auto;
    left: -20px;
  }
  .content.textpage .article.article-smaller > :first-child {
    position: static;
    padding: 0px;
    margin-bottom: 25px;
  }
  .content.textpage blockquote, .content.textpage .rounded-block.green,
  .content.textpage .article.article-smaller .rounded-block {
    padding: 20px;
  }
  .content.textpage .article.excerpt {
    padding: 0px 0px;
  }
  .content.textpage .article.left-col ul li:before {
    top: 19px;
  }
  .content.textpage blockquote, .content.textpage .rounded-block.green, .content.textpage .article.article-smaller .rounded-block {
    margin-bottom: 20px;
  }
  .content.textpage .article.left-col ul {
    margin-bottom: 30px !important;
  }
  .content.textpage .article.left-col ul li {
    width: 100%;
  }
}
.event-buttons.event-buttons-fixed {
  display: none;
}

.content.event-detail {
  padding-top: 110px;
}
.content.event-detail h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 20px;
  margin-left: 25%;
}
.content.event-detail .gallery.gallery-grid {
  margin-top: -65px;
  margin-bottom: 30px;
}
.content.event-detail .gallery.gallery-grid .gallery-grid-row {
  margin: 0px -10px;
  display: flex;
}
.content.event-detail .gallery.gallery-grid .gallery-grid-row .gallery-item {
  padding: 10px;
  display: flex;
  align-items: flex-end;
}
.content.event-detail .gallery.gallery-grid .gallery-grid-row .gallery-item a {
  font-size: 0px;
  display: block;
  line-height: 0;
}
.content.event-detail .gallery.gallery-grid .gallery-grid-row .gallery-item a img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.content.event-detail .gallery.gallery-grid .gallery-grid-row.gallery-grid-bottom .gallery-item {
  align-items: flex-start;
}
.content.event-detail .event-buttons-bar {
  padding: 50px 0px;
  /*border-top:1px #d2dbda solid;*/
  position: relative;
}
.content.event-detail .event-buttons-bar:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 15px;
  bottom: auto;
  left: 15px;
  display: block;
  height: 1px;
  background: #d2dbda;
}
.content.event-detail .event-buttons-bar .btn.btn-primary {
  margin-left: 10px;
}
.content.event-detail .event-txt,
.content.event-detail .event-buttons,
.content.event-detail .event-top-info {
  margin-left: 45px;
  margin-bottom: 30px;
}
.content.event-detail .event-info {
  position: relative;
}
.content.event-detail .event-info .article {
  padding-top: 60px;
  margin-bottom: 60px;
  border-top: 1px #d2dbda solid;
  font-weight: 300;
}
.content.event-detail .event-info .article.left-col > :first-child {
  top: 60px;
}
.content.event-detail .event-info .article p {
  margin-bottom: 35px;
  font-size: 1.25rem;
}
.content.event-detail .event-info .article ul {
  margin-bottom: 35px;
}
.content.event-detail .event-info .article ul li {
  padding-left: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  border-bottom: 1px #e8edec solid;
}
.content.event-detail .event-info .article ul li:before {
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  background: #73e6b6;
  border-radius: 0%;
  position: absolute;
  top: 23px;
  right: auto;
  bottom: auto;
  left: 0px;
}
.content.event-detail .event-txt {
  font-weight: 300;
  font-size: 1.25rem;
}
.content.event-detail .event-txt .excerpt {
  margin-bottom: 35px;
  font-size: 1.5rem;
}
.content.event-detail .event-buttons {
  display: flex;
  justify-content: space-between;
}
.content.event-detail .event-top-info {
  border-radius: 10px;
  background: #e3faf0;
  padding: 35px 20px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.content.event-detail .event-top-info h2 {
  font-size: 13px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.content.event-detail .event-top-info h2:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 9px;
  position: relative;
  top: -1px;
}
.content.event-detail .event-top-info .cap h2:before {
  background: transparent url("../gfx/icon/cap.svg") center center no-repeat;
  background-size: contain;
}
.content.event-detail .event-top-info .price h2:before {
  background: transparent url("../gfx/icon/price.svg") center center no-repeat;
  background-size: contain;
}
.content.event-detail .event-top-info .cap, .content.event-detail .event-top-info .price {
  width: 50%;
  padding: 0px 10px;
  margin-bottom: 20px;
}
.content.event-detail .event-top-info .cap p, .content.event-detail .event-top-info .price p {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.content.event-detail .event-top-info .fullwidth {
  padding: 0px 10px;
  font-weight: 300;
}

@media (max-width: 1350px) {
  .content.event-detail .event-buttons {
    flex-direction: column;
  }
  .content.event-detail .event-buttons .btn {
    margin-bottom: 15px;
  }
}
@media (max-width: 1140px) {
  .content.event-detail {
    padding-top: 60px;
  }
  .content.event-detail .event-top-info .cap, .content.event-detail .event-top-info .price {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .content.event-detail {
    padding-top: 30px;
  }
  .content.event-detail .event-txt, .content.event-detail .event-buttons, .content.event-detail .event-top-info {
    margin-left: 0px;
  }
  .row.event-buttons-bar > div:nth-of-type(1) {
    -ms-flex: 0 0 30% !important;
    flex: 0 0 30% !important;
    max-width: 30% !important;
  }
  .row.event-buttons-bar > div:nth-of-type(2) {
    -ms-flex: 0 0 70% !important;
    flex: 0 0 70% !important;
    max-width: 70% !important;
  }
}
@media (max-width: 940px) {
  .content.event-detail .container .row > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content.event-detail .container > div:nth-of-type(2) .col-md-7 {
    order: 2;
  }
  .content.event-detail h1 {
    padding-left: 0px;
    margin-left: 0px;
  }
  .content.event-detail h1 br {
    display: none;
  }
  .content.event-detail .event-top-info {
    margin-top: 30px;
  }
  .content.event-detail .gallery.gallery-grid {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .content.event-detail .event-buttons-bar:before {
    left: 0px;
    right: 0px;
  }
  .content.event-detail .event-info .article {
    padding-top: 30px;
    margin-bottom: 30px;
    position: relative;
  }
  .content.event-detail .event-info .article:before {
    content: "";
    height: 1px;
    display: block;
    background: #d2dbda;
    position: absolute;
    top: -1px;
    right: -20px;
    bottom: auto;
    left: -20px;
  }
  .content.event-detail .event-buttons-bar {
    padding: 30px 0px;
  }
  .content.event-detail .event-top-info {
    padding: 20px;
  }
  .content.event-detail .event-info .article ul li:before {
    top: 19px;
  }
  .content.event-detail .gallery.gallery-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .content.event-detail .gallery.gallery-grid .gallery-grid-row .gallery-item.gallery-item-2 {
    margin-right: -50px;
  }
  .content.event-detail .gallery.gallery-grid .gallery-grid-row .gallery-item.gallery-item-3 {
    margin-left: -50px;
  }
  body.buttons-mobile-version .event-buttons.event-buttons-fixed {
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px #204f47 solid;
    padding-bottom: 15px;
    flex-direction: row;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 9999;
    margin: 0px;
  }
  body.buttons-mobile-version .event-buttons.event-buttons-fixed .btn {
    min-width: 20px;
    white-space: nowrap;
    font-size: 11px;
    margin: 0px 2px;
  }
}
@media (max-width: 600px) {
  .row.event-buttons-bar > div:nth-of-type(1) {
    display: none;
  }
  .row.event-buttons-bar > div:nth-of-type(2) {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
  }
}
.content.about .list.list-cols {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -30px;
  margin-bottom: 60px !important;
}
.content.about .list.list-cols li {
  width: calc(50% - 60px);
  margin: 0px 30px;
}

.content.main-contacts .row {
  align-items: flex-end;
}
.content.main-contacts h1 {
  font-size: 3rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 700;
}
.content.main-contacts .address {
  background: #e3faf0;
  padding: 40px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.25rem;
  margin-right: 25px;
  margin-bottom: 60px;
  column-gap: 15px;
}
.content.main-contacts .article {
  padding-left: 35px;
  margin-bottom: 60px;
}
.content.main-contacts .article p:last-of-type {
  margin-bottom: 0px;
}

.content.contacts .container {
  position: relative;
}
.content.contacts .container:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 15px;
  bottom: auto;
  left: 15px;
  display: block;
  height: 1px;
  background: #204f47;
}
.content.contacts .contacts-item {
  padding-top: 60px;
  margin-bottom: 40px;
  font-weight: 300;
}
.content.contacts .contacts-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #204f47;
  margin-bottom: 10px;
}

.content.contacts-map {
  background: #fff;
  position: relative;
  z-index: 5;
  margin-bottom: -10px;
}
.content.contacts-map .map-outer {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 33;
}
.content.contacts-map .map {
  height: 850px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 33;
}
.content.contacts-map .olControlAttribution.olControlNoSelect {
  display: none;
}
.content.contacts-map .olAlphaImg {
  width: 33px !important;
  height: 33px !important;
}
.content.contacts-map .olMapViewport {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}
.content.contacts-map .map div canvas {
  border-radius: 10px;
}
.content.contacts-map #OpenLayers_Map_2_OpenLayers_ViewPort {
  border-radius: 10px; /* ADD THIS */
}

@media (max-width: 991px) {
  .content.main-contacts h1 {
    margin-bottom: 30px;
  }
  .content.main-contacts .address {
    padding: 40px;
    margin-bottom: 30px;
    display: block;
    margin-right: 0px;
  }
  .content.main-contacts .address p {
    margin-bottom: 20px;
  }
  .content.main-contacts .address p:last-of-type {
    margin-bottom: 0px;
  }
  .content.main-contacts .article {
    padding-left: 0px;
    margin-bottom: 30px;
  }
  .content.contacts .contacts-item {
    padding-top: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .content.contacts .col-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content.contacts .container:before {
    left: 0px;
    right: 0px;
  }
  .content.main-contacts .address {
    padding: 20px;
  }
  .content.contacts {
    padding-top: 0px;
  }
  .content.contacts-map {
    padding-left: 0px;
    padding-right: 0px;
  }
  .map {
    height: 500px !important;
  }
}
@media (max-width: 580px) {
  .map {
    height: 400px !important;
  }
}
.master-banner {
  background: #204f47 url("../gfx/background/fill.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 100px;
  margin-top: -100px;
  -webkit-box-shadow: 0px 5px 25px 0px rgba(57, 124, 104, 0.34);
  -moz-box-shadow: 0px 5px 25px 0px rgba(57, 124, 104, 0.34);
  box-shadow: 0px 5px 25px 0px rgba(57, 124, 104, 0.34);
}
.master-banner .col-12 {
  display: flex;
}
.master-banner .banner-main {
  width: 100%;
}
.master-banner .banner-main .banner-main-item {
  display: none;
  position: relative;
  padding-right: 20px;
}
.master-banner .banner-main .banner-main-item.active {
  display: flex;
}
.master-banner .banner-main .banner-main-item .more-holder {
  display: none;
}
.master-banner .banner-main .banner-main-item .left {
  position: relative;
  z-index: 5;
  width: calc(40% - 20px);
  margin-right: 20px;
}
.master-banner .banner-main .banner-main-item .left:after {
  content: "";
  background: transparent url("../gfx/background/d03.svg") center center no-repeat;
  background-size: 100% 100%;
  opacity: 0.3;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 20px;
  left: 0px;
  display: block;
}
.master-banner .banner-main .banner-main-item .left .claim {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  position: absolute;
  top: 60px;
  right: auto;
  bottom: auto;
  left: 20px;
  transform-origin: top;
  transform: rotate(-90deg);
}
.master-banner .banner-main .banner-main-item .left .more {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 65px;
  left: 0px;
  left: 9%;
  /*display:inline-block;
  color:$white;
  padding-right:40px;
  padding-bottom:20px;
  border-bottom:1px $green-light solid;
  text-decoration: none;
  z-index: 90;

  &:after {
  	content:'';
  	width:13px;
  	height:13px;
  	background:transparent url('../gfx/icon/arrow2.svg') center center no-repeat;
  	background-size:contain;
  	@include pa(8px,0px,auto,auto);
  }
  &:hover {
  	color:$green-light;
  }*/
}
.master-banner .banner-main .banner-main-item .left h1 {
  font-size: 3.75rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 200px;
  left: 0px;
  left: 9%;
  width: 180%;
}
.master-banner .banner-main .banner-main-item .left h1 b {
  color: #73e6b6;
}
.master-banner .banner-main .banner-main-item .right {
  position: relative;
  margin-bottom: 20px;
  width: 60%;
}
.master-banner .banner-main .banner-main-item .right .img {
  overflow: hidden;
  font-size: 0px;
}
.master-banner .banner-main .banner-main-item .right .img img {
  border-radius: 10px;
  width: 100%;
}
.master-banner .banner-main .banner-main-item .right .description {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  justify-content: space-between;
}
.master-banner .banner-main .banner-main-item .right .description:after {
  content: "";
  width: 5px;
  height: 45px;
  background: transparent url("../gfx/background/d02.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 100%;
  left: 20px;
  margin-bottom: 20px;
}
.master-banner .banner-main .banner-main-item .right .description .article {
  width: 66%;
  background: #73e6b6;
  border-radius: 10px;
  padding: 20px;
  font-size: 13px;
}
.master-banner .banner-main .banner-main-item .right .description .info {
  display: flex;
  width: 33%;
  padding-bottom: 20px;
  align-items: flex-end;
  padding-left: 20px;
}
.master-banner .banner-main .banner-main-item .right .description .info p {
  height: 24px;
  background: #152623;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  border-radius: 12px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.master-banner .banner-main .banner-main-item .right .description .info p:before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 4px;
}
.master-banner .banner-main .banner-main-item .right .description .info p.cap:before {
  background: transparent url("../gfx/icon/cap.svg") center center no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.master-banner .banner-main .banner-main-item .right .description .info p.price:before {
  background: transparent url("../gfx/icon/price.svg") center center no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.master-banner .banner-links {
  flex-shrink: 0;
  width: 210px;
  display: flex;
  flex-direction: column;
}
.master-banner .banner-links .banner-links-dots {
  display: none;
}
.master-banner .banner-links .banner-links-item.empty {
  margin-bottom: 0px;
  min-height: 50px;
  height: 100%;
  flex-shrink: 1;
  margin-bottom: 20px;
  border: 1px #4c716a solid;
  /*background:transparent url('../gfx/background/d01.svg') center center no-repeat;
  background-size: 100% 100%;*/
  /*img {
  	width:100%;
  	height: 100%;
  	object-fit: 100% 100%;
  	opacity: 0.4;
  }*/
}
.master-banner .banner-links .banner-links-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.25s linear;
  flex-shrink: 0;
  /*height: calc(100% / 3) - 25;*/
}
.master-banner .banner-links .banner-links-item a {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 5;
}
.master-banner .banner-links .banner-links-item .img {
  width: 210px;
  height: 100%;
  font-size: 0px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.master-banner .banner-links .banner-links-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  transition: all 0.25s linear;
  -webkit-transition: none;
  border-radius: 10px;
  overflow: hidden;
}
.master-banner .banner-links .banner-links-item .img:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(32, 79, 71, 0.7);
  z-index: 2;
  transition: all 0.25s linear;
  -webkit-transition: none;
  border-radius: 10px;
  overflow: hidden;
}
.master-banner .banner-links .banner-links-item h2 {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  z-index: 3;
  align-items: flex-end;
}
.master-banner .banner-links .banner-links-item h2 b {
  color: #73e6b6;
}
.master-banner .banner-links .banner-links-item.active .img img, .master-banner .banner-links .banner-links-item:hover .img img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
.master-banner .banner-links .banner-links-item.active .img:after, .master-banner .banner-links .banner-links-item:hover .img:after {
  opacity: 0.5;
}

@media (max-width: 1420px) {
  .master-banner .banner-links .banner-links-item.empty {
    min-height: 10px;
  }
  .master-banner .banner-links .banner-links-item {
    height: 14vw;
  }
  .master-banner .banner-main .banner-main-item .right .description .info,
  .master-banner .banner-main .banner-main-item .right .description .article {
    width: auto;
  }
  .master-banner .banner-main .banner-main-item .right .description .info p {
    white-space: nowrap;
  }
}
@media (max-width: 1140px) {
  .master-banner .banner-main .banner-main-item .left h1 {
    font-size: 3.3rem;
  }
}
@media (max-width: 991px) {
  .master-banner .banner-links .banner-links-item.empty,
  .master-banner .banner-links .banner-links-slider {
    display: none;
  }
  .master-banner .banner-links {
    width: 0px;
  }
  .master-banner .banner-links .banner-links-dots {
    display: flex;
    z-index: 569;
    position: absolute;
    top: 7px;
    right: 23px;
    bottom: auto;
    left: auto;
  }
  .master-banner .banner-links .banner-links-dots .dot {
    background: #204f47;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
    border: 1px #204f47 solid;
    margin-left: 5px;
  }
  .master-banner .banner-links .banner-links-dots .dot.active {
    background: #73e6b6;
    border: 1px #204f47 solid;
  }
  .master-banner .banner-main .banner-main-item {
    padding-right: 0px;
  }
}
@media (max-width: 820px) {
  .master-banner .banner-links .banner-links-dots {
    top: 13px;
    right: 30px;
  }
  .master-banner .banner-links .banner-links-dots .dot {
    background: #fff;
    border: 1px #fff solid;
  }
  .master-banner .banner-main .banner-main-item.active {
    flex-direction: column;
  }
  .master-banner .banner-main .banner-main-item .right,
  .master-banner .banner-main .banner-main-item .left {
    width: 100%;
  }
  .master-banner .banner-main .banner-main-item .left {
    height: 35vw;
    min-height: 120px;
  }
  .master-banner .banner-main .banner-main-item .left:after {
    background: transparent url("../gfx/background/d06.svg") center center no-repeat;
    background-size: 100% 100%;
  }
  .master-banner .banner-main .banner-main-item .left .claim {
    top: 90px;
    right: 0px;
    left: auto;
    margin-right: 33px;
  }
  .master-banner .banner-main .banner-main-item .left h1 {
    width: auto;
    left: 40px;
    max-width: 70%;
    bottom: auto;
    top: 40px;
    font-size: 40px;
  }
  .master-banner .banner-main .banner-main-item .left .more {
    display: none;
  }
  .master-banner .banner-main .banner-main-item .more-holder {
    display: block;
    border: 1px #4c716a solid;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px 40px 0px 40px;
  }
}
@media (max-width: 580px) {
  .master-banner .banner-links .banner-links-dots .dot {
    width: 18px;
    height: 18px;
  }
  .master-banner .banner-main .banner-main-item .left {
    height: 35vw;
    min-height: 120px;
  }
  .master-banner .banner-main .banner-main-item .left .claim {
    right: 0px;
    left: auto;
    top: 75px;
    margin-right: 30px;
  }
  .master-banner .banner-main .banner-main-item .left h1 {
    left: 20px;
    top: 20px;
    font-size: 40px;
  }
  .master-banner .banner-main .banner-main-item .more-holder {
    padding: 20px 20px 0px 20px;
  }
  .master-banner .banner-main .banner-main-item .right .description {
    display: none;
  }
  .master-banner .banner-main .banner-main-item .right .img img {
    height: 50vw;
    object-fit: cover;
  }
}
.content.content-home {
  padding-top: 20px;
}
.content.content-home h2.smaller {
  border-bottom: 1px #d1dad9 solid;
  padding-bottom: 15px;
}
.content.content-home .article {
  font-size: 1.25rem;
  padding-right: 50px;
  font-weight: 300;
  padding-bottom: 50px;
}
.content.content-home .more {
  color: #1f4d45;
  margin-bottom: 50px;
}
.content.content-home .more:hover {
  color: #73e6b6;
}
.content.content-home .home-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}
.content.content-home .home-right .claim {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  top: 50px;
  right: -40px;
  bottom: auto;
  left: auto;
  transform-origin: top;
  transform: rotate(90deg);
}
.content.content-home .home-right .address {
  font-size: 0.75rem;
}
.content.content-home .home-right .address p {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .content.content-home .article {
    padding-bottom: 0px;
    padding-right: 0px;
  }
  /*.content.content-home .home-right .claim,
  .content.content-home .home-right .address,
  .content.content-home .home-right .address p {
  	display:none;
  }*/
}
.content.home-green {
  padding-top: 20px;
  background: #204f47 url("../gfx/background/master-banner.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 9;
  margin-bottom: -2px;
  -webkit-box-shadow: 0px 5px 25px 0px rgba(57, 124, 104, 0.34);
  -moz-box-shadow: 0px 5px 25px 0px rgba(57, 124, 104, 0.34);
  box-shadow: 0px 5px 25px 0px rgba(57, 124, 104, 0.34);
}
.content.home-green .container {
  padding-right: 10px;
  padding-left: 10px;
}
.content.home-green .container .row {
  margin-right: -10px;
  margin-left: -10px;
}
.content.home-green .container .row > div {
  padding-right: 10px;
  padding-left: 10px;
}
.content.home-green .col-md-12,
.content.home-green .col-md-4,
.content.home-green .col-md-3 {
  margin-bottom: 20px;
}
.content.home-green h2.smaller.rounded {
  color: #fff;
}
.content.home-green .home-green-header {
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: transparent url("../gfx/background/d04.svg") center center no-repeat;
  background-size: 100% 100%;
}
.content.home-green .home-green-header h2 {
  position: absolute;
  top: 12px;
  right: auto;
  bottom: auto;
  left: 26px;
  color: #fff;
}
.content.home-green .home-green-header p {
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  padding-left: 40px;
  padding-right: 30px;
  width: 70%;
}
.content.home-green .home-green-header p b {
  /*color:$green-light;*/
}
.content.home-green .home-green-item {
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.content.home-green .home-green-item > a {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9;
  display: block;
}
.content.home-green .home-green-item .txt {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: auto;
  left: 0px;
  padding: 20px;
  border-radius: 10px 10px 0px 0px;
}
.content.home-green .home-green-item .txt > :last-child {
  margin-bottom: 0px !important;
}
.content.home-green .home-green-item .txt > p,
.content.home-green .home-green-item .txt > h3 {
  margin-bottom: 20px;
}
.content.home-green .home-green-item .txt > h3 {
  font-weight: bold;
}
.content.home-green .home-green-item .txt > p {
  font-size: 13px;
}
.content.home-green .home-green-item .txt .info {
  position: absolute;
  top: 100%;
  right: 0px;
  bottom: auto;
  left: 0px;
  padding: 20px 20px 0px 20px;
  display: flex;
  padding-left: 20px;
}
.content.home-green .home-green-item .txt .info p {
  height: 24px;
  background: #152623;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  border-radius: 12px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.content.home-green .home-green-item .txt .info p:before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 4px;
}
.content.home-green .home-green-item .txt .info p.cap:before {
  background: transparent url("../gfx/icon/cap.svg") center center no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.content.home-green .home-green-item .txt .info p.price:before {
  background: transparent url("../gfx/icon/price.svg") center center no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.content.home-green .home-green-item .img {
  font-size: 0px;
}
.content.home-green .home-green-item .img img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}
.content.home-green .home-green-item.type-dark .txt {
  background: rgba(32, 79, 71, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.25s linear;
}
.content.home-green .home-green-item.type-dark .txt > h3 {
  color: #73e6b6;
  transition: all 0.25s linear;
}
.content.home-green .home-green-item.type-dark .txt > p {
  color: #fff;
  transition: all 0.25s linear;
}
.content.home-green .home-green-item.type-light .txt {
  background: #73e6b6;
  color: #1f4d45;
}
.content.home-green .home-green-item:hover .txt {
  background: #73e6b6;
  color: #1f4d45;
}
.content.home-green .home-green-item:hover .txt > h3 {
  color: #1f4d45;
}
.content.home-green .home-green-item:hover .txt > p {
  color: #1f4d45;
}

@media (max-width: 991px) {
  .content.home-green .row .col-md-3,
  .content.home-green .row .col-md-4 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .content.home-green .row .col-md-3,
  .content.home-green .row .col-md-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content.home-green .home-green-header {
    background: transparent url(../gfx/background/d05.svg) center center no-repeat;
    background-size: 100% 100%;
  }
  .content.home-green .home-green-header h2 {
    margin-left: 0px;
  }
  .content.home-green .home-green-header p {
    padding-left: 20px;
    font-size: 30px;
    width: 80%;
  }
  .content.home-green .container .row > div {
    padding-left: 0px;
    padding-right: 0px;
  }
  .content.home-green h2.smaller.rounded {
    margin-left: 0px;
  }
  .content.home-green .btn.btn-tertiary {
    border-color: white;
    color: white;
    margin-bottom: 25px;
    display: inline-flex !important;
  }
  .content.home-green .btn.btn-tertiary:hover {
    background: #fff;
    color: #204f47;
  }
}
/* specific components */
.content.carousel {
  background: #fff;
  margin-bottom: -10px;
  position: relative;
  z-index: 5;
}
.content.carousel .swiper-button-next, .content.carousel .swiper-button-prev {
  top: -4px;
  width: 13px;
  height: 13px;
  background: transparent url("../gfx/icon/arrow.svg") center center no-repeat;
  background-size: contain;
  margin: 0px;
}
.content.carousel .swiper-button-next:after, .content.carousel .swiper-button-prev:after {
  display: none;
}
.content.carousel .swiper-button-next {
  transform: rotate(180deg);
  transform-origin: center;
}
.content.carousel .swiper-pagination.swiper-pagination-progressbar {
  background: #e8edec;
  width: auto;
  left: 35px;
  right: 35px;
  height: 1px;
  top: 2px;
}
.content.carousel .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #73e6b6;
  height: 1px;
}
.content.carousel .swiper {
  padding-top: 20px;
}
.content.carousel .swiper .swiper-wrapper .swiper-slide {
  max-width: 400px;
}
.content.carousel .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.content.carousel .swiper .swiper-align-bottom {
  align-items: flex-end;
}

.nav.nav-responsive {
  display: none;
}

@media (max-width: 820px) {
  body.menu-active .nav.nav-responsive {
    opacity: 1;
    visibility: visible;
  }
  .nav.nav-responsive {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    z-index: 999999;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #162c28;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 30px 20px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
  }
  .nav.nav-responsive .close {
    display: block;
    width: 38px;
    height: 38px;
    background: transparent url("../gfx/icon/toggle.svg") center center no-repeat;
    background-size: contain;
    transition: all 0.25s linear;
    position: absolute;
    top: 31px;
    right: 20px;
    bottom: auto;
    left: auto;
  }
  .nav.nav-responsive .close:hover {
    transform: rotate(360deg);
  }
  .nav.nav-responsive .language-switcher {
    position: absolute;
    top: 81px;
    right: 20px;
    bottom: auto;
    left: auto;
  }
  .nav.nav-responsive .language-switcher a {
    border: 1px #fff solid;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: #fff;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.25s linear;
  }
  .nav.nav-responsive .language-switcher a:hover {
    background: #fff;
    color: #204f47;
  }
  .nav.nav-responsive .main {
    margin-bottom: auto;
  }
  .nav.nav-responsive .main ul li {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .nav.nav-responsive .main ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.25s linear;
  }
  .nav.nav-responsive .main ul li a:hover {
    color: #73e6b6;
  }
  .nav.nav-responsive .address {
    border-bottom: 1px #73E6B6 solid;
    padding: 20px 0px;
    margin-bottom: 20px;
  }
  .nav.nav-responsive .address a {
    text-decoration: none;
  }
  .nav.nav-responsive .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav.nav-responsive .bottom h2 {
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    margin-bottom: 40px;
  }
  .nav.nav-responsive .bottom h2:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #73e6b6;
    display: block;
    margin-right: 9px;
  }
  .nav.nav-responsive .bottom .bottom-left,
  .nav.nav-responsive .bottom .bottom-right {
    width: 50%;
  }
  .nav.nav-responsive .bottom .bottom-left li {
    padding-left: 0px;
    margin-bottom: 5px;
  }
  .nav.nav-responsive .bottom .bottom-left li:last-of-type {
    margin-bottom: 0px;
  }
  .nav.nav-responsive .bottom .bottom-left li a {
    text-decoration: none;
    border: 1px #fff solid;
    color: #fff;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 19px;
    font-size: 14px;
    font-weight: 300;
    width: auto;
    min-width: 80px;
    padding: 0px 15px;
    transition: all 0.25s linear;
    white-space: nowrap;
  }
  .nav.nav-responsive .bottom .bottom-left li a:hover {
    background: #fff;
    color: #204f47;
    border-color: #fff;
  }
  .nav.nav-responsive .bottom .bottom-right {
    padding-left: 20px;
  }
  .nav.nav-responsive .bottom .bottom-right li {
    margin-bottom: 5px;
  }
  .nav.nav-responsive .bottom .bottom-right li:last-of-type {
    margin-bottom: 0px;
  }
  .nav.nav-responsive .bottom .bottom-right li a {
    color: #73E6B6;
    text-decoration: none;
  }
  .nav.nav-responsive .bottom .bottom-right li a:hover {
    color: #fff;
  }
  .nav.nav-responsive .address,
  .nav.nav-responsive .bottom {
    /*margin-top:auto;*/
  }
}
/* 2026 */
.master-banner.master-banner-2026 {
  /*background:$green;*/
  padding-bottom: 20px;
}
.master-banner.master-banner-2026 .banner-primary-slider .banner-primary-slide {
  display: none;
}
.master-banner.master-banner-2026 .banner-primary-slider .banner-primary-slide.active {
  display: block;
}
.master-banner.master-banner-2026 .banner-primary-item {
  position: relative;
  margin-bottom: 20px;
}
.master-banner.master-banner-2026 .banner-primary-item .deco {
  width: 95px;
  position: absolute;
  top: 0px;
  right: auto;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
}
.master-banner.master-banner-2026 .banner-primary-item .deco i {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  border: 1px #5e9182 solid;
  position: relative;
  border-bottom: none;
}
.master-banner.master-banner-2026 .banner-primary-item .deco i:last-of-type {
  border-bottom: 1px #5e9182 solid;
}
.master-banner.master-banner-2026 .banner-primary-item .deco i b {
  width: 1px;
  background: #5e9182;
  position: absolute;
  top: 0px;
  right: auto;
  bottom: 0px;
  left: 50%;
  display: block;
}
.master-banner.master-banner-2026 .banner-primary-item.type2 .left {
  margin-top: -75px;
}
.master-banner.master-banner-2026 .banner-primary-item .left {
  flex-shrink: 0;
  z-index: 1;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 50px;
}
.master-banner.master-banner-2026 .banner-primary-item .left h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
  display: inline;
}
.master-banner.master-banner-2026 .banner-primary-item .left h1 b {
  font-weight: 500;
  color: #73e6b6;
}
.master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
}
.master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons .arrow {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #2c4c46 url(../gfx/icon/arrow2.svg) center center no-repeat;
  background-size: 13px 13px;
  border: none;
  padding: 0px;
  cursor: arrow;
}
.master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons .arrow.arrow-left {
  transform: rotate(180deg);
}
.master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons .arrow:hover {
  background-color: #fff;
}
.master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons a {
  padding: 0px;
  font-size: 14px;
  margin: 0px 14px;
  text-underline-offset: 15px;
  border: none;
  text-decoration: underline;
  text-decoration-color: #73e6b6;
}
.master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons a:after {
  display: none;
}
.master-banner.master-banner-2026 .banner-primary-item .right {
  padding-left: 115px;
  position: relative;
}
.master-banner.master-banner-2026 .banner-primary-item .right .img {
  overflow: hidden;
  border-radius: 10px;
}
.master-banner.master-banner-2026 .banner-primary-item .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.master-banner.master-banner-2026 .banner-primary-item .right .img .info {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.master-banner.master-banner-2026 .banner-primary-item .right .img .info p {
  color: #fff;
  margin-right: 0px;
  margin-left: 12px;
  display: inline-block;
  border-radius: 0px;
  background: #2c4c46;
  font-size: 14px;
  padding: 12px 14px;
  height: auto;
}
.master-banner.master-banner-2026 .banner-secondary-item {
  border-radius: 10px;
  border: 1px #5e9182 solid;
  height: 135px;
  color: #fff;
  display: flex;
  align-items: stretch;
}
.master-banner.master-banner-2026 .banner-secondary-item h2 {
  font-size: 1rem;
  width: auto;
  margin-bottom: 0px;
  padding-left: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 40px;
  width: 265px;
  flex-shrink: 0;
  text-transform: uppercase;
  font-weight: 700;
  border-right: 1px #5e9182 solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
.master-banner.master-banner-2026 .banner-secondary-item .txt {
  width: 100%;
  padding-left: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.master-banner.master-banner-2026 .banner-secondary-item .txt p {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 300;
}
.master-banner.master-banner-2026 .banner-secondary-item .size {
  width: 100%;
  border-right: 1px #5e9182 solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  color: #73e6b6;
}
.master-banner.master-banner-2026 .banner-secondary-item .size sup {
  font-size: 15px;
  position: relative;
  left: 1px;
  top: -3px;
}
.master-banner.master-banner-2026 .banner-secondary-item .info {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px;
}
.master-banner.master-banner-2026 .banner-secondary-item .info .btn.btn-secondary {
  height: 36px;
  padding-left: 14px;
  padding-right: 14px;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: auto;
  white-space: nowrap;
}
.master-banner.master-banner-2026 .banner-secondary-item .info .more-link {
  font-size: 16px;
  color: #1f4d45;
  text-underline-offset: 15px;
  text-decoration-color: #73e6b6;
  color: #fff;
  transform: translateY(-10px);
}

@media (max-width: 1280px) {
  .master-banner.master-banner-2026 .banner-secondary-item {
    border-radius: 10px 10px 10px 10px;
    flex-direction: column;
    /*border-top:none;*/
    /*margin-top:-8px;*/
    height: auto;
    padding-top: 6px;
  }
  .master-banner.master-banner-2026 .banner-secondary-item h2, .master-banner.master-banner-2026 .banner-secondary-item .size, .master-banner.master-banner-2026 .banner-secondary-item .info {
    border-bottom: 1px #5e9182 solid;
    width: 100%;
    border-right: 0px;
    padding: 22px;
    align-items: flex-start;
  }
  .master-banner.master-banner-2026 .banner-secondary-item h2 {
    border-right: 0px;
    font-size: 22px;
    text-align: left;
    justify-content: flex-start;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .txt {
    justify-content: flex-start;
    padding: 22px;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .size {
    align-self: center;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .info {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .info .more-link {
    transform: none;
  }
}
@media (max-width: 767px) {
  .master-banner.master-banner-2026 {
    padding-bottom: 0px;
  }
  .master-banner.master-banner-2026 .container .row > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 620px) {
  .master-banner.master-banner-2026 .banner-primary-item .deco {
    width: 100%;
    height: 118px;
    border: 1px #5e9182 solid;
    border-radius: 10px 10px 0px 0px;
  }
  .master-banner.master-banner-2026 .banner-primary-item .deco i {
    height: 33.33%;
    border: none;
  }
  .master-banner.master-banner-2026 .banner-primary-item .deco i b {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 100%;
    right: 0px;
    bottom: auto;
    left: 0px;
  }
  .master-banner.master-banner-2026 .banner-primary-item.type2 .deco {
    height: 140px;
  }
  .master-banner.master-banner-2026 .banner-primary-item.type2 .deco i {
    height: 36px;
    flex: none;
  }
  .master-banner.master-banner-2026 .banner-primary-item.type2 .deco i:nth-of-type(2),
  .master-banner.master-banner-2026 .banner-primary-item.type2 .deco i:nth-of-type(3) {
    display: none;
  }
  .master-banner.master-banner-2026 .banner-primary-item .right {
    padding-left: 0px;
    padding-top: 80px;
  }
  .master-banner.master-banner-2026 .banner-primary-item.type2 .right {
    padding-top: 120px;
  }
  .master-banner.master-banner-2026 .banner-primary-item .left {
    top: 40px;
    margin-top: 0px !important;
    display: flex;
    flex-direction: column;
    left: 21px;
  }
  .master-banner.master-banner-2026 .banner-primary-item .left .slider-buttons {
    margin-left: 0px;
    margin-top: 20px;
  }
  .master-banner.master-banner-2026 .banner-primary-item .left h1 {
    font-size: 30px;
  }
  .master-banner.master-banner-2026 .banner-primary-item {
    margin-bottom: 0px;
  }
  .master-banner.master-banner-2026 .banner-secondary-item {
    border-radius: 0px 0px 10px 10px;
    flex-direction: column;
    border-top: none;
    margin-top: -8px;
    height: auto;
    padding-top: 6px;
  }
  .master-banner.master-banner-2026 .banner-secondary-item h2, .master-banner.master-banner-2026 .banner-secondary-item .size, .master-banner.master-banner-2026 .banner-secondary-item .info {
    border-bottom: 1px #5e9182 solid;
    width: 100%;
    border-right: 0px;
    padding: 22px;
    align-items: flex-start;
  }
  .master-banner.master-banner-2026 .banner-secondary-item h2 {
    border-right: 0px;
    font-size: 22px;
    text-align: left;
    justify-content: flex-start;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .txt {
    justify-content: flex-start;
    padding: 22px;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .size {
    align-self: center;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .info {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .master-banner.master-banner-2026 .banner-secondary-item .info .more-link {
    transform: none;
  }
}
.content.hp-video {
  background: #e3faf0;
  padding: 20px 0px;
}
.content.hp-video .container .row {
  margin-right: -10px;
  margin-left: -10px;
}
.content.hp-video .container .row > div {
  padding-right: 10px;
  padding-left: 10px;
}
.content.hp-video .hp-video-item .img {
  font-size: 0px;
  line-height: 0;
  margin-bottom: 20px;
}
.content.hp-video .hp-video-item .img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.content.hp-video .hp-video-item .btn.btn-tertiary {
  height: 36px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
}

.content.hp-video-bottom {
  margin-bottom: 25px;
  padding-top: 35px;
}
.content.hp-video-bottom .more-link {
  font-size: 14px;
  color: #1f4d45;
  text-underline-offset: 15px;
  text-decoration-color: #73e6b6;
}

@media (max-width: 767px) {
  .content.hp-video .container .row > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .content.hp-video .container .row > div:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 580px) {
  .content.hp-video .container .row > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content.hp-video .container .row > div:nth-of-type(2),
  .content.hp-video .container .row > div:nth-of-type(3) {
    display: none;
  }
}
.content.content-home-2026 {
  margin-bottom: 120px;
}
.content.content-home-2026 .article {
  padding-bottom: 0px;
}
.content.content-home-2026 .home-right {
  padding-left: 7vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}
.content.content-home-2026 .home-right .claim {
  transform: none;
  position: static;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 85px;
}
.content.content-home-2026 .home-right .address {
  opacity: 0.4;
}

.content.content-home-2026 .home-right .address p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .content.content-home-2026 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .content.content-home-2026 .container .row > div.col-sm-4 {
    text-align: center;
  }
  .content.content-home-2026 .container .row > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content.content-home-2026 .article {
    margin-bottom: 65px;
  }
  .content.content-home-2026 .home-right {
    padding: 0px;
    margin: auto;
    text-align: left;
    width: auto;
    display: inline-block;
  }
  .content.content-home-2026 .home-right .claim {
    margin-bottom: 65px;
  }
}
.content.home-services-2026 {
  padding-top: 0px;
  position: relative;
}
.content.home-services-2026:before {
  content: "";
  display: block;
  height: 1px;
  background: #204f47;
  margin: auto;
  max-width: 1400px;
}
.content.home-services-2026 .row {
  margin-right: -15px;
}
.content.home-services-2026 .row > div {
  padding-right: 0px;
}
.content.home-services-2026 .article {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
}
.content.home-services-2026 .article:after {
  content: "";
  display: block;
  height: 1px;
  background: #d2dbda;
  margin: auto;
  max-width: 1400px;
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.content.home-services-2026 .article .head {
  flex-shrink: 0;
  width: 30%;
  position: relative;
  display: flex;
  padding-top: 60px;
  flex-wrap: wrap;
}
.content.home-services-2026 .article .head h2 {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 15px;
  margin-right: 35px;
}
.content.home-services-2026 .article .head .btn.btn-secondary {
  height: 36px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  font-size: 14px;
  transform: translateY(-5px);
}
.content.home-services-2026 .article .head .more-link {
  font-size: 16px;
  color: #1f4d45;
  text-underline-offset: 15px;
  text-decoration-color: #73e6b6;
  position: absolute;
  top: 100%;
  right: auto;
  bottom: auto;
  left: 0px;
  transform: translateY(-80px);
}
.content.home-services-2026 .article .txt {
  padding-top: 60px;
  padding-bottom: 55px;
  font-size: 1.0rem;
  font-weight: 300;
}
.content.home-services-2026 .article .txt .more-link {
  display: none;
  color: #1f4d45;
  text-underline-offset: 15px;
  text-decoration-color: #73e6b6;
  position: absolute;
  top: 100%;
  right: auto;
  bottom: auto;
  left: 0px;
  font-size: 14px;
}
.content.home-services-2026 .article .img {
  border-right: 20px #73e6b6 solid;
  border-left: 20px #fff solid;
  width: 25%;
  flex-shrink: 0;
  position: relative;
  top: -1px;
  font-size: 0px;
  line-height: 0;
}
.content.home-services-2026 .article .img img {

  width: 100%;
  object-fit: cover;
}
.content.home-services-2026 .container > div:nth-last-child(2) .article:after {
  background: #204f47;
}
.content.home-services-2026 .container > div:nth-last-child(2) .article .img {
  margin-bottom: -1px;
  z-index: 2;
}
.content.home-services-2026 .buttons {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px !important;
}
.content.home-services-2026 .buttons .btn.btn-tertiary {
  height: 36px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 767px) {
  .content.home-services-2026 .article {
    display: block;
  }
  .content.home-services-2026 .article:after {
    bottom: 1px;
  }
  .content.home-services-2026 .article .head {
    width: 100%;
    padding-top: 45px;
  }
  .content.home-services-2026 .article .head .more-link {
    display: none;
  }
  .content.home-services-2026 .article .txt {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  .content.home-services-2026 .article .txt .more-link {
    margin-top: 45px;
    display: inline-block;
    position: static;
  }
  .content.home-services-2026 .article .img {
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
    border-left: none;
  }
  .content.home-services-2026 .buttons {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .content.home-services-2026:before {
    margin-right: -15px;
    margin-left: 0px;
    width: auto;
  }
}
.content.home-green.home-green-2026 .home-green-header {
  background-image: none;
  min-height: 105px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px #4c716a solid;
  position: relative;
}
.content.home-green.home-green-2026 .home-green-header:after {
  content: "";
  width: 1px;
  background: #4c716a;
  position: absolute;
  top: 0px;
  right: auto;
  bottom: 0px;
  left: 590px;
}
.content.home-green.home-green-2026 .home-green-header h2 {
  display: none;
}
.content.home-green.home-green-2026 .home-green-header p {
  font-size: 1rem;
  width: auto;
  padding-right: 0px;
  padding-left: 43px;
}
.content.home-green.home-green-2026 .home-green-header p:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73e6b6;
  display: inline-block;
  transform: translateY(-3px) translateX(10px);
}
.content.home-green.home-green-2026 .col-md-6 {
  margin-bottom: 20px;
}
.content.home-green.home-green-2026 .home-green-item {
  border-radius: 10px;
  overflow: hidden;
  min-height: 1px;
  height: 332px;
}
.content.home-green.home-green-2026 .home-green-item .img img {
  min-height: 1px;
  height: 332px;
  object-position: center;
}
.content.home-green.home-green-2026 .home-green-item .txt {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #375f58 0.8;
  border-radius: 10px;
  height: 75px;
  display: flex;
  padding-left: 25px;
  padding-right: 25px;
  justify-content: space-between;
  align-items: center;
}

.content.home-green.home-green-2026 .home-green-item .txt .info {
  position: static;
  padding: 0px;
}
.content.home-green.home-green-2026 .home-green-item .txt .info > p {
  margin-right: 0px;
  margin-left: 12px;
  display: inline-block;
  border-radius: 0px;
  background: #2c4c46;
  font-size: 16px;
  padding: 12px 14px;
  height: auto;
  color: #73e6b6;
  white-space: nowrap;
}
.content.home-green.home-green-2026 .home-green-item .txt .info > p:before {
  display: none;
}
.content.home-green.home-green-2026 .home-green-item .txt p {
  display: none;
}
.content.home-green.home-green-2026 .home-green-item .txt h3 {
  margin-bottom: 0px;
}
.content.home-green.home-green-2026 .home-green-item:hover .txt h3 {
  color: #73e6b6;
}
.content.home-green.home-green-2026 .home-green-item:hover .txt h3 {
  color: #204f47;
}
.content.home-green.home-green-2026 .home-green-item.type-low {
  height: 75px;
}

@media (max-width: 767px) {
  .content.home-green.home-green-2026 .home-green-header {
    min-height: 80px;
  }
  .content.home-green.home-green-2026 .home-green-header p {
    padding-left: 20px;
  }
  .content.home-green.home-green-2026 .home-green-header:after {
    left: 440px;
  }
  .content.home-green.home-green-2026 .home-green-item .txt {
    min-height: 120px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content.home-green.home-green-2026 .home-green-item.type-low,
  .content.home-green.home-green-2026 .home-green-item.type-low .txt {
    min-height: 70px;
    height: 70px;
  }
  .content.home-green.home-green-2026 .home-green-item .txt .info > p {
    margin-right: 12px;
    margin-left: 0px;
  }
}
@media (max-width: 580px) {
  .content.home-green.home-green-2026 .home-green-header p {
    max-width: 240px;
    position: relative;
  }
  .content.home-green.home-green-2026 .home-green-header p:after {
    position: absolute;
    transform: none;
    top: 4px;
    right: -1px;
  }
  .content.home-green.home-green-2026 .home-green-header:after {
    left: 270px;
  }
}
.footer .footer-block {
  flex: 2;
}
.footer .footer-block.footer-block-left {
  flex: 4;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer .footer-block.footer-block-left h2 {
  width: 100%;
}
.footer .footer-block.footer-block-right {
  flex: 3;
  align-items: flex-end;
}
.footer .footer-block.footer-block-right img {
  width: 162px;
  margin-bottom: auto;
}
.footer .footer-block.footer-block-right section {
  padding-right: 0px;
}

.footer .nav.nav-links .buttons {
  padding-left: 20px;
  margin-top: 40px;
}

.footer .nav.nav-links p {
  display: inline-block;
  float: left;
  padding-left: 0px;
  margin-right: 6px;
  height: 38px;
  margin-bottom: 7px;
}

@media (max-width: 767px) {
  .footer .container .row .col-12 {
    align-items: flex-start;
  }
  .footer .footer-block.footer-block-left {
    display: none;
  }
  .footer .container .row .col-12 {
    flex-direction: column;
  }
  .footer .footer-block.footer-block-right {
    align-items: flex-start;
  }
  .footer .footer-block.footer-block-right section {
    padding-left: 0px;
    padding-top: 35px;
  }
}
/* pages  */
/* tweaks */
.desktop-hide {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
  .desktop-hide {
    display: inline-block !important;
  }
  .content.textpage .article.excerpt h1,
  .content.event-detail h1,
  .content.main-contacts h1 {
    font-size: 40px;
  }
  .content.home-green .home-green-item .txt > h3,
  .content.content-home .article,
  .content.textpage .article.excerpt p,
  .article.left-col > :first-child,
  .content.event-detail .event-txt .excerpt p,
  .content.event-detail .event-top-info .cap p, .content.event-detail .event-top-info .price p,
  .content.contacts .contacts-item h2,
  .content.main-contacts .address p,
  .content.contacts .contacts-item p {
    font-size: 20px;
  }
  .footer .nav.nav-social ul li a,
  .footer .address, .footer .footer-block section, .footer .footer-block.footer-block-right section,
  .content.event-detail .event-info .article p,
  .content.event-detail .event-txt,
  .content.textpage .article.left-col p {
    font-size: 15px;
  }
  .footer .nav.nav-links p a,
  .content.home-green .home-green-item .txt > p {
    font-size: 13px;
  }
}

/*# sourceMappingURL=default.css.map */
