#joboffer-blog .load {
    display: block;
    align-content: space-around;
    position: absolute;
    margin-top: 5%;
 }
 
 #joboffer-blog .load .loader {
    display: inline-block;
    font-size: 24px;
    font-family: Arial, sans-serif;
    font-weight: bold;
 }
 
 #joboffer-blog .load .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 3px;
    opacity: 0;
    animation: fade 1.5s infinite;
 }
 
 #joboffer-blog .load .dot:nth-child(2) {
    animation-delay: 0.5s;
 }
 
 #joboffer-blog .load .dot:nth-child(3) {
    animation-delay: 1s;
 }
 
 @keyframes fade {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
 }

#joboffer-blog {
    position: relative;
    display: flex;
    border-radius: 202px 202px 0 0;
    height: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
  }
  #joboffer-blog .joboffer-blog-background {
    opacity: 0.3;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    background: radial-gradient(circle, #82ccc0 0%, #4f75aa 100%);
    border-radius: 202px 202px 0 0;
  }
  #joboffer-blog .joboffer-blog-cards {
     position: relative;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
     width: 90%;
     margin: 45px auto;
     gap: 20px;
     justify-items: center;
  }
  #joboffer-blog .joboffer-blog-cards .joboffer-blog-card {
     height: 450px;
     width: 256px;
  }
  #joboffer-blog .joboffer-blog-cards .joboffer-blog-card .joboffer-blog-img {
     width: 240px;
     position: absolute;
     height: 270px;
     z-index: 1;
  }
  #joboffer-blog .joboffer-blog-cards .joboffer-blog-card .joboffer-blog-wawe {
     position: relative;
     bottom: 0;
     z-index: 5;
  }
  .joboffer-blog-card h4 {
     position: relative;
     bottom: 220px;
     z-index: 10;
     margin-left: 20px;
     width: 220px;
     min-height: 61px;
     max-height: 61px;
     overflow: hidden;
     text-overflow: ellipsis;
  }
  #joboffer-blog .joboffer-blog-cards .joboffer-blog-card .joboffer-blog-description {
     position: relative;
     bottom: 250px;
     margin-left: 20px;
     z-index: 10;
     width: 210px;
     min-height: 80px;
     max-height: 80px;
  }
  #joboffer-blog .joboffer-blog-cards .joboffer-blog-card .joboffer-blog-arrow {
     position: relative;
     bottom: 265px;
     margin-left: 20px;
     z-index: 10;
  }
  #joboffer-blog a.joboffer-blog-more {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     width: 200px;
     padding: 10px 0;
     background: linear-gradient(0deg, var(--background-joboffer-2) 0%, var(--background-joboffer-1) 75%);
     border-radius: 36px;
     color: white;
     font-size: 20px;
     text-align: center;
     text-decoration: none;
  }
  #joboffer-blog .joboffer-blog-cards .joboffer-blog-card .joboffer-blog-arrow .joboffer-blog-arrow-img {
     height: 15px;
     width: auto;
  }
  @media (max-width: 1000px) {
    #joboffer-blog {
        min-height: 1500px;
    }
  
    #joboffer-blog .joboffer-blog-background {
        height: 100%;
    }
  
    #joboffer-blog .joboffer-blog-cards {
        grid-template-columns: 1fr;
    }
  }