/* Minification failed. Returning unminified contents.
(1704,20): run-time error CSS1039: Token not allowed after unary operator: '-background'
(1772,15): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(1796,15): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(1818,15): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(1826,20): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(1849,20): run-time error CSS1039: Token not allowed after unary operator: '-accent'
 */
html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  -webkit-overflow-scrolling: touch;
}

h1, h2 {
  font-weight: normal;
  line-height: 1;
  margin: 0;
  text-align: center;
  word-wrap: break-word;
}

h1 {
  font-size: 36px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  display: table;
  margin: 0 auto;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

hr {
  margin: 15px 0 80px 0;
  height: 1px;
  border: none;
  background-color: #017d7d;
}

@supports (--css: variables) {
  hr {
    background-color: var(--theme-primary-color);
  }
}

@media (max-width: 768px) {
  hr {
    height: 3px;
    margin-bottom: 50px;
  }
}

strong, b {
  font-weight: 600;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

a:hover {
  text-decoration: none;
}

.company__nav {
  background-color: #017d7d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  top: 0;
  z-index: 5;
  overflow: hidden;
}

@supports (--css: variables) {
  .company__nav {
    background-color: var(--theme-primary-color);
  }
}

.company__nav .button {
  background-color: #00a6a6;
}

@supports (--css: variables) {
  .company__nav .button {
    background-color: var(--theme-tertiary-color);
  }
}

.company__nav_sticky {
  position: fixed;
  overflow: visible;
  width: 100%;
}

.company__nav_sticky .button {
  background-color: #00bf20;
}

@supports (--css: variables) {
  .company__nav_sticky .button {
    background-color: var(--theme-secondary-color);
  }
}

.company__nav_sticky .button:hover {
  background-color: #00a6a6;
}

@supports (--css: variables) {
  .company__nav_sticky .button:hover {
    background-color: var(--theme-tertiary-color);
  }
}

@media (max-width: 1050px) {
  .company__nav {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.company__nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 820px) {
  .company__nav-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.company__nav-overlay {
  position: fixed;
  top: 65px;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: .3s all;
  transition: .3s all;
  visibility: hidden;
}

.js-menu-open .company__nav-overlay {
  display: block;
  z-index: 3;
  opacity: 1;
  -webkit-transition: .3s all;
  transition: .3s all;
  visibility: visible;
}

.company__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 70%;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}

@media (max-width: 820px) {
  .company__nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    -webkit-transform: translate3d(-240px, 0, 0);
            transform: translate3d(-240px, 0, 0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 240px;
    height: calc(100% - 65px);
    z-index: 3;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: .3s transform;
    transition: .3s transform;
    background-color: #00a6a6;
  }
  @supports (--css: variables) {
    .company__nav-menu {
      background-color: var(--theme-tertiary-color);
    }
  }
}

.js-menu-open .company__nav-menu {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: .3s transform;
  transition: .3s transform;
}

.company__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 820px) {
  .company__nav-list {
    display: block;
    padding: 20px;
  }
  .company__nav-list .company__nav-list-item {
    white-space: normal;
    word-break: break-word;
  }
}

.company__nav-list-item {
  display: inline-block;
  white-space: nowrap;
}

.company__nav-list-item:not(:last-of-type) {
  margin-right: 35px;
}

@media (max-width: 820px) {
  .company__nav-list-item:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.company__nav-link {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

.company__nav-link:hover, .company__nav-link:focus {
  text-decoration: underline;
}

.company__nav-order {
  position: relative;
  max-width: 50%;
  padding-left: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

.company__nav-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  height: 100%;
  width: 50px;
  /*background-image: linear-gradient(to right, rgba(0,0,0,0) 0%, $theme-primary-color 100%);

        @supports (--css: variables) {
            background-image: linear-gradient(to right, rgba(0,0,0,0) 0%, var(--theme-primary-color) 100%);
        }
    
        @media (max-width: $nav-bp-mobile) {
            background-image: none;
        }*/
}

@media (max-width: 820px) {
  .company__nav-order {
    padding-left: 0;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .company__nav-menu-button {
    display: inline-block;
    cursor: pointer;
    z-index: 1;
  }
  .company__nav-menu-button-bar1, .company__nav-menu-button-bar2, .company__nav-menu-button-bar3 {
    width: 30px;
    height: 5px;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 3px;
    background-color: #00a6a6;
  }
  @supports (--css: variables) {
    .company__nav-menu-button-bar1, .company__nav-menu-button-bar2, .company__nav-menu-button-bar3 {
      background-color: var(--theme-tertiary-color);
    }
  }
  .js-menu-open .company__nav-menu-button-bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-8px, 6px);
  }
  .js-menu-open .company__nav-menu-button-bar2 {
    opacity: 0;
  }
  .js-menu-open .company__nav-menu-button-bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-9px, -8px);
  }
}

.company__header {
  padding: 20px 0;
}

.company__header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .company__header-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.company__header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .company__header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

.company__header-logo-img {
  max-width: 280px;
  max-height: 150px;
}

.company__header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company__header-title {
  margin-bottom: 30px;
}

.company__header-contacts {
  font-size: 18px;
}

.company__header-address {
  display: block;
}

.company__header-phone {
  font-weight: bold;
  white-space: nowrap;
}

.company__footer {
  background-color: #017d7d;
  color: #fff;
  font-size: 14px;
  padding: 25px 0;
}

@supports (--css: variables) {
  .company__footer {
    background-color: var(--theme-primary-color);
  }
}

@media (max-width: 768px) {
  .company__footer {
    padding: 20px 15px;
  }
}

.company__footer-link {
  text-decoration: underline;
}

.company__footer-copyright {
  display: block;
}

@media (max-width: 768px) {
  .company__footer-copyright {
    margin-bottom: 5px;
  }
}

.company__footer-rules {
  text-decoration: underline;
}

.company__footer-poweredby {
  color: #c3c2c2;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1000px;
}

.section {
  margin-top: 70px;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .section {
    margin-top: 40px;
  }
}

.button {
  background-color: #00a6a6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 40px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 22px;
  color: #fff;
  -webkit-transition: .3s background-color;
  transition: .3s background-color;
  white-space: nowrap;
  -webkit-appearance: none;
  cursor: pointer;
  letter-spacing: .4px;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@supports (--css: variables) {
  .button {
    background-color: var(--theme-tertiary-color);
  }
}

.button:hover, .button:focus {
  -webkit-transition: .3s background-color;
  transition: .3s background-color;
  background-color: #00bf20;
}

@supports (--css: variables) {
  .button:hover, .button:focus {
    background-color: var(--theme-secondary-color);
  }
}

.button-secondary {
  background-color: #00bf20;
}

@supports (--css: variables) {
  .button-secondary {
    background-color: var(--theme-secondary-color);
  }
}

.button-secondary:hover, .button-secondary:focus {
  background-color: #017d7d;
}

@supports (--css: variables) {
  .button-secondary:hover, .button-secondary:focus {
    background-color: var(--theme-primary-color);
  }
}

.button-cta {
  height: auto;
  font-size: 18px;
  padding: 15px 18px 15px 60px;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 40px 40px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 70.065 70.065' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.896 3.38c-17.471 0-31.631 14.163-31.631 31.634s14.16 31.637 31.631 31.637S66.53 52.488 66.53 35.017c0-6.782-2.14-13.058-5.772-18.21l-2.517 2.679v.003a27.876 27.876 0 0 1 4.701 15.525c0 15.463-12.58 28.043-28.043 28.043-15.464 0-28.046-12.581-28.046-28.043C6.855 19.55 19.434 6.968 34.896 6.968c6.31 0 12.142 2.097 16.832 5.63l2.626-2.514A31.46 31.46 0 0 0 34.896 3.38z' fill='%23fff' fill-rule='evenodd'/%3E%3Cpath d='M59.578 8.974L30.507 33.052a5.803 5.803 0 1 0 8.346 8.066l23.074-29.872c1.2-1.555-.837-3.525-2.349-2.272zM31.975 28.622l-11.903-7.254c-1.54-.934-3.245.92-2.186 2.371l8.646 11.894a8.216 8.216 0 0 1 2.195-4.3l.096-.098.108-.088 3.043-2.524z' clip-rule='evenodd' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #00bf20;
}

@supports (--css: variables) {
  .button-cta {
    background-color: var(--theme-secondary-color);
  }
}

.button-cta:hover {
  -webkit-transition: .3s background-color;
  transition: .3s background-color;
  background-color: #017d7d;
}

@supports (--css: variables) {
  .button-cta:hover {
    background-color: var(--theme-primary-color);
  }
}

@media (max-width: 768px) {
  .button-cta {
    height: 40px;
    font-size: 16px;
    background-size: 30px;
    padding: 0 20px 0 45px;
  }
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: auto;
  width: 100%;
  z-index: 5;
}

@media (max-width: 768px) {
  .modal {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.modal__overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 5;
}

.modal__content {
  position: relative;
  background-color: #fefefe;
  overflow: hidden;
  border: 6px solid;
  border-left: none;
  border-right: none;
  border-color: #017d7d;
  width: 80%;
  max-width: 760px;
  z-index: 6;
}

@supports (--css: variables) {
  .modal__content {
    border-color: var(--theme-primary-color);
  }
}

@media (max-width: 768px) {
  .modal__content {
    margin: 20px 0 20px;
    width: 90%;
  }
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px 0 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 40px 20px 40px;
}

@media (max-width: 600px) {
  .modal__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 20px;
  }
}

.modal__close {
  display: inline-block;
  width: 22px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.modal__close:hover {
  color: #00bf20;
}

@supports (--css: variables) {
  .modal__close:hover {
    color: var(--theme-secondary-color);
  }
}

@media (max-width: 600px) {
  .modal__image {
    margin-bottom: 25px;
  }
}

.modal__employee-image {
  margin-right: 40px;
}

.modal__employee-image img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 600px) {
  .modal__employee-image {
    margin-right: 0;
  }
}

.modal__action-image {
  margin-top: 25px;
}

.modal__action-image img {
  width: 100%;
  height: 100%;
}

.modal__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 25px;
  word-break: break-word;
}

@media (max-width: 768px) {
  .modal__info {
    margin-left: 0;
    margin-top: 15px;
  }
}

.modal__carousel {
  position: relative;
  padding: 30px 50px;
}

.modal__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 5px;
}

