@font-face {
  font-family: "PT-Bold";
  src: url("../fonts/PT-Root-UI_Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "PT-Medium";
  src: url("../fonts/PT-Root-UI_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "PT-Regular";
  src: url("../fonts/PT-Root-UI_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --font-bold: "PT-Bold", sans-serif;
  --font-medium: "PT-Medium", sans-serif;
  --font-regular: "PT-Regular", sans-serif;
  --light: #f7f6f7;
  --blue: #29364a;
  --dark-blue: #152237;
  --gold-100: #d39f64;
  --gold-70: #e9bd8b;
  --neutral-white: #f7f6f7;
  --gray: #a1a7af;
  --scroll-bar: #d9d9d9;
}

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

[hidden] {
  display: none !important;
}

/* body {
  margin: 0;
  padding: 0;
  background-color: var(--dark-blue);
} */
html {
  scroll-behavior: smooth;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--light);
}

.body {
  margin: 0;
  padding: 0;
  background-color: var(--dark-blue);
}

.head-container {
  position: relative;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  padding-left: 247px;
}

.container {
  padding: 0 60px;
}

.title {
  font-family: var(--font-medium);
  font-size: 42px;
  line-height: 50px;
  color: var(--neutral-white);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: transparent;
  border: 1px solid var(--gold-100);
  font-family: var(--font-bold);
  font-size: 18px;
  line-height: 24px;
  color: var(--gold-100);
  border-radius: 64px;
  cursor: pointer;
  margin-left: auto;
  text-decoration: none;
}

.button-container {
  display: flex;
}

.button.alternative {
  background-color: var(--gold-100);
  border: 1px solid var(--gold-100);
  color: var(--dark-blue);
  margin: auto;
}

/* NOT-FOUND */

.not-found {
  padding: 340px 0;
  background-image: url(../img/gradient.svg);
}

.not-found-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.not-found-text {
  font-family: var(--font-medium);
  font-size: 24px;
  line-height: 32px;
  color: var(--light);
  text-align: center;
}

/* SIDEBAR */

.header {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-right: var(--gold-100);
  border-right-width: 1px;
  border-right-style: solid;
}

.mobile-header {
  display: none;
}

.mobile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burger {
  background: transparent;
  border: none;
  padding: 2px;
}

.sidebar {
  width: 247px;
  padding: 40px 0 32px 32px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  background-color: var(--dark-blue);
}

.sidebar-menu {
  list-style: none;
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-link {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 18px;
  color: var(--light);
  text-decoration: none;
  transition: 0.5s;
}

.sidebar-link:hover {
  color: var(--gold-100);
}

.sidebar-link.active {
  color: var(--gold-100);
}

.lang-container {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.lang-link {
  font-family: var(--font-bold);
  font-size: 18px;
  line-height: 24px;
  color: var(--light);
  text-decoration: none;
  transition: 0.5s;
}

.lang-link:hover {
  color: var(--gold-100);
}

.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  z-index: 10;
  transform: translateX(100%);
  background-color: var(--dark-blue);
  transition: 0.5s;
}

.mobile-sidebar.open {
  transform: translateX(0%);
}

.mobile-sidebar-logo {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-close {
  background: transparent;
  border: none;
}

/* BREADCRUMBS */

.breadcrumbs {
  padding-top: 40px;
}

.breadcrumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs-wrapper svg {
  min-width: 14px;
}

.breadcrumbs-link {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 18px;
  color: var(--light);
  transition: 0.5s;
  white-space: nowrap;
}

span.breadcrumbs-link {
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs-link:hover {
  color: var(--gold-100);
}

.breadcrumbs-link.active {
  color: var(--gold-100);
}

/* MAIN */

.main-container {
  flex: 1;
  background-image: url("../img/main-bg.png");
  background-repeat: no-repeat;
  padding-top: 180px;
  padding-bottom: 60px;
}

.main-title {
  max-width: 779px;
  color: var(--light);
  margin-bottom: 80px;
}

.main-button {
  background-color: var(--gold-100);
  border: 0;
  padding: 14px 32px;
  border-radius: 64px;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-blue);
  font-family: var(--font-bold);
}

/* ADVANTAGES */

.advantages {
  padding: 40px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.advantages-card {
  background-color: var(--blue);
  padding: 24px 30px;
  border-radius: 10px;
  display: flex;
  gap: 16px;
}

.advantages-count {
  font-family: var(--font-medium);
  font-size: 56px;
  line-height: 68px;
  color: var(--gold-100);
  white-space: nowrap;
}

.advantages-text {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--light);
  padding-top: 7px;
}

/* VIDEO */

.video {
  padding: 40px 0;
}

.video-title {
  margin-bottom: 42px;
}

.video-container {
  height: 600px;
  border-radius: 10px;
  background-color: #000;
}

/* PORTFOLIO */

.portfolio {
  padding: 40px 0;
}

.portfolio-title {
  margin-bottom: 36px;
}

.portfolio-content {
  overflow: hidden;
  transition: 0.5s;
}

.portfolio-tabs {
  margin-bottom: 36px;
  display: flex;
}

.portfolio-tab {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  padding: 10px 0;
  color: var(--gray);
  flex-grow: 1;
  border-bottom: 2px solid var(--gray);
  cursor: pointer;
}

.portfolio-tab.active {
  color: var(--gold-100);
  border-bottom: 2px solid var(--gold-100);
}

.portfolio-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  margin-bottom: 36px;
  transition: 0.5s;
}

.portfolio-card:hover {
  background-color: transparent;
  border: 1px solid var(--gold-100);
}

.portfolio-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 43%;
}

.portfolio-card-text {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--gray);
}

.project {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--gray);
}

