@charset "UTF-8";

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../fonts/Raleway-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.woff2") format("woff2"), url("../fonts/Raleway-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

:root {
  --white: #FFFFFF;
  --black: #000000;
  --text: #333333;
  --blue: #15477B;
  --aqua: #179AA4;
  --red: #c02b0a;
  --red-light: #fff9f9;
  --grey1: #606060;
  --grey2: #666666;
  --light-grey1: #F7F7F7;
  --light-grey2: #E3E3E3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.4;
  color: var(--blue);
}

h1,
.main-title {
  font-size: 33px;
}

h2,
.big-title {
  font-size: 29px;
}

h3,
.medium-title {
  font-size: 24px;
  line-height: 1;
}

h4,
.small-title {
  font-size: 22px;
}

h5,
.litle-title {
  font-size: 20px;
}

h6,
.micro-title {
  font-size: 16px;
}

p {
  margin-bottom: 14px;
}

p b {
  font-weight: 700;
}

body {
  background-color: var(--white);
  font-family: "Raleway1", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text);
}

.wrapper {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 100px;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container {
  max-width: 1140px;
  padding: 0 32px;
  margin: 0 auto;
}

.button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 35px 18px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  background-color: var(--blue);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button span {
  display: inline-block;
  position: relative;
  padding-right: 50px;
}

    .button span::after {
        content: "";
        width: 14px;
        height: 21px;
        background: url("~/abc/images/icons/icon-angle-right-white.svg") center center/contain no-repeat;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

.button:hover,
.button:focus {
  background-color: var(--aqua);
}

.button.inverted {
  background-color: var(--white);
  color: var(--blue);
}

    .button.inverted span::after {
        background-image: url("~/abc/images/icons/icon-angle-right-blue.svg");
    }

.button.inverted:hover,
.button.inverted:focus {
  background-color: var(--white);
  color: var(--aqua);
}

    .button.inverted:hover span::after,
    .button.inverted:focus span::after {
        background-image: url("~/abc/images/icons/icon-angle-right-aqua.svg");
    }

.section {
  padding: 48px 0 !important;
}

.section.padding-top {
  padding-top: 67px !important;
}

.section .content-block > *:last-child {
  margin-bottom: 0 !important;
}

.big-section {
  padding: 80px 0 !important;
}

.section-title {
  margin-bottom: 8px;
  line-height: 1;
}

.grey-bg {
  background-color: var(--light-grey1) !important;
}

.aqua-bg {
  background-color: var(--aqua) !important;
}

.blue-bg {
  background-color: var(--blue) !important;
}

.blue-bg h1,
.blue-bg h2,
.blue-bg h3,
.blue-bg h4,
.blue-bg h5,
.blue-bg h6,
.blue-bg p {
  color: var(--white);
}

.more-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 19px;
  color: var(--blue);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.more-link span {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  border-bottom: 1px solid currentColor;
  line-height: 0.9;
}

.more-link span::after {
  content: ">";
  line-height: 0;
  color: inherit;
  position: absolute;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
}

.more-link:hover,
.more-link:focus {
  color: var(--aqua);
}

.opacity-bg {
  position: relative;
}

.opacity-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--aqua);
  opacity: 0.75;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.content-block.big-margins > b {
  margin-bottom: 23px !important;
}

.content-block.paddings {
  padding: 0 10px;
}

.content-block.inner-type h2 {
  margin-bottom: 15px !important;
}

.content-block h1:first-child,
.content-block h2:first-child {
  margin-top: -9px;
  margin-bottom: 3px;
}

.content-block > h1,
.content-block h2 {
  line-height: 2;
}

.content-block > h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
}

.content-block > b {
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
  color: var(--aqua);
}

.content-block > b span {
  display: block;
}

.content-block > p {
  margin-bottom: 21px;
}

.content-block > p.no-margins {
  margin: 0 !important;
}