.modal__subtitle {
  font-size: 18px;
}

.modal__desc {
  margin: 20px 0;
  max-height: 50vh;
  overflow: auto;
  padding: 10px;
}

.modal__desc a {
  text-decoration: underline;
  color: #00bf20;
}

@supports (--css: variables) {
  .modal__desc a {
    color: var(--theme-secondary-color);
  }
}

.modal__desc a:hover {
  text-decoration: none;
}

.company__slider {
  position: relative;
  overflow: hidden;
  max-height: 575px;
  background-color: #ffffff;
}

.company__slider-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  padding: 20px 0 50px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  /*max-width: 1000px;*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

@media (max-width: 768px) {
  .company__slider-info {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0 70px;
    bottom: 0;
  }
}

.company__slider-title {
  display: table;
  position: relative;
  margin: auto;
  font-size: 34px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .company__slider-title {
    font-size: 18px;
  }
}

.company__slider-more {
  font-size: 12px;
  bottom: 0;
  cursor: pointer;
  vertical-align: middle;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1;
  margin-left: 10px;
}

.company__slider-more:hover {
  color: #00bf20;
  border-color: currentColor;
}

@supports (--css: variables) {
  .company__slider-more:hover {
    color: var(--theme-secondary-color);
  }
}

.company__slider-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.company__slider-action-text {
  margin-top: 10px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}

.tns-item {
  position: relative;
  max-height: 575px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.tns-item img {
  position: relative;
  z-index: 2;
  max-height: 575px;
  height: 575px;
  -o-object-fit: contain;
     object-fit: contain;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .tns-item img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tns-item img {
    min-height: 280px;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.tns-nav {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.tns-nav > [aria-controls] {
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  outline: none;
}

@media (max-width: 768px) {
  .tns-nav > [aria-controls] {
    bottom: 8px;
  }
}

.tns-nav > .tns-nav-active {
  background: #fff;
}

.tns-controls button {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 40px;
  width: 40px;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  cursor: pointer;
  outline: none;
  border-radius: 18px;
  -webkit-transition: .2s background-color;
  transition: .2s background-color;
  z-index: 1;
}

.tns-controls button:hover {
  background-color: #efefef;
}

.company__slider .tns-controls button {
  background-color: rgba(0, 0, 0, 0.5);
}

.company__slider .tns-controls button:hover {
  background-color: #efefef;
  -webkit-transition: .2s background-color;
  transition: .2s background-color;
}

.tns-controls [data-controls="prev"] {
  left: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 2l-5 6 5 6' stroke='%23AAACB2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tns-controls [data-controls="next"] {
  right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 14l5-6-5-6' stroke='%23AAACB2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tns__arrow {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 36px;
  width: 36px;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  cursor: pointer;
  outline: none;
  border-radius: 18px;
}

.tns__arrow:hover {
  background-color: #efefef;
}

.tns__arrow_left {
  left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 2l-5 6 5 6' stroke='%23AAACB2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tns__arrow_right {
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 14l5-6-5-6' stroke='%23AAACB2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tns-horizontal.tns-subpixel > div,
.tns-horizontal.tns-subpixel > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company__spec-item {
  margin-bottom: 80px;
}

.company__employees {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .company__employees {
    margin-bottom: 50px;
  }
}

.company__employees-container {
  position: relative;
  max-width: 80%;
  margin: 0;
  width: 100%;
}

@supports (display: grid) {
  .company__employees-container {
    max-width: none;
  }
}

.company__employee-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@supports (display: grid) {
  .company__employee-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.company__employee {
  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-transition: .3s filter;
  transition: .3s filter;
  text-align: center;
  margin: 0 30px 20px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .company__employee {
    margin-bottom: 25px;
  }
}

.company__employee-avatar {
  position: relative;
  height: 135px;
  width: 135px;
  overflow: hidden;
  cursor: pointer;
}

.company__employee-info {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background-color: #c3c3c3;
  text-align: center;
  line-height: 34px;
  color: #fff;
  font-family: monospace;
  font-size: 20px;
  cursor: pointer;
}

.company__employee-info:hover {
  background-color: #017d7d;
}

@supports (--css: variables) {
  .company__employee-info:hover {
    background-color: var(--theme-primary-color);
  }
}

.company__employee-image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__employee-name {
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  word-break: break-word;
  cursor: pointer;
}

.company__employee-name:hover {
  color: #017d7d;
  -webkit-transition: .3s filter;
  transition: .3s filter;
}

@supports (--css: variables) {
  .company__employee-name:hover {
    color: var(--theme-primary-color);
  }
}

.company__employee-post {
  margin-top: 5px;
  word-break: break-word;
}

.company__employee-examples {
  margin-top: 8px;
}

.company__employee-examples-button {
  background-color: transparent;
  border: none;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  color: #00bf20;
  outline: none;
}

@supports (--css: variables) {
  .company__employee-examples-button {
    color: var(--theme-secondary-color);
  }
}

.company__employee-examples-button:hover {
  text-decoration: none;
}

.company__services-list {
  -webkit-column-count: 2;
          column-count: 2;
}

@media (max-width: 768px) {
  .company__services-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.company__services-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 8px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.company__services-list-item_more {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-decoration: underline;
  color: #00bf20;
}

@supports (--css: variables) {
  .company__services-list-item_more {
    color: var(--theme-secondary-color);
  }
}

.company__services-list-item_more:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .company__services-list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 5px 10px;
    max-width: none;
  }
}

.company__service-title-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company__service-title {
  display: inline-block;
  word-break: break-word;
  cursor: pointer;
}

.company__service-title:hover {
  text-decoration: underline;
}

.company__service-price {
  color: #00bf20;
  margin-left: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@supports (--css: variables) {
  .company__service-price {
    color: var(--theme-secondary-color);
  }
}

.company__service-desc {
  font-size: 13px;
  margin-top: 6px;
  width: 100%;
  color: #919191;
  word-break: break-word;
}

@media (max-width: 768px) {
  .company__service-desc {
    margin-top: 2px;
    margin-bottom: 10px;
  }
}

.company__service-link-wrapper {
  width: 100%;
}

.company__service-link {
  color: #00bf20;
  text-decoration: underline;
}

@supports (--css: variables) {
  .company__service-link {
    color: var(--theme-secondary-color);
  }
}

.company__service-desc-button {
  background-color: transparent;
  border: none;
  border-bottom: 1px dotted;
  padding: 0;
  cursor: pointer;
  margin-left: 6px;
  outline: none;
  color: inherit;
}

.company__service-desc-button:focus {
  color: #000;
}

.company__service-desc-button:hover {
  color: #017d7d;
}

@supports (--css: variables) {
  .company__service-desc-button:hover {
    color: var(--theme-primary-color);
  }
}

.glightbox-mobile .glightbox-container .gslide-description {
  bottom: 0 !important;
}

.glightbox-mobile .ginner-container {
  max-width: none !important;
}

.glightbox-mobile .glightbox-container .gslide-description {
  padding-left: 0 !important;
}

.glightbox-mobile .glightbox-clean .gdesc-inner {
  padding: 0 !important;
  margin: 0 20px !important;
}

.glightbox-mobile .description-bottom {
  min-width: 100%;
}

.glightbox-mobile .gslide-media.gslide-image img {
  max-width: 100vw;
  margin: auto;
}

.gslide-media.gslide-image img {
  max-width: 960px;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.glightbox-mobile .glightbox-clean .gnext {
  top: calc(50vh - 30px);
  right: 8px;
}

.glightbox-mobile .glightbox-clean .gprev {
  top: calc(50vh - 30px);
  left: 8px;
}

/*@media (max-width: $bp-mobile) {
  .description-bottom {
    min-width: 100%;
  }
}

@media (min-width: $bp-mobile) {
  .gslide-media.gslide-image img {
    max-width: 960px;
  }

  .glightbox-container .ginner-container {
    width: auto;
  }
}*/
@media (max-width: 768px) {
  .company__about-text {
    padding: 10px;
  }
  .company__about-text img {
    width: 100%;
  }
}

