.pt-80 {
  padding-top: 80px;
}
@media (max-width: 992px) {
  .pt-80 {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .pt-80 {
    padding-top: 32px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .pb-80 {
    padding-bottom: 32px;
  }
}

/*-------------------------
  Headings
-------------------------*/
.gym-programs .heading_1 {
  margin-bottom: 20px;
}
.gym-programs .top_title{
  margin-bottom: 20px;
}
.gym-programs .heading_1 h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--title-text-color);
  /* padding-left: 64px; */
  position: relative;
  z-index: 50;
}
.gym-programs .heading_1 h2::after {
  /* content: ""; */
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: -5;
  background-color: #d6d8db;
  width: 195px;
  height: 29px;
}
@media (max-width: 992px) {
  .gym-programs .heading_1 h2 {
    font-size: 60px;
  }
  .gym-programs .heading_1 h2::after {
    bottom: 15px;
    width: 165px;
    height: 24px;
  }
}
@media (max-width: 492px) {
  .gym-programs .heading_1 h2 {
    font-size: 50px;
    padding-left: 32px;
    word-wrap: break-word;
  }
  .gym-programs .heading_1 h2::after {
    bottom: 13px;
    width: 100px;
    height: 20px;
  }
}

.gym-programs .container {
  position: relative;
  z-index: 15;
}
.gym-programs .container{
  position: relative;
  z-index: 25;
}
.gym-programs .container .box {
  position: relative;
}
@media (max-width: 575px) {
  .gym-programs .container .content .box {
    margin: 0 15px;
    margin-bottom: 15px;
  }
}
.gym-programs .container .title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 27px 14px;
  z-index: 5;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fafafa;
}
@media (max-width: 1199px) {
  .gym-programs .container  .title {
    font-size: 24px;
  }
}
.gym-programs .container .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
  background-color: var(--color-primary);
  width: 97px;
  height: 97px;
}
@media (max-width: 1199px) {
  .gym-programs .container .title::after {
    width: 83px;
    height: 83px;
  }
}
.gym-programs .container .box:hover .title::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
