.alert {
  padding: 40px 0;
}
@media (max-width: 1199px) {
  .alert {
    padding: 24px 0 0;
  }
}
@media (max-width: 599px) {
  .alert {
    padding-top: 20px;
  }
}
@media (max-width: 1199px) {
  .alert .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .alert .wrapper {
    padding: 0 30px;
  }
}
.alert .box {
  padding: 30px 40px;
  border-radius: 8px;
  background: var(--eeeae5);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 5px 24px;
}
@media (max-width: 1199px) {
  .alert .box {
    padding: 13px 40px;
  }
}
@media (max-width: 599px) {
  .alert .box {
    padding: 13px 16px;
    gap: 5px 10px;
    grid-template-columns: 32px 1fr;
  }
}
.alert .icon {
  grid-row: span 2;
  width: 100%;
  height: auto;
}
.alert .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .alert .title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .alert .title {
    font-size: 16px;
  }
}
.alert .text {
  grid-column: 2/2;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .alert .text {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .alert .text {
    font-size: 14px;
  }
}

.faq_section {
  padding: 50px 0 160px;
}
@media (max-width: 1199px) {
  .faq_section {
    padding: 0 0 90px;
  }
}
@media (max-width: 599px) {
  .faq_section {
    padding: 20px 0 60px;
  }
}
.faq_section .wrapper {
  display: grid;
  grid-template-columns: 590fr 790fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 1199px) {
  .faq_section .wrapper {
    padding: 0 40px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 599px) {
  .faq_section .wrapper {
    padding: 0 30px;
    gap: 20px;
  }
}
.faq_section .content {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 1199px) {
  .faq_section .content {
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}
@media (max-width: 599px) {
  .faq_section .content {
    align-items: start;
  }
}
.faq_section .content_text {
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 1199px) {
  .faq_section .content_text {
    padding: 20px 0;
  }
}
@media (max-width: 599px) {
  .faq_section .content_text {
    padding: 0;
  }
}
.faq_section .content .subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 100px;
  box-shadow: 0 10px 42px 0 rgba(0, 0, 0, 0.05);
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 123%;
  text-transform: uppercase;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .faq_section .content .subtitle {
    gap: 4px;
    padding: 5px 8px;
    box-shadow: 0 6px 23px 0 rgba(0, 0, 0, 0.05);
    font-size: 7px;
  }
}
.faq_section .content .subtitle .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .faq_section .content .subtitle .icon {
    width: 9px;
    height: 9px;
  }
}
.faq_section .content .section_title {
  margin: 25px 0 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  line-height: 116%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .faq_section .content .section_title {
    margin-top: 20px;
    font-size: 36px;
  }
}
@media (max-width: 599px) {
  .faq_section .content .section_title {
    margin-top: 16px;
    font-size: 24px;
    letter-spacing: initial;
  }
}
.faq_section .content .img {
  margin-top: 30px;
  width: 100%;
  max-width: 360px;
  height: auto;
}
@media (max-width: 1199px) {
  .faq_section .content .img {
    margin: 0;
    max-width: 228px;
  }
}
@media (max-width: 599px) {
  .faq_section .content .img {
    max-width: 130px;
  }
}
.faq_section .faq {
  margin-top: 30px;
  padding: 30px 38px 20px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .faq_section .faq {
    margin-top: 0;
    padding: 10px 16px;
  }
}
.faq_section .faq .faq_item {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid #f7f5f2;
}
@media (max-width: 1199px) {
  .faq_section .faq .faq_item {
    padding: 0;
  }
}
.faq_section .faq .faq_item:first-child {
  border-top: none;
}
.faq_section .faq .faq_item .title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 60px;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: #0b3948;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .faq_section .faq .faq_item .title {
    font-size: 16px;
  }
}
.faq_section .faq .faq_item .title svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.35s;
}
@media (max-width: 1199px) {
  .faq_section .faq .faq_item .title svg {
    width: 18px;
    height: 18px;
  }
}
.faq_section .faq .faq_item.open .title svg {
  transform: rotate(180deg);
}
.faq_section .faq .faq_item .text {
  display: none;
  padding-top: 12px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: #0b3948;
}
@media (max-width: 1199px) {
  .faq_section .faq .faq_item .text {
    padding-bottom: 20px;
    padding-right: 24px;
    font-size: 14px;
  }
}
.faq_section .faq .faq_item .text > * {
  margin: 0 0 1em;
}
.faq_section .faq .faq_item .text > *:last-child {
  margin-bottom: 0;
}
.faq_section .faq .faq_item .text a {
  color: #f9a21b;
  text-decoration: underline;
}