@charset "UTF-8";
/* MAIN LIBS --------------------------------------------------- */
/* MAIN ws --------------------------------------------------- */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}



body {
  overflow-x: hidden;

}

@media (max-width: 599px) {
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}
@media (max-width: 599px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.clear,
.both {
  clear: both;
}

/* Картинку установить */
#loader {
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.6) url(/images/common/ring.svg) no-repeat 50% 45%;
}

/*Уведомления */
#alert__msg {
  padding: 3rem 4rem 3rem 4rem;
  background: #fefefe;
  color: #324554;
  border: 0.1rem solid #efefef;
  font-family: inherit;
  font-size: 1.8rem;
  position: fixed;
  z-index: 999999;
  top: 12rem;
  width: 45rem;
  -webkit-box-shadow: 0 1.9rem 3.8rem rgba(0, 0, 0, 0.3), 0 1.5rem 1.2rem rgba(0, 0, 0, 0.22);
          box-shadow: 0 1.9rem 3.8rem rgba(0, 0, 0, 0.3), 0 1.5rem 1.2rem rgba(0, 0, 0, 0.22);
  display: none;
}

.alert__title {
  font-weight: bold;
  text-align: center;
}

.alert_message {
  line-height: 1.2;
  padding-top: 1rem;
  font-size: 1.6rem;
}

.alert__ok {
  width: 9.5rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background: silver;
  border: 0;
  border-radius: 0.3rem;
  text-align: center;
  padding: 0.3rem 0rem 0.3rem 0rem;
  margin-top: 2rem;
  cursor: pointer;
  font-size: 1.4rem;
  margin-left: auto;
  margin-right: auto;
}

/* loader cover */
.local-cover {
  position: absolute;
  z-index: 99999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75) url(/images/common/loader.svg) no-repeat 50% 50%;
}

/* MAIN GRID --------------------------------------------------- */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
.container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
.container-sm,
.container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
.container-md,
.container-sm,
.container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1400px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

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

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

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

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

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

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

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

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -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;
}

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

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

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

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

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

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

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

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

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

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

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

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -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;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

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

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

  .d-sm-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

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

  .d-sm-none {
    display: none !important;
  }

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

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -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;
  }

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

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

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

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

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

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

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

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

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

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -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;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

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

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

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

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

  .d-md-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

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

  .d-md-none {
    display: none !important;
  }

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

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -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;
  }

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

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

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

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

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

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

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

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

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

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -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;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

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

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

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

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

  .d-lg-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

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

  .d-lg-none {
    display: none !important;
  }

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

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -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;
  }

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

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

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

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

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

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

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

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

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

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -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;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

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

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

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

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

  .d-xl-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

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

  .d-xl-none {
    display: none !important;
  }

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

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -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;
  }

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

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

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

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

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

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

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

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

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

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -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;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

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

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

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

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

  .d-xxl-grid {
    display: grid !important;
  }

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

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

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

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

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

  .d-xxl-none {
    display: none !important;
  }

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

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

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

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

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

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

  .d-print-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

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

  .d-print-none {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap-grid.css.map */
/* MAIN VARIABLES --------------------------------------------------- */
/* MAIN FONTS --------------------------------------------------- */
/* MAIN CSS */
html {
  font-size: 10px;
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #0f0f0f;
  margin: 0;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ------ Specification ------ */
div,
p,
form,
input,
a,
span,
button,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
textarea,
a,
div {
  padding: 0;
  margin: 0;
}

p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #000000;
}
p a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #0f0f0f;
}

a,
a:hover,
a:active a:focus {
  text-decoration: none;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: auto;
  height: 3.5rem;
  min-height: 1rem;
  padding: 0rem 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
  background: #ef414b;
  border-radius: 2rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none !important;
}
.btn:hover, .btn:focus {
  background: #cd2c35;
  color: #fff;
  outline: none !important;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.8rem;
}

.btn-alternative {
  background: #c5583d;
  color: #fff;
  border: none;
}
.btn-alternative:hover {
  background: #b44226;
  color: #fff;
  border: none;
}
.btn-alternative:active {
  background: #b44226;
  color: #fff;
  border: none;
}
.btn-alternative:focus {
  background: #b44226;
  color: #fff;
  border: none;
}
.btn-alternative.active {
  background: #b44226;
  color: #fff;
  border: none;
}

.mobile-br {
  display: none;
}

a,
button,
input,
div {
  display: block;
  text-decoration: none;
}

input,
input:hover,
input:focus,
input:active,
button,
button:hover,
button:focus,
button:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none !important;
  background: transparent;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.collapsible.active ~ .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content {
  display: none;
  overflow: hidden;
}

.tabcontent {
  display: none;
}
.tabcontent.active {
  display: block;
}

.stop-scrol {
  overflow: hidden;
}

.show-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.show-mobile {
  display: none;
}

/* MAIN NAV PANEL --------------------------------------------------- */
.navbar {
  height: 16rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: relative;
}

.navbar__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar__logo img {
  max-height: 100%;
}

.navbar__logo__mini {
  display: none;
  margin-right: 2rem;
}

.aside-part {
  width: 13.55vw;
}

.navbar__menu {
  max-width: 140rem;
  margin: 0 auto;
  width: 72.9vw;
}

.navbar__menu__top {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.navbar__menu__bottom {
  width: 100%;
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 0.1rem solid #ebebeb;
}

.navbar__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.navbar__links .navbar__link {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-transform: uppercase;
  color: #000000;
  margin-left: 2.5rem;
  position: relative;
}
.navbar__links .navbar__link:hover {
  color: #125fa3;
}

.blue-angle::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -0.9rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0;
  border-color: transparent #1468b3 transparent transparent;
	-webkit-animation: blink 1s linear infinite;
          animation: blink 1s linear infinite;
}

@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.red-angle::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -0.9rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0;
  border-color: transparent #ef414b transparent transparent;
}

.navbar__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.navbar__search button {
  min-width: 2.2rem;
  cursor: pointer;
  margin-right: 0.5rem;
  color: #1e1e1e;
}
.navbar__search button svg {
  width: 2.2rem;
  height: 2.2rem;
}
.navbar__search button:hover, .navbar__search button:focus {
  color: #125fa3;
}
.navbar__search input {
  width: 100%;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2rem;
  
  color: #1e1e1e;
}
.navbar__search input::-webkit-input-placeholder {
  color: #c8c8c8;
  text-transform: uppercase;
}
.navbar__search input::-moz-placeholder {
  color: #c8c8c8;
}
.navbar__search input:-ms-input-placeholder {
  color: #c8c8c8;
}
.navbar__search input::-ms-input-placeholder {
  color: #c8c8c8;
}
.navbar__search input::placeholder {
  color: #c8c8c8;
}

.dropArrow::after {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  border: solid #002c86;
  border-width: 0 0.1rem 0.1rem 0;
  display: inline-block;
  padding: 0.2rem;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: -0.5rem;
}

/* HAMBURGER BUTON*/
.hamburger {
  padding: 1.5rem 1.5rem;
  display: none;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.active:hover {
  opacity: 1;
}

.hamburger.active .hamburger-inner,
.hamburger.active .hamburger-inner::before,
.hamburger.active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 4rem;
  height: 2.4rem;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.2rem;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 3.5rem;
  height: 0.3rem;
  background-color: #002c86;
  border-radius: 0.4rem;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -1rem;
}

.hamburger-inner::after {
  bottom: -1rem;
}

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 8rem;
          perspective: 8rem;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.hamburger--3dx.active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 1rem, 0) rotate(45deg);
          transform: translate3d(0, 1rem, 0) rotate(45deg);
}

.hamburger--3dx.active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -1rem, 0) rotate(-45deg);
          transform: translate3d(0, -1rem, 0) rotate(-45deg);
}

.navmob {
  display: none;
}

.navbar__oldweb {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar__oldweb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #265385;
}
.navbar__oldweb a svg {
  margin-left: 0.8rem;
  width: 1rem;
  height: 1rem;
}
.navbar__oldweb.mini {
  display: none;
}

.navbar__menu__top__link a {
  font-family: "Roboto Condensed", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #265385;
}
.navbar__menu__top__link a svg {
  margin-left: 0.8rem;
  width: 1rem;
  height: 1rem;
}
/*.navbar__menu__top__link a:hover, .navbar__menu__top__link a:focus {
  color: #030303;
}*/

.navbar__menu__top__buttons {
  margin-left: auto;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar__menu__top__buttons .social__list {
  margin-right: 2rem;
}
.navbar__menu__top__buttons .btn {
  width: 18.686rem;
  height: 4.808rem;
  border-radius: 0.4rem;
}

.special__wrapper {
  position: relative;
  margin-right: 2rem;
}

.special__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #424242;
  width: 4rem;
  height: 4rem;
}
.special__button svg {
  width: 3.4rem;
  height: 1.4rem;
}
.special__button:hover {
  color: #125fa3;
  cursor: pointer;
}

