/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.contacts {
  scroll-margin-top: 90px;
}
.contacts__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 64px;
       column-gap: 64px;
}
@media (max-width: 1024px) {
  .contacts__container {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 768px) {
  .contacts__container {
    flex-direction: column;
    row-gap: 40px;
  }
}
.contacts__content {
  width: 76%;
}
.contacts__content h1,
.contacts__content h3,
.contacts__content h4,
.contacts__content h5,
.contacts__content h6 {
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 0.1px;
}
.contacts__content h2 {
  font-size: var(--sk-text--h3);
  line-height: var(--sk-line-height--h3);
  margin-bottom: 24px;
  letter-spacing: 0.1px;
}
.contacts__content p {
  font-weight: 300;
  line-height: 28px;
}
.contacts__content a {
  text-decoration: none;
  font-weight: inherit;
}
.contacts__content p:has(img) {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .contacts__content {
    width: 100%;
  }
}
.contacts__form {
  width: 100%;
  max-width: 352px;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .contacts__form {
    max-width: 100%;
    margin-top: 0;
  }
}