.company__about-map {
  margin: 60px 0 40px;
}

.company__about-contacts {
  line-height: 1.5;
  text-align: center;
}

.company__about-address {
  display: block;
  font-weight: 600;
}

.company__about-phone {
  font-weight: 600;
  font-size: 18px;
}

.company__about-info {
  margin-top: 5px;
}

.company__instagram {
  text-align: center;
}

.company__instagram-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .company__instagram-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .company__instagram-list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 5px;
  }
}

.company__instagram-image {
  width: 100%;
  max-width: 310px;
  height: 100%;
  max-height: 310px;
}

.company__instagram-link {
  color: #000;
  font-size: 14px;
  text-decoration: underline;
}

.company__instagram-link:hover {
  color: #017d7d;
}

@supports (--css: variables) {
  .company__instagram-link:hover {
    color: var(--theme-primary-color);
  }
}

.company__social {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .company__social {
    margin-top: 30px;
  }
}

.company__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.company__social-list-item {
  margin: 0 10px;
}

.company__social-image {
  height: 50px;
  width: 50px;
  -webkit-transition: .3s filter;
  transition: .3s filter;
}

.company__social-image:hover {
  -webkit-transition: .3s filter;
  transition: .3s filter;
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

.company__social-call {
  position: relative;
  height: 10vw;
  max-height: 90px;
  min-height: 90px;
  font-size: 28px;
  font-weight: 300;
  margin-top: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='995.15' height='88.142' viewBox='0 0 263.3 23.321' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M131.8 0l131.5 23.321H0z' fill='%23e3e7ea' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: no-repeat;
  color: #656366;
  text-align: center;
}

@media (max-width: 768px) {
  .company__social-call {
    min-height: 75px;
    background-size: cover;
  }
}

.company__social-call-text {
  display: block;
  position: absolute;
  bottom: 15px;
  font-size: 28px;
  font-weight: 300;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .company__social-call-text {
    font-size: 22px;
  }
}

.company__subscription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  margin-top: 50px;
  padding: 8px;
}

