
#press-releases-wrapper > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 960px;
    margin: auto;
}
.press-release-wrapper {
    width: 33%;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .press-release-wrapper {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .press-release-wrapper {
        width: 100%;
    }
}

.press-release {
    margin: 15px;
    margin-left: 2px;
    margin-right: 2px;
    padding: 15px;
    height: 100%;
    
}
.press-release-inner {
    height: 100%;
    box-shadow: 0px 0px 8px #0002;
}
.press-release-img {
    height: 180px;
    overflow: hidden;

}
.press-release-img img {
    width: 100%;
    height: 100%;
    filter: brightness(98%);
    object-fit: cover;
}
.press-release-title {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
}
.press-release-link a {
    font-family: 'Poppins';
    padding-left: 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #1A5EAF;
    text-transform: uppercase
}

.loader-row {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #3E9DD7;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #3E9DD7 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}