#mainBrands {
  background: var(--color-white);
}
#mainBrands .block-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
}
#mainBrands .block-title .slider-btns {
  position: relative;
  margin-left: auto;
}
#mainBrands .block-title .slider-btns .slider-btns-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#mainBrands .block-title .slider-btns .slider-arrow-btn {
  display: flex;
}
#mainBrands .block-tabs .tabs-wrapper {
  max-width: 100%;
  flex-wrap: nowrap;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
#mainBrands .block-tabs .tabs-wrapper .swiper {
  width: 100%;
}
#mainBrands .block-tabs .tabs-wrapper .tabs-item {
  background: var(--color-text-adv);
  transition: all 0.3s;
  cursor: pointer;
}
#mainBrands .block-tabs .tabs-wrapper .tabs-item .tab-item-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  transition: all 0.3s;
}
#mainBrands .block-tabs .tabs-wrapper .tabs-item.active, #mainBrands .block-tabs .tabs-wrapper .tabs-item:hover {
  transition: all 0.3s;
  background: var(--color-link);
}
#mainBrands .block-tabs .tabs-wrapper .tabs-item.active .tab-item-content, #mainBrands .block-tabs .tabs-wrapper .tabs-item:hover .tab-item-content {
  transition: all 0.3s;
  color: white;
}
#mainBrands .tabs-content .tabs-content-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  z-index: -1;
  position: relative;
  transition: all 0.3s;
  height: 0;
}
#mainBrands .tabs-content .tabs-content-items .swiper {
  width: 100%;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item {
  position: relative;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #cccccc;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-image img.no-image {
  width: 35%;
  height: auto;
  opacity: 0.2;
  min-height: unset;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-desc {
  overflow-y: hidden;
  position: relative;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-desc:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
}
#mainBrands .tabs-content .tabs-content-items .swiper .content-item:hover {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
#mainBrands .tabs-content .tabs-content-items.active {
  opacity: 1;
  z-index: 2;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
}
#mainBrands .tabs-content .tabs-content-items .slider-btns {
  width: 100%;
  position: relative;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
}
#mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  top: unset;
  left: unset;
  right: unset;
  position: relative;
}

