:root {
  --gradient: linear-gradient(
    to right,
    rgba(12, 144, 68, 1),
    rgba(160, 196, 39, 1)
  );
}

.btn--dark {
  background: #656565;
  color: #fff;
}
@media (any-hover: hover) {
  .btn--dark:hover {
    background: #faa52c;
    color: #fff;
  }
}

.techology {
  margin-top: 45px;
}

.techology-tabs__head-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.techology-tabs__body {
  counter-reset: num;
}

.techology-tab {
  cursor: pointer;
  padding: 15px 25px;
  background: rgb(169, 169, 170);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}
.techology-tab.active {
  background: linear-gradient(to right, rgb(12, 144, 68), rgb(160, 196, 39));
  color: #fff;
}
.techology-tab__content {
  display: none;
  background: #fff;
}
.techology-tab__content.active {
  display: block;
}
.techology-tab__name p {
  margin: 0;
  font-weight: 600;
}
.techology-tab__name span {
  display: block;
  font-size: 0.9em;
  opacity: 0.8;
}

.techology-block-strip {
  text-align: center;
  background-color: rgb(217, 217, 217);
  font-size: 15px;
  font-weight: 700;
  padding: 5px 0;
  margin: 20px auto;
}

.techology-block__name {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  background-color: rgb(57, 57, 58);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 13px 13px 13px 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.techology-block__name span {
  transform: rotate(-90deg);
  transition: 0.3s;
}
.techology-block__name::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  background-color: rgb(90, 167, 59);
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.techology-block__name.active span {
  transform: rotate(0);
}
.techology-block__list {
  opacity: 0;
  max-height: 0;
  transition: 0.3s ease-in-out;
}
.techology-block__list.active {
  max-height: 100%;
  opacity: 1;
}

.techology-block-item__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
.techology-block-item__item {
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
}
@media (any-hover: hover) {
  .techology-block-item__item:hover .techology-block-item__img img {
    transform: scale(1.2);
  }
}
.techology-block-item__img {
  border: solid 1px rgb(217, 217, 217);
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.3s;
}
.techology-block-item__img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  transition: 0.3s ease-in-out;
}
.techology-block-item__info {
  border-bottom: solid 1px rgb(217, 217, 217);
  padding-bottom: 6px;
  margin-bottom: 10px;
  margin-top: auto;
}
.techology-block-item__info p {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-dark);
  padding-bottom: 0;
  margin-bottom: 0;
}
.techology-block-item__info span {
  color: var(--color-gray-dark);
}
.techology-block-item__descr {
  color: #656565;
  font-size: 15px;
}

.t-product-f {
  background: var(--gradient);
  padding: 65px 0;
  margin: auto auto 0;
  text-align: center;
}
.t-product-f__title {
  color: #fff;
  margin-bottom: 20px;
}
.t-product-f__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .t-product-f__btns {
    flex-wrap: wrap;
  }
}

.t-product-top {
  background: var(--gradient);
  position: relative;
  border-radius: 5px;
}
.t-product-top__info {
  max-width: 50%;
  color: #fff;
  padding: 65px;
}
@media (max-width: 1023px) {
  .t-product-top__info {
    max-width: 100%;
    padding: 30px 30px 50px;
  }
}
.t-product-top__info p {
  font-size: 18px;
}
.t-product-top__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .t-product-top__btns {
    flex-wrap: wrap;
  }
}
.t-product-top__img {
  position: absolute;
  top: 0;
  right: 18px;
  max-width: 35%;
}
@media (max-width: 1200px) {
  .t-product-top__img {
    max-width: 50%;
  }
}
@media (max-width: 1023px) {
  .t-product-top__img {
    display: none;
  }
}

