.tabs_content {
  padding: 120px 0 80px 0;
}
.tabs_content .tabs_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin-top: 40px;
  padding-top: 64px;
  border-top: 1px solid #e7e7ea;
}
.tabs_content .tabs_wrapper .tab_item {
  padding: 32px 0 32px 32px;
  border-left: 4px solid #e7e7ea;
  position: relative;
  cursor: pointer;
}
.tabs_content .tabs_wrapper .tab_item .loader {
  width: 4px;
  position: absolute;
  left: -4px;
  top: 0;
  display: inline-block;
  height: 0;
  background-color: #614efa;
}
.tabs_content .tabs_wrapper .tab_item h3 {
  color: #1a1a22;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 8px;
  font-weight: 700;
}
.tabs_content .tabs_wrapper .tab_item .desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.tabs_content .tabs_wrapper .img_wrapper {
  flex: 0 0 616px;
  height: 468px;
  position: relative;
}
.tabs_content .tabs_wrapper .img_wrapper .tab_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.tabs_content .tabs_wrapper .img_wrapper .tab_img.active {
  display: block;
}
.tabs_content .tabs_wrapper .img_wrapper .tab_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1280px) {
  .tabs_content {
    padding: 80px 0 80px 0;
  }
  .tabs_content .tabs_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid #e7e7ea;
  }
  .tabs_content .tabs_wrapper .img_wrapper {
    flex: 0 0 430px;
    height: 430px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
  }
}
@media screen and (max-width: 768px) {
  .tabs_content {
    padding: 80px 0 80px 0;
  }
  .tabs_content .tabs_wrapper > .img_wrapper {
    display: none;
  }
  .tabs_content .tabs_wrapper .tab_item {
    padding: 0;
    border: 0;
  }
  .tabs_content .tabs_wrapper .tab_item .loader {
    display: none;
  }
  .tabs_content .tabs_wrapper .tab_img {
    margin-top: 16px;
    margin-bottom: 64px;
  }
  .tabs_content .tabs_wrapper .tab_img:last-child {
    margin-bottom: 0;
  }
  .tabs_content .tabs_wrapper .tab_img.visible_sm {
    display: block !important;
  }
  .tabs_content .tabs_wrapper .tab_img.visible_sm img {
    max-width: 100%;
  }
}