@media (max-width: 768px) {
  .company__subscription {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.company__subscription-text {
  max-width: 350px;
}

.company__subscription-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookies-notify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  bottom: 16px;
  right: initial;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid rgba(85, 85, 85, 0.24);
  border-radius: 24px;
  color: #555555;
  max-width: 552px;
  gap: 16px;
  margin: 0 16px;
}

@media screen and (min-width: 40em) {
  .cookies-notify {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: initial;
    right: 16px;
  }
}

.cookies-notify[hidden] {
  display: none;
}

.cookies-notify__text {
  font-size: 14px;
  line-height: 20px;
}

.cookies-notify__link {
  display: inline;
  text-decoration: underline;
}

.cookies-notify__link:hover {
  color: #000;
}

.cookies-notify__button {
  color: inherit;
  font-size: 18px;
  padding: 12px 24px;
  border: 1px solid currentColor;
  border-radius: 16px;
  background-color: transparent;
  cursor: pointer;
}

.cookies-notify__button:hover {
  color: #000;
}

.company__abonement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 360px);
  gap: 40px;
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.company__abonement-card {
  background: var(--background);
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.company__abonement-card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.company__abonement-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.company__abonement-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.company__abonement-card:hover .company__abonement-image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.company__abonement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.company__abonement-price {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.company__abonement-content {
  padding: 28px;
  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-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.company__abonement-title {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

.company__abonement-footer {
  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;
  gap: 20px;
  margin-top: auto;
}

.company__abonement-validity {
  font-size: 0.95rem;
  color: var(--secondary);
  white-space: nowrap;
  opacity: 0.8;
}

.company__abonement-button {
  min-width: 140px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  gap: 8px;
  white-space: nowrap;
}

.company__abonement-button:hover {
  background: var(--accent);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

