.consultation {
  position: relative;
  padding: 70px 0;
}
.consultation .consultation_inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.consultation .consultation_inner__content_subtitle {
  font-size: 18px;
  text-transform: uppercase;
  opacity: 0.3;
}
.consultation .consultation_inner__content_title {
  font-size: 30px;
  margin: 18px 0px 18px;
  font-weight: 600;
}
.faq_section {
  position: relative;
  padding: 70px 0 40px;
}
@media (max-width: 480px) {
  .faq_section {
    padding: 40px 0 40px;
  }
}
.faq_section .section-title h2 {
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .faq_section .section-title h2 {
    text-align: left;
    font-size: 30px;
  }
}
.faq_section__title_description {
  margin-bottom: 20px;
}
.faq_section__inner_item {
  border-bottom: 1px solid #373B41;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.faq_section .inner_item__question {
  cursor: pointer;
  padding: 15px 0;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}
.faq_section .inner_item__question.open {
  color: #ffffff;
}
.faq_section .inner_item__question.open .inner_item__question_icon svg {
  transform: rotate(-180deg);
}
.faq_section .inner_item__question_content {
  font-size: 16px;
  font-weight: bold;
}
.faq_section .inner_item__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease, padding 0.3s ease;
  padding: 0;
  border-radius: 5px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5019607843);
  opacity: 0;
}
.faq_section .inner_item__answer.active {
  padding: 15px 0;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
  opacity: 1;
}
.faq_section .inner_item__answer p {
  margin: 0;
}
.footer_latest_posts {
  position: relative;
  padding: 70px 0 40px;
}
@media (max-width: 480px) {
  .footer_latest_posts {
    padding: 40px 0 40px;
  }
}
.footer_latest_posts_title h2 {
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .footer_latest_posts_title h2 {
    text-align: left;
    font-size: 30px;
  }
}
.footer_latest_posts_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 1240px) {
  .footer_latest_posts_list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
  }
}
@media (max-width: 968px) {
  .footer_latest_posts_list {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
}
.footer_latest_posts_list .latest_posts-item a {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.footer_latest_posts_list .latest_posts-item a .item_thumbnail img {
  width: 100%;
  max-height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer_latest_posts_list .latest_posts-item a .item_content {
  background: #16171B;
  border-radius: 10px;
  position: relative;
  top: -10px;
  padding: 24px;
  border: 1px solid #373B41;
  border-top: 0px;
}
.footer_latest_posts_list .latest_posts-item a .item_content .latest_posts-list-item-data {
  opacity: 0.5;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.footer_latest_posts_list .latest_posts-item a .item_content .latest_posts-list-item-data div,
.footer_latest_posts_list .latest_posts-item a .item_content .latest_posts-list-item-data span {
  display: flex;
  align-items: center;
  gap: 3px;
}
.footer_latest_posts_list .latest_posts-item a .item_content .latest_posts-list-item-title {
  font-weight: 600;
  margin-top: 18px;
}
#latest_posts_loader {
  margin: 20px auto 0px;
  text-align: center;
  max-width: 80px;
}