.content-block > p a {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: var(--blue);
  text-decoration: underline;
  word-break: break-word;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.content-block > p span {
  display: block;
}

.content-block > a {
  margin-top: 10px;
  margin-bottom: 6px;
}

.content-block > *:last-child {
  margin-bottom: 15px;
}

.content-block ol {
  list-style-position: inside;
  list-style-type: lower-alpha;
  margin-bottom: 15px;
  margin-top: -2px;
}

.content-block ul {
  padding-left: 40px;
}

.content-block .content-notice {
  margin-bottom: 16px;
}

.content-block .content-notice .feedback {
  margin-bottom: 8px;
}

.content-block .content-notice > p {
  margin-bottom: 0 !important;
}

.content-block .content-notice > p + p {
  margin-top: 5px;
}

.content-block .content-notice + * {
  margin-top: 0 !important;
}

.content-block .feedback {
  display: inline-block;
  margin-bottom: 20px;
}

.content-block .feedback img {
  display: block;
  width: 142px;
  height: auto;
}

.content-block__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 12px 0;
}

.content-block__services-item {
  width: 20%;
  padding: 16px 32px;
  margin-bottom: 24px;
  text-align: center;
}

.content-block__services-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  margin-bottom: 18px;
}

.content-block__services-icon img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
}

.content-block__services-title {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--grey1);
}

.content-block .zoom-image {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 48px auto 5px !important;
}

.content-block .zoom-image img {
  display: block;
  width: 800px;
  max-width: 100%;
  height: auto;
}

.content-block .two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -32px 16px;
}

.content-block .two-columns__item {
  width: 50%;
  padding: 0 32px;
}

.content-block .two-columns__item > b {
  display: block;
  margin-bottom: 22px;
  font-weight: 700;
  color: var(--aqua);
}

.content-block .two-columns__item > b span {
  display: block;
}

.content-block .two-columns__item > p {
  margin-bottom: 0;
}

.content-block .two-columns__item > p + p {
  margin-bottom: 21px;
}

.content-block .two-columns__item > p a {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: var(--blue);
  text-decoration: underline;
  word-break: break-word;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.content-block .two-columns__item > p span {
  display: block;
}

.content-block .two-columns__zoom-image {
  display: block;
  width: 100%;
  margin-top: 16px;
}

.content-block .two-columns__zoom-image img {
  display: block;
  width: 100%;
  height: auto;
}

.content-block .help-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -30px -34px;
  padding: 0;
}

.content-block .help-list li {
  width: 33.333%;
  padding: 11px 30px;
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content-block .help-list li > span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65px;
  margin-right: 20px;
  padding-top: 6px;
}

.content-block .help-list li > span img {
  display: block;
  width: 48px;
  height: auto;
}

.content-block .help-list li > p {
  margin-bottom: 0;
}

.content-block .help-list li > p span {
  display: block;
}

.content-block .icon-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.content-block .icon-block__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 13px;
}

.content-block .icon-block__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 20px 32px;
}

.content-block .icon-block__image img {
  display: block;
  width: 150px;
  height: auto;
}

/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--black);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 10;
}

