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

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

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

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

:root {
  --accent-color: #00b694;
  --accent-hover-color: #009276;
  --text-color: #515151;
  --ml: 15px;
  --mr: 15px;
  --ml-minus: -15px;
  --mr-minus: -15px;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-tap-highlight-color: transparent;
}

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

ul[class],
ol[class] {
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd,
pre {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
}

textarea,
input:not([type="hidden"]),
button {
  outline: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  visibility: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  transform: scale(0, 0);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

div[class$="__row"] {
  display: flex;
  flex-wrap: wrap;
  margin-left: var(--ml-minus);
  margin-right: var(--mr-minus);
}

*[class$="__col"] {
  margin-left: var(--ml);
  margin-right: var(--mr);
}

body {
  font-family: "Montserrat";
  font-weight: normal;
  font-style: normal;
  color: var(--text-color);
  font-size: 16px;
  background: #f2f2f2;
  overflow-x: hidden;
}

.title {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin: 0;
}

.btn {
  padding: 24px;
  text-decoration: none;
  outline: none;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  background: transparent;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 9px;
  display: table;
}

.btn-primary {
  color: #fff;
  background-color: var(--accent-color);
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    transform 0.5s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: var(--accent-hover-color);
  transform: translateY(-5px);
  border-color: var(--accent-hover-color);
}

.btn-secondary {
  color: var(--accent-color);
  background-color: transparent;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    transform 0.5s ease-in-out;
}

.btn-secondary:hover {
  color: #fff;
  background-color: var(--accent-hover-color);
  transform: translateY(-5px);
}

/* header */

.header-page {
  padding: 11px 0;
  border-top: 5px solid var(--accent-color);
  position: relative;
  z-index: 5;
}
.header-page__row {
  align-items: center;
}

.header-page__logo {
  width: calc(100% / 12 * 3 - 30px);
}

.header-page__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% / 12 * 9 - 30px);
}

.header-page__logo {
}
.navigation {
  margin-left: -15px;
  margin-right: -15px;
}

.navigation-link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
  text-decoration: none;
  margin-left: 15px;
  margin-right: 15px;
  transition: color 0.3s ease-in-out;
}

.navigation-link:hover {
  color: var(--accent-color);
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info a {
  text-decoration: none;
}

.contact-info__social {
  display: inline-flex;
  margin-left: 9px;
  margin-right: 9px;
  transition: transform 0.3s ease-in-out;
}

.contact-info__social:hover {
  transform: scale(0.9);
}

.contact-info__phone {
  margin-left: 19px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-color);
  transition: color 0.3s ease-in-out;
}

.contact-info__phone:hover {
  color: var(--accent-color);
}

/* offer */

.offer {
  min-height: 654px;
  background-color: #f3ece1;
}

.offer__container {
  min-height: 654px;
  display: flex;
  align-items: center;
  position: relative;
}

.offer__img {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 1;
}

.offer__info {
  width: 720px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.offer__title {
  font-size: 52px;
  line-height: 65px;
  padding-bottom: 16px;
  position: relative;
  margin-bottom: 22px;
}

.offer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 270px;
  height: 1px;
  background-color: #b5b5b5;
}

.list {
}

.list li {
  margin-top: 15px;
  position: relative;
  padding-left: 18px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 8px;
  left: 0;
  top: 8px;
}

.offer__action {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
}