.special__wrap {
  position: absolute;
  top: 5rem;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  padding: 2.4rem 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.2rem;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem;
  z-index: 1;
}
.special__wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.special__wrap a {
  color: #424242;
}
.special__wrap a:not(:last-child) {
  margin-bottom: 2rem;
}
.special__wrap a:hover {
  color: #125fa3;
}
.special__wrap a svg {
  width: 1.9rem;
  height: 1.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* MAIN MAIN CONTENT --------------------------------------------------- */
.section-title h2 {
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 7.6rem;
  text-transform: capitalize;
  color: #000000;
}

.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* //! SLIDER -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ */
.slick-slide:focus {
  outline: none;
}

.slick-list {
  padding: 0 !important;
}

.slider__nav__btn {
  position: static;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #c4c4c4;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid #e5e5e5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slider__nav__btn svg {
  width: 2.1rem;
  height: 1.3rem;
}
.slider__nav__btn.slider__nav__btn__prev {
  border-radius: 0.6rem 0rem;
}
.slider__nav__btn.slider__nav__btn__prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider__nav__btn.slider__nav__btn__next {
  border-radius: 0rem 0.6rem;
}
.slider__nav__btn:hover {
  border-color: #a7a7a7;
  color: #616161;
}

.slider__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider__dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 3.4rem;
}
.slider__dots ul li {
  margin: 0 1rem;
  width: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.slider__dots ul li button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1rem;
  height: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 0;
  color: transparent;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: width ease 0.3s, height ease 0.3s;
  -o-transition: width ease 0.3s, height ease 0.3s;
  transition: width ease 0.3s, height ease 0.3s;
}
.slider__dots ul li.slick-active button {
  color: transparent;
  background: rgba(8, 131, 170, 0.5);
  position: relative;
}
.slider__dots ul li.slick-active button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.9rem;
  height: 1.9rem;
  border: 0.1rem solid rgba(8, 131, 170, 0.5);
  border-radius: 50%;
}

/* //! SECTION CRUMBS -_-_-_-_-_-_-_-_ */
.crumbs {
  background: #f0f1f2;
  min-height: 4.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.crumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.crumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #c8c8c8;
}
.crumbs__item a {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: #c8c8c8;
  cursor: pointer;
}
.crumbs__item a:hover, .crumbs__item a:focus {
  color: #000;
}
.crumbs__item:last-child a {
  color: #000000;
  cursor: default;
}

.crumbs__item:not(:last-child)::after {
  content: "/";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0 0.5rem;
  color: inherit;
}

.crumbs__item:nth-last-child(2)::after {
  content: "/";
  display: none !important;
}

.crumbs__item:last-child::before {
  content: "/";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0 0.5rem;
  color: #000000;
}

/* //! SECTION MAIN CONTAINER -_-_-_-_-_-_-_-_ */
.main__container {
  padding-top: 4.7rem;
  padding-bottom: 7.7rem;
}

.main_nav__title {
  padding-top: 4.4rem;
  margin-bottom: 4.1rem;
}
.main_nav__title h2 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 4.2rem;
  color: #000000;
}
.main_nav ul,
.main_nav li {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}
.main_nav ul li a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 4.3rem;
  color: #000000;
}
.main_nav ul li a:hover, .main_nav ul li a:focus {
  color: #ef414b;
}
.main_nav ul li a.active {
  color: #ef414b;
}
.main_nav ul li a.active::before {
  content: "";
  margin-right: 2rem;
  border-left: 0.2rem solid #ef414b;
}



.main__wrapper {
  background: #ffffff;
  border: 0.1rem solid #e8e9ea;
  border-radius: 1rem;
  width: 100%;
  padding-top: 5.5rem;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-bottom: 6rem;
}

.main__wrapper__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4.5rem;
}
.main__wrapper__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-transform: uppercase;
  color: #1d1d1d;
}
.main__wrapper__title svg {
  color: #1468b3;
  width: 1.5rem;
  height: 2.6rem;
  margin-right: 1.1rem;
}

.main__wrapper__title__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4.5rem;
}
.main__wrapper__title__link h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-transform: uppercase;
  color: #1468b3;
}
.main__wrapper__title__link svg {
  color: #1468b3;
  width: 1.5rem;
  height: 2.6rem;
  margin-right: 1.1rem;
}
.main__wrapper__title__link:hover h4 {
  color: #242424;
}
.main__wrapper__title__link:hover svg {
  color: #242424;
}

.main__wrapper__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4.5rem;
}

.main__wrapper__form__select {
  min-width: 25.2rem;
  margin-right: 1rem;
}

.main__wrapper__form__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.main__wrapper__form__search button {
  cursor: pointer;
  font-family: "Roboto Condensed", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 11.5rem;
  height: 4.1rem;
  background: #1468b3;
  border-radius: 0rem 0.4rem 0.4rem 0rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #ffffff;
}
.main__wrapper__form__search button:hover {
  background: #0d5ea7;
}

/* //! SECTION INPUTS SELECT -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ */
.form_field {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_field h4 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #7b7b7b;
}
.form_field input {
  padding-left: 2.2rem;
  width: 100%;
  height: 4.1rem;
  background: #ffffff;
  border: 0.1rem solid #d7dee4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
          box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem 0rem 0rem 0.4rem;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  color: #676767;
}
.form_field input::-webkit-input-placeholder {
  color: #676767;
}
.form_field input::-moz-placeholder {
  color: #676767;
}
.form_field input:-ms-input-placeholder {
  color: #676767;
}
.form_field input::-ms-input-placeholder {
  color: #676767;
}
.form_field input::placeholder {
  color: #676767;
}
.form_field select {
  padding-left: 2.2rem;
  width: 100%;
  height: 4.1rem;
  background: #ffffff;
  border: 0.1rem solid #d7dee4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
          box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  color: #676767;
  background: #fff url(../images/icons/select-arrow.png) right 2rem center no-repeat;
}
.form_field select::-webkit-input-placeholder {
  color: #676767;
}
.form_field select::-moz-placeholder {
  color: #676767;
}
.form_field select:-ms-input-placeholder {
  color: #676767;
}
.form_field select::-ms-input-placeholder {
  color: #676767;
}
.form_field select::placeholder {
  color: #676767;
}
.form_field select:focus {
  outline: none;
}
.form_field select:active {
  outline: none;
}
.form_field select option {
  text-indent: 5%;
}
.form_field .form_field__slideArrow {
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 1rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form_field textarea {
  padding: 1rem 2.2rem;
  width: 100%;
  background: #ffffff;
  border: 0.1rem solid #d7dee4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
          box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  color: #676767;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Remove default arrow */
}

select::-ms-expand {
  display: none;
  /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}

/* //! check-box -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ */
.check-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 2.6rem;
}

.check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  width: 2.1rem;
  height: 2.1rem;
  background: #ffffff;
  border: 0.1rem solid #d7dee4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
          box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
}

.check-box:hover input ~ .checkmark {
  background-color: rgba(0, 0, 0, 0.2745098039);
}

.check-box input:checked ~ .checkmark {
  background-color: #000000;
  font-weight: 700;
}
.check-box input:checked ~ .checkmark p {
  color: #000;
}

.check-box input:checked ~ .check-box__text p {
  color: #000000;
}
.check-box input:checked ~ .check-box__text p span {
  color: #000000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-box input:checked ~ .checkmark:after {
  display: block;
}

.check-box__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.check-box__image img {
  max-height: 100%;
}

.check-box__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-left: 3rem;
}
.check-box__text p {
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #000000;
}
.check-box__text p span {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 2.6rem;
  text-align: right;
  color: #a4a4a4;
}

/* //! SECTION events -_-_-_-_-_-_-_-_ */
.event__wrap {
  max-width: 92rem;
  margin: 0 auto;
}

.event__wrap__title {
  margin-bottom: 2.9rem;
}
.event__wrap__title h4 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 4.2rem;
  color: #242424;
}

.event__wrap__published {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.1rem;
}
.event__wrap__published p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.event__wrap__published svg {
  color: #c4c4c4;
  width: 1.4rem;
  height: 1.5rem;
}

.event__wrap__content {
  border-top: 0.3rem solid #424242;
  border-bottom: 0.3rem solid #424242;
  padding-bottom: 5.4rem;
}

.event__wrap__content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  background: #f0f1f2;
  margin-bottom: 5rem;
}
.event__wrap__content__info .event__wrap__content__info__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event__wrap__content__info__date {
  padding-left: 4rem;
  padding-top: 4rem;
  padding-bottom: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event__wrap__content__info__date__time p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #afafaf;
}
.event__wrap__content__info__date__time h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3.6rem;
  text-transform: uppercase;
  color: #2b2b2b;
}

.event__wrap__content__info__date__links {
  margin-top: auto;
}