.header__inner {
  min-height: 68px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  width: 205px;
  margin-right: 25px;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__menu {
  margin-left: auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu-item {
  position: relative;
  line-height: 1;
}

.header__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: var(--blue);
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__menu-link::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--aqua);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__menu-link.active {
  color: var(--grey1);
}

.header__menu-link.active::after {
  opacity: 1;
  background-color: var(--grey1);
}

.header__menu-link.active .header__menu-arrow::before {
  border-color: var(--grey1);
}

.header__menu-arrow {
  pointer-events: none;
  display: block;
  width: 9px;
  height: 10px;
  margin-left: 8px;
  position: relative;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.header__menu-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.header__burger {
  display: none;
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 11;
  width: auto;
  min-width: 130px;
  max-width: 335px;
  background-color: var(--blue);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.submenu__list {
  list-style: none;
}

.submenu__list-item {
  line-height: 1;
}

.submenu__list-link {
  display: block;
  width: 100%;
  padding: 13px 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: var(--white);
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.submenu__list-link.active {
  background-color: var(--grey1);
}

.top {
  position: relative;
  min-height: 70vh;
}

.top.small-height {
  min-height: 45vh;
}

.top.center-bg .top__bg img {
  -o-object-position: center center;
  object-position: center center;
}

.top.bottom-bg .top__bg img {
  -o-object-position: center bottom;
  object-position: center bottom;
}

.top__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.main-info {
  padding: 10px 0 54px;
}

.main-info.margin-top {
  padding-top: 58px;
}

.main-info__title-block {
  width: calc((100% + 44px) * 0.5);
  margin: -303px 0 32px -26px;
  position: relative;
  z-index: 1;
}

.main-info__expertise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-bottom: -31px;
}

.main-info__expertise-item {
  width: 33.333%;
  padding-right: 96px;
  margin-bottom: 32px;
}

.main-info__expertise-icon {
  display: inline-block;
  height: 67px;
  width: auto;
  max-width: 100%;
  margin-bottom: 8px;
}

.title-block {
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  padding: 48px;
  border-radius: 20px;
  background-color: var(--white);
}

.title-block h1 {
  margin-bottom: 27px;
  word-break: break-word;
}

.title-block p {
  line-height: 2;
}

.title-block > a {
  display: inline-block;
  margin-top: 9px;
}

.title-block *:last-child {
  margin-bottom: 0;
}

.services__subtitle {
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--aqua);
}

.services__block {
  padding: 28px 0 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.services__column {
  width: 20%;
  padding: 0 5px;
  margin-bottom: 10px;
}

.services__item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  padding: 17px 32px 33px;
  background-color: var(--white);
  color: var(--blue);
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services__item:hover,
.services__item:focus {
  color: var(--aqua);
}

.services__item:hover .services__item-icon svg,
.services__item:hover .services__item-icon img,
.services__item:focus .services__item-icon svg,
.services__item:focus .services__item-icon img {
  fill: var(--aqua);
}

.services__item-icon {
  display: inline-block;
  margin-bottom: 8px;
}

.services__item-icon svg,
.services__item-icon img {
  display: block;
  height: 100px;
  width: auto;
  fill: var(--blue);
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.services__item-title {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: inherit;
}

.request {
  padding: 80px 0;
}

.request__more-link {
  margin-top: 40px;
}

.footer {
  padding: 40px 0 48px;
  background-color: var(--black);
  font-size: 15px;
  color: var(--white);
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__info {
  width: 360px;
  padding-right: 30px;
}

.footer__info * {
  margin-bottom: 2px;
}

.footer__title {
  font-weight: 700;
}

.footer__address span {
  display: block;
}

.footer__info-text a {
  color: var(--white);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__info-text a:hover,
.footer__info-text a:focus {
  color: var(--aqua);
}

.footer__help {
  width: 400px;
  padding-top: 15px;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__policies-list {
  margin-bottom: 20px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -21px;
}

.footer__policies-item {
  position: relative;
  padding-right: 22px;
  margin-bottom: 10px;
  line-height: 1;
}

.footer__policies-item::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer__policies-item:last-child::after {
  display: none;
}

.footer__policies-link {
  line-height: 1;
  color: var(--white);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__policies-link.active {
  color: var(--aqua);
}

.footer__help-rights {
  margin-top: auto;
  padding-bottom: 18px;
  text-align: right;
}

.footer__help-rights * {
  margin-bottom: 0;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.modal__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 640px;
  max-width: 100%;
  max-height: 100%;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
}

.modal__close::before,
.modal__close::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__content {
  max-height: 100%;
  overflow-y: auto;
  padding: 32px 32px 48px;
}

.modal__name {
  display: block;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  color: var(--blue);
}

.modal__position {
  display: block;
  margin-bottom: 22px;
  font-style: italic;
}

.modal__text {
  margin-bottom: 0;
}

.modal__text + .modal__text {
  margin-top: 32px;
}

.industries__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -22px -4px;
}

.industries__item {
  width: 33.333%;
  padding: 17px 47px;
  margin-bottom: 45px;
}

.industries__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
}

.industries__item-icon img {
  display: block;
  height: 100px;
  width: auto;
}

.industries__item-title {
  margin-bottom: 0;
  color: var(--grey1);
}

.cases__item {
  margin-bottom: 79px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cases__item:last-of-type {
  margin-bottom: 0;
}

.cases__item-info {
  width: 65%;
  min-height: 250px;
  padding-right: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cases__item-title {
  margin-bottom: 10px;
  line-height: 1;
}

.cases__item-link {
  margin-top: 8px;
}

.cases__item-link span {
  padding-right: 30px;
}

.cases__item-image {
  width: 35%;
}

.cases__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right center;
  object-position: right center;
}

.outcomes__content {
  padding: 0 10px;
}

.outcomes__title {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--black);
}

.outcomes__subtitle {
  margin-bottom: 8px;
}

.outcomes__subtitle b {
  font-weight: 700;
}

.outcomes__list {
  padding-left: 22px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 58px;
  -moz-column-gap: 58px;
  column-gap: 58px;
  list-style: none;
}

.outcomes__list-item {
  position: relative;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.outcomes__list-item::before {
  content: "✓ ";
  position: absolute;
  left: -18px;
  top: 0;
}

.outcomes__list-item > ul {
  list-style: none;
}

.outcomes__list-item > ul li {
  padding-left: 14px;
  position: relative;
}

.outcomes__list-item > ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 3px;
  top: 14px;
}

.team__title {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  color: var(--aqua);
}

.team__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.team__item {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 28px;
}

.team__item-name {
  margin-bottom: 5px;
  display: block;
  font-weight: 700;
  font-size: 21px;
  color: var(--aqua);
}

.team__item-position {
  margin-bottom: 14px;
  color: var(--grey1);
}

.team__item-button {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--light-grey2);
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.team__item-button::before,
.team__item-button::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.team__item-button::before {
  width: 18px;
  height: 4px;
}

.team__item-button::after {
  width: 4px;
  height: 18px;
}

.contact__title {
  margin-bottom: 22px;
  font-size: 29px;
  line-height: 1.4;
}

.contact__text {
  margin-bottom: 20px;
}

.contact__form-wrap {
  padding: 55px 0;
}

.contact-form__errors-block {
  display: none;
}

.contact-form__errors-block.open {
  display: block;
}

.contact-form__inputs-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.contact-form__inputs-item {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 36px;
}

.contact-form__inputs-item.full-width {
  width: 100%;
}

.contact-form__inputs-item.custom-margins {
  margin-top: 8px;
}

.contact-form__label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1;
  color: var(--blue);
}

.contact-form__label span {
  padding-left: 3px;
  font-style: italic;
  font-size: 13px;
  color: var(--red);
}

.contact-form__input,
.contact-form__select,
.contact-form__message {
  display: block;
  width: 100%;
  border-radius: 3px;
  border: 1px solid var(--grey2);
  padding: 8px;
  background-color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.contact-form__input::-webkit-input-placeholder, .contact-form__select::-webkit-input-placeholder, .contact-form__message::-webkit-input-placeholder {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey1);
}

.contact-form__input::-moz-placeholder, .contact-form__select::-moz-placeholder, .contact-form__message::-moz-placeholder {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey1);
}

.contact-form__input:-ms-input-placeholder, .contact-form__select:-ms-input-placeholder, .contact-form__message:-ms-input-placeholder {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey1);
}

.contact-form__input::-ms-input-placeholder, .contact-form__select::-ms-input-placeholder, .contact-form__message::-ms-input-placeholder {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey1);
}

.contact-form__input::placeholder,
.contact-form__select::placeholder,
.contact-form__message::placeholder {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey1);
}

.contact-form__error {
  display: none;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 13px 24px 17px;
  background-color: var(--red-light);
  border: 1px solid var(--red);
  font-size: 15px;
  line-height: 2;
  color: var(--red);
}

.contact-form__select {
  padding: 10px 8px 9px;
}

.contact-form__select option {
  font-size: 15px;
}

.contact-form__checkboxes-block {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-form__checkbox {
  margin-right: 17px;
}

.contact-form__checkbox-label {
  font-size: 15px;
}

.contact-form__message {
  resize: none;
  height: 288px;
}

.contact-form__recaptcha-wrap img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.contact-form__submit {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  max-width: 100%;
  margin-top: 40px;
  padding: 15px 25px 15px;
  border-radius: 10px;
  background-color: var(--blue);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.errors-block {
  display: none;
  margin-top: -20px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.11), 0 0 4px rgba(18, 25, 97, 0.0405344);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.11), 0 0 4px rgba(18, 25, 97, 0.0405344);
  background-color: var(--red-light);
  border: 1px solid var(--red);
  border-radius: 5px;
  padding: 16px 16px 16px 48px;
  color: var(--red);
}

.errors-block.open {
  display: block;
}

.errors-block.no-verify {
  position: relative;
}

.errors-block.no-verify::before {
  content: "!";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.errors-block__verify {
  display: none;
  padding: 13px 24px 16px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.11), 0 0 4px rgba(18, 25, 97, 0.0405344);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.11), 0 0 4px rgba(18, 25, 97, 0.0405344);
  background-color: var(--red-light);
  border: 1px solid var(--red);
  border-radius: 5px;
  padding: 12px 16px 11px 48px;
  margin: 8px 0 6px;
  font-size: 13px;
}