.offer__qr-box {
  display: flex;
  margin-left: 30px;
}
.offer__qr-text {
  max-width: 90px;
  margin-right: 13px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.offer__qr {
}

.advantages-list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(-100px);
  position: relative;
  z-index: 6;
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.advantages__item {
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% / 12 * 4 - 30px);
  margin-top: 30px;
}
.box {
  background: #f7f7f7;
  border-left: 6px solid var(--accent-color);
  box-shadow: 0px 4px 8px rgba(81, 81, 81, 0.1);
  border-radius: 10px;
  padding: 20px 15px 24px 24px;
  min-height: 128px;
}
.advantages__title {
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 26px;
  margin-bottom: 15px;
}
.advantages__description {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

/* team */

.team {
  padding-bottom: 35px;
}
.team__row {
}
.team__col {
}
.team__col-title {
  width: calc(100% / 12 * 3 - 30px);
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin: 0;
  margin-left: var(--ml);
  margin-right: var(--mr);
}
.title {
}
.team__col-description {
  width: calc(100% / 12 * 6 - 30px);
}
.team__description {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.team__description strong {
  color: var(--accent-color);
}

.team__col-play {
  width: calc(100% / 12 * 3 - 30px);
}

.play {
  display: flex;
  align-items: center;
  padding: 0;
  outline: none;
  background-color: transparent;
  border: none;
}
.play__icon {
}
.play__text {
  text-align: left;
  margin-left: 30px;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-skip-ink: none;
}

/* form */
.title-form {
  margin-bottom: 32px;
}
.title {
}
.form-main {
}
.box-field {
  width: 100%;
  margin-bottom: 30px;
}

.box-field input {
  width: 100%;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(81, 81, 81, 1);
  padding-bottom: 15px;
  border: none;
  border-bottom: 1px solid #a5a5a5;
  outline: none;
  background-color: transparent;
}

.box-field input::placeholder {
  color: rgba(81, 81, 81, 0.68);
}

.hystmodal__close--form {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: transparent;
  font-size: 0;
  padding: 0;
  outline: none;
  border: 0;
}

.slider-team {
  margin-top: 40px;
}

.slider-team__item {
}

.slider-team__photo {
  position: relative;
  padding-bottom: 128%;
}

.slider-team__photo img {
  border-radius: 10px;
  position: absolute;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slider-team__name {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  margin-top: 30px;
}
.slider-team__description {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: rgba(81, 81, 81, 0.68);
  margin-top: 18px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-team__description::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 3px;
  width: 170px;
  background-color: #00b694;
}

.slider-team__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1e1e1e;
  margin-top: 27px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-team-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
}

.slider-team-nav__next,
.slider-team-nav__prev {
  padding: 0;
  outline: 0;
  border: 0;
  margin-left: 15px;
  margin-right: 15px;
  background: transparent;
}

.about {
  padding-top: 40px;
  padding-bottom: 100px;
}
.about__row {
}
.about__col:first-child {
  width: calc(100% / 12 * 4 - 30px);
}

.about__col:last-child {
  width: calc(100% / 12 * 8 - 30px);
}
.about__title {
  padding-bottom: 50px;
  position: relative;
}

.about__title::after {
  content: "";
  width: 170px;
  height: 3px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 26px;
  left: 0;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.about-list__item {
  width: calc(100% / 12 * 6 - 30px);
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  margin-top: 15px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.about-list__title {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.about-list__description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-top: auto;
}

/* info */

.info {
  background: #f3ece1;
  box-shadow: 0px 4px 8px rgba(81, 81, 81, 0.1);
  border-radius: 10px;
}
.info__row {
  position: relative;
  padding: 50px 0;
  align-items: flex-end;
}
.info__col {
}
.info-show__col {
  width: calc(100% / 12 * 3 - 30px);
}
.btn {
}
.btn-primary {
}

.info-text__col {
  width: calc(100% / 12 * 6 - 30px);
}

.info-action__col {
  width: calc(100% / 12 * 3 - 30px);
}

.info__btn {
  margin-left: auto;
}

.info__col-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.info-text__title {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
.info-text__description {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-top: 18px;
}

/* cases */

.cases {
  padding: 105px 0 65px;
}

.cases__title {
}

.case {
  margin-top: 40px;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(81, 81, 81, 0.1);
  border-radius: 10px;
  padding: 20px;
}

.case:nth-child(n + 5) {
  display: none;
}

.case__head {
  display: flex;
  align-items: center;
}
.case__label {
  display: flex;
  align-items: center;
}
.case__logo {
  margin-right: 18px;
}

.case__logo img {
  height: 42px;
  object-fit: contain;
}

.case__name {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  padding-left: 13px;
  border-left: 4px solid var(--accent-color);
  padding: 10px 0px 10px 13px;
}
.case__time {
  margin-left: auto;
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
}

.case__row {
}
.case-result__col {
  width: calc(100% / 12 * 4 - 30px);
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid var(--accent-color);
  border-radius: 5px;
}
.case-features__col {
  width: calc(100% / 12 * 4 - 30px);
  margin-top: 20px;
}
.case-stategy__col {
  width: calc(100% / 12 * 4 - 30px);
  margin-top: 20px;
}

.case__title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 24px;
}

.case__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  margin-top: 15px;
}

.case-about {
  padding: 30px 16px 70px;
}

.case-result {
  background-color: var(--accent-color);
  color: #fff;
  padding: 30px 16px 50px;
}

.case-result .case__text {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.case__wrapper {
  margin-top: auto;
}

.case__wrapper p {
  margin-top: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

.case-features__col {
  display: flex;
  flex-direction: column;
  padding: 30px 16px 24px;
}

.case-stategy__col {
  background: #f3ece1;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  padding: 30px 16px 24px;
}

.cases__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cases__action button {
  margin-left: 15px;
  margin-right: 15px;
}

.clients__title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 40px;
}
.list-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.list-logo__item {
  margin-right: 15px;
  margin-left: 15px;
  width: calc(100% / 12 * 2 - 30px);
  margin-top: 15px;
  margin-bottom: 15px;
}

.list-logo__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

/* clients */

.clients {
  padding-top: 10px;
  padding-bottom: 140px;
}

/* services */

.services {
  padding-bottom: 60px;
  padding-top: 115px;
}

.services__title {
  margin-bottom: 35px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
}
.services-list__item {
  padding: 40px 14px;
  border-bottom: 1px solid #a5a5a5;
  width: calc(100% / 12 * 4);
}

.services-list__item:nth-child(3n + 2) {
  border-left: 1px solid #a5a5a5;
  border-right: 1px solid #a5a5a5;
}

.services-list__head {
  display: flex;
  align-items: flex-start;
}
.services-list__num {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--accent-color);
}
.services-list__title {
  margin-left: 25px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}
.services-list__text {
  margin-top: 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

.services-list__more {
  margin-left: auto;
  display: table;
  text-align: right;
  text-decoration: none;
  margin-top: 30px;
}

.services-list__more span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--text-color);
  transition: color 0.3s ease-in-out;
}

.services-list__more svg {
  margin-left: 12px;
}

.services-list__more:hover span {
  color: var(--accent-hover-color);
}

.services__btn {
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.completed {
  padding-top: 60px;
  padding-bottom: 35px;
}
.completed__row {
  margin-bottom: 40px;
}
.completed-cases {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.completed-title__col {
  width: calc(100% / 12 * 4 - 30px);
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
.completed-text__col {
  width: calc(100% / 12 * 8 - 30px);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.completed-case__item {
  background: #f7f7f7;
  box-shadow: 0px 4px 8px rgba(81, 81, 81, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  width: calc(100% / 12 * 3 - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

.completed-case__item:nth-child(n + 9) {
  display: none;
}

.completed-case__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.completed-case__date {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #a5a5a5;
}
.completed-case__code {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #a5a5a5;
}
.completed-case__client {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #a5a5a5;
}

.completed-case__client strong {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #515151;
}

.completed-case__info {
  padding: 15px 8px;
}

.completed-case__result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.completed-case__result-title {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #a5a5a5;
}
.completed-case__result-value {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--accent-color);
}
.completed-case__show {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding: 11px;
  background-color: var(--accent-color);
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.cases-completed__action {
  margin-top: 55px;
}

.reputation {
  padding: 35px 0 30px;
  min-height: 450px;
}

.documents-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.documents-list__item {
  margin-right: 15px !important;
  margin-left: 15px !important;
  background: #f7f7f7;
  border: 0px solid #00b694;
  box-shadow: 0px 4px 8px rgba(81, 81, 81, 0.1);
  border-radius: 10px;
  padding: 75px 15px 18px;
  text-align: center;
  position: relative;
  margin-top: 115px;
  width: calc(100% / 12 * 3 - 30px);
  display: flex;
  flex-direction: column;
}

.documents-list__avatar {
  width: 111px;
  height: 111px;
  border-radius: 100%;
  border: 3px solid #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -55px;
  overflow: hidden;
}

.documents-list__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.documents-list__name {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
}

.documents-list__description {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-top: 32px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.documents-list__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  padding: 16px;
}

.documents {
  padding-bottom: 90px;
}

/* contact */

.contact {
  min-height: 576px;
}

.contact__row {
  flex-wrap: nowrap !important;
  margin-left: -15px;
  margin-right: -15px;
  align-items: center;
}

.contact__info {
  width: calc(100% / 12 * 6 - 30px);
  margin-right: 15px;
  margin-left: 15px;
}

.contact__map {
  margin-left: calc(50% - 50vw);
  margin-right: 15px;
  width: calc(100% / 12 * 12 - 30px);
}

.contact-box {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.contact-box__address {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
}
.contact-box__tel {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  color: var(--text-color);
  margin-top: 15px;
  display: inline-block;
}

.contact-box__tel:hover {
  color: var(--accent-color);
}

/* contact end */

/* footer */

.footer-page {
  background-color: #515151;
  padding: 10px 0;
}
.footer-page__row {
  justify-content: space-between;
  align-items: center;
}
.footer-page-img__col {
}
.footer-page-text__col {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.336px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-page-text__col a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.336px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.6);
}

.footer-page-developer__col {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-page-developer__col img {
  margin-left: 10px;
}

.burger {
  width: 25px;
  height: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  margin-left: 20px;
  display: none;
  position: relative;
  z-index: 999999;
}

.burger span {
  width: 25px;
  height: 3px;
  display: block;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, 8px);
  -ms-transform: rotate(45deg) translate(3px, 8px);
  transform: rotate(45deg) translate(3px, 8px);
}

.burger.active span:nth-child(2) {
  -webkit-transform: rotate(45deg) translate(-3px, 2px);
  -ms-transform: rotate(45deg) translate(-3px, 2px);
  transform: rotate(45deg) translate(-3px, 2px);
}

.burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, -9px);
  -ms-transform: rotate(-45deg) translate(4px, -9px);
  transform: rotate(-45deg) translate(4px, -9px);
}

.contact-info__phone-mobile,
.mobile-phone {
  display: none;
}

.emty-fields {
  text-align: center;
  display: none;
  margin-top: 20px;
}

.emty-fields.is-active {
  display: block;
  color: rgb(209, 72, 72);
}

.finaly-form-send {
  text-align: center;
}

.finaly-form-send.success {
  color: var(--accent-color);
}

.finaly-form-send.error {
  color: rgb(209, 72, 72);
}

.hystmodal__window--form.small {
  min-height: 200px;
  transition: min-height 0.3s ease-in-out;
}

.content-info p {
  margin: 10px 0;
}

.content-info h1,
.content-info h2,
.content-info h3,
.content-info h4 {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  margin: 10px 0;
}

@media (max-width: 1200px) {
  .navigation-link {
    margin-left: 14px;
    margin-right: 14px;
  }
  .btn {
    padding: 20px;
  }
  .offer__img {
    width: 45vw;
  }

  .header-page__wrapper {
    width: calc(100% / 12 * 10 - 30px);
  }

  .header-page__logo {
    width: calc(100% / 12 * 2 - 30px);
  }

  .contact-info__phone {
    font-size: 18px;
    margin-left: 11px;
  }

  .contact-info__social {
    margin-left: 11px;
    margin-right: 0;
  }

  .play {
    flex-direction: column;
  }

  .play__text {
    margin-left: unset;
    text-align: center;
    margin-top: 15px;
  }

  .team__col-play {
    display: flex;
    justify-content: center;
  }

  .info__col-img {
    width: 250px;
  }

  .info-text__col {
    width: calc(100% / 12 * 5.5 - 30px);
  }

  .info-action__col {
    width: calc(100% / 12 * 3.5 - 30px);
  }

  .completed-case__item {
    width: calc(100% / 12 * 6 - 30px);
  }

  .documents-list__btn {
    padding: 15px 5px;
  }

  .contact-box__tel {
    font-size: 32px;
  }

  .contact__map {
    margin-left: calc(70% - 90vw);
    margin-right: 15px;
    width: calc(100% / 12 * 12 - 30px);
  }
}

@media (max-width: 992px) {
  .contact-info__phone-mobile {
    display: block;
    text-decoration: none;
  }
  .burger {
    display: flex;
  }
  .offer__img {
    display: none;
  }

  .offer__container {
    min-height: unset;
  }

  .offer {
    min-height: unset;
    padding: 60px 0 130px;
  }

  .offer__qr-box {
    display: none;
  }

  .advantages__item {
    width: calc(100% / 12 * 6 - 30px);
  }

  .advantages-list {
    justify-content: center;
  }

  .team__col-title {
    width: calc(100% / 12 * 12 - 30px);
    margin-bottom: 20px;
  }

  .team__col-description {
    width: calc(100% / 12 * 9 - 30px);
  }

  .about__col:first-child {
    width: calc(100% / 12 * 12 - 30px);
  }

  .about__col:last-child {
    width: calc(100% / 12 * 12 - 30px);
    margin-top: 20px;
  }

  .about {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .info-show__col {
    display: none;
  }

  .info-text__col,
  .info-action__col {
    width: calc(100% / 12 * 12 - 30px);
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .info__btn {
    margin-right: auto;
    margin-top: 20px;
  }

  .cases {
    padding: 65px 0 65px;
  }

  .list-logo__item {
    width: calc(100% / 12 * 4 - 30px);
    text-align: center;
  }

  .clients {
    padding-bottom: 60px;
  }

  .case-result__col,
  .case-features__col,
  .case-stategy__col {
    width: calc(100% / 12 * 12 - 30px);
  }

  .services {
    padding-bottom: 30px;
    padding-top: 60px;
  }

  .services-list__item {
    width: calc(100% / 12 * 6);
  }

  .services-list__item:nth-child(3n + 2) {
    border-left: unset;
    border-right: unset;
  }

  .services-list__item:nth-child(2n + 2) {
    border-left: 1px solid #a5a5a5;
    border-right: unset;
  }

  .services-list__item:last-child {
    border-left: 1px solid #a5a5a5;
    border-right: 1px solid #a5a5a5;
    margin-left: auto;
    margin-right: auto;
  }

  .completed-title__col,
  .completed-text__col {
    width: calc(100% / 12 * 12 - 30px);
  }

  .completed-title__col {
    margin-bottom: 20px;
  }

  .completed {
    padding-top: 30px;
    padding-bottom: 35px;
  }

  .documents-list__item {
    width: calc(100% / 12 * 6 - 30px);
  }

  .reputation {
    padding: 35px 0 60px;
  }

  .completed__row {
    margin-bottom: unset;
  }

  .contact__row {
    flex-wrap: wrap-reverse !important;
  }
  .contact__info {
    width: calc(100% / 12 * 12 - 30px);
  }

  .contact__map {
    margin-top: 40px;
    margin-left: unset;
    margin-right: unset;
    width: calc(100% / 12 * 12);
  }

  .contact__map iframe {
    height: 350px;
  }

  .contact-box {
    margin-top: 60px;
  }

  .contact-box {
    align-items: center;
  }

  .contact-box__address {
    text-align: center;
  }

  body,
  html {
    height: 100%;
  }

  .advantages-list {
    position: static;
  }

  .navigation {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10330;
    background-color: #fff;
    margin: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-bottom: 5px solid var(--accent-color);
  }

  .navigation.active {
    transform: translateY(0);
  }

  .navigation-link {
    margin-bottom: 15px;
  }

  .header-page__logo {
    width: 150px;
    position: relative;
    z-index: 99999;
  }

  .header-page__wrapper {
    width: 315px;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .offer__title {
    font-size: 42px;
    line-height: 55px;
    max-width: 570px;
  }
  .advantages__item {
    width: calc(100% / 12 * 12 - 30px);
  }

  .team {
    padding-bottom: 0;
    transform: translateY(-35px);
  }

  .about {
    padding-top: 0;
  }

  .team__col-description,
  .team__col-play {
    width: calc(100% / 12 * 12 - 30px);
  }

  .team__row {
    text-align: center;
  }

  .team__col-play {
    margin-top: 30px;
  }

  .slider-team-nav {
    justify-content: center;
  }
  .about-list__item {
    width: calc(100% / 12 * 12 - 30px);
  }

  .about-list__item {
    min-height: unset;
  }

  .about-list__title {
    margin-bottom: 15px;
  }

  .about {
    padding-bottom: 40px;
  }

  .completed-case__item {
    width: calc(100% / 12 * 12 - 30px);
  }

  .footer-page__row {
    flex-direction: column;
  }

  .footer-page-text__col {
    margin: 15px 0;
    font-size: 12px;
  }

  .footer-page-developer__col img {
    width: 70px;
  }

  .footer-page-developer__col svg {
    width: 70px;
  }

  .play {
    flex-direction: row;
    color: var(--text-color);
  }

  .play__text {
    margin-left: 20px;
    text-align: left;
    margin-top: unset;
    color: var(--text-color);
  }
  .case__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .case__time {
    margin-left: unset;
  }
  .case__time {
    margin-top: 15px;
  }

  .case__name {
    font-size: 20px;
    padding: 5px;
  }

  .case__logo img {
    width: 100px;
  }
}

@media (max-width: 576px) {
  .cases__action {
    flex-direction: column;
  }

  .cases__action .btn-primary {
    margin-top: 15px;
  }

  .header-page__wrapper {
    width: 170px;
  }
  .mobile-phone {
    display: flex;
    align-items: center;
    margin-left: 11px;
    margin-right: 0;
  }

  .contact-info__phone--k {
    display: none;
  }

  .contact-info {
    margin-left: auto;
  }

  .offer__title {
    font-size: 30px;
    line-height: 45px;
  }

  .list li {
    font-size: 16px;
  }

  .btn {
    padding: 15px;
    font-size: 15px;
  }

  .play__icon {
    width: 70px;
  }

  .about-list__title {
    font-size: 23px;
  }

  .info-text__title {
    font-size: 25px;
    line-height: 35px;
  }

  .info-text__description {
    font-size: 14px;
  }

  .case__label {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .case__name {
    margin-top: 10px;
  }

  .services-list__item {
    width: calc(100% / 12 * 12);
  }

  .services-list__item:nth-child(2n + 2) {
    border-left: unset;
    border-right: unset;
  }

  .services-list__item:last-child {
    border-left: unset;
    border-right: unset;
  }

  .documents-list__item {
    width: calc(100% / 12 * 12 - 30px);
  }

  .contact-box__tel {
    font-size: 30px;
  }

  .form-main__action {
    flex-direction: column;
  }

  .form-main__action .btn {
    margin-top: 15px;
  }

  .hystmodal--video .hystmodal__window {
    height: 300px !important;
  }

  .header-page__logo {
    width: 130px;
    margin-right: 0;
  }

  .cases-completed__action {
    flex-direction: column;
  }

  .cases-completed__action .btn-secondary {
    margin-bottom: 15px;
  }
}
