:root {
  --gutter-width: 16px;
  --outer-margin: 32px;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 575px;
  --sm-min: 576px;
  --md-min: 768px;
  --lg-min: 992px;
  --xl-min: 1200px;
}

.request__button {
  display: inline-block;
  padding: 1em;
  width: 10em;
  background-color: #ff6600;
  margin-top: 15px;
  margin-bottom: 15px;
}

.request__link {
  color: white;
  text-decoration: none;
}

.background_Gray {
  background-color: #eeeeee;
}
.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-right: 8px;
  padding-left: 8px;
}

.container-fluid {
  padding-right: var(--gutter-width, 16px);
  padding-left: var(--gutter-width, 16px);
}
@media (max-width: 575px) {
  .container {
    width: calc(var(--xs-min) - var(--gutter-width));
    max-width: 100%;
  }
        .request__button {
    padding: 0.7em;
    margin-bottom: 15px;
    margin-top: 5px;
  }
 
}

@media (min-width: 576px) {
  .container {
    width: calc(var(--sm-min) - var(--gutter-width));
    max-width: 100%;
  }
      .request__button {
    padding: 0.5em;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .container {
    width: calc(var(--md-min) - var(--gutter-width));
    max-width: 100%;
  }
        .request__button {
    padding: 0.7em;
    margin-bottom: 12px;
    margin-top: 12px;
  }
}

@media (min-width: 992px) {
  .container {
    width: calc(var(--lg-min) - var(--gutter-width));
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    width: calc(var(--xl-min) - var(--gutter-width));
    max-width: 100%;
  }
}

.row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: var(--gutter-compensation, -08px);
  margin-left: var(--gutter-compensation, -08px);
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-offset-0,
.col-sm-offset-1,
.col-sm-offset-2,
.col-sm-offset-3,
.col-sm-offset-4,
.col-sm-offset-5,
.col-sm-offset-6,
.col-sm-offset-7,
.col-sm-offset-8,
.col-sm-offset-9,
.col-sm-offset-10,
.col-sm-offset-11,
.col-sm-offset-12,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-offset-0,
.col-md-offset-1,
.col-md-offset-2,
.col-md-offset-3,
.col-md-offset-4,
.col-md-offset-5,
.col-md-offset-6,
.col-md-offset-7,
.col-md-offset-8,
.col-md-offset-9,
.col-md-offset-10,
.col-md-offset-11,
.col-md-offset-12,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-offset-0,
.col-lg-offset-1,
.col-lg-offset-2,
.col-lg-offset-3,
.col-lg-offset-4,
.col-lg-offset-5,
.col-lg-offset-6,
.col-lg-offset-7,
.col-lg-offset-8,
.col-lg-offset-9,
.col-lg-offset-10,
.col-lg-offset-11,
.col-lg-offset-12,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-offset-0,
.col-xl-offset-1,
.col-xl-offset-2,
.col-xl-offset-3,
.col-xl-offset-4,
.col-xl-offset-5,
.col-xl-offset-6,
.col-xl-offset-7,
.col-xl-offset-8,
.col-xl-offset-9,
.col-xl-offset-10,
.col-xl-offset-11,
.col-xl-offset-12 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-right: var(--half-gutter-width, 8px);
  padding-left: var(--half-gutter-width, 8px);
  max-width: 100%;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.initial-order-xs {
  -webkit-box-ordinal-group: initial;
  -ms-flex-order: initial;
  order: initial;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-sm {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media (min-width: 768px) {
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 08px);
    padding-left: var(--half-gutter-width, 08px);
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-md {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media (min-width: 992px) {
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 08px);
    padding-left: var(--half-gutter-width, 08px);
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-lg {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media (min-width: 1200px) {
  .col-xl,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-offset-0,
  .col-xl-offset-1,
  .col-xl-offset-2,
  .col-xl-offset-3,
  .col-xl-offset-4,
  .col-xl-offset-5,
  .col-xl-offset-6,
  .col-xl-offset-7,
  .col-xl-offset-8,
  .col-xl-offset-9,
  .col-xl-offset-10,
  .col-xl-offset-11,
  .col-xl-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 08px);
    padding-left: var(--half-gutter-width, 08px);
  }

  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xl-offset-0 {
    margin-left: 0;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-xl {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-xl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-xl {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-xl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-xl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-xl {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-xl {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-xl {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-xl {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-xl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-xl {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media (max-width: 575px) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
main,
footer {
  background-color: white;
}

.video_container {
  position: relative;
  width: 100%;
  height: 900px;
  opacity: 0.8;
  z-index: -2;
}

#video {
  position: fixed;
  width: 100%;
  height: 900px;
  -o-object-fit: fill;
  object-fit: fill;
  z-index: -1;
}
.rest_of_the_content {
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 5;
  background-color: rgba(39, 35, 39, 0.5);
}
main,
footer {
  background-color: #fefefe;
}

.background_bittersweet {
  background-color: rgb(255, 97, 97);
}
.background_Rajah {
  background-color: rgb(242, 191, 94);
}
.background_Aquamarine {
  background-color: rgb(117, 203, 168);
}
.background_Yonder {
  background-color: rgb(83, 110, 183);
}
.background_green {
  background-color: rgb(104, 176, 77);
}
.background_Lavender {
  background-color: rgb(182, 133, 232);
}
.orange-color {
  color: #ff6600;
}

.arrowDown {
  margin: 1% 0 1% 0;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 2% 0 2% 0;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 59px;
}
.logo_img {
  width: 59px;
  height: 59px;
}

.logo_txt {
  padding: 10px 0 0 10px;
  text-align: start;
  color: grey;
  margin: 0;
}
.header-menu_nav {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  margin-right: 0;
}
.nav_link {
  text-decoration: none;
  color: white;
  font-size: 12px;
}
.nav_link:hover {
  color: #ff6600;
  cursor: pointer;
}
.bottom-border {
  width: 70%;
  margin: auto;
  padding-bottom: 2%;
  border-bottom-style: solid;
  border-width: 4px;
  border-color: #ff6600;
}
.top-border {
  width: 80%;
  margin: auto;
  padding-top: 2%;
  border-top-style: solid;
  border-width: 4px;
  border-color: #ff6600;
}
.main_title {
  text-align: center;
  margin: 0;
  font-size: 25px;
  padding-bottom: 2%;
}
.white_color_main_title {
  color: white;
}
.grey_color_main_title {
  color: grey;
}
.company_name {
  color: white;
  font-size: 150px;
  margin: auto;
}

@media (min-width: 1000px) and (max-width: 1200px) {
  .company_name {
    color: white;
    font-size: 120px;
    margin: auto;
  }
}

.heading_title {
  font-size: 40px;
  font-weight: bolder;
}

.heading-subtitle {
  width: 60%;
  margin: auto;
}
.heading-subtitle_txt {
  font-weight: bolder;
}

.side_borders {
  width: 40%;
}
.media_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 10%;
  margin: auto;
  padding-top: 2%;
}
.social_media_link {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  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;
}
.social_media_link:hover {
  background-color: #ff6600;
}
.social_media_img {
  width: 20px;
  height: 20px;
}

.media_link {
  margin: 0.5%;
  color: black;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}

.shift-txt {
  height: 150px;
  margin-top: 5%;
  margin-bottom: 2%;
  position: relative;
}

.shift-txt_time,
.shift-txt_hist,
.shift-txt_exp,
.shift-txt_val {
  height: 150px;
  width: 20%;
  position: absolute;
  z-index: 100;
  color: #ff6600;
  font-size: 30px;
}
.shift-txt_time {
  left: 0;
  text-align: center;
}
.shift-txt_hist {
  left: 25%;
  text-align: center;
}

.shift-txt_exp {
  left: 50%;
  text-align: center;
}
.shift-txt_val {
  right: 0;
  text-align: start;
}
.shift-txt_time:hover,
.shift-txt_hist:hover,
.shift-txt_exp:hover,
.shift-txt_val:hover {
  opacity: 0;
}
.shift-txt_bottom-time,
.shift-txt_bottom-hist,
.shift-txt_bottom-exp,
.shift-txt_bottom-val {
  height: 150px;
  width: 20%;
  opacity: 0;
  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: absolute;
  font-size: 20px;
  color: white;
  background-color: rgba(46, 49, 63, 0.7);
}
.shift-txt_bottom-time {
  left: 0;
}
.shift-txt_bottom-hist {
  left: 25%;
}

.shift-txt_bottom-exp {
  left: 50%;
}
.shift-txt_bottom-val {
  right: 0;
}

.shift-txt_time:hover ~ .shift-txt_bottom-time,
.shift-txt_hist:hover ~ .shift-txt_bottom-hist,
.shift-txt_exp:hover ~ .shift-txt_bottom-exp,
.shift-txt_val:hover ~ .shift-txt_bottom-val {
  opacity: 1;
}

.heading {
  color: white;
  margin-bottom: 5%;
  background-color: rgba(46, 49, 63, 0.3);
  padding: 2% 0 2% 0;
  text-align: center;
}
.wiki {
  position: relative;
  margin-top: 5%;
  margin-bottom: 10%;
  color: white;
}
.wiki_txt {
  text-align: center;
  background-color: rgba(46, 49, 63, 0.3);
  border-radius: 0px 15px;
  width: 35%;
  padding-top: 5px;
  padding-bottom: 5px;
  position: absolute;
  margin: 0;
  bottom: 0;
  right: 131px;
}
.wiki_link {
  color: white;
}
.wiki_img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.possible_positions_list {
  position: relative;
  height: 260px;
  margin-top: 2%;
  margin-bottom: 5%;
}

.possible_positions_title {
  color: #ff6600;
  font-size: 20px;
  font-weight: bold;
}
.pp_visible_left_container,
.pp_visible_center_container,
.pp_visible_right_container {
  height: 260px;
  width: 30%;
  text-align: center;
  position: absolute;
  z-index: 1;
}
.possible_positions_left_card {
  left: 0;
}
.possible_positions_center_card {
  left: 35%;
}
.possible_positions_right_card {
  right: 0;
}

.pp_visible_left_container:hover,
.pp_visible_center_container:hover,
.pp_visible_right_container:hover {
  opacity: 0;
}

.pp_hidden_left_container,
.pp_hidden_center_container,
.pp_hidden_right_container {
  height: 260px;
  width: 30%;
  text-align: center;
  position: absolute;
  opacity: 0;
}

.pp_visible_left_container:hover ~ .pp_hidden_left_container,
.pp_visible_center_container:hover ~ .pp_hidden_center_container,
.pp_visible_right_container:hover ~ .pp_hidden_right_container {
  opacity: 1;
}

.orange_strike {
  color: #ff6600;
  text-decoration: line-through;
}
.strike_content {
  color: black;
}
.recruiter_title {
  text-align: center;
  color: #ff6600;
}
.table_of_duties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 5%;
}
.duties_column {
  width: 32%;
}
.table_of_duties_card {
  color: white;
  font-size: 20px;
  text-align: start;
}

.table_of_duties_card > .table_of_duties_title,
.table_of_duties_txt {
  padding: 5%;
}

.table_of_duties_title {
  font-weight: bold;
  font-size: 25px;
}

.table_of_duties_percent {
  font-size: 70px;
  text-align: center;
  margin: 20% 0 0 0;
}
.table_of_duties_percent_add_padding {
  padding-top: 20%;
}
@-moz-document url-prefix() {
  .glider-track {
    margin-bottom: 17px;
  }
  .glider-wrap {
    height: 500px;
    overflow: hidden;
  }
}

.main_slide {
  width: 90%;
}
.main_slide_container {
  height: 500px;
  position: relative;
}
.main_slide_content_left_position {
  position: absolute;
  text-align: start;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  margin: 0;
  background-color: rgba(247, 240, 240, 0.5);
  padding-right: 2%;
}
.main_slide_content_center_position {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: start;
  color: white;
}
.main_slide_content_right_position {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  margin: 0;
  text-align: start;
  background-color: rgba(247, 240, 240, 0.5);
  padding-right: 2%;
}

.slide_plus_background {
  background: url("../images/pluses.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.slide_minus_background {
  background: url("../images/minuses.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.slide_plus_minus_background {
  background: url("../images/both.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.slide_subtitle {
  text-align: center;
}

.big_size_img {
  max-width: 100%;
  height: auto;
}

.star_team_members_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.star_team_members_grid > div {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  height: 400px;
}
.star_team_member_container {
  position: relative;
}
.star_team_member_top_img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  z-index: 1;
}
.star_team_member_bottom_img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  z-index: 0;
}

.member_info {
  position: absolute;
  bottom: 0;
  background-color: rgba(53, 47, 53, 0.815);
  width: 100%;
  height: 20%;
  margin: 0;
  text-align: center;
  color: white;
  font-weight: bold;
  z-index: 2;
}
.star_team_member_top_img:hover {
  opacity: 0;
}
.star_team_member_top_img:hover ~ .member_info {
  opacity: 0;
}
.member_info {
  background-color: rgba(53, 47, 53, 0.815);
  width: 100%;
  height: 20%;
  margin: 0;
  text-align: center;
  color: white;
  font-weight: bold;
}
.member_info_txt {
  display: block;
  margin: 2% 0 2% 0;
}
.star_team_info_card {
  height: 400px;
  color: white;
}
.star_team_info_card > p {
  padding: 5%;
}

.ss_title {
  font-size: 125px;
  font-weight: bolder;
  text-align: start;
  margin: 0;
}
.ss_txt {
  font-size: 30px;
  text-align: start;
}
.team_life_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.v_grid_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.33%;
  flex: 0 1 33.33%;
  height: 275px;
  position: relative;
}
.v_grid_item_background_new_year {
  background: url("../images/activities/newYear.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_travel {
  background: url("../images/activities/travel.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_help {
  background: url("../images/activities/help.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_initiation {
  background: url("../images/activities/initiation.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_exp {
  background: url("../images/activities/exp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_sport {
  background: url("../images/activities/sport.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_mmb {
  background: url("../images/activities/mmb.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_stuff {
  background: url("../images/activities/stuff.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_march8 {
  background: url("../images/activities/8.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_february23 {
  background: url("../images/activities/23.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.v_grid_item_background_work {
  background: url("../images/activities/work.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.v_grid_hover {
  background-color: rgba(48, 48, 48, 0.5);
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.v_grid_hover:hover {
  opacity: 0;
}
.v_grid_bottom {
  width: 100%;
  height: 100%;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.v_grid_hover:hover ~ .v_grid_bottom {
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.v_grid_title {
  font-size: 25px;
  font-weight: bold;
}

video {
  -o-object-fit: fill;
  object-fit: fill;
  height: 100%;
}

.coordinates_title {
  color: #ff6600;
}

.section_new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(66, 81, 103, 0.9);
  color: white;
}

.section_new a {
  color: #ff6600;
  font-weight: bold;
}

.section_padding {
  padding-top: 2%;
  padding-bottom: 2%;
}
.dark_theme_background {
  background-color: rgb(50, 65, 88);
}
.parallax_background {
  -webkit-box-shadow: inset 0 0 0 1000px rgba(66, 81, 103, 0.9);
  box-shadow: inset 0 0 0 1000px rgba(66, 81, 103, 0.9);
  background: url("../images/vacancyBackground.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.jobs_title {
  color: #ff6600;
  text-align: start;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.jobs_info {
  color: white;
  text-align: start;
  padding: 10px;
  background-color: rgba(46, 49, 63, 0.4);
}

.jobs_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 2%;
}
.jobs_links > a {
  padding-right: 1%;
  padding-bottom: 1%;
}
.offers_button {
  background-color: rgba(51, 44, 65, 0.5);
  border: solid;
  border-width: 3px;
  border-color: white;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  padding: 15px 10px;
}

.offers_button:hover {
  background-color: #ff6600;
}

.client_review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: start;
  font-size: 15px;
}
.client_review_column {
  width: 49.5%;
}
.client_card {
  margin-bottom: 2%;
  background-color: white;
  padding: 5% 2% 5% 2%;
}

.client_card_id {
  width: 70%;
  font-size: 35px;
  border-bottom-style: solid;
  border-color: #ff6600;
  margin: 0;
  margin-bottom: 2%;
}
.client_card_position {
  color: grey;
}

.coordinates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.yandex_link {
  text-decoration: none;
}

.map_container {
  height: auto;
  width: 53%;
  margin: 0;
}

.coordinates_text {
  width: 45%;
  text-align: start;
}

.container1 {
  display: none;
}
.footer_rights {
  margin-top: 5%;
  padding: 5px 0 5px 0;
  background-color: black;
  color: white;
  text-align: center;
}

@media (max-width: 991px) {
  .mobile_background {
    width: 100%;
    height: 800px;
    background-image: url("../images/headerBackground.jpg");
    background-size: 100% 800px;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -2;
  }

  .video_container {
    display: none;
  }

  .top-border {
    width: 100%;
  }
  .bottom-border {
    width: 95%;
    margin: 0 auto 0 auto;
  }
  .mobile_head {
    color: white;
  }

  .mobile_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .mobile_nav_popup {
    margin-top: 2%;
    width: 100%;
    position: relative;
    margin-bottom: 15%;
  }

  .mobile_logo {
    position: absolute;
    right: 50%;
  }

  #popUp_screen {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #ff6600;
    color: #fff;
  }
  #popUp_screen.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #popUp_screen a {
    font-size: 20px;
    text-decoration: none;
    color: white;
    margin-bottom: 5%;
  }

  #show,
  #close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    cursor: pointer;
    margin: 0;
  }

  .mobile_popup_container {
    position: relative;
    margin-top: 2%;
    width: 100%;
  }

  .popup_links {
    padding-top: 20%;
    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;
  }

  .mobile-heading {
    background-color: rgba(46, 49, 63, 0.7);
    padding: 5%;
    margin-bottom: 2%;
  }
  .media_container {
    width: 40%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }

  .heading_title {
    font-size: 30px;
    font-weight: bold;
  }

  .mobile-progress {
    text-align: center;
    margin-top: 5%;
  }

  .table_of_duties {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 -8px 0 -8px;
  }
  .table_of_duties_txt,
  .table_of_duties_title {
    margin: 0;
  }
  .duties_column {
    width: 100%;
    margin: 0;
  }
  .main_slide_container {
    height: 330px;
  }
  .slide_plus_background,
  .slide_minus_background,
  .slide_plus_minus_background {
    background: transparent;
  }
  .main_slide_content_left_position,
  .main_slide_content_center_position,
  .main_slide_content_right_position {
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    background-color: transparent;
  }

  .offers_button {
    width: 100%;
  }
  .jobs_links_ref {
    width: 100%;
  }
  .coordinates {
    display: block;
  }
  .coordinates_text {
    width: 100%;
  }
  .mobile_contacts_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
