.nibe-section {
  padding: 0 50px;
}
@media (max-width: 576px) {
  .nibe-section {
    padding: 0;
  }
}
.nibe-section .heading-section {
  background-color: var(--red-color);
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .nibe-section .heading-section {
    height: 50px;
  }
}
.nibe-section .heading-section .heading-title {
  font-family: var(--main-r);
  font-size: 50px;
  color: var(--white-color);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .nibe-section .heading-section .heading-title {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .nibe-section .heading-section .heading-title {
    font-size: 20px;
  }
}
.nibe-section .section-banner {
  height: 500px;
  position: relative;
}
@media (max-width: 1600px) {
  .nibe-section .section-banner {
    height: 70vh;
  }
}
@media (max-width: 1200px) {
  .nibe-section .section-banner {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .nibe-section .section-banner {
    height: 30vh;
  }
}
.nibe-section .cover {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%);
}
@media (max-width: 767px) {
  .nibe-section .cover {
    top: 32%;
  }
}
@media (max-width: 576px) {
  .nibe-section .cover {
    top: 2%;
  }
}
.nibe-section .cover .cover-title {
  font-family: var(--main-r);
  font-size: 60px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 60px;
  letter-spacing: 2px;
  padding-bottom: 30px;
}
@media (max-width: 1200px) {
  .nibe-section .cover .cover-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .nibe-section .cover .cover-title {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .nibe-section .cover .cover-title {
    font-size: 18px;
    line-height: 15px;
  }
}
.nibe-section .cover .cover-text {
  font-size: 20px;
  color: var(--white-color);
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .nibe-section .cover .cover-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.nibe-section .section-title {
  font-size: 25px;
  margin-top: 30px;
  text-transform: none;
  margin-bottom: 50px;
}
.nibe-section .section-sub-title {
  text-align: center;
  text-transform: uppercase;
  padding: 25px;
  font-family: var(--main-r);
}
.nibe-section .product {
  padding: 15px;
  background: var(--gray-400);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.nibe-section .product.left {
  text-align: initial;
}
.nibe-section .product .product-info {
  width: 100%;
}
.nibe-section .product .product-info .product-heading {
  font-family: var(--main-r);
  font-size: 20px;
  margin-bottom: 15px;
}
.nibe-section .product .product-info .product-title {
  font-size: 20px;
  font-family: var(--main-r);
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .nibe-section .product .product-info .product-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.nibe-section .product .product-info .product-price {
  background: var(--gray-600);
  padding: 7px;
  width: 150px;
  margin: auto;
}
.nibe-section .product .product-info .benefits-list {
  text-align: start;
}
.nibe-section .product .product-info .benefits-list li {
  position: relative;
}
.nibe-section .product .product-info .benefits-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  position: absolute;
  top: 8px;
  left: -10px;
}
.nibe-section .product .product-description {
  margin-bottom: 15px;
}
.nibe-section .product .product-link {
  margin-bottom: 15px;
}
