.content_container {
  display: block;
  width: 100%;
  font-size: 10px;
  padding-top: 20em;
}
.standard_section {
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.standard_section_wrapper {
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
  width: 152em;
  margin: 0 auto;
}
.banner_section .standard_section_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: linear-gradient(#671966, #FC9DD9);
  border-radius: 2em;
  padding: 3.4em 98em 3.4em 3.4em;
}
.banner_title {
  display: block;
  font-size: 4.2em;
  line-height: 1.3em;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: .5em;
}
.filter_section {
  margin-top: 6em;
}
.filter_section .standard_section_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.filter_container {
  min-width: 27em;
  position: relative;
  z-index: 3;
}
.filter_wrapper {
  display: block;
  width: 100%;
}
.select_box {
  width: 24.4em;
  position: relative;
}
.select_button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5.5em;
  border-radius: 1.6em;
  border: 2px solid #F9F7FF;
  font-size: 1em;
  cursor: pointer;
  transition: background-color .6s ease;
  background-color: #FFFFFF;
  outline: none;
  font-family: 'Raleway';
  padding-left: 2.4em;
  padding-right: 2em;
}
.select_button:hover {
  background-color: #BF9EFF;
}
.select_button_text {
  display: block;
  font-size: 1.6em;
  line-height: 1.2em;
  color: #3F4060;
  font-weight: 500;
  transition: color .6s ease;
}
.select_button:hover .select_button_text {
  color: #FFFFFF;
}
.select_button_arrow {
  display: block;
  width: .8em;
  transition: transform .6s ease;
}
.select_button_arrow svg {
  width: 100%;
}
.select_button:hover .select_button_arrow {
  transform: translateX(.4em);
}
.select_list {
  display: block;
  width: 30em;
  position: absolute;
  top: 0;
  left: calc(100% + 2em);
  list-style: none;
  border-radius: 1.6em;
  border: 2px solid #F9F7FF;
  font-size: 1em;
  cursor: pointer;
  transition: transform .6s ease, opacity .6s ease;
  pointer-events: none;
  opacity: 0;
  transform: translateY(2em);
  background-color: #FFFFFF;
  height: auto;
  overflow: hidden;
  z-index: 3;
}
.select_list_active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.select_item {
  display: block;
  width: 100%;
  height: 4em;
  margin-top: 1em;
}
.select_item:first-child {
  margin-top: 0;
}
.select_item_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: 'Raleway';
  font-size: 1em;
  transition: background-color .6s ease;
}
.select_item_button:hover {
  background-color: #BF9EFF;
}
.select_item_button span {
  display: block;
  font-size: 1.6em;
  line-height: 1.2em;
  color: #3F4060;
  font-weight: 500;
  transition: color .6s ease;
}
.select_item_button:hover span {
  color: #FFFFFF;
}
.filter_box {
  margin-top: 4em;
}
.filter_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  list-style: none;
}
.filter_item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 5.2em;
  margin-top: 1em;
  background-color: #F9F7FF;
  border-radius: 1.6em;
  transition: background-color .6s ease, transform .6s ease;
  padding: 0 2em;
  cursor: pointer;
}
.filter_item_active {
  border: 2px solid #39296A;
}
.filter_item:hover {
  transform: scale(1.05);
  background-color: #BF9EFF;
}
.filter_item:first-child {
  margin-top: 0;
}
.filter_item_image_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4em;
  height: 2.4em;
  margin-right: 1.2em;
}
.filter_item_image_container:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.filter_item[data-filter="Рак легкого"] .filter_item_image_container:before {
  background-image: url(/media/images/icon_mini_rak_legkogo_dark.original.png);
}
.filter_item[data-filter="Общие темы"] .filter_item_image_container:before {
  background-image: url(/media/images/icon_profilactika_dark.original.png);
}
.filter_item[data-filter="Геномное профилирование"] .filter_item_image_container:before {
  background-image: url(/media/images/icon_instruction_dark.original.png);
}
.filter_item_image {
  display: block;
  width: 100%;
}
.filter_item_name {
  display: block;
  font-size: 1.4em;
  line-height: 1.3em;
  color: #39296A;
  font-weight: 600;
  transition: color .6s ease;
}
.filter_item:hover .filter_item_name {
  color: #FFFFFF;
}
.files_container {
  width: 123em;
}
.files_list {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  row-gap: 1.8em;
}
.file_item {
  display: none;
  width: 40.2em;
  height: 37.2em;
  border-radius: 2.5em;
  background-color: #F9F4FF;
  transition: background-color .6s ease;
  padding: 2.7em 13.4em 3.2em 2.6em;
  position: relative;
}
.file_item_active {
  display: block;
}
.file_item:hover {
  background-color: #887EF1;
}
.file_name {
  display: block;
  font-size: 1.8em;
  line-height: 1.3em;
  font-weight: 600;
  color: #3F4060;
  transition: color .6s ease;
}
.file_item:hover .file_name {
  color: #FFFFFF;
}
.file_image_container {
  display: block;
  width: 13.8em;
  height: 15.5em;
  background-image: url(/media/images/icon_pdf_file.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 1.7em;
  bottom: 3.2em;
  z-index: 2;
  pointer-events: none;
}
.file_image_wrapper {
  display: block;
  width: 7.4em;
  height: 7.4em;
  overflow: hidden;
  position: absolute;
  top: 3.6em;
  left: 1.6em;
  background-color: #D8C7EB;
  border-radius: 50%;
}
.file_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.file_load_button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 3.2em;
  left: 2.6em;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none !important;
  color: #FFFFFF !important;
  transition: opacity .6s ease;
  opacity: 0;
}
.file_item:hover .file_load_button {
  opacity: 1;
}
.file_load_button:before {
  content: '';
  display: block;
  width: 3.4em;
  height: 3.4em;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url(/media/images/icon_pdf_load.svg);
  background-repeat: no-repeat;
  background-size: 1.4em auto;
  background-position: center;
  transition: transform .6s ease;
  margin-right: 1em;
  transform: translateY(-1em);
}
.file_item:hover .file_load_button:before {
  transform: none;
}
.file_item:hover .file_load_button:hover:before {
  transform: scale(1.05);
}
.file_load_button span {
  display: block;
  font-size: 1.8em;
  line-height: 1.3em;
  color: #FFFFFF;
  font-weight: 600;
  transition: transform .6s ease;
  transform: translateX(-1em);
}
.file_item:hover .file_load_button span {
  transform: none;
}

