:root {
  --main-black-color: #000000;
  --dark-grey-color: #727272;
  --accent-color: #e74f08;
  --light-grey-color: #f4f4f4;
  --backdrop-color: #00000080;
  --banner-l-background: #ffd700;
  --banner-m-background: #e74f08;
  --banner-sm-background: #d32f2f;
  --ads-accent-background: #9e9e9e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--main-black-color);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  font-kerning: normal;
  letter-spacing: 0%;
  position: relative;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
  background-color: var(--light-grey-color);
}

a,
button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.address {
  font-style: normal;
}

.link {
  color: var(--link-title-black);
  text-decoration: none;
}

.current {
  color: var(--accent-color);
}

.meta-views,
.meta-timestamp {
  color: var(--dark-grey-color);
  font-size: 14px;
  letter-spacing: normal;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}
.header .container, .main .container {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .header .container, .main .container {
    padding-top: 40px;
  }
}

.address__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0%;
}
@media screen and (min-width: 768px) {
  .address__title {
    display: none;
  }
}
.address__list-item {
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0%;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .address__list-item {
    font-size: 20px;
  }
}
.address__list-item:not(:last-child) {
  margin-bottom: 8px;
}
.address__link {
  display: flex;
  align-items: center;
}
.address__link--map {
  flex-direction: column;
  align-items: baseline;
}
.address__link-icon {
  width: 20px;
  height: auto;
  fill: var(--accent-color);
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .address__link-icon {
    width: 24px;
    height: 24px;
  }
}
.address__text {
  margin-bottom: 8px;
}
.address__city {
  display: inline-block;
}
.address__street {
  display: inline-block;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  padding: 0 10px;
}
@media screen and (min-width: 480px) {
  .articles-list {
    padding: 0;
  }
}
.articles-list__item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
}
.articles-list__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.articles-list__img {
  aspect-ratio: 5/3;
  object-fit: cover;
}
.articles-list__description {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 8px;
  height: 100%;
}
.articles-list__title {
  padding-bottom: 4px;
  font-family: "Merriweather", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.2s ease;
}
@media screen and (min-width: 480px) {
  .articles-list__title {
    font-size: 20px;
  }
}
.articles-list__text {
  display: -webkit-box;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.5em;
  line-height: 1.3em;
  margin-top: 0.5em;
  color: #444;
}
.articles-list__meta {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 0px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
}
.articles-list__meta .breaker {
  display: block;
  width: 5px;
  height: 5px;
  background: #727272;
  border-radius: 999%;
}
.articles-list__link:hover .articles-list__title, .articles-list__link:focus .articles-list__title {
  color: var(--accent-color);
}

