/* Reset & base */
.body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: "PT Sans", "Inter", system-ui, sans-serif;
  background-color: #fafbfc;
  color: #1d2237;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(250, 251, 252, 0.97);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dcdee5;
}
.header__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1d2237;
  flex-shrink: 0;
}
.header__logo {
  width: 44px;
  height: 44px;
}
.header__brand-text {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.header__nav-link {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  color: #1d2237;
  cursor: pointer;
}
.header__nav-link--hover {
  color: #d97a2c;
}
.header__phone {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: #2a3357;
  text-decoration: none;
}
.header__phone--hover {
  color: #d97a2c;
}
.header__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  cursor: pointer;
  border-radius: 6px;
}
.header__burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1d2237;
}
.header__mobile {
  display: none;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dcdee5;
  background-color: #ffffff;
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.header__mobile--open {
  display: flex;
}
.header__mobile-link {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #1d2237;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dcdee5;
}
.header__mobile-phone {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #2a3357;
  text-decoration: none;
}

/* Main */
.main {
  flex-grow: 1;
}

.page {
  display: none;
}
.page--active {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 51, 87, 0.82);
}
.hero__inner {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  color: #ffffff;
}
.hero__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d97a2c;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}
.hero__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.hero__text {
  margin-top: 24px;
  font-size: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-sizing: border-box;
}
.btn--accent {
  background-color: #d97a2c;
  color: #1d2237;
}
.btn--accent--hover {
  background-color: #c46e25;
}
.btn--primary {
  background-color: #2a3357;
  color: #ffffff;
}
.btn--primary--hover {
  background-color: #20294a;
}
.btn--outline {
  background-color: transparent;
  color: #1d2237;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
}
.btn--outline--hover {
  background-color: #ecedf2;
}
.btn--ghost-light {
  background-color: transparent;
  color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light--hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Section */
.section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
}
.section--center {
  text-align: center;
}
.section__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}
.section__lead {
  color: #5e667a;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* Cards grid */
.cards-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
}
.cards-grid--padded {
  margin-top: 32px;
}

.card {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 8px;
}
.card__icon {
  color: #d97a2c;
  font-size: 24px;
  margin-bottom: 12px;
}
.card__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}
.card__text {
  font-size: 14px;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 0;
}

/* Stats */
.stats {
  background-color: #ecedf2;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
.stats__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}
.stats__grid {
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stats__item {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.stats__num {
  font-family: "PT Serif", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #d97a2c;
}
.stats__label {
  margin-top: 8px;
  font-size: 14px;
  color: #5e667a;
}

/* Review */
.review {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 8px;
}
.review__stars {
  color: #d97a2c;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.review__text {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}
.review__author {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}
.review__role {
  display: block;
  font-size: 12px;
  color: #5e667a;
  font-weight: 400;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.split__col {
  display: block;
}
.split__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}
.split__text {
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 16px;
}
.split__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.split__item {
  font-size: 14px;
  color: #5e667a;
  padding-top: 4px;
  padding-bottom: 4px;
}
.split__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.split__aside {
  background-color: #ecedf2;
  border-radius: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
}
.split__aside-title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}
.split__aside-text {
  font-size: 14px;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 12px;
}

/* CTA */
.cta {
  background-color: #2a3357;
  color: #ffffff;
  border-radius: 16px;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
}
.cta__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}
.cta__text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* Article */
.article {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
}
.article__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}
.article__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 24px;
}
.article__p {
  font-size: 16px;
  line-height: 1.6;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 16px;
}
.article__muted {
  font-size: 14px;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 24px;
}
.article__h2 {
  font-family: "PT Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
.article__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 24px;
}
.article__li {
  color: #5e667a;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 1.6;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 24px;
}
.feature {
  background-color: #ecedf2;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
}
.feature__title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.feature__text {
  font-size: 14px;
  color: #5e667a;
}

/* Reqs */
.reqs {
  background-color: #ecedf2;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.reqs__row {
  display: block;
}
.reqs__k {
  display: block;
  font-weight: 600;
  font-size: 14px;
}
.reqs__v {
  display: block;
  font-size: 14px;
  color: #5e667a;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.service {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 8px;
}
.service__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}
.service__text {
  font-size: 14px;
  color: #5e667a;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

/* Howto */
.howto {
  background-color: #ecedf2;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.howto__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}
.howto__list {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  color: #5e667a;
}
.howto__list--plain {
  list-style-type: none;
  padding-left: 0;
}
.howto__item {
  font-size: 14px;
  line-height: 1.6;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Vacancies */
.vac-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 720px;
}
.vac-filters__search {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 14px;
}
.vac-filters__sort {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 14px;
}
.vac-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vac-item {
  display: block;
}
.vac-card {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 8px;
  text-decoration: none;
  color: #1d2237;
  cursor: pointer;
}
.vac-card--hover {
  border-color: #d97a2c;
}
.vac-card__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vac-card__main {
  flex-grow: 1;
}
.vac-card__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 4px;
}
.vac-card__short {
  font-size: 14px;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 0;
}
.vac-card__tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vac-card__tag {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: #ecedf2;
  border-radius: 4px;
  font-size: 12px;
}
.vac-card__salary {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #d97a2c;
}
.vac-card__employment {
  font-size: 12px;
  color: #5e667a;
  margin-top: 4px;
}
.vac-empty {
  color: #5e667a;
  display: none;
}
.vac-empty--show {
  display: block;
}

/* Vacancy detail */
.vac-detail {
  display: none;
}
.vac-detail--show {
  display: block;
}
.vac-back {
  font-size: 14px;
  color: #d97a2c;
  text-decoration: none;
  cursor: pointer;
}
.vac-back--hover {
  text-decoration: underline;
}
.vac-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.vac-meta__cell {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #ecedf2;
  border-radius: 6px;
  font-size: 14px;
}
.vac-apply {
  margin-top: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #2a3357;
  color: #ffffff;
  border-radius: 8px;
}
.vac-apply__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}
.vac-apply__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  margin-bottom: 16px;
}
.vac-apply__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq__item {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
.faq__item--open {
  border-color: #d97a2c;
}
.faq__q {
  font-family: "PT Serif", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  width: 100%;
  text-align: left;
  font-family: "PT Serif", Georgia, serif;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  color: #1d2237;
}
.faq__sign {
  color: #d97a2c;
  font-size: 20px;
  line-height: 1;
}
.faq__a {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #5e667a;
  display: none;
}
.faq__a--open {
  display: block;
}

/* Contacts */
.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contacts__col {
  display: block;
}
.contacts__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contacts__item {
  display: block;
}
.contacts__k {
  font-size: 12px;
  color: #5e667a;
  margin-bottom: 4px;
}
.contacts__v {
  font-size: 16px;
  font-weight: 600;
  color: #1d2237;
  text-decoration: none;
}
.contacts__v--hover {
  color: #d97a2c;
}
.contacts__note {
  font-size: 12px;
  color: #5e667a;
  margin-top: 4px;
  margin-bottom: 0;
}
.contacts__form-title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}
.contacts__form-lead {
  font-size: 14px;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 16px;
}

