.blog-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.blog-items .vertical-item {
  background: #ffffff;
}

#slider_preloader {
  background: #f5f5f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px;
  height: 100vh;
  max-height: 850px;
}

.featured-news {
  background: #2b333d;
}

.featured-news .special-heading,
.featured-news .btn.btn-square {
  color: #ffffff;
}

.display-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.bio-parallax.font-large p {
  font-size: 22px;
  line-height: 34px;
}

@media (max-width: 996px) {
  .blog-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.hero-banner {
  position: relative;
  line-height: normal;
  padding: 70px 50px;
}

.hero-banner .container {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-banner .hero-image {
  width: 500px;
  flex: 0 0 500px;
}

.hero-banner .hero-caption {
  z-index: 10;
}

.hero-banner .hero-caption .main-caption {
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-banner .hero-caption .mini-caption {
  font-size: 26px;
  max-width: 500px;
  line-height: 38px;
}

@media (max-width: 996px) {
  .hero-banner .hero-image {
    width: 300px;
    flex: 0 0 300px;
  }

  .hero-banner .hero-caption .main-caption {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-right: 20px;
  }

  .hero-banner .hero-caption .mini-caption {
    font-size: 20px;
    max-width: 500px;
    line-height: 28px;
  }
}

@media (max-width: 640px) {
  .hero-banner {
    padding: 20px;
  }

  .hero-banner .container {
    flex-direction: column;
  }

  .hero-banner .hero-caption {
    margin-bottom: 50px;
    text-align: center;
  }
}

.cta-section {
  background: #2b333d;
}

.cta-section .row {
  align-items: center;
}

.cta-section .special-heading,
.cta-section p {
  color: #ffffff;
}

.cta-section .actions-container {
  width: 400px;
  flex: 0 0 400px;
  background: #fedf67;
  border-radius: 20px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.cta-section .actions-container .btn-maincolor3 {
  width: 100%;
  margin-bottom: 40px;
}

.cta-section .actions-container .btn-maincolor3:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .cta-section .cta-text {
    text-align: center;
    margin-bottom: 50px;
  }

  .cta-section .cta-text .special-heading.underline::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-section .actions-container {
    width: 100%;
    flex: 0 0 100%;
  }
}

.testimonial-items {
  margin-top: 40px;
}