.load-more-container {
    min-height: 500px;
    margin: 20px auto;
    position: relative;
  }

  .load-more-container ul {
    list-style-type: none;
    padding: 0;
  }
  .load-more-container ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .load-more-container ul li {
    width: calc(50% - 10px);
    margin: 10px 5px 0;
    color: #fff;
    float: left;
    border-radius: 15px;
  }
  .load-more-container ul li:nth-child(1n + 5) {
    max-height: 0;
    opacity: 0;
    transition: 0.1s ease-in;
  }

  .load-more-container .load-more-btn {
    width: 150px;
    line-height: 40px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    background: #3E1A6F;
    color: #fff;
    cursor: pointer;
    text-align: center;
  }

  .load-more-container .load-more-btn:hover {
    background: #282828;
  }

  .load-more-container .load-more-btn .loaded {
    display: none;
  }

  #load-more {
    display: none;
  }
  #load-more:checked ~ ul li:nth-child(1n + 5) {
    max-height: 999px;
    opacity: 1;
    transition: 0.2s ease-in;
  }
  #load-more:checked ~ .load-more-btn .loaded {
    display: block;
  }
  #load-more:checked ~ .load-more-btn .unloaded {
    display: none;
  }




/* Success Stories */

.research-card {
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 900px;
    height: 300px;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
}


.color-overlay {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, #161616 60%, #0e0e0e 100%);
}

.research-content {
    width: 40%;
    display: block;
    position: relative;
    float: right;
    text-align: left;
    margin-right: 20px;

}

.researchReadMore{
    text-decoration: underline;
    text-decoration-color: #ffc107;
    text-decoration-thickness:2px;
    text-align: left;
    margin-top: 20px;
}

.nameDate{
    justify-content: space-between;
}

.research-date{
    font-weight: 300;
    opacity: 30%;
}


@media (max-width: 1000px) {
    .research-content {
        width: 60%;
        max-width: 95%;
        padding: 10px 0;
    }

    .research-content .success-title{
        font-size: 12px ;
    }
}

@media (max-width: 800px) {
    .research-card {
        width: 95%;
        max-width: 95%;
    }
    .research-content h4{
        font-size: 22px ;
    }
}

@media (max-width: 600px) {

    .research-card{
        background-position: 50% 0%;
        background-size: cover;
        height: auto;
    }

    .color-overlay {
        background: linear-gradient(to bottom, rgba(42, 159, 255, 0.2) 0%, #212120 60%, #212120 100%);
    }

    .research-content {
        margin-top: 15em;
        width: 100%;
    }

}





