.about {
  margin-bottom: 87px;
  position: relative;
}

.about__title {
  margin-bottom: 32px;
}

.tabs__list {
  display: flex;
  width: 654px;
  height: 39px;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
}

.tabs__item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 3px;
  padding: 0 25px 0 25px;
  color: #2F2F51;
  cursor: pointer;
  transition: 0.4s;
}

.tabs__item:hover {
  background: #EF7F04;
  /* box-shadow: 8px 8px 2px 1px rgba(1, 1, 10, 0.2); */
  color: #FFFFFF;
  transition: 0.3s ease-in;
}

.tabs__item:focus {
  background: #EF7F04;
  color: #FFFFFF;
  transition: 0.3s ease-in;
}

.about-inner {
  display: flex;
  justify-content: space-between;
  height: 461px;
  background: #FFFFFF;
  border-radius: 3px;
  margin-bottom: 68px;
}

.inner {
  width: 595px;
  border-radius: 3px;
  padding-top: 46px;
  padding-left: 50px;
}

.inner__logo {
  margin-bottom: 61px;
}

.inner__description {
  width: 305px;
  height: 214px;
  margin-left: 198px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  cursor: default;
}

.inner_preview {
  background-image: url(../images/about/banner.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: right;
}

.about-advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 101px 0;
  margin-bottom: 82px;
}

.advantages__item {
  display: flex;
  width: 30%;
  align-items: start;
  font-size: 16px;
  line-height: 26px;
  cursor: default;
}

.advantages__img {
  width: 102px;
  display: flex;
  justify-content: flex-end;
  margin-right: 25px;
}

.advantages__inner {
  width: 260px;
}

.advantages__inner-title {
  margin-bottom: 6px;
  font-weight: 700;
  color: #2F2F51;
}

.advantages__inner-description {
  font-weight: 400;
  color: #000000;
}

.about-button {
  display: flex;
  justify-content: center;
  /* margin-bottom: 87px; */
}

.about-button__froze{
  display: inline-flex;
  align-items: center;
  width: 280px;
  height: 55px;
  border-radius: 3px;
  border: none;
  background-color: #EF7F1A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}

.about-button__froze:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.about-button__froze:focus {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.about-button__icon {
  margin: 0 23px 0 20px;
}

@media (max-width: 992px) {
  .inner {
    padding-left: 28px;
  }

  .inner__description {
    margin-left: 104px;
  }

  .about-advantages {
    gap: 40px;
  }

  .advantages__item {
    width: 40%;
  }
}