.event__wrap__content__info__date__link {
  margin-bottom: 1.4rem;
}
.event__wrap__content__info__date__link p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #252525;
}
.event__wrap__content__info__date__link p span {
  color: #959595;
}
.event__wrap__content__info__date__link a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #afafaf;
}
.event__wrap__content__info__date__link svg {
  width: 2.256rem;
  height: 2.012rem;
  margin-left: 0.4rem;
}

.event__wrap__content__info__date__buttons .btn {
  width: 20rem;
  height: 4.9rem;
  border-radius: 0.4rem;
}

.event__wrap__content__title {
  margin-bottom: 3.1rem;
}
.event__wrap__content__title h4 {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.1rem;
  text-align: justify;
  color: #000000;
}

.event__wrap__content__text p {
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 2.9rem;
  text-align: justify;
  color: #000000;
}
.event__wrap__content__text iframe {
	width: 100%;
}
@media(max-width: 600px){
	.event__wrap__content__text iframe {
		height: 300px;
	}
}

.event__wrap__bottom {
  padding-top: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.event__wrap__bottom__info__link {
  margin-bottom: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.event__wrap__bottom__info__link p {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #626262;
  margin-bottom: 0.7rem;
}
.event__wrap__bottom__info__link p span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #000000;
}

.event__wrap__bottom__slider {
  max-width: 56rem;
  overflow: hidden;
}

.event__slide__image {
  overflow: hidden;
  border-radius: 1rem;
}

.event__slider__nav {
  padding-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.event__slider__nav .slider__nav__btn__prev {
  margin-right: 1.1rem;
}
.event__slider_big .slick-slide,
.event__slider .slick-slide {
  margin: 0 1rem;
}
.event__slider_big .slick-list,
.event__slider .slick-list {
  margin: 0 -1rem;
}

.event {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event__image {
  min-width: 29rem;
  margin-right: 3.8rem;
  border-radius: 1rem;
  overflow: hidden;
}
.event__image img {
 /* width: 100%;
  height: 100%;*/
 max-width: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event__info {
  width:100%;
  padding-right: 2rem;
}

.event__info__date {
  margin-bottom: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.event__info__date svg {
  width: 1.4rem;
  height: 1rem;
  margin-left: 1.4rem;
}

.event__info__title {
  margin-bottom: 2rem;
}
.event__info__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  color: #000000;
}

.event__info__text p {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: justify;
  color: #000000;
}

.event__date {
  min-width: 20.4rem;
  padding-left: 3.4rem;
  border-left: 0.1rem solid #f0f1f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event__date__info {
  text-align: center;
}
.event__date__info p {
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
  margin-bottom: 0.9rem;
}
.event__date__info h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 3rem;
  text-transform: uppercase;
  color: #2b2b2b;
}

.event__date__butons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
.event__date__butons .btn {
  width: 100%;
}

.btn__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.9rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #000000;
}
.btn__link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.8rem;
  color: #ef414b;
  margin-top: -0.3rem;
}
.btn__link:hover {
  color: #ef414b;
}

/* //! SECTION pagination -_-_-_-_-_-_-_-_-_-_-_-_-_-_- */
.pagination__wrapper {
  padding-top: 4.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pagination {
    list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pagination__numb {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #727272;
  width: 2.3rem;
  margin: 0;
  text-align: center;
}
.pagination__numb:hover {
  color: #166ab4;
}
.pagination__numb.active {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #166ab4;
}

.pagination__buttom {
  width: 3rem;
  height: 3rem;
  color: #c4c4c4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.1rem solid #e5e5e5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pagination__buttom svg {
  width: 2.1rem;
  height: 1.3rem;
  position: absolute;
}
.pagination__buttom.left {
  margin-right: 1rem;
  border-radius: 0.6rem 0rem;
}
.pagination__buttom.left svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pagination__buttom.right {
  margin-left: 1rem;
  border-radius: 0rem 0.6rem;
}
.pagination__buttom:hover {
  border-color: #a7a7a7;
  color: #616161;
}

/* //! SECTION library -_-_-_-_-_-_-_-_ */
.book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3rem;
}

.book__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  height: 33.367rem;
  margin-bottom: 2.9rem;
}
.book__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.book__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.3rem;
}
.book__info .book__info__lang {
  margin-top: 0;
}

.book__info__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.book__info__download svg {
  width: 2.8rem;
  height: 2.5rem;
  margin-right: 0.7rem;
}
.book__info__download p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.book__info__lang {
  margin-top: 1rem;
}
.book__info__lang ul,
.book__info__lang li {
  display: block;
  padding: 0;
  margin: 0;
}
.book__info__lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
					-webkit-box-align: start;
					-ms-flex-align: start;
							align-items: flex-start;
}
.book__info__lang ul li {
  width: 2.6rem;
  height: 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #eff0f1;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #2f2f2f;
}
.book__info__lang ul li:not(:last-child) {
  margin-right: 0.4rem;
}
.book__info__lang ul li:hover, .book__info__lang ul li:focus {
  color: #1468b3;
}

.book__text p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: #000000;
    margin-left: 8px;
}

.main__wrapper .pagination__wrapper {
  margin-top: 2rem;
  border-top: 0.1rem solid #ebebeb;
}

/* //! SECTION project -_-_-_-_-_-_-_-_ */
.project__card {
  min-height: 22.8rem;
  background: #f0f1f2;
  border-radius: 1rem;
  padding-top: 3.1rem;
  padding-bottom: 3.1rem;
  padding-left: 2.7rem;
  padding-right: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.project__card__text p {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  color: #000000;
  max-height: 90px;
  min-height: 90px;
  overflow-y: hidden;
}

.project__card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}

.project__card__date {
  color: #d7d7d7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project__card__date p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #989898;
}
.project__card__date svg {
  width: 1.8rem;
  height: 1.3rem;
  margin-left: 1.8rem;
}

.project__card__link a {
  width: 3.1rem;
  height: 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ef414b;
  border-radius: 2rem;
}
.project__card__link a svg {
  width: 0.8rem;
  height: 0.8rem;
  color: #ffffff;
}
.project__card__link a:hover {
  background: #cd2c35;
}

.project__wrap {
  max-width: 92rem;
  margin: 0 auto;
}

.project__wrap__title {
  margin-bottom: 3.5rem;
}
.project__wrap__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 4.2rem;
  color: #242424;
}

.project__wrap__published {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.1rem;
}
.project__wrap__published p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.project__wrap__published svg {
  color: #c4c4c4;
  width: 1.4rem;
  height: 1.5rem;
}

.project__wrap__tabs {
  height: 8.5rem;
  background: #f0f1f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project__wrap__tabs ul,
.project__wrap__tabs li {
  display: block;
  padding: 0;
  margin: 0;
}
.project__wrap__tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-bottom: 0.2rem solid #595959;
}
.project__wrap__tabs ul::after {
  position: absolute;
  content: "";
  width: 21rem;
  height: 0.2rem;
  background: #ef414b;
  bottom: -0.2rem;
  left: 0;
}
.project__wrap__tabs ul li {
  margin-right: 5rem;
}

.project__wrap__tab {
  font-weight: 700;
  font-size: 2rem;
  line-height: 4.3rem;
  color: #9e9e9e;
}
.project__wrap__tab:hover {
  color: #262626;
}
.project__wrap__tab.active {
  color: #262626;
}

.project__wrap__content {
  padding-top: 3.6rem;
  position: relative;
}
.project__wrap__content p {
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 2.9rem;
  text-align: justify;
  color: #000000;
}
.project__wrap__content p span {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.1rem;
  text-align: justify;
  color: #000000;
}

/* //! SECTION publicit -_-_-_-_-_-_-_-_ */
.publicit__tabs {
  height: 8.5rem;
  background: #f0f1f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.publicit__tabs ul,
.publicit__tabs li {
  display: block;
  padding: 0;
  margin: 0;
}
.publicit__tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-bottom: 0.2rem solid #595959;
}
.publicit__tabs ul::after {
  position: absolute;
  content: "";
  width: 21rem;
  height: 0.2rem;
  background: #ef414b;
  bottom: -0.2rem;
  left: 0;
}
.publicit__tabs ul li {
  margin-right: 5rem;
}

.publicit__tab {
  font-weight: 700;
  font-size: 2rem;
  line-height: 4.3rem;
  color: #9e9e9e;
}
.publicit__tab:hover {
  color: #262626;
}
.publicit__tab.active {
  color: #262626;
}

.publicit__wrapper__title {
  padding-top: 4.7rem;
  margin-bottom: 0.6rem;
}
.publicit__wrapper__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3.9rem;
  color: #000000;
}

.publicit__wrap__calc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 36rem;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.publicit__wrap__calc__info {
  padding-top: 3.9rem;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-bottom: 6rem;
}

