/* Style for the resources container to create 3-column layout */
.resources {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  

}

/* Styling for each individual card */
.resources .card {
  width: 413px; 
      
    overflow: hidden;
    background-color: #EEEEEE;
  border-radius: 5px;
  padding-bottom: 60px;
  position: relative;
}

/* Ensure the image takes full width of the card */
.resources .card img {
  width: 413px;
  height: 200px !important;
}

/* Styling for the content box */
.resources .box {
  padding: 20px;
}

/* Styling for the subtext (post type) */
.resources .sub {
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;

  
}

/* Styling for the title of each post */
.resources .title {
  font-size: 36px;
  line-height: 45px;    
  margin-bottom: 15px;
  color:#000000;
  font-family: 'syne';
}

/* Styling for the description (excerpt) */
.resources .description {
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 20px;

}

/* Styling for the button container */
.resources .btnbx {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  position: absolute; 
  bottom: 0; 
  width: 100%;
}

/* Styling for the button */
.resources .btnbx a {
  display: inline-block;
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  background-color: #BFE56E;
  color: #033f2d;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  
  
}

/* Button hover effect */
.resources .btnbx a:hover {
  background-color: #EEEEEE;
  color: #033f2d;
  box-shadow: inset 0 0 0 2px #033f2d;
}



.see-more-btn {

      
  text-align: center;
  margin-top: 40px;
}

.see-more-btn a {
  text-decoration: none;
  color: #000000;
  font-size: 28px;
  line-height:35px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.see-more-icon {
  width: 35px;
  height: 19px;
  transition: transform 0.3s ease;
}

.see-more-btn a:hover .see-more-icon {
  transform: translateY(4px);
}




@media (max-width: 575px) {
  .resources .title {
    font-size: 30px;
    line-height: 37px;    
    
  }
}






.resources_filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
  margin: 100px 0;
  position: relative;
 
}



.resources_filters .filter-label {
  margin-bottom: 6px;
  display: block;
}

.resources_filters details {
  border-radius: 4px;
  background: #EEEEEE;
  position: relative;
  padding: 0;
}

.resources_filters summary {
  color: #000000;
  padding: 0 10px;
  cursor: pointer;
  width: 280px;
  height: 35px;
  list-style: none;
  user-select: none;
  font-size: 16px;
  background-color: #EEEEEE;
  border-radius: 4px;

  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.resources_filters summary::-webkit-details-marker {
  display: none;
}

.resources_filters summary span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
}

.resources_filters details[open] .options {
  background-color: #ffffff;
  margin-top: 5px;
  z-index: 10;
  position: absolute;
  width: 280px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  left: 0;
  
  overflow-y: auto;
  overflow-x: hidden;
}

.resources_filters .options {
  gap: 10px;
  padding: 15px;
  border-top: 1px solid #eee;
  padding-bottom: 0 !important;
}

.resources_filters label {
  display: flex ;
  align-items: center;
  gap: 10px;

  font-family: 'syne';
 
  margin-bottom: 15px;
  font-size: 16px;
}

@media (max-width: 1199px) {
  
  .resources_filters {    
    gap: 50px;    
  }

  

}


@media (max-width: 991px) {
  
  .resources_filters {    
    gap: 50px;    
  }

  .resources_filters summary {
    width: 200px;    
  }
  .resources_filters details[open] .options {    
    width: 200px;    
  }

}

@media (max-width: 767px) {

  .resources_filters {
    
    margin-top: 120px;
    
  }
  
  .resources_filters {    
    gap: 20px;    
  }
  

  .resources_filters summary {
    width: 165px;    
    font-size: 14px;
  }

  
  .resources_filters details[open] .options {    
    width: 165px;    
  }

}

@media (max-width: 575px) {
  
  .resources_filters {    
    gap: 30px;    
  }

  .resources_filters summary {
    width: 200px;    
  }
  .resources_filters details[open] .options {    
    width: 200px;    
  }

 

}


.use-cases {
      
      font-family: 'Syne', sans-serif;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .use-cases .card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 633px;      
      border-radius: 25px;
      
      padding: 15px 15px 15px 40px ;     
    }

    .use-cases .type {
      font-size: 20px;
      line-height: 27px;
      text-transform: uppercase;
      color: white;      
    }

    .use-cases .title {
      font-size: 28px;
      line-height: 35px;
      margin-top: 10px;
      
    }

    .use-cases .cases1 {
      background-color: #033f2d;
      color: #bfe56e;
    }

    .use-cases .cases2 {
      background-color: #bfe56e;
      color: #033f2d;
    }

    .use-cases .cases3 {
      background-color: #a6deee;
      color: #00316c;
    }

    .use-cases .icon-placeholder {
      
      display: flex;
      align-items: center;
      justify-content: center;
      flex-basis: auto;
      
    }

    .use-cases .text{
      flex:1;
    }

    

    .use-cases .icon-placeholder img {
      width: 100px !important;
      box-sizing: border-box;
      
    }


    @media (max-width: 767px) {
      .use-cases .card {
        
        width: 500px;
        height: 170px;
          
      }

      .use-cases .card {
        
        padding: 15px 15px 15px 15px ;    
      }

      .use-cases .title {
        font-size: 25px;
        line-height: 32px;
        margin-top: 10px;
        
      }


      
    }
	
    @media (max-width: 575px) {
      .use-cases .card {      
        width: 100%;     
      }

      .use-cases .card {
        
        padding: 15px 15px 15px 15px ;    
      }

      .use-cases .title {
        font-size: 20px;
        line-height: 27px;
        margin-top: 10px;
        
      }

      .use-cases .icon-placeholder img {
        width: 80px !important;       
        
      }


      
    }
	
	
	
	.featured-resources {     
      display: flex;
      justify-content: center;         
      flex-wrap: wrap;
      gap: 20px;
      
    }

    .featured-resources .card {
    border-radius: 5px;
      width: 413px;      
      overflow: hidden;
      background-color: #033f2d;
      position: relative;
      padding-bottom: 80px;
    }

    .featured-resources .card img {
      width: 100%;
      height: auto;
    }

    .featured-resources .box {
      padding: 20px;
    }

    .featured-resources .sub {
      font-size: 18px;
      line-height: 25px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 10px;
      
    }

    .featured-resources .title a{
      font-family: 'syne';
      font-size: 36px;
      line-height: 45px;
      color: #ffffff;
          

      
    }

    .featured-resources .description {
      font-size: 20px;
      line-height: 27px;
      color: #ffffff;
      margin-top: 20px;
    }

    .featured-resources .btnbx {
      display: flex;
      justify-content: center;
      padding: 20px;
      position: absolute;
      bottom: 0; 
      width: 100%;     
     
    }

    .featured-resources .btnbx a {
      font-size: 16px;
      line-height: 23px;
      font-weight: 600;
      background-color: #BFE56E;
      color: #033f2d;
      padding: 15px 32px;
      border-radius: 50px;
      text-decoration: none;

      
      
    }

    .featured-resources .btnbx a:hover {
      background-color: #033f2d;
      color: #BFE56E;
      box-shadow: inset 0 0 0 2px #BFE56E;
    }


    