.errors-block__verify.open {
  display: block;
}

.errors-block__noverify {
  display: none;
  font-size: 13px;
  margin: -4px 0 6px;
}

.errors-block__noverify.open {
  display: block;
}

.errors-block__list {
  display: none;
  padding-left: 20px;
  color: inherit;
}

.errors-block__list.open {
  display: block;
}

.errors-block__list-item {
  display: none;
  margin-bottom: 8px;
}

.errors-block__list-item:last-child {
  margin-bottom: 0;
}

.errors-block__list-item.open {
  display: block;
}

.errors-block__list-link {
  font-weight: 700;
  font-size: 13px;
  line-height: 2;
  color: inherit;
  text-decoration: underline;
}

.inner-content {
  padding: 80px 0 95px;
}

.inner-content__info .content-block h1 {
  margin-top: 0;
  margin-bottom: 41px;
}

.inner-content__info .content-block h3 {
  font-weight: 700;
  font-size: 21px;
  color: var(--aqua);
}

.inner-content__info .content-block p {
  margin-bottom: 15px;
}

.inner-content__info .content-block * + h3 {
  margin-top: 45px;
  margin-bottom: 22px;
}

.inner-content__info .content-block *:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .content-block > p a:hover,
  .content-block > p a:focus {
    color: var(--aqua);
  }

  .content-block .two-columns__item > p a:hover,
  .content-block .two-columns__item > p a:focus {
    color: var(--aqua);
  }

  .header__menu-item.subitem:hover .submenu,
  .header__menu-item.subitem:focus .submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }

  .header__menu-link.active:hover,
  .header__menu-link.active:focus {
    color: var(--grey1);
  }

  .header__menu-link.active:hover .header__menu-arrow::before,
  .header__menu-link.active:focus .header__menu-arrow::before {
    border-color: var(--grey1);
  }

  .header__menu-link.active:hover::after,
  .header__menu-link.active:focus::after {
    background-color: var(--grey1);
  }

  .header__menu-link:hover,
  .header__menu-link:focus {
    color: var(--aqua);
  }

  .header__menu-link:hover .header__menu-arrow::before,
  .header__menu-link:focus .header__menu-arrow::before {
    border-color: var(--aqua);
  }

  .header__menu-link:hover::after,
  .header__menu-link:focus::after {
    opacity: 1;
  }

  .footer__policies-link:hover,
  .footer__policies-link:focus {
    color: var(--aqua);
  }

  .team__item-button:hover,
  .team__item-button:focus {
    background-color: var(--aqua);
  }

  .contact-form__submit:hover,
  .contact-form__submit:focus {
    background-color: var(--aqua);
  }
}

