.tab-home {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 5rem;
}
.tab-home .tab-header {
  margin-bottom: 20px;
}
.tab-home .tab-header ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 10px 50px 10px 10%;
  overflow-x: scroll;
}
@media (min-width: 768px) {
  .tab-home .tab-header ul {
    padding-left: 40%;
  }
}
.tab-home .tab-header ul .tab-btn a {
  border: 1px solid #ed3224;
  background-color: white;
  color: #ed3224;
  white-space: nowrap;
  padding: 6px 19px;
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}
.tab-home .tab-header ul .tab-btn a.spaces_work_tabs.tab-active, .tab-home .tab-header ul .tab-btn a.spaces_live_tabs.tab-active {
  color: white;
  background: #ed3224;
}
.tab-home .tab-body {
  position: relative;
}
.tab-home .tab-body.spaces_work_tabs.tab-active, .tab-home .tab-body.spaces_live_tabs.tab-active {
  display: block;
}
.tab-home .tab-body .image {
  width: 100%;
  height: 480px;
}
.tab-home .tab-body .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tab-home .tab-body .box {
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0.44%, rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(5px);
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  height: min-content;
  padding: 40px;
}
@media (min-width: 768px) {
  .tab-home .tab-body .box {
    width: 580px;
    padding: 60px 90px 60px 95px;
    bottom: 0;
  }
}
.tab-home .tab-body .box .title {
  font-family: "Montserrat", Sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  color: #ed3224;
}
.tab-home .tab-body .box .subtitle {
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 35px;
}
.tab-home .tab-body .box .description {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}
.tab-home .tab-body .box .btn {
  background-color: #ed3224;
  color: white;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 50px 15px 50px;
  text-wrap: nowrap;
}