.publicit__wrap__calc__title {
  margin-bottom: 4rem;
}
.publicit__wrap__calc__title h4 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 3.3rem;
  color: #000000;
}

.publicit__wrap__calc__list ul,
.publicit__wrap__calc__list li {
  display: block;
  padding: 0;
  margin: 0;
}
.publicit__wrap__calc__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}

.calc__list__name h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #000000;
}
.calc__list__name p {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #676767;
}

.calc__list__content {
  width: 9rem;
}
.calc__list__content p {
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 3.6rem;
  color: #ef414b;
  text-align: center;
}
.calc__list__content .form_field input {
  text-align: center;
  padding: 0;
}

.publicit__wrap__calc__location {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  border-top: 0.3rem solid #424242;
  border-bottom: 0.3rem solid #424242;
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
}
.publicit__wrap__calc__location .check-box {
  height: auto;
}
.publicit__wrap__calc__location .check-box .check-box__text {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.publicit__wrap__calc__location .check-box .check-box__text p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #000000;
}
.publicit__wrap__calc__location .check-box .check-box__text p span {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: #676767;
}
.publicit__wrap__calc__location .check-box .checkmark {
  top: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  left: auto;
  right: 0;
}

.publicit__wrap__calc__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.publicit__wrap__calc__price__text h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #ef414b;
}
.publicit__wrap__calc__price__text p {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  color: #676767;
}

.publicit__wrap__calc__price__number {
  font-weight: 500;
  font-size: 3rem;
  line-height: 6.4rem;
  color: #ef414b;
}
.publicit__wrap__calc__price__number span {
  font-size: 2rem;
}

.publicit__wrap__calc__form {
  padding-top: 4.2rem;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-bottom: 4.4rem;
  background: #f0f1f2;
}
.publicit__wrap__calc__form .form_field {
  margin-bottom: 1.7rem;
}
.publicit__wrap__calc__form .form_field input {
  font-weight: 300;
}
.publicit__wrap__calc__form .form_field textarea {
  height: 6rem;
}

.publicit__wrap__calc__form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.publicit__wrap__calc__form__button .btn {
  width: 14.9rem;
  height: 4.6rem;
  border-radius: 20rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
}
.publicit__wrap__calc__form__button .btn svg {
  width: 1.3rem;
  height: 1.3rem;
}

.publicit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.publicit__wrap__contet {
  width: 100%;
  margin-right: 4.5rem;
}

.publicit__table {
  padding-bottom: 4.5rem;
  border-bottom: 0.1rem solid #efefef;
}

.table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.table__row.title {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2.3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 0.1rem solid #efefef;
  border-bottom: 0.1rem solid #efefef;
}
.table__row.title .table__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #181818;
}
.table__row.title .table__col span {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.3rem;
  color: #181818;
}

.table__col {
  width: 19%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 3.8rem;
  color: #181818;
}
.table__col:first-child {
  width: 30%;
}
.table__col:last-child {
  width: 13%;
}
.table__col .check-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.table__col .check-box .check-box__text p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #181818;
}

.publicit_department {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.publicit_department__title {
  margin-bottom: 1.3rem;
}
.publicit_department__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.5rem;
  color: #000000;
}

.publicit_department__links {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.publicit_department__links a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: #1468b3;
}
.publicit_department__links a.phone-link {
  color: #000000;
}

/* //! SECTION weekends -_-_-_-_-_-_-_-_ */
.weekends {
  height: 6rem; 
	width: 100%;
  background: #f0f1f2;
}

.weekends__wrapper__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.weekends__wrapper {
  height: 6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100%;
  -webkit-animation: scroll-row 40s infinite linear;
          animation: scroll-row 40s infinite linear;
}
@-webkit-keyframes scroll-row {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}

@keyframes scroll-row {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
.weekend {
  margin-right: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.weekend h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: #545454;
}

.weekends__day {
  width: 4.8rem;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1468b3;
  border-radius: 0.5rem;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.075em;
  color: #ffffff;
  margin-right: 0.9rem;
}
.weekends__day.blue {
  background: #1468b3;
}
.weekends__day.red {
  background: #ef414b;
}

/* //! SECTION events -_-_-_-_-_-_-_-_ */
.events {
  padding-top: 4.2rem;
  padding-bottom: 5.6rem;
  background: #f0f1f2;
}
.events .main__wrapper__title {
  margin-bottom: 1.3rem;
}

.events__container {
  background: #ffffff;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.events__container__wrapper {
  padding: 3rem;
  border-right: 0.1rem solid #f0f1f2;
  width: calc(100% - 48rem);
  position: relative;
}

.events__container__list {
  max-width: 48rem;
  width: 100%;
  padding-top: 1.1rem;
  padding-bottom: 1.8rem;
  padding-right: 2.3rem;
  padding-left: 4rem;
}
.events__container__list ul,
.events__container__list li {
  display: block;
  padding: 0;
  margin: 0;
}
.events__container__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.events__container__list ul li:not(:last-child) .events__item__info {
  border-bottom: 0.1rem solid #f0f1f2;
}

.events__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.9rem;
}

.events__item__image {
  min-width: 12rem;
  margin-right: 1.6rem;
}

.events__item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.events__item__label {
  width: 12.3rem;
  height: 3rem;
  background: rgba(240, 241, 242, 0.5);
  border-radius: 0.4rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  color: #125fa3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.9rem;
}

.events__item__info__share svg {
  height: 1rem;
  width: 1.4rem;
  color: #c4c4c4;
}

.events__item__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 2.4rem;
  color: #000000;
	max-height: 7.2rem;
  overflow: hidden;
}

.events__item__date {
  padding-bottom: 1.2rem;
  margin-top: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.events__item__date p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.events__item__date a {
  width: 3.1rem;
  height: 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ef414b;
  border-radius: 2rem;
}
.events__item__date a svg {
  width: 0.8rem;
  height: 0.8rem;
  color: #ffffff;
}
.events__item__date a:hover {
  background: #cd2c35;
}

.events__wrapper__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  height: 3rem;
  background: rgba(240, 241, 242, 0.5);
  border-radius: 0.4rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  color: #125fa3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4.3rem;
}

.events__wrapper__image {
  float: left;
  width: 41rem;
  margin-right: 2.8rem;
  overflow: hidden;
  border-radius: 1rem 0rem 0rem 0rem;
}

.events__wrapper__title {
  margin-bottom: 3rem;
}
.events__wrapper__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3.7rem;
  color: #242424;
	max-height: 18.5rem;
  overflow: hidden;
}
.events__wrapper__info {
	height: 100%;
}
.events__wrapper__text_dates {
  
  /*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  		justify-content: space-between;
  */
}
.events__wrapper__text p {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 3rem;
  text-align: justify;
  color: #0f0f0f;
	max-height: 20rem;
}

.events__wrapper__info__dates {
  position: absolute;
  width: 100%;
  bottom: 0;

  margin-top: 1.5rem;
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 0.1rem solid #f0f1f2;
}
.events__wrapper__info__dates p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.events__wrapper__info__dates p svg {
  width: 1.4rem;
  height: 1rem;
  margin-left: 2.2rem;
}
.events__wrapper__info__dates a {
  width: 10.5rem;
}

.events__slider__nav {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.events__wrapper {
  height: 100%;
  position: relative;
}
.events__slider__nav .slider__nav__btn {
  background: #fff;
}

.pagingInfo {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #727272;
  padding: 0 1.2rem;
}

.events__slider {
  height: 100%;
}
.events__slider .slick-track {
  height: 100%;
}
.events__slider .slick-slide {
  margin: 0 1rem;
  height: 100%;
}
.events__slider .slick-list {
  margin: 0 -1rem;
  height: 100%;
}

/* //! SECTION campaign -_-_-_-_-_-_-_-_ */
.campaign {
  padding-top: 5.6rem;
  padding-bottom: 6.2rem;
}

.campaign__wrapper {
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.campaign__wrapper .main__wrapper__title {
  margin-bottom: 3.5rem;
}

.campaign__wrapper__left {
  padding-top: 3.8rem;
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
  border-right: 0.1rem solid #f0f1f2;
}

.campaign__wrapper__right {
  padding-top: 3.8rem;
  padding-right: 3rem;
  padding-left: 4rem;
  padding-bottom: 5rem;
  min-width: 48rem;
  width: 48rem;
}

.campaign__item__date {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
  margin-bottom: 2rem;
}
.campaign__item__date svg {
  height: 1rem;
  width: 1.4rem;
  margin-left: 1.2rem;
}

.campaign__item__img {
	width: 100%;
}
.campaign__item__img img {
	width: 100%;
}

.campaign__item__title {
  margin-bottom: 1.3rem;
}
.campaign__item__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #000000;
}

.campaign__item__text p {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: justify;
  color: #000000;
}

.campaign__item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.6rem;
}

.campaign__item__info__date p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #000000;
}
.campaign__item__info__date a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.6rem;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #125fa3;
}

