.home-opening {
  display: flex;
  flex-wrap: wrap;
  height: calc(90vh - 70px);
  width: 100%;
  position: relative;
}
.home-opening::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/images/home-banner.jpg");
  background-size: cover;
  background-position-x: 64%;
}
.home-opening::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.home-opening .opening-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 99;
  flex-direction: column;
  gap: 3rem;
}
.home-opening .opening-text h1 {
  color: #F2F2F2;
  font-size: 36px;
  text-align: center;
  width: 50%;
}
@media screen and (min-width: 1024px) {
  .home-opening .opening-text h1 {
    width: 85%;
  }
}
.home-opening .opening-text h4 {
  color: #F2F2F2;
  width: 85%;
  text-align: center;
}
.home-opening .opening-text .btn {
  height: 48px;
  padding: 0 24px;
  width: 40%;
  line-height: 48px;
}
@media screen and (min-width: 1024px) {
  .home-opening .opening-text .btn {
    width: 15%;
  }
}

.about-section {
  margin-top: 24px;
  max-width: 1026px;
}

.services-section {
  margin-top: 24px;
  max-width: 1290px;
}
@media screen and (min-width: 1024px) {
  .services-section {
    text-align: center;
    margin-top: 64px;
  }
}
.services-section .service-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.services-section .service-wrapper .service {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 calc(50% - 1rem);
  gap: 12px;
}
.services-section .service-wrapper .service .icon, .services-section .service-wrapper .service h4, .services-section .service-wrapper .service p {
  width: 100%;
  text-align: center;
  font-size: 14px;
}
.services-section .service-wrapper .service h4 {
  font-size: 16px;
}
.services-section .service-wrapper .service .icon {
  font-size: 2rem;
  color: #C30808;
}
.services-section .service-wrapper .service p {
  max-height: 75px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1024px) {
  .services-section .service-wrapper .service {
    flex: 0 0 calc(20% - 60px);
  }
}

.articles-section {
  margin-top: 24px;
  max-width: 1120px;
}
@media screen and (min-width: 1024px) {
  .articles-section {
    margin-top: 64px;
  }
}
.articles-section .article-slider {
  width: 90%;
  height: 100%;
}
.articles-section .article-slider .article-slide img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  transition: all 0.25s;
  margin-bottom: 10px;
}
.articles-section .article-slider .article-slide span {
  color: #999;
  font-size: 12px;
}
.articles-section .article-slider .article-slide h4 {
  font-size: 16px;
  margin-top: 10px;
}
.articles-section .article-slider .article-slide p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.articles-section .article-slider .article-slide.swiper-slide-next img, .articles-section .article-slider .article-slide.swiper-slide-prev img {
  height: 90px;
  transition: all 0.25s;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .articles-section .article-slider .pagination-holder {
    display: none !important;
  }
  .articles-section .article-slider .article-slide img {
    height: 180px !important;
  }
  .articles-section .article-slider .article-slide.swiper-slide-next img, .articles-section .article-slider .article-slide.swiper-slide-prev img {
    height: 180px !important;
    margin-top: 0 !important;
  }
}
.articles-section .swiper-nav-btn {
  top: 25%;
}