.article {
  grid-column: span 12/span 12;
  padding-left: 12px;
  padding-right: 12px;
  height: fit-content;
}
@media screen and (min-width: 480px) {
  .article {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .article {
    grid-column: span 9/span 12;
  }
}
.article__meta-info {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.article__category {
  display: none;
  padding: 10px;
  padding-right: 50px;
  background: linear-gradient(to right, #e74f08, rgba(231, 79, 8, 0.5019607843) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  clip-path: polygon(0% 0%, 100% 0%, 85% 50%, 100% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .article__category {
    display: inline-block;
  }
}
.article__meta {
  display: inline-block;
  margin-left: auto;
  font-size: 14px;
  color: var(--dark-grey-color);
}
@media screen and (min-width: 768px) {
  .article__meta {
    font-size: 16px;
  }
}
.article__title {
  width: 100%;
  margin-bottom: 20px;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -2%;
}
@media screen and (min-width: 768px) {
  .article__title {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
.article__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  padding-top: 12px;
}
.article__text p {
  text-indent: 16px;
}
@media screen and (min-width: 768px) {
  .article__text {
    padding: 32px 20px;
    font-size: 18px;
  }
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  padding: 8px;
}
.search-btn__icon {
  width: 18px;
  height: 18px;
  fill: var(--dark-grey-color);
  background: none;
}
@media screen and (min-width: 768px) {
  .search-btn__icon {
    width: 25px;
    height: 25px;
  }
}

.subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  background: none;
  outline: none;
  border: none;
}
@media screen and (min-width: 768px) {
  .subscribe-btn {
    margin-right: 20px;
  }
}
.subscribe-btn__icon {
  width: 24px;
  height: 24px;
  background: none;
}
@media screen and (min-width: 768px) {
  .subscribe-btn__icon {
    width: 43px;
    height: 43px;
  }
}

.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-style: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .main-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .main-btn {
    font-size: 20px;
  }
}
.main-btn.lang-btn {
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .main-btn.lang-btn {
    padding: 10px;
  }
}
.main-btn--apply {
  font-size: 16px;
  line-height: 150%;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.menu-btn__icon {
  width: 28px;
  margin-left: 10px;
}
.menu-btn__icon span {
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 1.5px;
  height: 3px;
  background: #fff;
  position: relative;
}
.menu-btn__icon span + span {
  margin-top: 4px;
}

.mobile-menu-btn {
  display: flex;
  margin-right: 12px;
  background: none;
  outline: none;
  border: none;
}
@media screen and (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn__icon {
  display: flex;
  flex-direction: column;
  width: 40px;
  gap: 6px;
  outline: none;
  border: none;
}
.mobile-menu-btn__icon span {
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #000000;
  border-radius: 2px;
  background: #000000;
  position: relative;
}

.enter-btn,
.menu-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .enter-btn,
  .menu-btn {
    display: flex;
  }
}

.main__mobile-toolbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
  border: 1px solid var(--dark-grey-color);
  border-radius: 4px;
  outline: none;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0%;
}

.pagination__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  outline: none;
  background: var(--dark-grey-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
}
.pagination__button.current {
  background: var(--accent-color);
}

.categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.categories--mobile {
  gap: 24px;
}
.categories__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 6%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent-color);
}
.categories__title--mobile {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  padding-bottom: 0;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0%;
  border: none;
  text-transform: none;
}
.categories__dropdowns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}
.categories .dropdown {
  position: relative;
  flex: 1 1 auto;
}
.categories .dropdown__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: black;
  background-color: #fff;
  border: 1px solid #b3aba5;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
}
.categories .dropdown__button:hover, .categories .dropdown__button:focus {
  border-color: var(--accent-color);
}
.categories .dropdown__button--open::after {
  content: url("../../images/arrow-up.svg");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 6px;
}
.categories .dropdown__button:not(.dropdown__button--open)::after {
  content: url("../../images/arrow-down.svg");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 6px;
}
.categories .dropdown__content {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}
.categories .dropdown__list {
  width: 100%;
  list-style: none;
  padding: 0 20px;
  margin: 0;
}
.categories .dropdown__item {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--main-black-color);
  border-bottom: 1px solid #c8c8c8;
}
.categories .dropdown__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.categories .dropdown__link:hover, .categories .dropdown__link:focus {
  color: var(--accent-color);
}

.dropdown {
  position: relative;
  cursor: pointer;
}
.dropdown__wrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: -22px;
  padding: 3px;
  background-color: inherit;
  min-width: 160px;
  z-index: 1;
}
.dropdown:hover .dropdown__wrapper {
  display: block;
}
.header .dropdown__list, .header-hidden .dropdown__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.25), 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.header-hidden {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  background: #fff;
  transition: transform 750ms ease, opacity 1s ease;
  transform: translateY(-100%);
  opacity: 0;
  -webkit-box-shadow: 0px 3px 7px -1px var(--dark-grey-color);
  -moz-box-shadow: 0px 3px 7px -1px var(--dark-grey-color);
  box-shadow: 0px 3px 7px -1px var(--dark-grey-color);
}
@media screen and (max-width: 767px) {
  .header-hidden {
    display: none;
  }
}
.header-hidden.visible {
  transform: translateY(0);
  opacity: 1;
}
.header-hidden .logo-link {
  text-align: center;
}
.header-hidden .logo-img {
  width: 50px;
  margin: 0 auto;
  background-color: inherit;
}
.header-hidden .nav-bar__list {
  border: none;
}