@media (min-width: 993px) {
  .header__navigation {
    display: block !important;
  }

  .header__submenu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
  }

  .submenu__list-link.active:hover,
  .submenu__list-link.active:focus {
    background-color: var(--grey1);
  }

  .submenu__list-link:hover,
  .submenu__list-link:focus {
    background-color: var(--aqua);
  }

  .modal__close:hover::before,
  .modal__close:hover::after,
  .modal__close:focus::before,
  .modal__close:focus::after {
    background-color: var(--aqua);
  }
}

@media (max-width: 1200px) {
  .header__menu-link {
    padding-left: 12px;
    padding-right: 12px;
  }

  .submenu {
    max-width: 285px;
  }

  .submenu__list-link {
    white-space: normal;
  }
}

@media (max-width: 992px) {
  .wrapper {
    padding-top: 98px;
  }

  .content-block.paddings {
    padding: 0;
  }

  .content-block__services-item {
    padding: 16px 8px;
  }

  .content-block__services-title {
    font-size: 16px;
  }

  .content-block .two-columns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .content-block .two-columns__item {
    width: 100%;
  }

  .content-block .help-list li > span {
    width: auto;
    margin-right: 10px;
  }

  .content-block .help-list li > span img {
    width: 50px;
  }

  .header {
    padding: 15px 20px;
  }

  .header__navigation {
    display: none;
    position: fixed;
    left: 0;
    top: 98px;
    z-index: 12;
    width: 100vw;
    max-height: calc(100vh - 97px);
    overflow-y: auto;
    background-color: var(--blue);
  }

  .header__menu {
    display: block;
    width: 100%;
  }

  .header__menu-item {
    margin-bottom: -1px;
  }

  .header__menu-link {
    padding: 10px 15px;
    background-color: var(--blue);
    color: var(--white);
  }

  .header__menu-link::after {
    display: none;
  }

  .header__menu-link.active {
    background-color: var(--grey1);
    color: var(--white);
  }

  .header__menu-link.active::after {
    display: none;
  }

  .header__menu-link.active .header__menu-arrow::before {
    border-color: var(--white);
  }

  .header__menu-link.active.open {
    background-color: var(--grey1);
  }

  .header__menu-link.open {
    background-color: var(--aqua);
  }

  .header__menu-arrow {
    pointer-events: all;
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
  }

  .header__menu-arrow::before {
    border-color: var(--white);
  }

  .header__burger {
    display: block;
    width: 37px;
    height: 37px;
    position: relative;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 15;
  }

  .header__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--blue);
    border-radius: 20px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: calc(50% - 2px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .header__burger span:first-child {
    top: 8px;
  }

  .header__burger span:last-child {
    top: auto;
    bottom: 10px;
  }

  .header__burger.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  .header__burger.active span:first-child {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    top: calc(50% - 1px);
  }

  .header__burger.active span:last-child {
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    bottom: calc(50% - 2px);
  }

  .submenu {
    display: none;
    position: static;
    border: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .top {
    min-height: 56vh;
  }

  .top.small-height {
    min-height: 56vh;
  }

  .main-info__title-block {
    width: 75%;
    margin-top: -128px;
    margin-left: 0;
  }

  .main-info__expertise-item {
    padding-right: 32px;
  }

  .services__item {
    padding: 16px 8px;
  }

  .services__item-title {
    font-size: 16px;
  }

  .request {
    padding: 48px 0;
  }

  .modal__name {
    font-size: 30px;
  }

  .industries__item {
    padding: 17px 23px;
  }

  .outcomes__content {
    padding: 0;
  }

  .outcomes__list {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .team__item {
    width: 50%;
  }

  .contact__form-wrap {
    padding: 43px 0;
  }
}

@media (max-width: 768px) {
  body {
    line-height: 1.8;
  }

  .content-block ul {
    padding-left: 30px;
  }

  .content-block__services {
    padding: 8px 0 16px;
  }

  .content-block__services-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 13px 15px;
    margin-bottom: 0;
  }

  .content-block__services-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .content-block__services-icon img {
    height: auto;
    max-height: 100%;
  }

  .content-block__services-title {
    margin-top: 10px;
    text-align: left;
  }

  .content-block .help-list {
    margin: 0 -10px;
  }

  .content-block .help-list li {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
  }

  .content-block .help-list li > p span {
    display: inline;
  }

  .content-block .icon-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .content-block .icon-block__info {
    width: 100%;
  }

  .top {
    min-height: 45vh;
  }

  .top.small-height {
    min-height: 30vh;
  }

  .main-info.margin-top {
    padding-top: 10px;
  }

  .main-info__title-block {
    width: 100%;
    margin-top: -90px;
  }

  .main-info__expertise-item {
    width: 100%;
    padding-right: 0;
  }

  .title-block {
    padding: 24px;
  }

  .services__column {
    width: 100%;
  }

  .services__item {
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .services__item-icon {
    margin-bottom: 0;
    margin-right: 10px;
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .services__item-icon svg,
  .services__item-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }

  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
  }

  .footer__help {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }

  .footer__policies-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 23px;
  }

  .footer__policies-item {
    width: 100%;
    margin-bottom: 0;
    padding-right: 0;
    line-height: 1.8;
  }

  .footer__policies-item::after {
    display: none;
  }

  .footer__help-rights {
    padding-bottom: 10px;
    text-align: left;
  }

  .industries__block {
    margin: 0 -16px;
  }

  .industries__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    margin-bottom: 0;
  }

  .industries__item-icon {
    margin-right: 10px;
    margin-bottom: 0;
  }

  .industries__item-icon img {
    width: 40px;
    height: auto;
  }

  .cases__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cases__item-info {
    width: 100%;
    min-height: auto;
    padding: 32px 16px;
  }

  .cases__item-image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 100%;
    height: 250px;
  }

  .outcomes__list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .team .section {
    padding: 0 !important;
  }

  .team__item {
    width: 100%;
    margin-bottom: 32px;
  }

  .inner-content {
    padding: 50px 0 60px;
  }
}

@media (max-width: 576px) {
  h1,
  .main-title {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }

  .header__navigation {
    height: calc(100vh - 97px);
  }

  .header__menu-link {
    padding: 24px 48px;
    font-size: 17px;
    line-height: 19px;
  }

  .submenu__list-link {
    padding: 24px 48px;
    font-size: 17px;
    line-height: 19px;
  }

  .modal__close {
    right: 10px;
    top: 10px;
  }

  .modal__content {
    padding: 25px 30px 25px 20px;
  }

  .modal__name {
    margin-bottom: 15px;
    font-size: 26px;
  }

  .modal__position {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
  }

  .modal__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .modal__text + .modal__text {
    margin-top: 20px;
  }

  .contact-form__inputs-item {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .header__logo {
    width: 170px;
  }

  .header__burger {
    margin-left: auto;
  }

  .contact-form__checkbox {
    width: 100%;
  }
}