.bkn {
  position: relative;
  overflow: hidden;
}
.bkn h2 {
  font-size: 2.8125rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 5.8125rem;
  display: block;
  position: relative;
}
.bkn h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 1px;
  margin: 0 auto;
  background-color: var(--teal);
  bottom: 0;
  left: 0;
  right: 0;
}
.bkn-box {
  row-gap: 2.5rem;
}
.bkn-box-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2.5rem;
  padding: 1rem;
}
@media (min-width: 992px) {
  .bkn-box-item {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .bkn-box-item {
    gap: 4.375rem;
    padding: 1.25rem;
  }
}
.bkn-box-item-img {
  position: relative;
}
@media (min-width: 768px) {
  .bkn-box-item-img {
    -ms-flex: 0 0 12.75rem;
        flex: 0 0 12.75rem;
  }
}
.bkn-box-item-img img {
  width: 100%;
  object-fit: cover;
  transition: all 6s ease;
}
.bkn-box-item-content {
  position: relative;
}
.bkn-box-item-content h3 {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.625rem;
  color: var(--teal);
}
.bkn-box-item-content span {
  position: relative;
  display: block;
  font-size: 1rem;
  font-size: 800;
  color: var(--teal);
  margin-bottom: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.bkn-box-item-content span::after {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: var(--teal);
  bottom: 0;
  left: 0;
}
.bkn-box-item-content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.bkn-box-item-notify {
  width: 100%;
  max-width: 28.125rem;
  padding: 3rem 2rem;
  border-radius: 5px;
}
.bkn-box-item-notify-btn {
  display: inline-block;
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0.625rem 2.625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--teal);
  border-radius: 2.4375rem;
  transition: all 0.3s ease;
}
.bkn-box-item-notify-btn:hover {
  background-color: var(--orange);
}
.bkn-box-item-notify-close {
  color: var(--black);
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  position: absolute;
  padding: 0;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}
.bkn-box-item-notify-close:hover {
  color: var(--orange);
}