.campaign__item__info__button .btn {
  width: 10.5rem;
}

.campaign__list__line {
  margin-top: 3.6rem;
  margin-bottom: 4.4rem;
  height: 0.1rem;
  width: 100%;
  background: #f0f1f2;
}
.campaign__list ul,
.campaign__list li {
  display: block;
  padding: 0;
  margin: 0;
}

.campaign__wrapper__list ul,
.campaign__wrapper__list li {
  display: block;
  padding: 0;
  margin: 0;
}
.campaign__wrapper__list ul li {
  margin-bottom: 4rem;
}

.campaign__wrapper__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.campaign__wrapper__item__image {
  min-width: 29rem;
  margin-right: 2.4rem;
}

.campaign__wrapper__item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.campaign__wrapper__item__info__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.campaign__wrapper__item__info__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  height: 3rem;
  background: rgba(240, 241, 242, 0.5);
  border-radius: 0.4rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  color: #125fa3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.campaign__wrapper__item__info__date {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
  margin-bottom: 2rem;
}
.campaign__wrapper__item__info__date svg {
  height: 1rem;
  width: 1.4rem;
  margin-left: 1.2rem;
}

.campaign__wrapper__item__info__title {
  margin-bottom: 0.8rem;
}
.campaign__wrapper__item__info__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #000000;
}

.campaign__wrapper__item__info__text p {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: justify;
  color: #000000;
}

.campaign__wrapper__item__info__user {
  margin-top: auto;
  padding-left: 1rem;
  border-left: 0.2rem solid #89b3d9;
}
.campaign__wrapper__item__info__user h4 {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #000000;
}
.campaign__wrapper__item__info__user p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  color: #aeaeae;
}

/* //! SECTION projects -_-_-_-_-_-_-_-_ */
.projects {
  padding-top: 7.6rem;
  padding-bottom: 6rem;
  background: #f0f1f2;
}

.projects__tabs {
  margin-bottom: 3.8rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.projects__tabs ul,
.projects__tabs li {
  display: block;
  padding: 0;
  margin: 0;
}
.projects__tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  border-bottom: 0.2rem solid #595959;
}
.projects__tabs ul li {
  margin-right: 5rem;
  position: relative;
}

.projects__tab {
  font-weight: 700;
  font-size: 2rem;
  line-height: 4.3rem;
  color: #9e9e9e;
}
.projects__tab:hover {
  color: #262626;
}
.projects__tab.active {
  color: #262626;
}
.projects__tab.active::after {
  position: absolute;
  content: "";
  width: 18rem;
  height: 0.2rem;
  background: #ef414b;
  bottom: -0.2rem;
  left: 0;
}

.projects__slide__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.projects__slide__wrap__title {
  margin-bottom: 1.7rem;
}
.projects__slide__wrap__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 2.4rem;
  color: #000;
}

.projects__slide__wrap__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.projects__slide__wrap__info__date {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.projects__slide__wrap__info__date svg {
  height: 1rem;
  width: 1.4rem;
  margin-left: 1.2rem;
}

.projects__slide__wrap__info__button .btn {
  width: 9.1rem;
}

.projects__contetn {
  position: relative;
  overflow-y: hidden;
  height: 0;
}
.projects__contetn.active {
  overflow-y: unset;
  height: 100%;
}
.projects__slider {
  overflow: hidden;
}
.projects__slider .slick-slide {
  margin: 0 3rem;
}
.projects__slider .slick-list {
  margin: 0 -3rem;
}

.projects__slider__btn__next {
  position: absolute;
  cursor: pointer;
  right: -3rem;
  top: 0;
  color: #505050;
}
.projects__slider__btn__next svg {
  color: #505050;
  width: 1.5rem;
  height: 1.5rem;
}
.projects__slider-finished {
  overflow: hidden;
}
.projects__slider-finished .slick-slide {
  margin: 0 3rem;
}
.projects__slider-finished .slick-list {
  margin: 0 -3rem;
}

.projects__slider-finished__btn__next {
  position: absolute;
  cursor: pointer;
  right: -3rem;
  top: 0;
  color: #505050;
}
.projects__slider-finished__btn__next svg {
  color: #505050;
  width: 1.5rem;
  height: 1.5rem;
}

.pdf {
  padding-top: 6.5rem;
  padding-bottom: 7.4rem;
}

.pdf__wrapper {
  margin: 0 auto;
  position: relative;
  width: 83rem;
  min-height: 10.2rem;
  background: #424242;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 6rem;
  padding-top: 2.5rem;
  padding-right: 2.8rem;
  padding-bottom: 2.5rem;
}
.pdf__wrapper h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #ffffff;
  padding-right: 3rem;
}
.pdf__wrapper .pdf-button {
  min-width: 28rem;
  height: 5.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fd000f;
  border-radius: 0.4rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #ffffff;
}
.pdf__wrapper .pdf-button svg {
  width: 2.1rem;
  height: 2.1rem;
  margin-left: 1.2rem;
}

.pdf__wrapper__icon {
  position: absolute;
  bottom: -4rem;
  left: -5rem;
}
.pdf__wrapper__icon svg {
  width: 13.71rem;
  height: 12.232rem;
}

/* //! SECTION library -_-_-_-_-_-_-_-_ */
.members {
  padding-bottom: 6.8rem;
}

.members__wrapper {
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem;
  padding-top: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 4rem;
  position: relative;
}

.members__slide__logo {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.members__slide__logo img {
  max-height: 100%;
}

.members__slide__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.members__slide__link a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #000000;
}
.members__slide__link a svg {
  color: #ef414b;
  width: 1rem;
  height: 1rem;
  margin-right: 0.9rem;
}
.members__slide__link a:hover, .members__slide__link a:focus {
  color: #ef414b;
}

.members__slider__container {
  padding-bottom: 4.9rem;
  border-bottom: 0.3rem solid #424242;
}

.members__slider__nav {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.members__slider__nav .slider__nav__btn__prev {
  margin-right: 1rem;
}

.members__slider .slick-slide {
  margin: 0 1rem;
}
.members__slider .slick-list {
  margin: 0 -1rem;
}

.members__slide__card {
  position: relative;
}
.members__slide__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 0.1rem;
  height: 100%;
  background: #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.members__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 6.4rem;
}

.members__list {
  width: 31%;
  position: relative;
}
.members__list:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2.5rem;
  width: 0.1rem;
  height: 100%;
  background: #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.members__list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4.4rem;
}

.members__list__title h4 {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3rem;
  color: #262626;
}
.members__list__title p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #424242;
}
.members__list__title.red h4 {
  color: #ef414b;
}

.members__list__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.members__list__nav .slider__nav__btn__prev {
  margin-right: 1rem;
}

.members__list__item {
  margin-bottom: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.members__list__item__image {
  min-width: 11rem;
  width: 11rem;
  height: 11rem;
  border-radius: 9px 0px 0px 9px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.9rem;
}
.members__list__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.members__list__item__info__title {
  margin-bottom: 1.4rem;
}
.members__list__item__info__title h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #252525;
}

.members__list__item__info__name {
  margin-bottom: 0.3rem;
}
.members__list__item__info__name p {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.9rem;
  color: #151515;
}

.members__list__item__info__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.members__list__item__info__link a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #000000;
}
.members__list__item__info__link a svg {
  color: #ef414b;
  width: 1rem;
  height: 1rem;
  margin-right: 0.9rem;
}
.members__list__item__info__link a:hover, .members__list__item__info__link a:focus {
  color: #ef414b;
}

/* //! SECTION useful -_-_-_-_-_-_-_-_ */
.useful {
  padding-bottom: 7.4rem;
}

.calendar {
  background: #ffffff;
  border: 0.1rem solid #efefef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-left: 3rem;
}

.calendar__tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calendar__tabs ul,
.calendar__tabs li {
  display: block;
  padding: 0;
  margin: 0;
}
.calendar__tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  border-bottom: 0.2rem solid #efefef;
}
.calendar__tabs ul li {
  position: relative;
  padding-right: 3rem;
}
.calendar__tab {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3rem;
  color: #9e9e9e;
}

.tablinks-calendar .calendar__tab:hover {
  color: #262626;
}
.tablinks-calendar.active .calendar__tab {
  color: #262626;
}
.tablinks-calendar.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #1468b3;
  bottom: -0.2rem;
  left: 0;
}
.tablinks-calendar.active.api-calendar::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #ef414b;
  bottom: -0.2rem;
  left: 0;
}

#calendarApi .calendar__date {
  background: #ef414b;
}
.calendar__content ul,
.calendar__content li {
  display: block;
  padding: 0;
  margin: 0;
}
.calendar__content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.7rem;
  padding-bottom: 2rem;
}
.calendar__content ul li:not(:last-child) {
  border-bottom: 0.1rem solid #f4f4f4;
}

