.archive__main {
  padding: 90px 0 177px;
}

.section:not(:last-child) {
  margin-bottom: 120px;
}

/* Programm styles */

.section.programm {
  margin-bottom: 0;
}

.programm__container {
  justify-content: flex-start;
  align-items: flex-start;
}

.programm__title {
  margin-right: 40px;
  color: var(--blackText);
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

.programm__sub-title {
  color: var(--blackText);
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
}

/* Thanks styles */
.thanks .section__title {
  margin-bottom: 30px;
}

.thanks__body {
  width: 960px;
}

.thanks__image.thanks__body_img {
  display: none;
}

.thanks__text .paragraph:not(:last-child) {
  margin-bottom: 15px;
}

.thanks__image {
  min-width: 360px;
  height: 400px;
  margin-left: 15px;
  border-radius: 6px;
}

/* Presentation styles */

.presentation__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 85px;
}

.presentation__item {
  display: none;
  min-height: 130px;
  padding: 30px 40px 30px 60px;
  border-radius: 6px;
  background-color: var(--mainGrey);
  background-image: url(../img/archive/presentation/presentBack.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}

.presentation__title {
  color: var(--blackText);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.presentation__btn_container {
  min-width: 50px;
  height: 50px;
  margin-left: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.presentation__btn_container a {
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url(../img/archive/presentation/download.png);
  background-repeat: no-repeat;
  background-position: center 40%;
}

/* Massmedia styles */

.massmedia__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 85px;
}

.massmedia__item {
  display: none;
  min-height: 270px;
  padding: 35px;
  border-radius: 6px;
  background-color: var(--mainBlue);
}

.massmedia__photo {
  min-height: 200px;
  min-width: 200px;
  margin-right: 35px;
  border-radius: 3px;
  overflow: hidden;
}

.massmedia__data {
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}

.massmedia__data * {
  color: var(--white);
}

.massmedia__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.massmedia__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.massmedia__add-info {
  width: 100%;
}

.massmedia__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  transition: .3s;
}

.massmedia__link:hover {
  color: var(--secondaryBlue);
}

.programm__btn_container .btn {
  text-align: center;
}

@media (max-width: 1200px) {
  .massmedia__item {
    flex-direction: column;
    justify-content: flex-start;
  }

  .massmedia__photo {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .programm__container {
    flex-direction: column;
  }

  .programm__title {
    margin-right: 0;
  }

  .thanks__image {
    min-width: 280px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .archive__main {
    padding: 50px 0 70px 0;
  }

  .section:not(:last-child) {
    margin-bottom: 70px;
  }

  .programm__title {
    margin-right: 0;
  }

  .programm__sub-title {
    font-size: 26px;
    line-height: 32px;
  }

  .thanks__image.thanks__body_img {
    display: block;
    width: 100%;
    min-width: auto;
    height: 350px;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .thanks__image {
    display: none;
  }

  .presentation__body {
    grid-template-columns: 100%;
    margin-bottom: 40px;
  }

  .massmedia__body {
    grid-template-columns: 100%;
    margin-bottom: 40px;
  }

  .massmedia__photo {
    display: none;
  }
}

@media (max-width: 568px) {
  .presentation__item {
    padding: 15px 20px 15px 20px;
  }

  .presentation__btn_container {
    min-width: 40px;
    height: 40px;
  }

  .presentation__btn_container a {
    background-size: 50% 50%;
  }

  .massmedia__item {
    padding: 20px 15px;
  }

  .massmedia__name {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .massmedia__title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 20px;
  }

  .massmedia__add-info {
    margin-top: 10px;
  }
}