*,
*::before,
*::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

html {
  interpolate-size: allow-keywords;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-family: "Inter", sans-serif;
}

body {
  background: #fafafa;
}

.home {
  background: url("../img/bg-page.svg") center center/cover no-repeat;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
  width: 100%;
}

.button {
  border-radius: 52px;
  padding: 16px 24px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  background: #083555;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 576px) {
  .button {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.button:hover {
  opacity: 0.9;
}
.button_light {
  font-size: 18px;
  background: #fff;
  color: #083555;
}
@media (max-width: 576px) {
  .button_light {
    font-size: 16px;
  }
}
.button_light:hover {
  opacity: 0.94;
}
.button_submit {
  width: 100%;
  margin-top: 8px;
}
.button_callback {
  padding: 12px 32px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .button_callback {
    width: 100%;
  }
}

.input {
  border: 1px solid rgba(152, 152, 152, 0.2);
  border-radius: 6px;
  padding: 12px 18px;
  background: #fafafa;
  font-weight: 500;
  font-size: 16px;
  color: #083555;
  width: 100%;
}
.input::-moz-placeholder {
  color: #083555;
}
.input::placeholder {
  color: #083555;
}
.input_textarea {
  height: 88px;
  resize: none;
}

.header {
  padding: 16px 0;
  background: #fff;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .header__logo img {
    height: 40px;
    width: auto;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media (max-width: 1200px) {
  .header__inner {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (max-width: 992px) {
  .header__inner {
    flex-direction: row-reverse;
  }
}
@media (max-width: 576px) {
  .header__inner {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 28px;
  column-gap: 28px;
}
@media (max-width: 1200px) {
  .header__nav {
    -moz-column-gap: 14px;
    column-gap: 14px;
  }
}
@media (max-width: 576px) {
  .header__nav {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.header__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 28px;
  column-gap: 28px;
  list-style-type: none;
  padding: 0;
}
@media (max-width: 1200px) {
  .header__list {
    -moz-column-gap: 14px;
    column-gap: 14px;
  }
}
@media (max-width: 992px) {
  .header__list {
    display: none;
  }
}
.header__list a {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  text-decoration: none;
  transition: all 0.25s;
}
.header__list a:hover {
  color: #00a0e3;
}
.header__search-button,
.header__menu-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: #083555;
  transition: all 0.25s;
}
.header__search-button:hover,
.header__menu-button:hover {
  color: #00a0e3;
}
.header__search-button i,
.header__menu-button i {
  font-size: 20px;
  line-height: 20px;
}
@media (max-width: 576px) {
  .header__search-button i,
  .header__menu-button i {
    font-size: 18px;
    line-height: 18px;
  }
}
.header__search-button.active,
.header__menu-button.active {
  color: #00a0e3;
}
.header__menu-button {
  display: none;
}
@media (max-width: 992px) {
  .header__menu-button {
    display: block;
  }
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.header__contact a {
  font-weight: 500;
  font-size: 18px;
  color: #00a0e3;
  text-decoration: none;
}
@media (max-width: 576px) {
  .header__contact a {
    font-size: 16px;
  }
}
.header__contact span {
  font-weight: 300;
  font-size: 13px;
  color: #989898;
}
@media (max-width: 576px) {
  .header__contact span {
    font-size: 12px;
  }
}
.header__search {
  border-radius: 16px;
  padding: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
  position: absolute;
  right: 16px;
  bottom: -118px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: 0.3s ease;
  z-index: 10;
}
@media (max-width: 576px) {
  .header__search {
    padding: 12px;
    left: 16px;
    bottom: -98px;
  }
}
.header__search.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__search-input {
  width: 552px;
}
@media (max-width: 768px) {
  .header__search-input {
    width: 450px;
  }
}
@media (max-width: 576px) {
  .header__search-input {
    width: 100%;
  }
}
.header__search-submit {
  padding: 0;
  min-height: 50px;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__search-submit i {
  font-size: 20px;
  line-height: 20px;
}
.header__mobile {
  border-radius: 16px;
  padding: 12px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  position: absolute;
  right: 16px;
  top: 84px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: 0.3s ease;
}
@media (max-width: 576px) {
  .header__mobile {
    top: 66px;
  }
}
.header__mobile.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 20;
}
.header__mobile ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.header__mobile ul a {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  text-decoration: none;
}

.link {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  text-decoration: none;
  transition: all 0.25s;
}
.link span {
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 576px) {
  .link span {
    font-size: 16px;
  }
}
.link i {
  font-size: 20px;
  line-height: 20px;
}
@media (max-width: 576px) {
  .link i {
    font-size: 18px;
    line-height: 18px;
  }
}
.link_light {
  color: #fff;
}
.link_light:hover {
  opacity: 0.9;
}

.promo {
  background: url("../img/bg-hero.jpg") center center/cover no-repeat;
  padding: 77px 0;
}
@media (max-width: 992px) {
  .promo {
    padding: 60px 0 168px 0;
    margin-bottom: 140px;
  }
}
@media (max-width: 576px) {
  .promo {
    padding: 60px 0 108px 0;
    margin-bottom: 175px;
    background: url("../img/bg-hero.jpg") 33% center/cover no-repeat;
  }
}
.promo_page {
  padding: 28px 0 109px 0;
}
@media (max-width: 1200px) {
  .promo_page {
    padding: 28px 0 168px 0;
  }
}
@media (max-width: 992px) {
  .promo_page {
    padding: 40px 0 168px 0;
  }
}
@media (max-width: 576px) {
  .promo_page {
    padding: 40px 0 100px 0;
    margin-bottom: 160px;
  }
}
.promo_page .promo__title {
  margin-top: 66px;
  max-width: 774px;
}
@media (max-width: 1200px) {
  .promo_page .promo__title {
    margin-top: 33px;
  }
}
@media (max-width: 576px) {
  .promo_page .promo__title {
    margin-top: 0;
  }
}
.promo_page .promo__text {
  font-size: 16px;
  max-width: 822px;
}
.promo_page .promo__features {
  bottom: -109px;
}
@media (max-width: 1200px) {
  .promo_page .promo__features {
    bottom: -168px;
  }
}
@media (max-width: 576px) {
  .promo_page .promo__features {
    bottom: -150px;
  }
}
.promo__title {
  font-weight: 600;
  font-size: 40px;
  color: #fff;
  max-width: 590px;
}
@media (max-width: 576px) {
  .promo__title {
    font-size: 24px;
  }
}
.promo__text {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .promo__text {
    font-size: 18px;
  }
}
.promo__wrapper {
  margin-top: 52px;
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 576px) {
  .promo__wrapper {
    justify-content: space-between;
    margin-top: 40px;
  }
}
.promo__features {
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
  position: absolute;
  right: 16px;
  bottom: -77px;
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .promo__features {
    left: 0;
    padding: 0 16px;
    bottom: -196px;
    right: auto;
  }
}
@media (max-width: 576px) {
  .promo__features {
    bottom: -172px;
  }
}
.promo-card {
  border-radius: 12px;
  padding: 27px 20px;
  width: 204px;
  height: 262px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #083555;
  text-align: center;
}
@media (max-width: 992px) {
  .promo-card {
    width: 100%;
    height: 223px;
  }
}
@media (max-width: 576px) {
  .promo-card {
    padding: 12px;
    height: 221px;
  }
}
.promo-card_accent {
  background: #00a0e3;
}
.promo-card__image {
  margin: 0 auto;
}
.promo-card__place {
  font-weight: 800;
  font-size: 80px;
  color: #fff;
  line-height: 80px;
}
.promo-card__place span {
  font-weight: 600;
  font-size: 18px;
  display: block;
  line-height: 18px;
}
.promo-card__title {
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .promo-card__title {
    font-size: 15px;
  }
}
.promo-card__text {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-top: 6px;
}
@media (max-width: 576px) {
  .promo-card__text {
    font-size: 13px;
  }
}

.section {
  padding: 75px 0 60px 0;
}
@media (max-width: 576px) {
  .section {
    padding: 55px 0 40px 0;
  }
}

.title {
  font-weight: 500;
  color: #121212;
}
@media (max-width: 576px) {
  .title {
    font-size: 18px;
  }
}
.title_section {
  font-size: 32px;
  position: relative;
}
@media (max-width: 576px) {
  .title_section {
    font-size: 24px;
  }
}
.title_section::before {
  content: "";
  border-radius: 1px;
  width: 52px;
  height: 5px;
  background: #083555;
  position: absolute;
  top: -10px;
  left: 0;
}
@media (max-width: 576px) {
  .title_section::before {
    width: 40px;
    height: 4px;
    top: -8px;
  }
}
.title_medium {
  font-size: 24px;
}
@media (max-width: 576px) {
  .title_medium {
    font-size: 20px;
  }
}

.services {
  overflow: hidden;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .services__header {
    margin-top: 24px;
  }
}
.services__controls {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.services__arrow {
  font-size: 24px;
  line-height: 24px;
  color: #083555;
  transition: all 0.25s;
  cursor: pointer;
}
@media (max-width: 576px) {
  .services__arrow {
    font-size: 18px;
    line-height: 18px;
  }
}
.services__arrow:hover {
  opacity: 0.9;
}
.services__arrow.swiper-button-disabled {
  color: #989898;
}
.services__all {
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  text-decoration: none;
  transition: all 0.25s;
}
.services__all:hover {
  opacity: 0.9;
}
.services__all i {
  font-size: 16px;
  line-height: 16px;
}
.services__slider {
  margin-top: 12px;
  overflow: visible;
}
@media (max-width: 576px) {
  .services__slider {
    margin-top: 8px;
  }
  .services__slider .swiper-slide {
    width: 90%;
  }
}
.services__other {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .services__other {
    margin-top: 24px;
  }
}
.services__wrapper {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media (max-width: 768px) {
  .services__wrapper {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}
@media (max-width: 576px) {
  .services__wrapper {
    margin-top: 12px;
    row-gap: 8px;
  }
}

.card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
@media (max-width: 576px) {
  .card {
    padding: 16px;
  }
}
.card_horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card_horizontal .card__footer {
  margin-top: 0;
}
.card_about {
  padding: 16px;
}
@media (max-width: 576px) {
  .card_about {
    padding: 12px;
  }
}
.card__header {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media (max-width: 576px) {
  .card__header {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.card__header i {
  font-size: 52px;
  line-height: 52px;
  color: #00a0e3;
}
.card__icon {
  min-height: 52px;
  min-width: 52px;
}
.card__icon svg {
  height: 52px;
  width: 52px;
}
@media (max-width: 576px) {
  .card__header i {
    font-size: 44px;
    line-height: 44px;
  }
  .card__icon {
    min-height: 44px;
    min-width: 44px;
  }
  .card__icon svg {
    height: 44px;
    width: 44px;
  }
}
.card__header_about i {
  font-size: 32px;
  line-height: 32px;
}
.card__title {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
@media (max-width: 576px) {
  .card__title {
    font-size: 16px;
  }
}
.card__body {
  border-radius: 12px;
  padding: 20px;
  background: #fafafa;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .card__body {
    margin-top: 16px;
    padding: 16px;
  }
}
.card__list {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.card__list a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card__list a:hover span,
.card__list a:hover i {
  color: #083555;
}
.card__list a span {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  transition: all 0.25s;
}
@media (max-width: 576px) {
  .card__list a span {
    font-size: 14px;
  }
}
.card__list a i {
  font-size: 18px;
  line-height: 18px;
  color: #989898;
  transition: all 0.25s;
}
.card__footer {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .card__footer {
    margin-top: 16px;
  }
}
.card__more {
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  transition: all 0.25s;
  text-decoration: none;
}
@media (max-width: 576px) {
  .card__more {
    margin-top: 4px;
  }
}
.card__more:hover {
  opacity: 0.9;
}
.card__more i {
  font-size: 16px;
  line-height: 16px;
}
.card__text {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  margin-top: 16px;
}
@media (max-width: 576px) {
  .card__text {
    font-size: 13px;
    margin-top: 8px;
  }
}

.cta {
  background: url("../img/bg.jpg") center center/cover no-repeat;
  padding: 40px 0;
}
@media (max-width: 576px) {
  .cta {
    background: url("../img/bg.jpg") 22% center/cover no-repeat;
  }
}
.cta_today {
  padding: 80px 0;
}
@media (max-width: 576px) {
  .cta_today {
    padding: 40px 0;
  }
}
.cta__grid {
  display: grid;
  grid-template-columns: 740px 408px;
  -moz-column-gap: 52px;
  column-gap: 52px;
}
@media (max-width: 1200px) {
  .cta__grid {
    grid-template-columns: auto 408px;
    -moz-column-gap: 26px;
    column-gap: 26px;
  }
}
@media (max-width: 992px) {
  .cta__grid {
    grid-template-columns: 1fr;
    row-gap: 52px;
  }
}
@media (max-width: 576px) {
  .cta__grid {
    row-gap: 40px;
  }
}
.cta__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cta__flex {
    flex-direction: column;
    row-gap: 52px;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .cta__flex {
    row-gap: 32px;
  }
  .cta__flex .button {
    width: 100%;
  }
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 56px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cta__wrapper {
    row-gap: 28px;
  }
}
@media (max-width: 576px) {
  .cta__wrapper {
    row-gap: 8px;
  }
}
.cta__wrapper i {
  font-size: 160px;
  line-height: 160px;
  color: #fff;
}
@media (max-width: 1200px) {
  .cta__wrapper i {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 576px) {
  .cta__wrapper i {
    font-size: 72px;
    line-height: 72px;
  }
}
.cta__text h2 {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 576px) {
  .cta__text h2 {
    font-size: 16px;
  }
}
.cta__text p {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .cta__text p {
    font-size: 24px;
  }
}

.form {
  border-radius: 16px;
  padding: 24px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (max-width: 576px) {
  .form {
    padding: 20px;
  }
}
.form-callback {
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 16px;
  column-gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .form-callback {
    flex-direction: column;
    row-gap: 16px;
  }
}
@media (max-width: 576px) {
  .form-callback {
    row-gap: 8px;
  }
}
.form-callback .input {
  max-width: 280px;
}
@media (max-width: 992px) {
  .form-callback .input {
    max-width: 240px;
  }
}
@media (max-width: 768px) {
  .form-callback .input {
    max-width: 100%;
  }
}
.form-callback_promo {
  margin-top: 52px;
}
@media (max-width: 1200px) {
  .form-callback_promo {
    margin-top: 26px;
  }
}
@media (max-width: 576px) {
  .form-callback_promo {
    margin-top: 40px;
  }
}
.form-callback_promo .input {
  max-width: 240px;
}
@media (max-width: 768px) {
  .form-callback_promo .input {
    max-width: 100%;
  }
}

.file__title {
  font-weight: 500;
  font-size: 16px;
  color: #083555;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
  column-gap: 6px;
}
.file__title i {
  font-size: 20px;
  line-height: 20px;
}
.file__drop {
  border: 1px dashed rgba(152, 152, 152, 0.2);
  border-radius: 6px;
  padding: 12px 18px;
  background: #fafafa;
  font-weight: 500;
  font-size: 16px;
  color: #083555;
  width: 100%;
  margin-top: 8px;
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file__drop:hover {
  border-color: #083555;
}
.file__list {
  margin-top: 8px;
  border: 1px solid rgba(152, 152, 152, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  background: #fafafa;
  display: none;
}
.file__list.active {
  display: flex;
  flex-direction: column;
}
.file__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.file__name {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.file__remove {
  cursor: pointer;
  opacity: 0.32;
  transition: all 0.25s;
}
.file__remove i {
  font-size: 12px;
  line-height: 12px;
}
.file__remove:hover {
  opacity: 1;
}

.choice_service .choice__wrapper {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .choice_service .choice__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .choice_service .choice__wrapper .choice__counter:last-child {
    grid-column: 1/3;
  }
}
.choice__wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media (max-width: 992px) {
  .choice__wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
  }
}
@media (max-width: 576px) {
  .choice__wrapper {
    margin-top: 24px;
    gap: 8px;
  }
}
.choice__counter {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
.choice__counter_accent {
  background: #083555;
}
.choice__counter_accent .choice__counter-state,
.choice__counter_accent .choice__counter-text {
  color: #fff;
}
.choice__counter-state {
  font-weight: 800;
  font-size: 60px;
  text-align: center;
  color: #00a0e3;
}
@media (max-width: 576px) {
  .choice__counter-state {
    font-size: 48px;
  }
}
.choice__counter-text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #121212;
}
@media (max-width: 576px) {
  .choice__counter-text {
    font-size: 14px;
  }
}

.about__wrapper {
  display: grid;
  grid-template-columns: 856px 320px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
@media (max-width: 1200px) {
  .about__wrapper {
    grid-template-columns: auto 320px;
  }
}
@media (max-width: 992px) {
  .about__wrapper {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
.about__description {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  margin-top: 12px;
}
@media (max-width: 576px) {
  .about__description {
    font-size: 14px;
    margin-top: 8px;
  }
}
.about__services {
  margin-top: 40px;
}
.about__items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (max-width: 576px) {
  .about__items {
    row-gap: 8px;
  }
}
.about__images {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 992px) {
  .about__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
}
@media (max-width: 576px) {
  .about__images {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .about__images img {
    margin: 0 auto;
  }
  .about__images img:first-child {
    max-width: 220px;
  }
}
.about__images img {
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
}

.results {
  overflow: hidden;
}
.results__controls {
  display: flex;
  justify-content: end;
  -moz-column-gap: 4px;
  column-gap: 4px;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .results__controls {
    justify-content: start;
    margin-top: 12px;
  }
}
.results__arrow {
  font-size: 24px;
  line-height: 24px;
  color: #083555;
  transition: all 0.25s;
  cursor: pointer;
}
@media (max-width: 576px) {
  .results__arrow {
    font-size: 18px;
    line-height: 18px;
  }
}
.results__arrow:hover {
  opacity: 0.9;
}
.results__arrow.swiper-button-disabled {
  color: #989898;
}
.results__slider {
  margin-top: 12px;
  overflow: visible;
}
@media (max-width: 576px) {
  .results__slider {
    margin-top: 8px;
  }
}
.results__slider .swiper-slide {
  width: 897px;
}
@media (max-width: 992px) {
  .results__slider .swiper-slide {
    width: 100%;
  }
}
.results__item {
  border-radius: 12px;
  padding: 24px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
@media (max-width: 576px) {
  .results__item {
    padding: 16px;
  }
}
.results__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .results__item-header {
    flex-direction: column;
    align-items: start;
    row-gap: 2px;
  }
}
.results__item-title {
  font-weight: 500;
  font-size: 20px;
  color: #121212;
}
@media (max-width: 576px) {
  .results__item-title {
    font-size: 18px;
  }
}
.results__item-label {
  font-weight: 400;
  font-size: 13px;
  color: #989898;
}
.results__item-body {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
}
@media (max-width: 768px) {
  .results__item-body {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
@media (max-width: 576px) {
  .results__item-body {
    margin-top: 16px;
    row-gap: 8px;
  }
}
.results__item-task {
  padding: 24px;
}
@media (max-width: 576px) {
  .results__item-task {
    padding: 24px 16px;
  }
}
.results__item-solution {
  border-radius: 12px;
  padding: 24px 24px 16px;
  background: #fafafa;
}
@media (max-width: 576px) {
  .results__item-solution {
    padding: 24px 16px 16px;
  }
}
.results__item-subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #121212;
}
.results__item-content {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  margin-top: 6px;
}
.results__item-more {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.25s;
  margin-top: 6px;
}
.results__item-toggle {
  border: none;
  background: none;
  padding: 0;
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  margin-top: 16px;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.25s;
}
.results__item-toggle:hover {
  opacity: 0.9;
}
.results__item-toggle i {
  font-size: 16px;
  line-height: 16px;
  transition: all 0.25s;
}
.results__item.active .results__item-more {
  -webkit-line-clamp: unset;
}
.results__item.active .results__item-toggle i {
  transform: rotate(180deg);
}

.reviews {
  overflow: hidden;
}
.reviews__controls {
  display: flex;
  justify-content: end;
  -moz-column-gap: 4px;
  column-gap: 4px;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .reviews__controls {
    justify-self: start;
    margin-top: 12px;
  }
}
.reviews__arrow {
  font-size: 24px;
  line-height: 24px;
  color: #083555;
  transition: all 0.25s;
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
}
.reviews__arrow:hover {
  opacity: 0.9;
}
.reviews__arrow.swiper-button-disabled {
  color: #989898;
}
.reviews__slider {
  margin-top: 12px;
  overflow: visible;
}
.reviews__item {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
@media (max-width: 576px) {
  .reviews__item {
    padding: 16px;
  }
}
.reviews__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__item-name {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
@media (max-width: 576px) {
  .reviews__item-name {
    font-size: 16px;
  }
}
.reviews__item-company {
  font-weight: 400;
  font-size: 13px;
  color: #989898;
}
.reviews__item-rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
}
.reviews__item-rating i {
  font-size: 24px;
  line-height: 24px;
  color: #ffd500;
}
.reviews__item-rating span {
  font-weight: 500;
  font-size: 15px;
  color: #121212;
}
.reviews__item-body {
  margin-top: 20px;
  border-radius: 12px;
  padding: 20px 20px 12px;
  background: #fafafa;
}
@media (max-width: 576px) {
  .reviews__item-body {
    padding: 16px 16px 8px;
    margin-top: 16px;
  }
}
.reviews__item-more {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.25s;
}
.reviews__item-toggle {
  border: none;
  background: none;
  padding: 0;
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  margin-top: 16px;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.25s;
}
.reviews__item-toggle:hover {
  opacity: 0.9;
}
.reviews__item-toggle i {
  font-size: 16px;
  line-height: 16px;
  transition: all 0.25s;
}
.reviews__item-toggle.active .results__item-more {
  -webkit-line-clamp: unset;
}
.reviews__item-toggle.active .results__item-toggle i {
  transform: rotate(180deg);
}
.reviews__item-footer {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .reviews__item-footer {
    margin-top: 16px;
  }
}
.reviews__item-open {
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.reviews__item-open:hover {
  opacity: 0.9;
}
.reviews__item.active .reviews__item-more {
  -webkit-line-clamp: unset;
}
.reviews__item.active .reviews__item-toggle i {
  transform: rotate(180deg);
}

.materials {
  overflow: hidden;
}
.materials__controls {
  display: flex;
  justify-content: end;
  -moz-column-gap: 4px;
  column-gap: 4px;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .materials__controls {
    justify-self: start;
    margin-top: 12px;
  }
}
.materials__arrow {
  font-size: 24px;
  line-height: 24px;
  color: #083555;
  transition: all 0.25s;
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
}
.materials__arrow:hover {
  opacity: 0.9;
}
.materials__arrow.swiper-button-disabled {
  color: #989898;
}
.materials__slider {
  margin-top: 12px;
  overflow: visible;
}
.materials__item {
  border-radius: 12px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
.materials__item-image img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
}
.materials__item-body {
  margin-top: 16px;
  padding: 0 16px;
}
.materials__item-title {
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.materials__item-title a {
  color: #083555;
  text-decoration: none;
  transition: all 0.25s;
}
.materials__item-title a:hover {
  opacity: 0.9;
}
.materials__item-excerpt {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.materials__item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 16px;
  padding-bottom: 12px;
}
.materials__item-footer time {
  font-weight: 400;
  font-size: 13px;
  color: #989898;
}
.materials__item-footer a {
  font-size: 20px;
  line-height: 20px;
  color: #083555;
  text-decoration: none;
  transition: all 0.25s;
}
.materials__item-footer a:hover {
  opacity: 0.9;
}

@media (max-width: 576px) {
  .links {
    padding: 40px 0;
  }
}
.links__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .links__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .links__wrapper {
    margin-top: 12px;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
.links__item {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
@media (max-width: 768px) {
  .links__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .links__item {
    padding: 12px;
  }
}
.links__item-name {
  font-weight: 500;
  font-size: 17px;
  color: #121212;
}
@media (max-width: 576px) {
  .links__item-name {
    font-size: 15px;
  }
}
.links__item-site {
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  text-decoration: none;
  margin-top: 12px;
}
@media (max-width: 576px) {
  .links__item-site {
    margin-top: 4px;
  }
}
.links__item-site:hover {
  opacity: 0.9;
}
.links__item-site i {
  font-size: 16px;
  line-height: 16px;
}

.footer {
  padding: 24px 0 12px 0;
  background: #083555;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .footer__left {
    display: flex;
    justify-content: space-between;
  }
}
.footer__contacts {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .footer__contacts {
    margin-top: 0;
    display: flex;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media (max-width: 576px) {
  .footer__contacts {
    flex-direction: column;
    align-items: end;
  }
}
.footer__phone {
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .footer__phone {
    align-items: end;
  }
}
.footer__phone a {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 576px) {
  .footer__phone a {
    font-size: 16px;
  }
}
.footer__phone a:hover {
  text-decoration: underline;
}
.footer__phone span {
  font-weight: 300;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 576px) {
  .footer__phone span {
    font-size: 12px;
  }
}
.footer__social {
  margin-top: 24px;
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
@media (max-width: 992px) {
  .footer__social {
    margin-top: 4px;
  }
}
@media (max-width: 576px) {
  .footer__social {
    margin-top: 8px;
  }
}
.footer__social a {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}
.footer__social svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer__right {
    row-gap: 24px;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .footer__right {
    margin-top: 24px;
    align-items: center;
  }
}
.footer__nav {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .footer__nav {
    margin-top: 0;
  }
}
.footer__nav ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: end;
  -moz-column-gap: 28px;
  column-gap: 28px;
}
@media (max-width: 768px) {
  .footer__nav ul {
    flex-direction: column;
    row-gap: 8px;
  }
}
@media (max-width: 576px) {
  .footer__nav ul {
    align-items: center;
  }
}
.footer__nav a {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
.footer__nav a:hover {
  text-decoration: underline;
}
.footer__info {
  font-weight: 400;
  font-size: 13px;
  text-align: right;
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
@media (max-width: 992px) {
  .footer__info {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .footer__info {
    text-align: center;
    font-size: 11px;
  }
}
.footer__info a {
  color: #fff;
  text-decoration: none;
}
.footer__info a:hover {
  text-decoration: underline;
}
.footer__info address {
  font-style: normal;
}
.footer__line {
  border: 1px solid rgba(255, 255, 255, 0.32);
  margin-top: 24px;
}
@media (max-width: 576px) {
  .footer__line {
    margin-top: 16px;
  }
}
.footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .footer__bottom {
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
  }
}
@media (max-width: 576px) {
  .footer__bottom {
    margin-top: 16px;
    align-items: center;
    row-gap: 8px;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  opacity: 0.8;
}
@media (max-width: 576px) {
  .footer__copyright {
    font-size: 11px;
    text-align: center;
  }
}
/* .footer__links {
  display: flex;
  -moz-column-gap: 16px;
  column-gap: 16px;
} */

.footer__links ul {
  display: flex;
  -moz-column-gap: 16px;
  column-gap: 16px;
  list-style-type: none;
  padding: 0;
}
.footer__links a {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 576px) {
  .footer__links a {
    font-size: 11px;
  }
}
.footer__links a:hover {
  text-decoration: underline;
}

.page-header {
  margin-top: 60px;
}
@media (max-width: 576px) {
  .page-header {
    margin-top: 32px;
  }
}
.page-header__flex {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-header__flex {
    flex-direction: column;
    row-gap: 16px;
    align-items: start;
  }
}

@media (max-width: 576px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ol {
  padding: 0;
  list-style-type: none;
  display: flex;
  -moz-column-gap: 4px;
  column-gap: 4px;
  flex-wrap: wrap;
}
.breadcrumbs ol li {
  font-size: 12px;
  font-weight: 500;
  color: #083555;
}
.breadcrumbs ol a {
  font-weight: 400;
  color: #989898;
  text-decoration: none;
  transition: all 0.25s;
}
.breadcrumbs ol a::after {
  content: "/";
  margin-left: 4px;
}
.breadcrumbs ol a:hover {
  color: #083555;
}
.breadcrumbs ol a:hover::after {
  color: #989898;
}
.breadcrumbs_promo ol li {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}
.breadcrumbs_promo ol a {
  font-weight: 400;
  color: #fff;
}
.breadcrumbs_promo ol a:hover {
  color: #00a0e3;
}
.page-title {
  font-weight: 500;
  font-size: 40px;
  color: #121212;
  margin-top: 16px;
}
@media (max-width: 576px) {
  .page-title {
    font-size: 26px;
    margin-top: 0;
  }
}

.aside {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
.aside__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .aside__header {
    pointer-events: none;
  }
}
.aside__title {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
.aside__icon {
  transition: transform 0.25s;
  font-size: 20px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .aside__icon {
    display: none;
  }
}
.aside.is-open .aside__icon {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .aside.is-open .aside__body {
    display: block;
  }
}
@media (max-width: 767px) {
  .aside__body {
    display: none;
  }
}
@media (min-width: 768px) {
  .aside__body {
    display: block !important;
  }
}

.accordion {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.accordion__item {
  border-radius: 12px;
  padding: 16px;
  background: #fafafa;
}
.accordion__item.active .accordion__header {
  color: #00a0e3;
}
.accordion__item.active .accordion__header i {
  transform: rotate(180deg);
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__header {
  border: 0;
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  color: #121212;
  cursor: pointer;
  transition: all 0.25s;
}
.accordion__header:hover {
  color: #00a0e3;
}
.accordion__header i {
  font-size: 20px;
  line-height: 20px;
  transition: all 0.25s;
}
.accordion__list {
  list-style-type: none;
  padding: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.accordion__list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  text-decoration: none;
  transition: all 0.25s;
}
.accordion__list-item a:hover {
  color: #00a0e3;
}
.accordion__list-item a:hover i {
  color: #00a0e3;
}
.accordion__list-item a i {
  font-size: 16px;
  line-height: 16px;
  color: #989898;
}
.accordion__list-toggle {
  border: 0;
  padding: 0;
  background: none;
  font-weight: 500;
  font-size: 14px;
  color: #083555;
  margin-top: 8px;
}

.accordion__list-item.hidden {
  display: none;
}

@media (max-width: 576px) {
  .catalog {
    padding: 32px 0 40px 0;
  }
}
.catalog__grid {
  display: grid;
  grid-template-columns: 320px 856px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  align-items: start;
}
@media (max-width: 1200px) {
  .catalog__grid {
    grid-template-columns: 320px auto;
  }
}
@media (max-width: 768px) {
  .catalog__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
@media (max-width: 576px) {
  .catalog__grid {
    row-gap: 72px;
  }
}
.catalog__wrapper {
  margin-top: 10px;
}
.catalog__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .catalog__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .catalog__categories {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .catalog__categories {
    row-gap: 8px;
  }
}
.catalog__categories-item {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
@media (max-width: 576px) {
  .catalog__categories-item {
    flex-direction: row;
  }
}
.catalog__categories-header {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media (max-width: 576px) {
  .catalog__categories-header {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.catalog__categories-header i {
  font-size: 32px;
  line-height: 32px;
  color: #00a0e3;
}
.catalog__categories-icon {
  min-width: 32px;
  min-height: 32px;
}
.catalog__categories-icon svg {
  width: 32px;
  height: 32px;
}
.catalog__categories-header h3 {
  font-weight: 500;
  font-size: 16px;
  color: #121212;
}
@media (max-width: 576px) {
  .catalog__categories-header h3 {
    font-size: 15px;
  }
}
.catalog__categories-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  text-decoration: none;
  transition: all 0.25s;
}
@media (max-width: 576px) {
  .catalog__categories-link span {
    display: none;
  }
}
.catalog__categories-link i {
  font-size: 16px;
  line-height: 16px;
}
.catalog__categories-link:hover {
  opacity: 0.9;
}
.catalog__content h3 {
  font-weight: 500;
  font-size: 24px;
  color: #121212;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .catalog__content h3 {
    font-size: 20px;
    margin-top: 24px;
  }
}
.catalog__content p {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  margin-top: 12px;
}
@media (max-width: 576px) {
  .catalog__content p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .catalog__content ul {
    font-size: 14px;
  }
}
.catalog__cta {
  margin-top: 40px;
  background: url("../img/bg.jpg") 0% center/cover no-repeat;
  border-radius: 16px;
  padding: 58px 40px;
}
@media (max-width: 1200px) {
  .catalog__cta {
    padding: 29px 20px;
  }
}
@media (max-width: 576px) {
  .catalog__cta {
    padding: 24px 16px;
  }
}
.catalog__cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .catalog__cta-flex {
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
  }
}
@media (max-width: 576px) {
  .catalog__cta-flex {
    row-gap: 32px;
  }
}
.catalog__cta-text h3 {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 576px) {
  .catalog__cta-text h3 {
    font-size: 16px;
  }
}
.catalog__cta-text p {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .catalog__cta-text p {
    font-size: 24px;
  }
}
.catalog__cta .button {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .catalog__cta .button {
    width: 100%;
  }
}

.news {
  padding: 60px 0;
}
@media (max-width: 576px) {
  .news {
    padding: 40px 0;
  }
}
.news__wrapper {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 24px;
}
@media (max-width: 992px) {
  .news__wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
  }
}
@media (max-width: 576px) {
  .news__wrapper {
    grid-template-columns: 1fr;
  }
}
.news__pagination {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .news__pagination {
    margin-top: 10px;
  }
}
.news__pagination ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  -moz-column-gap: 6px;
  column-gap: 6px;
}
.news__pagination li a,
.news__pagination li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #989898;
  text-decoration: none;
  transition: all 0.25s;
}
.news__pagination a:hover {
  color: #083555;
}
.news__pagination .page-numbers.current {
  background: #083555;
  color: #fff;
  cursor: auto;
}

.contacts {
  padding: 60px 0;
}
@media (max-width: 576px) {
  .contacts {
    padding: 40px 0;
  }
}
.contacts__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media (max-width: 768px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}
.contacts__card {
  border-radius: 16px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 576px) {
  .contacts__card {
    padding: 16px;
    row-gap: 16px;
  }
}
.contacts__card-phone div {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.contacts__card-phone a {
  font-weight: 600;
  font-size: 20px;
  color: #083555;
  margin-top: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.contacts__card-phone a:hover {
  opacity: 0.9;
}
.contacts__card-phone span {
  font-weight: 300;
  font-size: 13px;
  color: #989898;
  display: block;
}
.contacts__card-info a {
  font-weight: 500;
  font-size: 15px;
  color: #121212;
  text-decoration: none;
  transition: all 0.25s;
}
.contacts__card-info a:hover {
  color: #083555;
}
.contacts__card-info address {
  font-weight: 400;
  font-size: 13px;
  color: #989898;
  font-style: normal;
  margin-top: 2px;
}
.contacts__card-about {
  font-weight: 500;
  font-size: 12px;
  color: #121212;
}
@media (max-width: 576px) {
  .contacts__card-about {
    font-size: 11px;
  }
}
.contacts__card-details {
  font-weight: 400;
  font-size: 13px;
  color: #989898;
  margin-top: 4px;
}
.contacts__card-social {
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.contacts__card-social a {
  color: #083555;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  transition: all 0.25s;
}
.contacts__card-social svg {
  fill: #083555;
  width: 20px;
  height: 20px;
}
.contacts__card-social a:hover {
  opacity: 0.9;
}
.contacts__map {
  border-radius: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  overflow: hidden;
}
@media (max-width: 576px) {
  .contacts__map {
    height: 482px;
  }
}

@media (max-width: 576px) {
  .search-results {
    padding: 32px 0 40px 0;
  }
}
.search-results__grid {
  display: grid;
  grid-template-columns: 320px 856px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  align-items: start;
}
@media (max-width: 1200px) {
  .search-results__grid {
    grid-template-columns: 320px auto;
  }
}
@media (max-width: 768px) {
  .search-results__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
@media (max-width: 576px) {
  .search-results__grid {
    row-gap: 72px;
  }
}
.search-results__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (max-width: 576px) {
  .search-results__wrapper {
    row-gap: 8px;
  }
}
.search-results__item {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 576px) {
  .search-results__item {
    height: 58px;
  }
}
.search-results__item-title {
  font-weight: 500;
  font-size: 16px;
  color: #121212;
}
@media (max-width: 576px) {
  .search-results__item-title {
    font-size: 15px;
  }
}
.search-results__item-link {
  font-weight: 500;
  font-size: 15px;
  color: #083555;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  text-decoration: none;
  transition: all 0.25s;
}
@media (max-width: 576px) {
  .search-results__item-link span {
    display: none;
  }
}
.search-results__item-link:hover {
  opacity: 0.9;
}
.search-results__item-link i {
  font-size: 16px;
  line-height: 16px;
}

.post {
  padding: 60px 0;
}
@media (max-width: 576px) {
  .post {
    padding: 8px 0 40px 0;
  }
}
.post__grid {
  display: grid;
  grid-template-columns: 392px 796px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  align-items: start;
}
@media (max-width: 1200px) {
  .post__grid {
    grid-template-columns: 392px auto;
  }
}
@media (max-width: 992px) {
  .post__grid {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}
.post__image {
  border-radius: 16px;
}
@media (max-width: 992px) {
  .post__image {
    width: 100%;
  }
}
.post__card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
}
@media (max-width: 576px) {
  .post__card {
    padding: 16px;
  }
}
.post__card-title {
  font-weight: 600;
  font-size: 28px;
  color: #083555;
}
@media (max-width: 576px) {
  .post__card-title {
    font-size: 22px;
  }
}
.post__card-content {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  margin-top: 8px;
}
.post__info {
  font-weight: 400;
  font-size: 13px;
  color: #989898;
  margin-top: 12px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .post__info {
    padding: 0;
  }
}
.post__details {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.post__source a {
  color: #083555;
  transition: all 0.25s;
}
.post__source a:hover {
  opacity: 0.9;
}

.need__short {
  border-radius: 16px;
  padding: 20px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
}
@media (max-width: 576px) {
  .need__short {
    padding: 16px;
    font-size: 15px;
  }
}
.need__content {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  margin-top: 32px;
}
@media (max-width: 576px) {
  .need__content {
    font-size: 14px;
    margin-top: 24px;
  }
}
.need__content h2 {
  font-weight: 500;
  font-size: 24px;
  color: #121212;
}
@media (max-width: 576px) {
  .need__content h2 {
    font-size: 20px;
  }
}
.need__content p {
  margin-top: 16px;
}
.need__content ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 16px;
}
@media (max-width: 576px) {
  .need__content ul {
    row-gap: 8px;
  }
}
.need__content ul li {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
@media (max-width: 576px) {
  .need__content ul li {
    padding: 12px;
  }
}
.need__content ul li:before {
  content: "\e817";
  font-family: "cniise-icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  font-size: 24px;
  line-height: 24px;
  color: #00a0e3;
}
.need__content ul li i {
  font-size: 24px;
  line-height: 24px;
  color: #00a0e3;
}
.need__content ul li span {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
@media (max-width: 576px) {
  .need__content ul li span {
    font-size: 13px;
  }
}

.primary {
  padding-top: 43px;
}
@media (max-width: 576px) {
  .primary {
    padding-top: 16px;
  }
}
.primary__content {
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  margin-top: 32px;
}
@media (max-width: 576px) {
  .primary__content {
    margin-top: 24px;
  }
}
.primary__content h2 {
  font-weight: 500;
  font-size: 24px;
  color: #121212;
}
@media (max-width: 576px) {
  .primary__content h2 {
    font-size: 20px;
  }
}
.primary__content p {
  margin-top: 16px;
}
.primary__content ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 16px;
}
@media (max-width: 576px) {
  .primary__content ul {
    row-gap: 8px;
  }
}
.primary__content ul li {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
@media (max-width: 576px) {
  .primary__content ul li {
    padding: 12px;
  }
}
.primary__content ul li:before {
  content: "\e817";
  font-family: "cniise-icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  font-size: 24px;
  line-height: 24px;
  color: #00a0e3;
}
.primary__content ul li i {
  font-size: 24px;
  line-height: 24px;
  color: #00a0e3;
}
.primary__content ul li span {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.primary__content ul li h3 {
  font-weight: 500;
  font-size: 15px;
  color: #121212;
}
.primary__content ul li p {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .primary__content ul li p {
    font-size: 13px;
  }
}
.primary__content ol {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .primary__content ol {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .primary__content ol {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .primary__content ol {
    gap: 8px;
  }
}
.primary__content ol li {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media (max-width: 576px) {
  .primary__content ol li {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .primary__content ol li:last-child {
    grid-column: 1/3;
  }
}
.primary__content ol li strong {
  color: #00a0e3;
}
.primary__content ol li span {
  font-weight: 800;
  font-size: 20px;
  color: #00a0e3;
}

.modal__overlay {
  z-index: 30;
}
.modal__container {
  border-radius: 16px;
  padding: 24px;
  width: 408px;
  box-shadow: 2px 2px 16px 0 rgba(4, 31, 51, 0.02);
  background: #fff;
  position: relative;
}
@media (max-width: 576px) {
  .modal__container {
    padding: 16px;
    max-width: 358px;
  }
}
.modal__title {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
}
.modal__content {
  margin: 0;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .modal__content {
    margin-top: 16px;
  }
}
.modal__form {
  padding: 0;
}
@media (max-width: 576px) {
  .modal__form {
    row-gap: 8px;
  }
}
