.cover {
  background-color: var(--blue-primary-color);
  border-radius: 15px;
  color: rgb(255, 255, 255);
  display: flex;
  height: 555px;
  gap: 50px;
  align-items: center;
  padding: 0 90px;
  margin-bottom: 40px;
}
.cover .title {
  font-size: 65px;
  font-weight: 700;
  line-height: 101%;
  margin-bottom: 10px;
}
.cover .description {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 25px;
}
.cover .go-to-news-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 4px 4px;
  color: var(--blue-primary-color);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  width: 167px;
  height: 60px;
  user-select: none;
  transition: background-color 0.3s, box-shadow 0.1s, translate 0.1s;
}
.cover .go-to-news-button:hover {
  background-color: rgb(243, 243, 243);
}
.cover .go-to-news-button:active {
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 0;
  translate: 3px 3px;
}
.cover img {
  width: 500px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cover .title {
    font-size: 60px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 18px;
  }
  .cover img {
    width: 400px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cover {
    height: 450px;
  }
  .cover .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 16px;
  }
  .cover img {
    width: 350px;
  }
  .cover .go-to-news-button {
    width: 150px;
    height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cover {
    padding: 0 50px;
    height: 420px;
  }
  .cover .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 15px;
  }
  .cover img {
    width: 250px;
  }
  .cover .go-to-news-button {
    font-size: 16px;
    width: 140px;
    height: 45px;
  }
}
@media (max-width: 767px) {
  .cover {
    flex-direction: column-reverse;
    overflow: hidden;
    padding: 40px;
    height: auto;
  }
  .cover .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 15px;
  }
  .cover img {
    max-width: 300px;
  }
  .cover .go-to-news-button {
    font-size: 16px;
    width: 140px;
    height: 45px;
  }
}
@media (max-width: 575px) {
  .cover {
    padding: 30px;
  }
  .cover img {
    max-width: 200px;
  }
}

.month-calendar-block {
  margin-bottom: 55px;
}

.page-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-title {
    font-size: 35px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .page-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .page-title {
    font-size: 25px;
  }
}
.page-title.company-news {
  margin-bottom: 25px;
}
.page-title.faq {
  margin-bottom: 20px;
}

.news-list-block {
  margin-bottom: 70px;
}

.faq-block {
  margin-bottom: 150px;
}
@media (max-width: 575px) {
  .faq-block {
    margin-bottom: 50px;
  }
}

.faq-questions {
  margin-bottom: 5px;
}

.faq-card {
  border: 1px solid rgb(217, 217, 217);
  border-radius: 15px;
  cursor: pointer;
  color: rgb(89, 83, 83);
  filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.05));
  padding: 20px 30px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.faq-card:not(.collapsed) .title img {
  rotate: 180deg;
}
.faq-card .title {
  font-size: 23px;
  font-weight: 600;
  line-height: 130%;
  color: var(--faq-title-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  user-select: none;
}
.faq-card .title img {
  transition: rotate 0.3s;
}
.faq-card .faq-answer {
  font-size: 18px;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .faq-card {
    min-height: 80px;
    padding: 15px;
  }
  .faq-card .title {
    font-size: 18px;
  }
  .faq-card .faq-answer {
    font-size: 16px;
  }
}

/*# sourceMappingURL=main_page.css.map */