@media screen and (min-width: 1400px) {
  #mainBrands {
    padding-top: 20px;
  }
  #mainBrands .block-title {
    gap: 20px;
    margin-bottom: 20px;
  }
  #mainBrands .block-title .slider-btns {
    top: 10px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper {
    justify-content: flex-end;
    gap: 20px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 11px;
    position: absolute;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 11px;
    position: absolute;
  }
  #mainBrands .block-tabs .tabs-item .tab-item-content {
    padding: 10px 10px;
    font-size: 16px;
  }
  #mainBrands .tabs-content {
    padding-bottom: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper {
    padding: 10px;
    gap: 10px;
    height: calc(100% - 20px);
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-image {
    height: 160px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-title {
    font-size: 1.1em;
    font-weight: 600;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-desc {
    height: 70px;
  }
  #mainBrands .tabs-content .tabs-content-items.active {
    padding-top: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns {
    gap: 20px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 4px;
    position: relative;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 4px;
    position: relative;
  }
}
@media screen and (max-width: 1399px) {
  #mainBrands {
    padding-top: 20px;
  }
  #mainBrands .block-title {
    gap: 20px;
    margin-bottom: 20px;
  }
  #mainBrands .block-title .slider-btns {
    top: 10px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper {
    justify-content: flex-end;
    gap: 20px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 11px;
    position: absolute;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 11px;
    position: absolute;
  }
  #mainBrands .block-tabs .tabs-item {
    align-items: stretch;
    display: flex;
  }
  #mainBrands .block-tabs .tabs-item .tab-item-content {
    padding: 10px 10px;
    font-size: 14px;
  }
  #mainBrands .tabs-content {
    padding-bottom: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper {
    padding: 10px;
    gap: 10px;
    height: calc(100% - 20px);
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-image {
    height: 160px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-title {
    font-size: 1.1em;
    font-weight: 600;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-desc {
    height: 70px;
  }
  #mainBrands .tabs-content .tabs-content-items.active {
    padding-top: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns {
    gap: 20px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 17px;
    position: absolute;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 17px;
    position: absolute;
  }
}
@media screen and (max-width: 1199px) {
  #mainBrands {
    padding-top: 20px;
  }
  #mainBrands .block-title {
    gap: 20px;
    margin-bottom: 20px;
  }
  #mainBrands .block-title .slider-btns {
    top: 10px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper {
    justify-content: flex-end;
    gap: 20px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 11px;
    position: absolute;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 11px;
    position: absolute;
  }
  #mainBrands .block-tabs .tabs-item .tab-item-content {
    padding: 10px 15px;
  }
  #mainBrands .tabs-content {
    padding-bottom: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper {
    padding: 10px;
    gap: 10px;
    height: calc(100% - 20px);
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-image {
    height: 160px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-title {
    font-size: 1.1em;
    font-weight: 600;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-desc {
    height: 70px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns {
    gap: 20px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 17px;
    position: absolute;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 17px;
    position: absolute;
  }
}
@media screen and (max-width: 1023px) {
  #mainBrands {
    padding-top: 20px;
  }
  #mainBrands .block-title {
    gap: 20px;
    margin-bottom: 20px;
  }
  #mainBrands .block-title .slider-btns {
    top: 10px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper {
    justify-content: flex-end;
    gap: 20px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 11px;
    position: absolute;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 11px;
    position: absolute;
  }
  #mainBrands .block-tabs .tabs-item .tab-item-content {
    padding: 10px 15px;
  }
  #mainBrands .tabs-content {
    padding-bottom: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item {
    height: unset;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper {
    padding: 10px;
    gap: 10px;
    height: calc(100% - 20px);
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-image {
    height: 140px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-title {
    font-size: 1.1em;
    font-weight: 600;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-desc {
    height: 70px;
  }
  #mainBrands .tabs-content .tabs-content-items.active {
    padding-top: 30px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns {
    gap: 20px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 4px;
    position: relative;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 4px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  #mainBrands {
    padding-top: 20px;
  }
  #mainBrands .block-title {
    gap: 10px;
    margin-bottom: 20px;
  }
  #mainBrands .block-title .slider-btns {
    top: 10px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper {
    justify-content: flex-end;
    gap: 10px;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 11px;
    position: absolute;
  }
  #mainBrands .block-title .slider-btns .slider-btns-wrapper .slider-arrow-btn.main-slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 11px;
    position: absolute;
  }
  #mainBrands .block-tabs .tabs-item .tab-item-content {
    padding: 10px 15px;
  }
  #mainBrands .tabs-content {
    padding-bottom: 20px;
  }
  #mainBrands .tabs-content .tabs-content-items {
    padding-top: 0;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper {
    align-items: stretch;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item {
    height: unset;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper {
    padding: 10px;
    gap: 10px;
    height: calc(100% - 22px);
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-image {
    height: 80px;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-title {
    font-size: 12px;
    font-weight: 600;
  }
  #mainBrands .tabs-content .tabs-content-items .swiper .swiper-wrapper .content-item .item-wrapper .item-desc {
    font-size: 9px;
    height: 70px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns {
    gap: 10px;
    margin-top: 10px;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-prev:after {
    font: var(--fa-font-solid);
    content: "\f053";
    left: 4px;
    position: relative;
  }
  #mainBrands .tabs-content .tabs-content-items .slider-btns .swiper-btn.slider-button-next:after {
    font: var(--fa-font-solid);
    content: "\f053";
    transform: rotate(180deg);
    right: 4px;
    position: relative;
  }
}
/*

#mainBrands {
  padding-top: 0px;
  background: #f8f8f8;
  .block-title {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    h2 {
      font-size: 1.75em;
      font-weight: 600;
      margin: 0;
    }
    .link-more {
      font-size: 1em;
      text-decoration: none;
      color: var(--color-link);
      transition: all .3s;
      &:hover {
        color: var(--color-link-hover);
      }

    }
  }
  .block-tabs {
    .tabs-wrapper {
      max-width: 100%;
      flex-wrap: nowrap;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-content: space-between;
      .tabs-item {
        background: #eee;
        transition: all .3s;
        cursor: pointer;
        .tab-item-content {
          padding: 10px 15px;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          font-weight: 600;
          transition: all .3s;
        }
        &.active, &:hover {
          transition: all .3s;
          background: #424242;
          .tab-item-content {
            transition: all .3s;
            color: white;
          }
        }
      }
    }
  }
  .tabs-content {
    padding-bottom: 60px;
    .tabs-content-items {
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 15px;
      opacity: 0;
      z-index: -1;
      position: relative;
      transition: all .3s;
      height: 0;

      .swiper {
        height: 250px;
        width: 100%;
        .swiper-wrapper {gap: 20px}
        .content-item {
          width: calc(16.66% - 18px) !important;
          height: 240px;
          //width: calc(20% - 14px);
          position: relative;
          border: 1px solid #cccccc;
          border-radius: 10px;
          .item-wrapper {
            padding: 10px;
            position: relative;
            width: calc(100% - 20px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;
            height: calc(100% - 20px);
            background: white;
            overflow: hidden;
            border-radius: 10px;
            .item-image {
              position: relative;
              height: 160px;
              border-radius: 10px;
              overflow: hidden;
              display: flex;
              align-items: center;
              justify-content: center;
              img {
                max-width: 100%;
                //width: 100%;
                //height: 100%;
                max-height: 100%;
                object-fit: cover;
                &.no-image {
                  width: 35%;
                  height: auto;
                  opacity: .2;
                  min-height: unset;
                  transform: translate(-50%, -50%);
                  top: 50%;
                  left: 50%;
                  position: absolute;

                }
              }

            }
            .item-title {
              font-size: 1.1em;
              font-weight: 600;
            }
            .item-desc {
              height: 70px;
              overflow-y: hidden;
              position: relative;
              &:after {
                content: "";
                display: block;
                width: 100%;
                height: 10px;
                position: absolute;
                bottom: 0;
                left: 0;
                background: #ffffff;
                background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
              }

            }
            .btn {
              margin-top: auto;
              display: flex;
              align-items: center;
              text-align: center;
              justify-content: center;
              text-decoration: none;
            }
          }
          &:hover {
            -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
            -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
            box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);

          }
        }

      }

      &.active {
        padding-top: 30px;
        opacity: 1;
        z-index: 2;
        height: fit-content;
      }
      .slider-btns {
        position: absolute;
        right: 0;
        display: flex;
        gap: 20px;
        height: 50px;
        bottom: -50px;
        .swiper-btn {
          left: unset;
          top: unset;
          right: unset;
          position: relative;
          border-radius: 50%;
          background: white;
          width: 50px;
          height: 50px;
          margin-top: unset;
          transition: all .3s;
          &:after {
            font-size: 25px;
            color: #424242;
            transition: all .3s;
          }
          &:hover {
            background: var(--color-link-hover);
            &:after {
              color: white;
            }
          }

        }
      }

    }
  }
}



.brands-list-block {
  margin-top: 20px;
  .block-title {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    h2 {
      font-weight: bold;
      line-height: 1;
      margin-bottom: 0;
    }
    a{
      line-height: 1.2;
    }
  }

  .block-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    .section-tabs {
      position: relative;
      flex-grow: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
      .tabs-item {
        padding: 7px 20px;
        font-size: 16px;
        font-weight: 500;
        color: black;
        width: 100%;
        transition: all .3s;
        background: #f4f4f4;
        cursor: pointer;
        &.active {
          background: #222222;
          color: white;

        }
        &:not(.active) {
          &:hover {
            background: #ffffff;
            color: #222222;
          }
        }
      }
    }
    .section-content {
      position: relative;
      flex-grow: 1;
      padding: 0 20px;
      .tab-content-item {
        display: none;
        &.active {
          display: block;
        }
        .services-list {
          display: flex;
          flex-direction: row;
          align-items: stretch;
          justify-content: flex-start;
          gap: 20px;
          flex-wrap: wrap;
          border-top: 80px;
          .swiper-wrapper {
            flex-direction: row;
            align-items: stretch;
            flex-wrap: wrap;
            gap: 20px;
          }

          .service-item {
            width: calc(20% - 16px);
            border-radius: 10px;
            background: white;
            position: relative;
            padding: 10px;
            transition: all .3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-bottom: 30px;
            border: 1px solid #eee;
            &:hover {
              box-shadow: 0px 5px 30px rgba(34, 34, 34, 0.1);
            }
            .service-image {
              width: 100%;
              height: 0;
              padding-top: 70%;
              position: relative;
              .service-image-wrapper {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                  width: 100%;
                  height: auto;
                  object-fit: cover;
                }
              }
            }
            .service-name {
              font-weight: bold;
              transition: all .3s;
              font-size: 16px;
              color: black;
              flex-grow: 1;
              &:hover {
                color: #222222;
              }
            }
          }
          .btn-more {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
          }
        }
      }
    }
  }


}
*/

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