.article-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
  font-family: "Laila";
  padding: 2rem 1rem;
}

.article-wrapper > div {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem;
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
  border-radius: 4px;
  color: #000;
}

.article-wrapper > div.animate {
  -webkit-animation: 1s fade-in-up ease;
          animation: 1s fade-in-up ease;
}

.article-wrapper > div h3 {
  font: 20px "Laila Bold";
}

.article-wrapper > div p {
  padding: 1rem 0;
  font: 16px "Laila";
}

.article-wrapper > div a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  border-radius: 5px;
  font: 16px "Laila Bold";
}

.article-wrapper > div a:hover {
  opacity: 0.8;
}

.article-wrapper img {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2rem;
  display: block;
}

.single-banner {
  background: linear-gradient(45deg, #103441, #4689a3);
  padding: 6rem 2rem;
  font-family: "Laila Bold";
  color: #fff;
  border-top-right-radius: 3rem;
  border-bottom-left-radius: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.single-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, #000, #4689a39e);
}

.single-banner h1 {
  font-size: 35px;
  position: relative;
  z-index: 9;
}

.single-banner p {
  font-size: 20px;
  position: relative;
  z-index: 9;
}

.single-content {
  font: 20px "Laila";
  color: #000;
}

.video video {
  height: 450px;
  width: 100%;
}

.video h3 {
  font: 35px "Laila Bold";
  margin-bottom: 2rem;
}

.text-center {
  text-align: center !important;
}

h3.title {
  font: 35px "Laila Bold";
  margin: 2rem 0;
}

.latest-article {
  background: #fff;
  padding-bottom: 2rem;
  color: #000;
}

.related-article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.related-article > div {
  padding: 2rem;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
}

.related-article h5 {
  font: 25px "Laila Bold";
}

.related-article p {
  font: 16px "Laila";
}

.related-article img {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 2rem;
}

.related-article a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  margin-top: 1rem;
  font-family: "Laila Bold";
}

.related-article a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .article-wrapper {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .related-article {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  body .gallery-row {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  body .gallery-row img {
    height: 55vw;
  }
  .article-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .related-article {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .related-article img {
    height: 55vw;
  }
  .related-article h5 {
    font-size: 7vw;
  }
  .related-article p, .related-article a {
    font-size: 4vw;
  }
}
/*# sourceMappingURL=articles.css.map */