@media screen and (max-width: 1600px) {
  .content_container {
    font-size: .52vw;
  }
}

@media screen and (max-width: 769px) {
  .content_container {
    font-size: 1vw;
    padding-top: 20em;
  }
  .standard_section_wrapper {
    width: 100%;
    margin: 0;
  }
  .banner_section .standard_section_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: linear-gradient(to top, #671966, #FC9DD9);
    border-radius: 0 0 5em 5em;
    padding: 4em 4em 8em;
  }
  .banner_title {
    font-size: 6em;
    margin-top: 2.5em;
    text-align: center;
    width: 100%;
    padding: 0 2em;
    font-weight: 600;
  }
  .filter_section {
    margin-top: 6em;
    padding-bottom: 20em;
  }
  .filter_section .standard_section_wrapper {
    display: block;
  }
  .filter_container {
    min-width: 0;
    width: 100%;
  }
  .filter_wrapper {
    overflow: hidden;
    padding-bottom: 6em;
  }
  .select_box {
    width: 100%;
    position: relative;
  }
  .select_button {
    width: 94vw;
    height: 13em;
    border-radius: 4em;
    padding: 0 5em;
    margin: 0 auto;
  }
  .select_button_text {
    font-size: 4em;
  }
  .select_button:hover .select_button_text {
    color: #3F4060;
  }
  .select_button_arrow {
    width: 3em;
    transform: rotate(90deg);
  }
  .select_button:hover .select_button_arrow {
    transform: rotate(90deg);
  }
  .select_list {
    width: 94vw;
    top: 14em;
    left: 0;
    right: 0;
    border-radius: 4em;
    margin: 0 auto;
  }
  .select_button:hover {
    background-color: #FFFFFF;
  }
  .select_item {
    height: 10em;
    margin-top: 1em;
  }
  .select_item:first-child {
    margin-top: 0;
  }
  .select_item_button:hover {
    background-color: #FFFFFF;
  }
  .select_item_button span {
    font-size: 4.5em;
  }
  .select_item_button:hover span {
    color: #3F4060;
  }
  .filter_box {
    margin-top: 6em;
    width: 100%;
    overflow-y: auto;
  }
  .filter_list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 3em;
    gap: 0 2.5em;
  }
  .filter_item {
    height: 13em;
    margin-top: 0;
    background-color: #F9F7FF;
    border-radius: 4em;
    padding: 0 5em;
  }
  .filter_item_active {
    border: 2px solid #39296A;
  }
  .filter_item:hover {
    transform: none;
    background-color: #F9F7FF;
  }
  .filter_item_image_container {
    width: 6em;
    height: 6em;
    margin-right: 3em;
  }
  .filter_item_name {
    font-size: 4em;
    white-space: nowrap;
  }
  .filter_item:hover .filter_item_name {
    color: #39296A;
  }
  .files_container {
    width: 100%;
  }
  .files_list {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    row-gap: 2em;
    padding: 0 3em;
  }
  .file_item {
    width: 46em;
    height: 64em;
    border-radius: 4em;
    padding: 4em 4em 2em;
  }
  .file_item:hover {
    background-color: #F9F4FF;
  }
  .file_name {
    font-size: 3.2em;
  }
  .file_item:hover .file_name {
    color: #3F4060;
  }
  .file_image_container {
    width: 24em;
    height: 27em;
    right: 3em;
    bottom: 4em;
  }
  .file_image_wrapper {
    width: 13em;
    height: 13em;
    top: 6.6em;
    left: 3.5em;
  }
  .file_load_button {
    bottom: 3.2em;
    left: 2.6em;
    opacity: 1;
  }
  .file_load_button:before {
    width: 10em;
    height: 10em;
    border-radius: 50%;
    background-size: 4em auto;
    margin-right: 1em;
    transform: none;
    border: 2px solid #887EF1;
  }
  .file_item:hover .file_load_button:hover:before {
    transform: none;
  }
  .file_load_button span {
    display: none;
  }
}