.nclp-banner {
  margin-top: 36px;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem 0.5rem;
  padding-left: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.nclp-div__1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.nclp-div__1 img {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.nclp-div__2 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.nclp-div__2__inner {
  padding-bottom: 1rem;
}

.nclp-div__2 h5 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: #dd67a4;
}

.nclp-div__2 p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.nclp-div__3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nclp-div__3 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-width: 148px;
  width: fit-content;
  max-width: 320px;
  padding: 0.75rem 2rem;
  border: 2px solid #3cb9be;
  border-radius: 12px;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulseGlow 1.5s ease-in-out 1;
}

.nclp-div__3 i {
  transition: transform 0.3s ease;
}

.nclp-div__3 a:hover {
  background-color: #3cb9be;
  border-color: #3cb9be;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 185, 190, 0.25);
}

.nclp-div__3 a:hover i {
  transform: translateX(5px);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(60, 185, 190, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(60, 185, 190, 0.5);
  }

  100% {
    box-shadow: 0 0 0 rgba(60, 185, 190, 0);
  }
}

.nclp-div__3 i {
  font-size: 10px;
}

.nclp-div__3 p {
  margin: 0.5rem 0 0;
  color: #f8ad0d;
  font-size: 1rem;
}

/* Tablet */
@media (min-width: 768px) {
  .nclp-banner {
    margin-top: 100px;
  }
  .nclp-div__1 img {
    max-width: 220px;
  }

  .nclp-div__2 h5 {
    font-size: 4rem;
  }

  .nclp-div__2 p {
    font-size: 1.8rem;
  }

  .nclp-div__3 a {
    font-size: 1.8rem;
    padding: 0.75rem 2rem;
    width: auto;
  }

  .nclp-div__3 p {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .nclp-banner {
    margin-top: 83px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .nclp-banner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0;
  }

  .nclp-div__1 {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nclp-div__1 img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
  }

  .nclp-div__2__inner {
    padding-right: 40px;
    padding-bottom: 0;
    border-right: 3px solid #cdd61f;
  }

  .nclp-div__2 h5 {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .nclp-div__2 p {
    font-size: clamp(1rem, 2.5vw, 2rem);
  }

  .nclp-div__3 {
    width: auto;
    flex-shrink: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nclp-div__3 a {
    justify-content: space-between;
    gap: 1rem;
    font-size: 2.5rem;
    padding: 0.75rem 3.5rem;
  }

  .nclp-div__3 i {
    font-size: 14px;
    margin-top: 4px;
  }

  .nclp-div__3 p {
    font-size: 1.5rem;
  }
}

/* Large desktop */
@media (min-width: 1436px) {
  .nclp-div__1 img {
    max-height: 288px;
  }

  .nclp-div__2__inner {
    padding-right: 60px;
  }

  .nclp-div__3 {
    padding-left: 60px;
  }

  .nclp-div__2 h5 {
    font-size: clamp(2rem, 6vw, 6.5rem);
    letter-spacing: 1px;
  }

  .nclp-div__2 p {
    font-size: clamp(1rem, 2.5vw, 3rem);
  }

  .nclp-div__3 a {
    font-size: 3rem;
  }

  .nclp-div__3 p {
    font-size: 2rem;
  }

  .nclp-div__3 i {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navbar-custom .navbar-brand > img {
    height: 60px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-custom .nav li a {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .navbar-custom {
    padding: 25px 0;
  }

  .navbar-custom .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
  }

  .navbar-custom .navbar-brand > img {
    height: 60px !important;
    width: auto;
    margin: -5px 0 0 0 !important;
    padding: 0 !important;
  }
}
