.news-page-banner {background: rgb(64 171 232 / 9%);padding: 100px 0;}
.news-page-banner h1 {
    max-width: 706px;
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 auto 20px;
    width: 100%;
}
.news-page-banner p {
    max-width: 560px;
    font-style: normal;
    font-weight: 400;
    font-size: 16.5px;
    line-height: 26px;
    text-align: center;
    color: #000000;
    margin: 0 auto;
    width: 100%;
}
.take-step-content {
    background: #40ABE8;
    border-radius: 25px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.take-step-content span {
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2px;
    color: #FFFFFF;
    display: block;
}

.take-step-content-inner a span {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.take-step-content-inner a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    margin: 10px 0 0;
}

.take-step-content-image {
    position: absolute;
    right: 0px;
    bottom: 0;
}

.take-step-content-image img {
    max-width: 610px;
    width: 100%;
}
.take-first-step {
    padding: 70px 0;
}
footer.site-footer.white {
    border-top: 9px solid #40ABE8;
    background: #FFF;
    padding: 50px 0;
}
img.desktop-hidden {
    display: none;
}
.news-blog-posts-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.news-blog-posts-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    overflow: hidden;
}

.news-blog-posts-items {
    box-sizing: border-box;
    background: #F9FAFB;
    border: 1px solid #DCDFE4;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
}

.news-blog-posts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.news-blog-posts-content {
    padding: 20px;
}

.news-blog-posts-content h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: #101828;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-blog-posts-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    border-top: 1px solid #DCDFE4;
    width: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: -0.02em;
    color: #40ABE8;
}
.news-blog-posts-items a:hover {
    text-decoration: none;
}
.news-blog-posts-items:hover .news-blog-posts-image img {
    transform: scale(1.3);
    transition: .3s;
}
.news-blog-posts-items:hover {
    background: #f0f7fd;
    transition: .3s;
}
.news-blog-posts {
    margin: 40px 0 0;
}
.news-blog-posts-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
}
.news-blog-posts-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.news-blog-posts-pagination ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #f9fafb;
    border: 1px solid #ddeaf8;
    color: #000;
    transition: .3s;
    font-size: 18px;
}

.news-blog-posts-pagination ul li a:hover {
    color: #fff;
    background: #3ea5df;
    border-color: #3ea5df;
    text-decoration: none;
    transition: .3s;
}

.news-blog-posts-pagination ul li a.prev-btn, .news-blog-posts-pagination ul li a.next-btn {
    width: 100px;
    background: #40abe8c7;
    color: #fff;
}

.news-blog-posts-pagination ul li a.prev-btn:hover, .news-blog-posts-pagination ul li a.next-btn:hover {
    background: #40abe8;
    border-color: #40abe8;
}
@media (max-width: 992px){
  .take-step-content span {
      font-size: 30px;
      line-height: 40px;
  }
  p, .send-resume {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  h2 {
    font-size: 20px !important;
    line-height: 35px !important;
  }
  .take-first-step {
      padding: 40px 0;
  }
  .news-blog-posts-main {
      grid-template-columns: 1fr;
  }
}
@media (max-width: 480px){
  .take-step-content {
      grid-template-columns: 1fr;
      padding: 20px;
  }
  .take-step-content-image {
      position: static;
      display: flex;
      align-items: center;
      justify-content: center;
      height: auto;
      margin-top: -80px;
      margin-bottom: -20px;
  }
  .take-step-content-inner {
      position: relative;
      z-index: 1;
  }
  .take-step-content-inner a {
      margin: 20px auto 20px;
  }
  .take-step-content span {
      text-align: center;
  }
  img.mobile-hidden {
      display: none;
  }
  img.desktop-hidden {
      display: block;
  }
  .news-page-banner h1 {
      font-size: 30px;
      line-height: 42px;
  }
  .news-page-banner {
      padding: 50px 0;
  }
}