.portfolio-image-container {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 254px;
  width: 555px;
}

.portfolio-image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.portfolio-card-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* NEWS */

.news {
  padding-top: 60px;
  padding-bottom: 40px;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 372px 184px;
  gap: 24px;
}

.news-title {
  grid-column: 1;
}

.news-input {
  position: relative;
  height: 40px;
  width: 100%;
  grid-column: 2;
}

.news-input svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.news-input input {
  padding-left: 36px;
  padding-right: 12px;
  height: 100%;
  width: 100%;
  border: 1px solid var(--gold-100);
  border-radius: 64px;
  background-color: var(--dark-blue);
  color: var(--light);
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  transition: 0.5s;
  outline: var(--gold-70);
}

.news-input input::placeholder {
  color: var(--gold-100);
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
}

.news-input input:focus {
  background-color: var(--blue);
  border: 1px solid var(--gold-70);
}

.news-input input:focus + svg path {
  fill: var(--gold-70);
}

/* SELECT */
/* .news-select {
  position: relative;
}

.news-select select {
  height: 40px;
  width: 184px;
  border-radius: 64px;
  padding-left: 12px;
  padding-right: 36px;
  border: 1px solid var(--gold-100);
  background-color: var(--dark-blue);
  color: var(--gold-100);
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.news-select::after {
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.3036 4.28589H16.6295C16.5156 4.28589 16.4085 4.34169 16.3415 4.43321L10 13.1743L3.65849 4.43321C3.59152 4.34169 3.48438 4.28589 3.37054 4.28589H1.69643C1.55134 4.28589 1.46652 4.45107 1.55134 4.56937L9.42188 15.4198C9.70759 15.8127 10.2924 15.8127 10.5759 15.4198L18.4464 4.56937C18.5335 4.45107 18.4487 4.28589 18.3036 4.28589Z' fill='%23D39F64'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
  width: 20px;
  height: 20px;
}

.news-select:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
} */

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  user-select: none;
  height: 40px;
  grid-column: 3;
}

.select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  padding-right: 36px;
  background-color: var(--dark-blue);
  border: 1px solid var(--gold-100);
  border-radius: 64px;
  cursor: pointer;
  color: var(--gold-100);
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  height: 100%;
  position: relative;
  transition: 0.5s;
}

.select-trigger:hover {
  background-color: var(--gold-100);
}

#selected-value {
  transition: 0.5s;
}

.select-trigger:hover #selected-value {
  color: var(--light);
}

.arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.5s ease;
}

path {
  transition: 0.5s;
}

.select-trigger:hover .arrow path {
  fill: var(--light);
}

.select-wrapper.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--blue);
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.select-wrapper.open .custom-options {
  display: block;
}

.option {
  padding: 12px 14px;
  cursor: pointer;
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--gold-100);
}

/* .option:hover,
.option.selected {
  background-color: #f0f0f0;
}

.option.active {
  background-color: var(--gray);
} */

/* CARD */

.news-card {
  padding-top: 24px;
  border-top: 1px solid var(--gray);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-date {
  color: var(--gold-100);
  display: flex;
  gap: 2px;
}

.news-day {
  font-family: var(--font-medium);
  font-size: 56px;
  line-height: 68px;
}

.news-month {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
}

.news-text {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--light);
  flex-basis: 65%;
  transition: 0.5s;
}

.news-card:hover .news-text {
  color: var(--gold-100);
}

/* FOOTER */