/* Form */
.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form__row {
  display: block;
}
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form__input {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}
.form__textarea {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  resize: vertical;
}
.form__check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: #1d2237;
}
.form__check-box {
  margin-top: 4px;
}
.form__link {
  color: #d97a2c;
  text-decoration: underline;
}
.form__error {
  font-size: 12px;
  color: #b91c1c;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}
.form__error--show {
  display: block;
}
.form__ok {
  font-size: 14px;
  color: #d97a2c;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}
.form__ok--show {
  display: block;
}

/* Map */
.map {
  margin-top: 48px;
}
.map__title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}
.map__frame {
  border-radius: 8px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
}
.map__iframe {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  display: block;
}
.map__caption {
  margin-top: 12px;
  font-size: 14px;
  color: #5e667a;
}

/* Footer */
.footer {
  margin-top: 64px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dcdee5;
  background-color: rgba(236, 237, 242, 0.5);
}
.footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer__col {
  display: block;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer__logo {
  width: 40px;
  height: 40px;
}
.footer__brand-text {
  font-family: "PT Serif", Georgia, serif;
  font-weight: 700;
}
.footer__desc {
  font-size: 14px;
  color: #5e667a;
  margin-top: 0;
  margin-bottom: 0;
}
.footer__title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}
.footer__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.footer__li {
  font-size: 14px;
  color: #5e667a;
  padding-top: 4px;
  padding-bottom: 4px;
}
.footer__li-small {
  font-size: 12px;
  color: #5e667a;
  padding-top: 4px;
  padding-bottom: 4px;
}
.footer__link {
  color: #5e667a;
  text-decoration: none;
  cursor: pointer;
}
.footer__link--hover {
  color: #d97a2c;
}
.footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dcdee5;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 12px;
  color: #5e667a;
  text-align: center;
}

/* Chat */
.chat-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: #d97a2c;
  color: #ffffff;
  font-size: 24px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.chat-btn--hidden {
  display: none;
}
.chat {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  z-index: 50;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}
.chat[hidden] {
  display: none;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #2a3357;
  color: #ffffff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
}
.chat__head-info {
  flex-grow: 1;
}
.chat__name {
  font-size: 14px;
  font-weight: 600;
}
.chat__status {
  font-size: 12px;
  opacity: 0.8;
}
.chat__close {
  background-color: transparent;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-size: 18px;
  cursor: pointer;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
}
.chat__close--hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.chat__body {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
}
.chat__msg {
  max-width: 80%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 14px;
  font-size: 14px;
}
.chat__msg--bot {
  background-color: #ecedf2;
  color: #1d2237;
  align-self: flex-start;
}
.chat__msg--user {
  background-color: #2a3357;
  color: #ffffff;
  align-self: flex-end;
}
.chat__form {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dcdee5;
}
.chat__input {
  flex-grow: 1;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}
.chat__send {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  background-color: #d97a2c;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

/* Cookies */
.cookies {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dcdee5;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.cookies__text {
  font-size: 14px;
  color: #1d2237;
  margin-top: 0;
  margin-bottom: 12px;
}
.cookies__link {
  color: #d97a2c;
  text-decoration: underline;
}
.cookies__btn {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #2a3357;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

/* Tablet */
@media (min-width: 640px) {
  .hero__inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .hero__title {
    font-size: 44px;
  }
  .hero__actions {
    flex-direction: row;
  }
  .btn {
    width: auto;
  }
  .split__actions {
    flex-direction: row;
    align-items: flex-start;
  }
  .cta__actions {
    flex-direction: row;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .reqs {
    grid-template-columns: 1fr 1fr;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .vac-filters {
    flex-direction: row;
  }
  .vac-filters__search {
    flex-grow: 1;
  }
  .vac-card__row {
    flex-direction: row;
    justify-content: space-between;
  }
  .vac-meta {
    grid-template-columns: 1fr 1fr;
  }
  .vac-apply__actions {
    flex-direction: row;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .chat {
    left: auto;
    width: 360px;
  }
  .cookies {
    max-width: 420px;
    right: auto;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
  .header__burger {
    display: none;
  }
  .header__mobile {
    display: none;
  }
  .header__mobile--open {
    display: none;
  }
  .header__phone {
    display: inline-flex;
  }
  .hero__inner {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .hero__title {
    font-size: 56px;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .features--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contacts {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