.calendar__date {
  min-width: 6.727rem;
  width: 6.727rem;
  height: 4.499rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1468b3;
  border-radius: 0.5rem;
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 2.7rem;
  letter-spacing: -0.075em;
  color: #ffffff;
  margin-right: 1.7rem;
}

.calendar__info h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #000000;
}
.calendar__info p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}

.useful__editorial {
  padding-top: 3rem;
}

.useful__editorial__title {
  padding-bottom: 1.5rem;
  border-bottom: 0.2rem solid #efefef;
}
.useful__editorial__title h4 {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3rem;
  color: #262626;
}
.useful__editorial__list ul,
.useful__editorial__list ul .api__slider {
  display: block;
  padding: 0;
  margin: 0;
  /* height: 30rem; */
}

.api__slider .slick-list {
	/* transform:rotate(180deg); */
}
.api__slider .slick-slide {
	/* transform:rotate(180deg); */
}
.useful__editorial__list ul li,
.useful__editorial__list .api__slider .api__sldie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2.2rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #f4f4f4;
  /* height: 30rem; */
}

.useful__editorial__item {
  padding-right: 2rem;
}

.useful__editorial__item__title {
  margin-bottom: 1rem;
}
.useful__editorial__item__title h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #000000;
}

.useful__editorial__item__text {
  margin-bottom: 0.2rem;
}
.useful__editorial__item__text p {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: justify;
  color: #000000;
}

.useful__editorial__item__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.useful__editorial__item__dates p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
  margin-right: 2.1rem;
}
.useful__editorial__item__dates a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #000000;
}
.useful__editorial__item__dates a svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.8rem;
  color: #ef414b;
}
.useful__editorial__item__dates a:hover, .useful__editorial__item__dates a:focus {
  color: #ef414b;
}

.useful__library {
  padding-top: 3rem;
}

.useful__library__title {
  padding-bottom: 1.5rem;
  color: #262626;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.useful__library__title h4 {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3rem;
  color: inherit;
}
.useful__library__title:hover, .useful__library__title:focus {
  color: #ef414b;
}

.useful__library__list ul,
.useful__library__list li {
  display: block;
  padding: 0;
  margin: 0;
}
.useful__library__list ul li:not(:last-child) {
  margin-bottom: 0.4rem;
}

.useful__library__item {
  padding-top: 2.2rem;
  padding-left: 2rem;
  padding-bottom: 1rem;
  padding-right: 3rem;
  min-height: 19.4rem;
  background: #f0f1f2;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.useful__library__item__image {
  width: 11rem;
  min-width: 11rem;
  margin-right: 2.3rem;
  border-radius: 0.6rem 0rem 0rem 0.6rem;
  overflow: hidden;
}

.useful__library__item__title {
  padding-top: 1rem;
  position: relative;
  margin-bottom: 0.9rem;
}
.useful__library__item__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #000000;
  display: inline;
}
.useful__library__item__title svg {
  min-width: 2.92rem;
  width: 2.92rem;
  height: 2.605rem;
  display: inline;
  margin-bottom: -0.5rem;
}

.useful__library__item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.useful__library__item__info__download {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}

.useful__library__item__link {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #000000;
}
.useful__library__item__link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.8rem;
  color: #ef414b;
}
.useful__library__item__link:hover, .useful__library__item__link:focus {
  color: #ef414b;
}

/* //! SECTION partner -_-_-_-_-_-_-_-_ */
.partners {
  margin-bottom: 5rem;
}

.partners__wrapper__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
.partners__wrapper__header .main__wrapper__title {
  margin-bottom: 0;
}

.partner {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.partner img {
  width: 100%;
  max-height: 100%;
}
.partner:hover {
  -webkit-filter: none;
          filter: none;
}

.partners__slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partners__slider__nav .slider__nav__btn__prev {
  margin-right: 1rem;
}

/* //! SECTION attitudes -_-_-_-_-_-_-_-_ */
.attitudes {
  padding-top: 3rem;
  padding-bottom: 6.3rem;
}

.attitudes__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem;
}

.attitudes__wrapper__left {
  min-width: 44rem;
  width: 44rem;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3.6rem;  
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.attitudes__wrapper__left__header {
  padding-bottom: 1.7rem;
  border-bottom: 0.1rem solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.attitudes__wrapper__left__header .main__wrapper__title {
  margin-bottom: 0;
}

.attitudes__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.attitudes__nav .slider__nav__btn__prev {
  margin-right: 1rem;
}

.attitudes__wrapper__left__content {
  padding-top: 2.9rem;
}

.attitudes__wrapper__left__content__label {
  min-width: 10.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(240, 241, 242, 0.5);
  border: 0.1rem solid #e5eaee;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #125fa3;
}

.attitudes__wrapper__left__content__title {
  margin-bottom: 1.6rem;
}
.attitudes__wrapper__left__content__title h4 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  color: #000000;
  max-height: 12rem;
  overflow: hidden;
}

.attitudes__wrapper__left__content__text {
  margin-bottom: 4.2rem;
}
.attitudes__wrapper__left__content__text p {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: justify;
  color: #000000;
	/* max-height: 14rem; */
  max-height: 20rem;
  overflow: hidden;
}

.attitudes__wrapper__left__content__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
.attitudes__wrapper__left__content__date p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.attitudes__wrapper__left__content__date p svg {
  width: 1.4rem;
  height: 1rem;
  margin-left: 2.2rem;
}
.attitudes__wrapper__left__content__date a {
  width: 10.5rem;
}

.attitudes__wrapper__left__content__videobox {
  background: #171717;
}

.attitudes__wrapper__left__content__videobox__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 3rem;
  font-family: "Zilla Slab", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #ffffff;
  text-align: center;
}

.scale-video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.scale-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.attitudes__wrapper__right {
  width: 100%;
  padding-top: 4rem;
  padding-left: 3rem;
  padding-bottom: 3.6rem;
  padding-right: 3.9rem;
	width: calc(100% - 44rem);
	
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}

.attitudes__wrapper__right__image {
  position: relative;
  border-radius: 0.6rem 0rem 0rem 0.6rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.attitudes__wrapper__right__image__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.6rem;
  background: rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 3rem;
}

.attitudes__wrapper__right__image__label__title {
  height: 5.6rem;
  background: rgba(20, 104, 179, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2.3rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #ffffff;
}

.attitudes__wrapper__right__image__label__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.attitudes__wrapper__right__image__label__nav .slider__nav__btn {
  background: #070707;
  border-color: transparent;
}
.attitudes__wrapper__right__image__label__nav .slider__nav__btn svg {
  color: #fff;
}

.attitudesPagingInfo {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fff;
  padding: 0 1.2rem;
}

.attitudes__wrapper__right__title__info {
  padding: 0 2rem;
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  		justify-content: space-between;
}

.attitudes__wrapper__right__title__info__title {
  margin-bottom: 1.2rem;
}
.attitudes__wrapper__right__title__info__title h4 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 4.2rem;
  color: #000000;
}

.attitudes__wrapper__right__title__info__text {
  margin-bottom: 2.1rem;
}
.attitudes__wrapper__right__title__info__text p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.1rem;
  text-align: justify;
  color: #000000;
}

.attitudes__wrapper__right__title__info__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.attitudes__wrapper__right__title__info__date p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #c4c4c4;
}
.attitudes__wrapper__right__title__info__date p svg {
  width: 1.4rem;
  height: 1rem;
  margin-left: 2.2rem;
}

/* //! SECTION BAC TO TOP ARROW -_-_-_-_-_- */
.back_to_top {
  position: fixed;
  bottom: 7rem;
  right: -6rem;
  z-index: 9999;
  width: 4.8rem;
  height: 4.8rem;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.back_to_top:hover {
  opacity: 0.8;
}

.back_to_top-show {
  right: 1.6rem;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

/* //! SECTION library -_-_-_-_-_-_-_-_ */
asd {
  font-family: "Zilla Slab", serif;
}

/* //! SECTION api-activity -_-_-_-_-_-_-_-_ */
.api-activity {
  position: fixed;
  right: -23.2rem;
  top: 25rem;
  z-index: 1;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  transition: all ease 0.6s;
}
.api-activity.active {
  right: 0;
}
.api-activity.active .api-activity__button__close {
  opacity: 1;
}
.api-activity.active .api-activity__button__chevron {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.api-activity__container {
  padding: 3.4rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23.2rem;
  height: 40.8rem;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem 0 0 1rem;
}

.api-activity__container__date {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9.4rem;
  height: 3rem;
  background: rgba(240, 241, 242, 0.5);
  border-radius: 4px;
}
.api-activity__container__date p {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #000000;
}

.api-activity__container__text {
  margin-bottom: 3.5rem;
}
.api-activity__container__text p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #000000;
}

.api-activity__container__title h4 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: center;
  color: #000000;
}

.api-activity__container__link {
  margin-top: auto;
}
.api-activity__container__link a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #ef414b;
}
.api-activity__container__link a svg {
  width: 1rem;
  height: 1rem;
}