.footer {
  padding: 60px 0;
  background-color: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-title {
  margin-bottom: 110px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer-tel {
  display: inline-block;
  font-family: var(--font-medium);
  font-size: 56px;
  line-height: 68px;
  color: var(--gold-100);
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-email {
  display: inline-block;
  font-family: var(--font-medium);
  font-size: 24px;
  line-height: 32px;
  color: var(--neutral-white);
  text-decoration: none;
}

.footer-address {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 18px;
  color: var(--light);
}

#map {
  width: 540px;
  height: 280px;
  background-color: #000;
}

.footer-copyright {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  color: var(--gray);
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 18px;
}

/* ARTICLE */

.article {
  padding-top: 40px;
  padding-bottom: 60px;
}

.article-wrapper {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--gold-100);
}

.article-content {
  padding-top: 24px;
}

.article-title {
  margin-bottom: 24px;
}

.article-date {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--gold-100);
}

.article-image {
  margin-bottom: 24px;
}

.article-image img {
  width: 100%;
}

.article-text {
  margin-bottom: 24px;
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--light);
}

.article-text:last-child {
  margin-bottom: 0;
}

.article-aside {
  min-width: 260px;
  max-width: 260px;
  overflow-y: scroll;
  transform: translateX(6px);
}

/* Общий стиль для всего документа */
.article-aside::-webkit-scrollbar {
  width: 6px;
}

/* Ползунок скроллбара */
.article-aside::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bar);
  border-radius: 32px;
}

/* Ползунок при наведении */
.article-aside::-webkit-scrollbar-thumb:hover {
  background-color: var(--light);
}

/* Фон скроллбара */
.article-aside::-webkit-scrollbar-track {
  background: transparent;
}

.article-aside-title {
  padding: 20px 24px;
  padding-bottom: 0;
  background-color: var(--blue);
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 24px;
  color: var(--gold-100);
}

.article-aside-item {
  padding: 20px 24px;
  border: 1px solid var(--blue);
  border-top: 1px solid var(--gray);
  background-color: var(--blue);
  transition: 0.5s;
}

.article-aside-item:first-child {
  border-top: 1px solid var(--blue);
}

/* .article-aside-item:hover {
  border: 1px solid var(--gold-100);
  background-color: var(--dark-blue);
} */

/* .article-aside-item:hover + .article-aside-item {
  border: 1px solid var(--blue);
} */
.article-aside-item.border-top {
  border-top: 1px solid var(--blue);
}

.article-aside-item.active {
  border: 1px solid var(--gold-100);
  background-color: var(--dark-blue);
}

.article-slide {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--blue);
  background-color: var(--blue);
}

.article-slide-title {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 16px;
  color: var(--light);
}

.aside-title {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 16px;
  color: var(--light);
  margin-bottom: 24px;
}

.aside-date {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 18px;
  color: var(--gray);
}

.article-aside-image {
  border-radius: 8px;
  overflow: hidden;
  height: 140px;
  margin-bottom: 16px;
}

.article-aside-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.article-slider {
  display: none;
}

.article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--gray);
}

.article-slider-title {
  font-family: var(--font-medium);
  font-size: 24px;
  line-height: 26px;
  color: var(--neutral-white);
}

.slider-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 224px;
}

@media (max-width: 1380px) {
  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #map {
    height: 360px;
    width: 100%;
  }
}

