a {
  text-decoration: none;
}

/* Banner */
.banner-container {
  position: relative;
  /* height: 100vh; */
}
.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-container .banner-text-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner-text-content-container .banner-date,
.banner-text-content-container .banner-expiry-date {
  font-weight: 400;
  font-size: 13px;
  color: var(--white);
}
.banner-text-content-container h1 {
  font-weight: 700;
  font-size: 3.5vw;
  color: var(--white);
}
.banner-text-content-container h3 {
  font-size: 2.5vw;
  color: var(--white);
}
.banner-text-content-container .banner-description {
  width: 65%;
  color: var(--white);
}
.banner-text-content-container .banner-link {
  border: 1px solid var(--gray);
}
.banner-text-content-container .banner-link:hover {
  background: var(--gray) !important;
  color: var(--white) !important;
  border: none;
}
@media (max-width: 991px) {
  /* .banner-container {
    height: auto !important;
  } */
  .banner-container img {
    max-height: 628px;
    height: 628px;
  }
  .banner-container .banner-text-content-container {
    max-height: 628px;
    height: 628px;
    width: 100%;
  }
  .banner-text-content-container h1 {
    font-size: 40px;
  }
  .banner-text-content-container h3 {
    font-size: 24px;
  }
  .banner-text-content-container .banner-description {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .banner-container img {
    max-height: 653px;
    height: 653px;
  }
  .banner-container .banner-text-content-container {
    max-height: 653px;
    height: 653px;
    align-items: end;
  }
  .banner-text-content-container h1 {
    font-size: 30px;
  }
  .banner-text-content-container h3 {
    font-size: 22px;
  }
  .banner-text-content-container .banner-text-content {
   margin-bottom: 1.1rem;
  }
}
@media (max-width: 420px) {
  /* .banner-container {
    height: 100% !important;
  } */
  .banner-container img {
    object-fit: fill;
  }
  .banner-container .banner-text-content-container {
    /* max-height: 100% !important;
    height: 100% !important; */
    padding: 0 1rem 0 1.5rem !important;
  }
}

/* Main Content */
.news-article-main-section h2 {
  font-size: 43.69px;
  font-weight: 700;
  color: #333333;
  text-align: center;
}
.news-article-main-section h3 {
  font-size: 24px;
  font-weight: 400;
  color: #333333;
  text-align: center;
}
.news-article-main-section img {
  width: 100%;
  object-fit: cover;
}
.news-article-main-section .main-content-description .mainContentDescription,
.news-article-main-section .main-content-intro-text ul li {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
}
@media (max-width: 575px) {
  .news-article-main-section h2 {
    font-size: 36px;
  } 
  .news-article-main-section h3 {
    font-size: 20px;
  }
  .news-article-main-section .main-content-intro-text ul li,
  .news-article-main-section .main-content-description .mainContentDescription
  {
    font-size: 14px !important;
  }
  .news-article-main-section .main-content-button {
    flex-direction: column;
    text-align: center;
  }
}

/* Preview Card Block */
.preview-card-block {
  background: #F5F5F5;
}
.preview-card-block .firs-block-content h2 {
  font-size: 43.69px;
  font-weight: 700;
  text-align: center;
  color: #333333;
}
.preview-card-block .firs-block-content h3 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: #333333;
}
.preview-card-block .second-block-content .preview-card-element img {
  width: 100%;
  object-fit: cover; 
}
.preview-card-block .second-block-content .preview-card-element .card-date {
  font-size: 16px;
  color: #767676;
}
.preview-card-block .second-block-content .preview-card-element h2 {
  font-weight: 700;
  font-size: 36px;
  color:#333333;
}
.second-block-content .preview-card-element .card-link {
  font-size: 18px;
  color: var(--red);
  font-weight: 700;
}
.preview-card-block .second-block-content .preview-card-element .card-expiry-date {
  font-size: 12px;
  font-weight: 400;
  color:#767676;
}
@media (max-width: 991px) {
  .preview-card-block .second-block-content .preview-card-element {
    text-align: center !important;
    margin-bottom: 2rem;
  }
}
@media (max-width: 757px) {
  .preview-card-block .firs-block-content h2 {
    font-size: 36px;
  } 
  .preview-card-block .firs-block-content h3 {
    font-size: 18px;
  }
  .preview-card-block .second-block-content .preview-card-element {
    padding-bottom: 3rem;
  }
  .preview-card-block .second-block-content .preview-card-element h2 {
    font-size: 26px;
  }
  .preview-card-block .second-block-content .preview-card-element .card-link {
    font-size: 16px;
  }
}