.api-activity__container__timer {
  margin-bottom: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.timer__wrap:not(:last-child) {
  margin-right: 0.8rem;
}

.timer-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 4.5rem;
  text-transform: uppercase;
  color: #ffffff;
}
.timer-number span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.5rem;
  height: 4.7rem;
  background: #ef414b;
  border-radius: 0.4rem;
}
.timer-number span:not(:last-child) {
  margin-right: 0.1rem;
}

.timer-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.9rem;
  text-transform: uppercase;
  color: #c4c4c4;
}

.api-activity__button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  left: -18.7rem;
  width: 34.8rem;
  height: 2.7rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  background: #1468b3;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 0.6rem 0.6rem 0 0;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(-90deg);
      -ms-transform: translate(0, -50%) rotate(-90deg);
          transform: translate(0, -50%) rotate(-90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.api-activity__button__text p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
  text-transform: uppercase;
  color: #ffffff;
}

.api-activity__button__close {
  color: #fff;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.api-activity__button__close svg {
  width: 1.2rem;
  height: 1.2rem;
}

.api-activity__button__chevron {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #fff;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.api-activity__button__chevron svg {
  width: 1.2rem;
  height: 1.2rem;
}
/* MAIN FOOTER --------------------------------------------------- */
.footer {
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(0, 0, 0, 0.05);
          box-shadow: 0rem 0rem 2.3rem rgba(0, 0, 0, 0.05);
}

.footer__top__wrapper__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__top__wrapper__image {
  width: 10.4rem;
  margin-left: 1rem;
}

.footer__top__wrapper {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__top__wrapper__text {
  padding-left: 2.2rem;
}

.footer__cards {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  background: #f0f1f2;
}

.footer__card {
  min-height: 19.1rem;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
          box-shadow: 0rem 0rem 2.3rem rgba(6, 32, 55, 0.1);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem;
  position: relative;
}
.footer__card:hover {
  cursor: pointer;
}
.footer__card:hover .footer__card__info__title h4 {
  color: #181818;
}
.footer__card:hover .footer__card__link {
  color: #181818;
}

.footer__card__icon {
  width: 8.3rem;
  min-width: 8.3rem;
}

.footer__card__info {
  padding-left: 1.9rem;
}

.footer__card__info__title {
  margin-bottom: 0.9rem;
}
.footer__card__info__title h4 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: #166ab4;
}

.footer__card__info__text p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #181818;
}

.footer__card__link {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  color: #ef414b;
}
.footer__card__link svg {
  width: 0.774rem;
  height: 0.774rem;
}

.footer__memeber {
  min-height: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__memeber__icon {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.footer__memeber__text {
  padding-left: 2rem;
}
.footer__memeber__text p {
  font-weight: 400;
}
.footer__bot {
  border-top: 0.1rem solid #efefef;
  border-bottom: 0.1rem solid #efefef;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__list {
  margin-bottom: 3rem;
}
.footer__list ul,
.footer__list li {
  display: block;
  padding: 0;
  margin: 0;
}
.footer__list ul li a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 2.7rem;
  color: #000000;
}
.footer__list ul li a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.footer__list__title {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #000000;
  margin-bottom: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__list__title h4 {
  color: inherit;
}

.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}
.social__list a:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.social__list a.linked_in {
	-webkit-filter: contrast(0.5);
          filter: contrast(0.5);
}
.social__list a.linked_in:hover {
	-webkit-filter: contrast(1);
          filter: contrast(1);
}
.social__list a:not(:last-child) {
  margin-right: 2rem;
}

.footer__list__contacts a {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #000000;
}

.footer__logo {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.footer__bottom {
  padding-top: 1.7rem;
  padding-bottom: 2rem;
}

.footer__container__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__container__links a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 2.7rem;
  color: #000000;
  margin-right: 2.5rem;
}
.footer__container__links a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.footer__powerd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__powerd p {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: #000000;
  padding-right: 1rem;
}
.footer__powerd svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8.2rem;
  height: 2.1rem;
}

