.bkl {
  position: relative;
  overflow: hidden;
}
.bkl h2 {
  font-size: 2.8125rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 5.8125rem;
  display: block;
  position: relative;
}
.bkl h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 1px;
  margin: 0 auto;
  background-color: var(--teal);
  bottom: 0;
  left: 0;
  right: 0;
}
.bkl-box {
  max-width: 59.5625rem;
  margin: 0 auto;
  row-gap: 6.125rem;
}
@media (min-width: 768px) {
  .bkl-box {
    row-gap: 12.125rem;
  }
}
.bkl-box-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .bkl-box-item {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 3.125rem;
  }
}
@media (min-width: 992px) {
  .bkl-box-item {
    gap: 6.375rem;
  }
}
.bkl-box-item-img {
  position: relative;
}
@media (min-width: 768px) {
  .bkl-box-item-img {
    -ms-flex: 0 0 19rem;
        flex: 0 0 19rem;
  }
}
.bkl-box-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 6s ease;
}
.bkl-box-item-content {
  position: relative;
}
.bkl-box-item-content h3 {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.3125rem;
  color: var(--teal);
}
.bkl-box-item-content span {
  position: relative;
  display: block;
  font-size: 1.125rem;
  font-size: 800;
  color: var(--teal);
  margin-bottom: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.bkl-box-item-content span::after {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: var(--teal);
  bottom: 0;
  left: 0;
}
.bkl-box-item-content p {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 3.75rem;
}
.bkl-box-item-content-btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .bkl-box-item-content-btns {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 992px) {
  .bkl-box-item-content-btns {
    gap: 1.875rem;
  }
}
.bkl-box-item-content-btns a {
  display: inline-block;
  padding: 0.625rem 2.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--teal);
  border-radius: 2.4375rem;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .bkl-box-item-content-btns a {
    padding: 0.625rem 3rem;
  }
}
.bkl-box-item-content-btns a:hover {
  background-color: var(--orange);
}