.latest-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-grey-color);
  overflow-y: auto;
}
.latest-news__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 6%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent-color);
}
.latest-news__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.latest-news__list li {
  width: 100%;
}
.latest-news__link {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.latest-news__link img {
  max-width: 125px;
  aspect-ratio: 3/4;
  object-fit: contain;
}
.latest-news__time {
  font-size: 16px;
  font-weight: 600;
  transition: color 0.1s ease;
}
.latest-news__text {
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: font-weight 0.1s ease;
}
.latest-news__link:hover .latest-news__time, .latest-news__link:focus .latest-news__time {
  color: var(--accent-color);
}
.latest-news__link:hover .latest-news__text, .latest-news__link:focus .latest-news__text {
  font-weight: 500;
}

.announcements-content {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .announcements-content {
    grid-column: span 9;
  }
}
.announcements-content .banner-box {
  grid-column: span 9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 12px;
  padding-right: 12px;
  height: fit-content;
}
@media screen and (min-width: 480px) {
  .announcements-content .banner-box {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .announcements-content .banner-box {
    grid-column: span 6;
  }
}
.announcements-content .banner {
  width: 100%;
  padding: 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.announcements-content .banner--large {
  gap: 32px;
  background: var(--banner-l-background);
}
.announcements-content .banner--medium {
  background: var(--banner-m-background);
}
.announcements-content .banner--small {
  background: var(--banner-sm-background);
}
.announcements-content .banner__text {
  font-family: "Merriweather", sans-serif;
  line-height: 100%;
  letter-spacing: 0%;
  font-weight: 700;
  color: #fff;
}
.announcements-content .banner__text--large {
  font-size: 24px;
  color: var(--main-black-color);
}
.announcements-content .banner__text--medium {
  font-size: 20px;
}
.announcements-content .banner__text--small {
  font-size: 16px;
}
.announcements-content .banner__icon {
  width: 45px;
  background: none;
}
.announcements-content .banner__contact-list {
  display: flex;
  width: 100%;
  gap: 8px;
}
.announcements-content .banner__contact-list--large {
  flex-direction: column;
  align-items: center;
}
.announcements-content .banner__contact-list--medium, .announcements-content .banner__contact-list--small {
  flex-direction: row;
  gap: 16px;
}
.announcements-content__top, .announcements-content__ads {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px;
}
.announcements-content__list {
  grid-column: span 9;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--dark-grey-color);
}
@media screen and (max-width: 480px) {
  .announcements-content__list {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.announcements-content__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.announcements-content__item {
  grid-column: span 12;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--main-black-color);
  border-radius: 4px;
  font-size: 16px;
}
@media screen and (min-width: 640px) {
  .announcements-content__item {
    grid-column: span 6;
  }
}
@media screen and (min-width: 1024px) {
  .announcements-content__item {
    grid-column: span 4;
  }
}
.announcements-content__item--accent {
  padding: 20px;
  background: var(--ads-accent-background);
  font-family: "Merriweather", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
}
.announcements-content__item--accent .announcements-content__contact-number {
  padding-top: 8px;
}
@media screen and (min-width: 1024px) {
  .announcements-content__item--accent {
    grid-column: span 8;
  }
}
.announcements-content__item .meta-timestamp {
  text-align: end;
}
.announcements-content__text-icon-img {
  display: inline-block;
  width: 16px;
  background: none;
}
.announcements-content__contact-number {
  display: block;
}
.announcements-content__title {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .announcements-content__title {
    margin-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.announcements-content__articles-list {
  grid-column: span 9;
}

.main-news {
  grid-column: span 12/span 12;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .main-news {
    grid-column: span 9/span 12;
  }
}
.main-news__wrapper {
  grid-column: span 9;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  height: fit-content;
}
@media screen and (min-width: 1024px) {
  .main-news__wrapper {
    grid-column: span 6;
  }
}
.main-news__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  padding: 20px;
  background: var(--light-grey-color);
}
.main-news__banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.main-news__banner img:hover {
  filter: brightness(50%);
}
.main-news__banner-title {
  position: relative;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
@media screen and (min-width: 480px) {
  .main-news__banner-title {
    font-size: 24px;
  }
}
.main-news .top-news .sidebar__list {
  padding-bottom: 20px;
  border-bottom: 1px solid #727272;
}

.mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.25s;
  padding: 80px 12px 20px 12px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu__navigation {
  display: none;
  width: 100%;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.mobile-menu__list {
  width: 100%;
  height: 100%;
}
.mobile-menu__link {
  display: flex;
  padding: 4px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000000;
  text-decoration: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.open {
  display: block;
  opacity: 1;
}
.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--backdrop-color);
  cursor: pointer;
}
.modal__content {
  position: relative;
  width: 90%;
  max-width: 480px;
  max-height: 503px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 80px 40px 80px 40px;
  border-radius: 16px;
  background: #fff;
}
@media screen and (min-width: 480px) {
  .modal__content {
    padding: 80px 80px 125px 80px;
  }
}
@media screen and (min-width: 1024px) {
  .modal__content {
    width: 50%;
    max-width: 540px;
    max-height: 503px;
    padding: 80px 104px 125px 104px;
  }
}
.modal__close-btn {
  position: absolute;
  top: 22px;
  right: 23px;
  background: none;
  border: none;
  outline: none;
}
.modal__title {
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 6%;
  border-bottom: 1px solid var(--accent-color);
  text-transform: uppercase;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__inputs-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.modal__field {
  position: relative;
}
.modal__field label {
  position: absolute;
  top: 50%;
  left: 7px;
  padding: 0 7px;
  transform: translateY(-50%);
  transition: all ease-in 0.25s;
  color: #868686;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.modal__field span {
  position: absolute;
  display: block;
  top: calc(100% + 4px);
  right: 0;
}
.modal__input {
  width: 100%;
  max-height: 43px;
  padding: 14px;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  outline: none;
  background: transparent;
  font-size: 18px;
}
.modal__input::-webkit-input-placeholder {
  opacity: 0;
}
.modal__input::-moz-placeholder {
  opacity: 0;
}
.modal__input:-ms-input-placeholder {
  opacity: 0;
}
.modal__input:-moz-placeholder {
  opacity: 0;
}
.modal__input:focus, .modal__input:not(:placeholder-shown) {
  outline: 1px solid var(--accent-color);
}
.modal__input:focus + label, .modal__input:not(:placeholder-shown) + label {
  top: -8%;
  color: var(--accent-color);
}
.modal__answer {
  font-size: 12px;
  color: #868686;
}
.modal__submit-btn {
  max-height: 43px;
  padding: 12px 20px;
  margin-bottom: 12px;
  outline: none;
  border-style: none;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.modal p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal__action-link {
  color: var(--accent-color);
  font-size: 12px;
  cursor: pointer;
}

.nav-bar {
  display: none;
  width: 100%;
}
.nav-bar__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--dark-grey-color);
}
.nav-bar__list-item {
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}
.nav-bar__link:hover, .nav-bar__link:focus {
  color: var(--accent-color);
}
@media screen and (min-width: 768px) {
  .nav-bar {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .nav-bar__list-item {
    padding-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
  }
}

.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
}

.sidebar {
  display: none;
  grid-column: span 3/span 12;
  flex-direction: column;
  gap: 32px;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .sidebar--aside {
    display: flex;
    overflow: auto;
  }
}
@media screen and (min-width: 1024px) {
  .sidebar--section {
    display: flex;
    overflow: auto;
  }
}

.top-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-grey-color);
  overflow-y: auto;
}
.top-news__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 6%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent-color);
}
.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.top-news__list li {
  width: 100%;
}
.top-news__link {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  transition: color 0.2s ease;
}
.top-news__link img {
  width: 100px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .top-news__link img {
    width: 125px;
  }
}
.top-news__link:hover, .top-news__link:focus {
  color: var(--accent-color);
}
.top-news__link-title {
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: -webkit-box;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .top-news__link-title {
    line-clamp: 8;
    -webkit-line-clamp: 8;
    font-size: 16px;
  }
}

.footer {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.footer__container {
  display: flex;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid var(--dark-grey-color);
}
@media screen and (min-width: 1024px) {
  .footer__container {
    gap: 40px;
  }
}
.footer__logo-img {
  width: 66px;
  height: auto;
  background-color: inherit;
}
@media screen and (min-width: 768px) {
  .footer__logo-img {
    width: 150px;
  }
}
.footer__info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__info-block {
    flex-direction: row;
    gap: 24px;
  }
}
.footer__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.footer__services-list, .footer__additional-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__services-item, .footer__additional-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  .footer__services-item, .footer__additional-item {
    font-size: 20px;
  }
}

