.resources-banner {
  background-color: #2d3945;
  height: 790px;
}

.resources-banner .service-banner-title h1 {
  line-height: 65px;
}

.resources-banner .service-banner-get-started p {
  max-width: 413px;
}

.resource-banner-img {
  min-height: 670px;
  max-height: 720px;
  position: relative;
  margin-top: 90px;
}

.recourse-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.global-case-study {
  margin-top: 500px;
  text-align: center;
}

.global-case-study > h3 {
  margin-top: 15px;
}

.case-study-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 35px;
}

.case-study-card {
  background-color: #fafafa;
  padding: 16px;
  border-radius: 16px;
}

.case-study-card img {
  width: 100%;
}

.case-study-card h4 {
  font-size: 18px;
  color: #2d3945;
  font-weight: 600;
  padding: 16px 0 8px 0;
}

.case-study-card p {
  font-size: 13px;
  font-weight: 500;
  color: #44505c;
}

.case-study-card a {
  background-color: #263238;
  padding: 12px 25px 12px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s ease;
}

.case-study-card a:hover {
  background-color: rgba(38, 50, 56, 0.84);
}

@media screen and (max-width: 992px) {
  .resources-banner img {
    margin-right: 0;
  }

  .resources-banner .service-banner-title h1 br {
    display: none;
  }

  .resource-banner-img {
    margin-top: 0;
  }

  .case-study-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .case-study-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .case-study-card {
    padding: 30px;
  }

  .case-study-card h4 {
    font-size: 16px;
  }

  .case-study-card p {
    font-size: 12px;
    color: rgba(68, 80, 92, 0.7);
  }

  .case-study-card a {
    padding: 10px 18px;
  }
}

@media screen and (max-width: 400px) {
  .case-study-card h4 {
    font-size: 20px;
  }

  .case-study-card p {
    font-size: 15px;
  }
}

@media screen and (max-width: 1400px) {
  .global-case-study {
    margin-top: 370px;
  }
}

@media screen and (max-width: 992px) {
  .global-case-study {
    margin-top: 260px;
  }
}

@media screen and (max-width: 768px) {
  .resources-banner {
    background-color: #2d3945;
    height: 670px;
  }

  .resource-banner-img {
    min-height: 332px !important;
  }
}

@media screen and (max-width: 480px) {
  .customers-banner-img > img {
    border-radius: 16px;
    top: 70px;
  }
}

@media screen and (max-width: 384px) {
  .resources-banner h1 {
    font-size: 22px;
  }
}

/*RECOURSES BLOG SECTIONS START*/
.recourses-section {
  margin-top: 250px;
  padding: 120px 0;
}

.recourse-blog-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.recourse-blog-header span {
  color: #44505c;
  font-size: 16px;
}

.recourse-blog-header h3 {
  max-width: 545px;
  margin-top: 15px;
}

.recourse-grid {
  display: flex;
  margin-top: 35px;
  gap: 30px;
}

.recourse-categories {
  padding: 24px;
  border-radius: 16px;
  background: #fafafa;
  height: max-content;
  flex: 0.3;
}

.recourse-category {
  padding-top: 16px;
  align-items: center;
}

.recourse-category p {
  font-size: 16px;
  color: #2d3945;
  padding-top: 2px;
  font-weight: 500;
}

.rightside {
  flex: 0.9;
}

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

.recourse-blog-item {
  cursor: pointer;
  transition: 0.4s ease;
}

.recourse-blog-item-image {
  height: 196px;
  overflow: hidden;
  border-radius: 16px;
}

.recourse-blog-item-image img {
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
}

.recourse-blog-item-header {
  display: flex;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
}

.recourse-blog-item-header h4 {
  color: #2d3945;
  font-size: 16px;
  white-space: nowrap;
  width:150px;
  overflow:hidden;		
  text-overflow: ellipsis;
  font-weight: 600;
}

.recourse-blog-item-header span {
  color: #2d3945;
  font-size: 13px;
}

.recourse-blog-item-header span.blue {
  color: #027aff;
}

.recourse-blog-item-header span.green {
  color: #2dbb46;
}

.recourse-blog-item-header span.orange {
  color: #eb9500;
}

.recourse-blog-item p {
  color: #44505c;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
    width: 100%;
}

.recourse-blog-item:hover {
  transform: scale(1.06);
}

.pagination {
  display: flex;
  margin-top: 45px;
  align-items: center;
  justify-content: center;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style-type: none;
}

.pagination ul li {
  color: #000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.4s ease;
}

.pagination ul li svg path {
  transition: 0.4s ease;
}

.pagination ul li:hover,
.pagination ul li.active {
  background-color: #2d3945;
  color: #fff;
}

.pagination ul li:hover svg path {
  stroke: #fff;
}

@media screen and (max-width: 992px) {
  .recourse-grid {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .recourses-section {
    margin-top: 100px;
  }
  .recourse-blog {
    grid-template-columns: repeat(2, 1fr);
  }

  .recourse-blog-item-image {
    height: 132px;
  }

  .recourse-blog-item-header h4 {
    font-size: 13px;
	max-width:134px;
  }

  .recourse-blog-item-header span {
    max-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .recourse-blog-item p {
    font-size: 13px;
  }

  .pagination {
    margin-top: 23px;
  }
	
	
}

/*RECOURSES BLOG SECTIONS END*/


.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}