/* MAIN MEDIA --------------------------------------------------- */
@media (max-width: 1399.98px) {
  html {
    font-size: 9px;
  }

  .navbar__logo__mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 1rem 0;
  }
  .navbar__logo__mini img {
    max-height: 100%;
  }

  .navbar__menu {
    max-width: 140rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .aside-part {
    display: none;
  }

  .navbar__oldweb.mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 4rem;
  }
}
@media (max-width: 1199.98px) {
  html {
    font-size: 8px;
  }
  .events__wrapper__info__dates {
  	position: relative;
  }
}
@media (max-width: 991.98px) {
  html {
    font-size: 6px;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 10px;
  }

  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navmob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }

  .navbar {
    height: 7rem;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .navbar__logo {
    width: auto;
    height: 100%;
    padding: 0.5rem;
  }

  .navbar__menu {
    position: absolute;
    left: -110%;
    top: 6.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0;
    padding: 2rem 1rem 3rem;
    width: 100%;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 3.6rem 2rem 0.7rem rgba(0, 0, 0, 0.16);
            box-shadow: 0 3.6rem 2rem 0.7rem rgba(0, 0, 0, 0.16);
  }
  .navbar__menu.active {
    left: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .navbar__menu__top {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .navbar__menu__top .navbar__menu__top__buttons {
    margin: 0 auto;
    margin-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navbar__menu__top .navbar__menu__top__buttons .social__list {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .navbar__menu__top .navbar__menu__top__buttons .special__wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
	}

  .navbar__oldweb.mini {
    display: none;
  }

  .navbar__menu__bottom {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: none;
    margin-bottom: 2rem;
  }

  .navbar__search {
    border-top: 0.1rem solid #ebebeb;
    border-bottom: 0.1rem solid #ebebeb;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .navbar__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navbar__links .navbar__link {
    margin: 0 auto;
    margin-bottom: 1rem;
  }

  .main {
    overflow: hidden;
  }

  .main__wrapper {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .main_nav {
    margin-bottom: 2rem;
  }

  .main_nav__title {
    padding-top: 0;
  }

  .crumbs__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1rem 0;
  }

  .crumbs__item a {
    line-height: 1.8rem;
  }

  .publicit__tabs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .publicit__tabs ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .publicit__wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .publicit__wrap__contet {
    width: 100%;
    margin-right: 0;
    overflow: scroll;
    margin-bottom: 5rem;
  }

  .publicit__table {
    width: 66rem;
  }

  .publicit_department {
    margin-top: 5rem;
  }

  .event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .event__image {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1rem;
  }

  .event__info {
    padding-right: 0;
  }

  .event__info__date {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .event__date {
    padding-top: 3rem;
    padding-left: 0;
    border: none;
  }

  .main__wrapper .pagination__wrapper {
    border: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .event__wrap__content__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .event__wrap__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .event__slide__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .event__slider__nav {
    padding-top: 0.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .attitudes__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .attitudes__wrapper__right {
    width: 100%;
    padding: 1rem;
  }

  .attitudes__wrapper__right__title__info {
    padding: 0;
  }

  .attitudes__wrapper__right__title__info__title h4 {
    font-size: 2.3rem;
    line-height: 3.2rem;
  }

  .attitudes__wrapper__left {
    min-width: 100%;
    width: 100%;
    padding: 1rem;
  }

  .events__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .events__container__wrapper {
    padding: 1rem;
    width: 100%;
  }

  .events__wrapper__image {
    width: 100%;
    margin-right: 0;
    border-radius: 1rem;
  }

  .events__wrapper {
  	height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .events__wrapper__label {
    margin-bottom: 2rem;
    margin-top: 1rem;
  }

  .events__container__list {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
  }

  .events__item__image {
    min-width: 12rem;
    margin-right: 1.6rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1rem;
  }

  .events__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .campaign__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .campaign__wrapper__left {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .campaign__wrapper__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .campaign__wrapper__item__image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1rem;
  }

  .campaign__wrapper__item__info__user {
    margin-top: 1rem;
  }

  .campaign__wrapper__item__info__dates {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .campaign__wrapper__right {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    min-width: 100%;
  }

  .projects__tabs ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .projects__slider__btn__next {
    right: 2rem;
    top: -11rem;
  }
  .projects__slider-finished__btn__next {
  	right: 2rem;
    top: -7rem;
  }

  .pdf__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    text-align: center;
    padding-right: 6rem;
  }
  .pdf__wrapper h4 {
    padding: 0;
    margin-bottom: 1rem;
  }

  .members__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .members__list {
    width: 100%;
    margin-bottom: 5rem;
  }

  .members__list__header {
    margin-bottom: 3rem;
  }

  .members__wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .weekends {
    height: auto;
    padding: 0.5rem 0;
  }

  .weekend {
    margin: 0.3rem 1rem;
  }

  .weekends__day {
    min-width: 4.8rem;
  }

  .members__slide__card::after {
    display: none;
  }

  .main__wrapper__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .main__wrapper__form__select {
    margin-right: 0;
    margin-top: 2rem;
  }

  .project__wrap__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .project__wrap__tabs ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .project__wrap__tabs ul li {
    padding-left: 2rem;
  }

  .footer__top__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__card {
    margin-bottom: 3rem;
    padding: 2rem 1rem;
  }

  .footer__cards {
    padding-bottom: 0;
  }

  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__logo {
    margin-bottom: 3rem;
  }

  .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .footer__wrap:last-child {
  	flex-direction: column;
  	align-items: center;
  }

  .footer__list {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer__list ul li a {
    width: 100%;
  }

  .footer__container__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 3rem;
  }
  .footer__container__links a {
    margin-right: 0;
  }
	.api-activity__button {
    width: 35rem !important;
    left: -18.8rem !important;
  }
}

.events__container__wrapper {
  width: calc(100% - 48rem);
}

.events__wrapper__image img {
  width: 100%;
}

.event__wrap__content__info .event__wrap__content__info__image {
  width: 66%;
}

@media (max-width: 1199px) {
  .events__container {
    flex-direction: column;
  }
  .events__container__wrapper {
    width: 100%;
  }
  .events__container__list {
    max-width: 100%;
  }
  .events__item__info {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .publicit__wrap__calc {
    max-width: 100%;
  }
  .event__wrap__content__info .event__wrap__content__info__image {
    width: 100%;
  }
  .event__wrap__content__info .event__wrap__content__info__image img {
    width: 100%;
  }
  .event__wrap__bottom__slider {
    max-width: 100%;
  }
  .event .event__image {
    min-width: 100%;
  }
}

.search_links{
	font-size: 18px;
    margin-top: 22px;
}

.search_links li{
	margin-bottom: 20px;
}


.detailed_project_slider{
	border-style: solid black 1px;
	opacity: 1;
}


.pdf_project_file{
	margin: 1rem;
	font-size: 16px;
	color: #9e9e9e;
}

.pdf_project_file:hover{
	font-weight: bold;
	color: #000000;
}

.link{
	width: 3rem;
    height: 3rem;
    color: #c4c4c4;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid #e5e5e5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	
}

.pagination li .activepage {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #166ab4;
}


.link.backlink {
	    margin-right: 1rem;
    border-radius: 0.6rem 0rem;
}

.link.forwardlink  {
	    margin-right: 1rem;
    border-radius: 0.6rem 0rem;
}


.pagination ul li a {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #727272;
  width: 2.3rem;
  margin: 0;
  text-align: center;
}
.pagination ul li a:hover {
  color: #166ab4;
}


.pagination li.forwardlink a:after{
	content:'>';
}
.pagination li.backlink a:after{
	content:'<';
}


.link.forwardlink .forwardlink-disabled {
	opacity: 0.3;
}

.pagination .link .backlink .backlink-disabled {
	opacity: 0.3;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.name__person{
    font-weight: 700;
    font-size: 17px!important;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
}
.name__person span{
    white-space: nowrap;
}

.link_person{
    margin-left: 8px;
}

.name__job{
    font-weight: 400;
    font-size: 14px!important;
    color: grey;
    min-height: 52px;
}

.name__email{
    font-weight: 400;
    font-size: 14px!important;
    color: grey;
}


.declaratia{
    margin-top: 30px;
}

.check__box_wrapper{
    flex-wrap: wrap;

}

.check__box_item{
    padding-bottom: 20px;
}

.inputs__declaration{
    flex-wrap: wrap;
    max-width: 500px;
}

.inputs__declaration{
    margin-top: 20px;
}

.dosar_input_item{
    margin-bottom: 10px;
}

.email__person{
    text-align: center;
    cursor: pointer !important;
}

.calendar_btn_block {
	width: 100%;
	text-align: center;
}
.calendar_btn_block .btn {
	margin-top: 15px;
	margin-bottom: 20px;
}
.hide_calendar_li {
	
}
.required_div {
	color: red;
    margin-left: 5px;
    font-weight: 500;
    font-size: 10px;
    white-space: nowrap;
    text-align: left;
}
.input_div {
 width: 100%;
}


.foto_block {
	position: relative;
}
.foto_block.disabled {
	
}
.foto_block .shadow {
	display: none;
}
.foto_block.disabled .shadow {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgba(10,10,10,0.6);
}

.foto_block .fototeca_pass_block {
	display: none;
}
.foto_block.disabled .fototeca_pass_block {
	display: block;
	position: absolute;
	background: #fff;
	width: 80%;
	height: 70%;
	margin: 5% 10%;
	z-index: 2;
	padding: 0;
}

.fototeca_pass_block .fototeca_pass_header {
	min-height: 40px;
	width: 100%;
	font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #ffffff;
    background: #ef414b;
    text-align: center;
    padding: 6px;
}
.fototeca_pass_block .fototeca_pass_input {
	margin: 20px auto;
	padding: 10px;
	width: 100%;
	max-width: 400px;
}
.fototeca_pass_block .fototeca_pass_input input {
	padding-left: 2.2rem;
    width: 100%;
    height: 4.1rem;
    background: #ffffff;
    border: 0.1rem solid #d7dee4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0.2rem 0.2rem 0.4rem rgb(0 0 0 / 10%);
    box-shadow: inset 0.2rem 0.2rem 0.4rem rgb(0 0 0 / 10%);
    border-radius: 0.4rem 0rem 0rem 0.4rem;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1;
    color: #676767;
}
.fototeca_pass_block .fototeca_pass_input label {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #0f0f0f;
    font-size: 1.4rem;
    line-height: 1.8;
}

.fototeca_pass_block .fototeca_pass_submit {
	text-align: center;
}
.fototeca_pass_block .fototeca_pass_submit .btn {
	border-radius: 3px;
	width: 200px;
}
.foto__text {
    text-align: justify;
    color: #000000;
    margin-bottom: 5rem;
    margin-top: -2rem;
    padding: 0 1rem;
}
.foto__text p {
	font-weight: 400;
    font-size: 1.7rem;
    line-height: 2.5rem;
}

.detailed_proiect_arrows_block {
	width: 100%;
}
.detailed_proiect_arrow_prev,
.detailed_proiect_arrow_next {
	position: absolute;
	font-size: 5rem;
	font-weight: 800;
	top: 440px;
	cursor: pointer;
}
.detailed_proiect_arrow_prev {
	left: -3rem;
}
.detailed_proiect_arrow_next {
	right: -3rem;
}

.anons_events_slider {
	max-width: 100%;
	width: 100%;
}

.main_list_image {
	margin: 2rem 0;
}
.main_list_image img {
	width: 100%;
}



.files_flex_block {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.files_flex_block .pdf_project_file {
	max-width: 29%;
	background: #f0f1f2;
	padding: 15px 0;
}
.files_flex_block .pdf_project_file img {
	width: 90%;
	margin: 0 5%;
	margin-bottom: 10px;
}
.files_flex_block .pdf_project_file span {
	margin: 0 5%;
}

.project__card__image {
	margin-bottom: 10px;
}
.project__card__image {
	width: 100%;
	
}
.project__card__image img {
	height: 214px;
    width: 100%;
    object-fit: cover;
    
}

@media(max-width: 991px){
	.files_flex_block .pdf_project_file {
		max-width: 45%;
	}
}
@media(max-width: 445px){
	.files_flex_block .pdf_project_file {
		max-width: 100%;
	}
}


.activity_slider {
	position: relative;
	width: 23.2rem;
}
.activity_slider .slick-slide {
	width: 23.2rem;
}
.activity_slider .slick-slide .api-activity__container {
	margin-left: 0;
}
.api-activity__button, 
.activity_slider .slick-slide .api-activity__button {
	left: -18.7rem;
}
.api-activity__arrows {
	position: absolute;
	width: 23.2rem;
	
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  	-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          
	z-index: 10;
	bottom: 0;
	 
}

.not_anons_img {
    width: 100% !important;
}


@media(max-width:676px){
    .jssocials-shares {
        width: 70% !important;
    }
}
@media(max-width:425px){
    .jssocials-shares {
        width: 100% !important;
    }
}

@media (max-width: 425px){
	.main_nav ul li:after {
		content: '';
		position: absolute;
		border-top: 2px solid #000;
		border-right: 2px solid #000;
		transform: rotate(45deg);
		right: 2rem;
		top: 45%;
		width: 10px;
		height: 10px;
		opacity: 0;
		display: none;
	}
}

.footer_visa_card {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 1rem;
}
.footer_visa_card img {
	margin-right: 1rem;
	max-width: 50px;
} 


.projecte_add_events {
	border-top: 0.1rem solid #ebebeb;
	padding-top: 2rem;
	margin-top: 2rem
}