.header {
  position: fixed;
  z-index: 3;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 20px;
  background: #fff;
}
@media screen and (min-width: 480px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .header {
    position: relative;
    padding-bottom: 0;
  }
}
.header__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .header__container {
    gap: 33px;
  }
}
.header__toolbar {
  display: flex;
  align-items: center;
}
.header__logo-link {
  display: block;
  margin-right: auto;
}
.header__logo-img {
  width: 66px;
  height: auto;
  background-color: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo-img {
    width: 150px;
  }
}
.header__tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1200px) {
  .header__tools {
    gap: 40px;
  }
}
.header__search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search-input {
  width: 80px;
  padding: 13px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: var(--light-grey-color);
  transition: width 0.3s ease;
}
.header__search-input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-grey-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__search-input:focus {
  width: 80px;
  outline: 3px solid var(--accent-color);
}
.header__search-input:focus::placeholder {
  opacity: 1;
}
@media screen and (min-width: 375px) {
  .header__search-input {
    width: 100px;
  }
  .header__search-input::placeholder {
    opacity: 1;
  }
  .header__search-input:focus {
    width: 100px;
  }
}
@media screen and (min-width: 480px) {
  .header__search-input {
    width: 180px;
  }
  .header__search-input::placeholder {
    opacity: 1;
  }
  .header__search-input:focus {
    width: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .header__search-input {
    width: 200px;
  }
  .header__search-input::placeholder {
    opacity: 1;
  }
  .header__search-input:focus {
    width: 200px;
  }
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main {
  width: 100%;
  min-height: 460px;
  padding-top: 80px;
  background: #fafafa;
}
@media screen and (min-width: 480px) {
  .main {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .main {
    padding-top: 0;
    background: #fff;
  }
}
.main__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.main__container .content {
  grid-column: span 12/span 12;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}
@media screen and (max-width: 768px) {
  .main__container .content {
    margin-bottom: 40px;
  }
}
.main__container .other-content {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main__container .other-content {
    grid-column: span 12/span 12;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.main__container .other-content__title {
  padding-top: 8px;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 6%;
  border-top: 1px solid var(--dark-grey-color);
}
.main__container .other-content .articles-list {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  padding-left: 0;
  padding-right: 0;
}
.main__mobile-title-wrapper, .main__mobile-toolbar-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .main__mobile-title-wrapper, .main__mobile-toolbar-wrapper {
    grid-column: span 12;
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.main__title {
  width: 100%;
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 6%;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent-color);
}/*# sourceMappingURL=styles.css.map */