.awards__section{
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #FFFFFF;
}

.awards__content{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0px;
  gap: 40px;
  justify-content: center;
}

.awards-sub-header{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #0070B9;
  margin-bottom: 12px;
}

.awards-header,
.awards-header h2{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  color: #5E5E5E;
  margin-bottom: 12px;
}

.awards-header h3{
  font-size: 36px;
}

.awards-header h4{
  font-size: 32px;
}

.awards-header h5{
  font-size: 28px;
}

.awards-text-content p{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #5E5E5E;
}

.awards__item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 0px;
  gap: 23px;
  width: 180px;
  background: #FFFFFF;
  border-radius: 20px;
}

.mobile-hidden-item{
  /* display: block; */
}

.mobile-hidden-item-button{
  display: none;
}

@media (max-width: 768px) { 
  .awards__item {
    padding: 16px 0px;
  }
}

@media (max-width: 580px) { 
  .awards__content {
    gap:50px;
    padding-top: 40px;
  }

  .awards__item.mobile-hidden-item{
    display: none;
  }

  .awards__content.show-all .awards__item.mobile-hidden-item{
    display: flex;
  }

  .mobile-hidden-item-button{    
    display: block;
  }
}

.awards-logo-wrapper{
  width: 100%;
  height: 150px;
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}

.awards-logo-wrapper img{
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: auto;
  max-height: 110px;
}

.awards-info{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
}

.awards__container .mobile-hidden-item-button .button--link::after{
  transform: rotate(90deg);
}

.awards__container .mobile-hidden-item-button .opened.button--link::after {
  transform: rotate(-90deg);
}