.t-product-middle__list {
  display: grid;
  grid-template-areas: "a c" "b c";
  max-width: 60%;
  gap: 10px;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .t-product-middle__list {
    grid-template-areas: "a" "b" "c";
    gap: 25px;
    margin-top: 50px;
    max-width: 45%;
  }
}
@media (max-width: 1023px) {
  .t-product-middle__list {
    max-width: 100%;
  }
}
.t-product-middle__img {
  display: none;
}
@media (max-width: 1023px) {
  .t-product-middle__img {
    display: block;
    margin-top: -50px;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .t-product-middle__img {
    max-width: 80%;
    margin: -50px auto 0;
  }
}
.t-product-middle__item {
  display: inline-block;
}
@media (max-width: 1200px) {
  .t-product-middle__item {
    padding-bottom: 25px;
  }
}
.t-product-middle__item:nth-child(1) {
  grid-area: a;
  border-bottom: solid 1px rgb(217, 217, 217);
}
.t-product-middle__item:nth-child(2) {
  grid-area: b;
}
@media (max-width: 1200px) {
  .t-product-middle__item:nth-child(2) {
    border-bottom: solid 1px rgb(217, 217, 217);
  }
}
.t-product-middle__item:nth-child(3) {
  grid-area: c;
  border-left: solid 1px rgb(217, 217, 217);
  padding-left: 15px;
}
@media (max-width: 1200px) {
  .t-product-middle__item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}
.t-product-middle__item ul {
  padding-left: 25px;
  margin: 0;
}
.t-product-middle__item li {
  margin-bottom: 0.2em !important;
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 0 !important;
  font-size: 15px;
  font-weight: 400;
}
.t-product-middle__item li:before {
  display: none;
}
.t-product-middle__item-name {
  font-size: 20px;
  font-weight: 700;
}
.t-product-bottom {
  margin-top: 50px;
}
.t-product-bottom__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border: solid 1px rgb(217, 217, 217);
  border-radius: 5px;
}
@media (max-width: 1023px) {
  .t-product-bottom__list {
    grid-template-columns: 1fr;
    margin: 0 -15px;
  }
}
.t-product-bottom__item {
  padding: 25px;
  border-right: solid 1px rgb(217, 217, 217);
}
@media (max-width: 1023px) {
  .t-product-bottom__item {
    border-right: none;
    border-bottom: solid 1px rgb(217, 217, 217);
  }
}
.t-product-bottom__item:last-child {
  border-right: none;
}
.t-product-bottom__item-ico {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .t-product-bottom__item-ico {
    margin-bottom: 0;
  }
}
.t-product-bottom__item-info p {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .t-product-bottom__item-info p {
    margin-bottom: 0;
  }
}
.t-product-bottom__item-info span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

.t-product-quality {
  position: relative;
}

.t-product-quality-t {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin: 60px 0;
}
@media (max-width: 1023px) {
  .t-product-quality-t {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.t-product-quality-t__img {
  position: absolute;
  height: 200px;
  left: 0;
  top: 50px;
}
@media (max-width: 1200px) {
  .t-product-quality-t__img {
    left: -20%;
  }
}
@media (max-width: 1023px) {
  .t-product-quality-t__img {
    position: relative;
    left: auto;
    top: auto;
    margin-right: auto;
    margin-left: -35px;
  }
}
.t-product-quality-t__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .t-product-quality-t__img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.t-product-quality-t__info {
  margin-left: auto;
  max-width: 48%;
}
@media (max-width: 1200px) {
  .t-product-quality-t__info {
    max-width: 60%;
  }
}
@media (max-width: 1023px) {
  .t-product-quality-t__info {
    max-width: 100%;
  }
}

.t-product-quality-m__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 60px 0;
}
@media (max-width: 1023px) {
  .t-product-quality-m__list {
    grid-template-columns: 1fr;
  }
}

.t-product-quality-m-item {
  background-color: rgb(246, 246, 246);
  padding: 30px;
}
.t-product-quality-m-item__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.t-product-quality-m-item__text {
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .techology-block-item__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .techology-block-item__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .techology-tabs__head {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
  }
  .techology-tabs__head::-webkit-scrollbar {
    display: none;
  }
  .techology-tabs__head:active {
    cursor: grabbing;
  }
  .techology-tabs__head-wrap {
    width: 1000px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
@media (max-width: 575px) {
  .techology-block-item__list {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=main-new.css.map */