@media (max-width: 1250px) {
  .head-container {
    padding-left: 210px;
  }

  .sidebar {
    width: 210px;
  }

  /* PORTFOLIO */

  .portfolio-tabs {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .portfolio-tabs::-webkit-scrollbar {
    display: none;
  }

  .portfolio-tab {
    flex-grow: 0;
    padding-right: 35px;
    white-space: nowrap;
  }

  .portfolio-card {
    flex-direction: column;
    border-radius: 0;
    padding: 20px;
    gap: 20px;
  }

  .portfolio-image-container {
    order: -1;
    width: 100%;
    height: 230px;
    border-radius: 0;
  }

  .portfolio-card-logo {
    height: 24px;
    margin-bottom: 20px;
  }

  .portfolio-card-logo img {
    height: 100%;
  }

  .portfolio-card-info {
    flex-basis: 100%;
  }
}

@media (max-width: 1200px) {
  /* MAIN */
  .main-container {
    background-position-x: center;
  }

  .main-title {
    max-width: none;
  }

  /* ARTICLE */

  .article-title {
    font-size: 24px;
    line-height: 32px;
  }

  .article-date {
    font-size: 14px;
    line-height: 16px;
  }

  .article-text {
    font-size: 14px;
    line-height: 16px;
  }

  /* ADVANTAGES */
  .advantages-card {
    padding: 24px;
    border-radius: 0;
    align-items: center;
  }

  .advantages-count {
    font-size: 42px;
    line-height: 50px;
  }

  .advantages-text {
    padding-top: 0;
    font-size: 16px;
    line-height: 18px;
  }

  /* NEWS */
  .news-grid {
    grid-template-columns: 1fr 184px;
    grid-template-rows: auto auto;
    row-gap: 36px;
  }

  .news-input {
    grid-column: 1 / -1;
  }

  .select-wrapper {
    grid-row: 1;
    grid-column: 2;
  }
}

@media (max-width: 1024px) {
  .not-found {
    padding: 270px 0;
  }
  .news-text {
    flex-basis: 45%;
  }

  .footer-title {
    margin-bottom: 60px;
  }
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .article-wrapper {
    flex-direction: column;
  }

  .article-slider {
    display: block;
  }

  .article-aside {
    display: none;
  }
}

@media (max-width: 764px) {
  .header {
    border: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
  }

  .mobile-header {
    display: block;
    padding-top: 24px;
  }

  .sidebar {
    display: none;
  }

  .sidebar-logo {
    height: 40px;
  }

  .sidebar-menu {
    margin: 44px 0;
  }

  .sidebar-link {
    font-size: 24px;
    line-height: 26px;
  }

  .mobile-sidebar {
    display: block;
  }

  .head-container {
    padding-left: 0;
  }

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

  .button {
    width: 100%;
  }

  /* NOT-FOUND */

  .not-found {
    padding: 200px 0;
  }

  .not-found-text {
    font-size: 16px;
    line-height: 18px;
    text-align: start;
  }

  /* MAIN */

  .main-container {
    background-size: cover;
    padding-top: 180px;
    padding-bottom: 40px;
  }

  .main-button {
    width: 100%;
    padding: 14px 20px;
  }

  /* ADVANTAGES */

  .advantages {
    padding: 32px 0;
  }

  .advantages-card {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-radius: 8px;
  }

  .advantages-count {
    font-size: 32px;
    line-height: 36px;
  }

  .advantages-text {
    font-size: 16px;
    line-height: 18px;
  }

  /* VIDEO */

  .video {
    padding: 32px 0;
  }

  .video-container {
    height: 240px;
  }

  /* PORTFOLIO */

  .portfolio {
    padding: 32px 0;
  }

  .portfolio-tabs {
    margin-bottom: 16px;
  }

  .portfolio-tab {
    font-size: 16px;
    line-height: 18px;
  }

  .portfolio-card {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .portfolio-card:last-child {
    margin-bottom: 32px;
  }

  .portfolio-image-container {
    border-radius: 8px;
    height: 180px;
  }

  .portfolio-card-logo {
    margin-bottom: 12px;
  }

  .portfolio-card-text {
    font-size: 14px;
    line-height: 16px;
  }

  .project {
    font-size: 14px;
    line-height: 16px;
  }

  /* NEWS */

  .news {
    padding: 32px 0;
  }

  .news-header {
    margin-bottom: 12px;
  }

  .news-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .news-wrapper {
    margin-bottom: 32px;
  }

  .news-card:last-child {
    margin-bottom: 0;
  }

  .news-day {
    font-size: 32px;
    line-height: 36px;
  }

  .news-month {
    font-size: 14px;
    line-height: 16px;
  }

  .news-text {
    flex-basis: 100%;
    font-size: 14px;
    line-height: 16px;
  }

  .news-grid {
    gap: 16px;
  }

  .news-input {
    height: 32px;
  }

  .news-input input {
    font-size: 14px;
    line-height: 16px;
  }

  .news-input input::placeholder {
    font-size: 14px;
    line-height: 16px;
  }

  .select-wrapper {
    height: 32px;
  }

  .select-trigger {
    font-size: 14px;
    line-height: 16px;
  }

  .option {
    font-size: 14px;
    line-height: 16px;
  }

  /* FOOTER  */

  .footer {
    padding: 32px 0;
  }

  .footer-title {
    margin-bottom: 40px;
  }

  .footer-tel {
    font-size: 32px;
    line-height: 36px;
  }

  .footer-email {
    font-size: 16px;
    line-height: 18px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-address {
    margin-top: 16px;
    font-size: 14px;
    line-height: 18px;
  }

  .footer-copyright {
    margin-top: 40px;
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  /* NEWS */

  .news-grid {
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 8px;
  }

  .news-input {
    grid-row: 2;
    grid-column: 1;
    width: 180px;
  }

  .select-wrapper {
    grid-row: 2;
    grid-column: 2;
    width: 100%;
  }
}
