.department {
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.department__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 116%;
  font-weight: 400;
}

.department__title a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--color-blue-200);
  position: relative;
  text-decoration: none;
  transition: color 0.5s ease;
}

.department__title a:hover {
  color: var(--color-blue-100);
}

.department__title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.5s ease;
}

.department__title a:hover::after {
  width: 100%;
}

.department__title a svg {
  flex-shrink: 0;
}

.department__description {
  line-height: 140%;
  color: var(--color-grey-300);
}

.department__description a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue-100);
  transition: 0.2s ease;
}

.department__description a:hover {
  color: var(--color-blue-200);
}

.department__description a svg {
  transition: 0.2s ease;
  width: 20px;
}

.department__description a:hover svg {
  fill: var(--color-blue-200);
}

.department__main {
  width: 100%;
  overflow: hidden;
}

.department-list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.department-list._small {
  width: 100%;
}

.department-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.department-list._small .department-list__inner {
  min-width: 100%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.department-list__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.department-list__link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 400;
  line-height: 166%;
  color: var(--color-grey-100);
}

.department-list._logos .department-list__link {
  display: block;
  max-height: 60px;
}

html:not(.v-mobile) .department-list__link:hover,
.department-list__link:focus-visible {
  color: var(--color-blue-100);
}

.department-list._logos .department-list__link img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: contain;
  transition: 0.2s;
}

.department-list._logos .department-list__link:hover img {
  opacity: 0.8;
}

@media (min-width: 1200px) {
  .department {
    margin-top: 5rem;
  }
  .department__wrapper {
    max-width: 92.432%;
  }
  .department__title {
    font-size: 3.5rem;
  }
  .department__description {
    max-width: 44.444%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
  .department-list > * + * {
    margin-left: 4.375rem;
  }
  .department-list__inner > * + * {
    margin-left: 4.375rem;
  }
  .department-list__link {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .department__description {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }
}

@media (min-width: 900px) {
  .department__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
  }
  .department__header > * + * {
    margin-left: 1.875rem;
  }
  .department__main {
    margin-top: 6.875rem;
  }
  .department__main > * + * {
    margin-top: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .department__title {
    font-size: 3rem;
  }
  .department__description {
    max-width: 60%;
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
  .department-list > * + * {
    margin-left: 3.125rem;
  }
  .department-list__inner > * + * {
    margin-left: 3.125rem;
  }
  .department-list__link {
    font-size: 1.75rem;
  }
}

@media (max-width: 899px) {
  .department__header > * + * {
    margin-top: 0.9375rem;
  }
  .department__title {
    font-size: 1.875rem;
  }
  .department__description {
    font-size: 0.875rem;
    line-height: 130%;
  }
  .department__main {
    margin-top: 2.5rem;
  }
  .department__main > * + * {
    margin-top: 0.75rem;
  }
  .department-list > * + * {
    margin-left: 1.5rem;
  }
  .department-list__inner > * + * {
    margin-left: 2.25rem;
  }
  .department-list__link {
    font-size: 1.75rem;
  }
  .department-list._logos .department-list__link img {
    height: 40px;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .department-list__link {
    font-size: 1.125rem;
  }
}
