.clinic-awards {
    width: 100%;
    padding: 50px 15px 50px;
    background-image: url(/img/fs-background.jpg)
}

.awards__container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.awards__header {
    font-size: 38px;
    line-height: 45px;
    color: #FFF;
    margin: 0 0 7px;
    text-align: center;
}

.awards__header span {
    font-weight: 600;
    color: #c4e7f4;
}

.awards__subheader {
    display: flex;
    color: #FFF;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.awards__block-second {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 25px;
    column-gap: 10px;
}

.awards__image {
    width: 275px;
    cursor: pointer;
    box-shadow: #222d38 0px 0px 20px 0px;
}

.awards-slider-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
  }

  .popup-awards-content {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 40px;
    border-radius: 5px;
    height: 100%;
    width: 100%;
    justify-content: center;
  }

  .popup-awards-image {
    /* position: relative;
    height: 90%;
    width: 90%; */
    object-fit: contain;
    box-shadow: #ccc 0px 0px 20px 0px;
  }

  .close-awards {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
  }

  .prev-awards,
  .next-awards {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
  }

  .prev-awards {
    left: 10px;
  }

  .next-awards {
    right: 10px;
  }

@media screen and (max-width: 767px) {
    .awards__header {
        font-size: 28px;
        line-height: 120%;
    }
    .awards__subheader {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .prev-awards,
    .next-awards {
        padding: 5px 5px;
    }
}

@media screen and (max-width: 424px) {
    .awards__header {
        font-size: 24px;
    }
}