@charset "UTF-8";
@font-face {
  font-family: "PTRoot";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/PTRootUI-Light.woff") format("woff"), url("../fonts/PTRootUI-Light.woff2") format("woff2");
}
@font-face {
  font-family: "PTRoot";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/PTRootUI-Regular.woff") format("woff"), url("../fonts/PTRootUI-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "PTRoot";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/PTRootUI-Medium.woff") format("woff"), url("../fonts/PTRootUI-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "PTRoot";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/PTRootUI-Bold.woff") format("woff"), url("../fonts/PTRootUI-Bold.woff2") format("woff2");
}
/* == DEFAULT STYLES == */
*:focus {
  outline: none;
}

*:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

*, :before, :after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

body {
  min-width: 320px;
  position: relative;
  line-height: 1.5;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-family: PTRoot, sans-serif;
  min-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
  color: #191919;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/* == text elements == */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em;
  line-height: 1;
  font-weight: 400;
}

h1 {
  font-size: 100px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
  color: #006EF3;
}

h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}

h5 {
  font-weight: 500;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

a:hover {
  color: #006EF3;
}

small {
  font-size: 12px;
  display: block;
}

/* == media elements == */
img {
  display: inline-block;
  max-width: 100%;
}

img,
iframe,
video {
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a img {
  border: none;
}

/* == form elements == */
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

input, textarea {
  outline: none;
}

input {
  width: 100%;
}

input[type=text]:-moz-placeholder {
  opacity: 1;
}

input[type=text]::-moz-placeholder {
  opacity: 1;
}

input:focus:-moz-placeholder {
  opacity: 1;
}

input:focus::-moz-placeholder {
  opacity: 1;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  resize: none;
  overflow: auto;
}

select::-ms-expand {
  display: none;
}

label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

button {
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

/* == tables elements == */
table {
  width: 100%;
}

/* ~~ CUSTOM STYLES ~~ */
/* ~~ FRAME ELEMENTS ~~ */
.container {
  max-width: 1900px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.container-pl {
  padding: 0 15px 0 485px;
}

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

/* ~~ TEXT ELEMENTS ~~ */
.date {
  color: #C9B5A3;
  font-size: 14px;
}

.text-accent {
  color: #006EF3;
}

.title-alt {
  color: #8A71E7;
}

.steps {
  padding-left: 17.5px;
  counter-reset: steps-item;
}

.steps:not(:last-child) {
  margin-bottom: 50px;
}

.steps-item {
  border-left: 2px solid #006EF3;
  padding-left: 50px;
  position: relative;
}

.steps-item::before {
  counter-increment: steps-item;
  content: counter(steps-item);
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 31px;
  background-color: #fff;
  z-index: 1;
  position: absolute;
  left: -19.5px;
  top: -3.5px;
  border: 2px solid #006EF3;
  border-radius: 50%;
  color: #006EF3;
}

.steps-item:last-child {
  border-color: transparent;
}

.steps-item:not(:last-child) {
  padding-bottom: 40px;
}

.steps-item-text:not(:last-child) {
  margin-bottom: 40px;
}

/* ~~ BUTTONS ~~ */
.btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: 0;
  left: 0;
  min-width: 130px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  line-height: 1.1;
  border: 2px solid #191919;
  border-radius: 90px;
  text-decoration: none;
  padding: 10px 15px;
}

.btn:hover {
  text-decoration: none;
}

.btn-papper {
  font-size: 20px;
  position: relative;
  background: #fff;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  line-height: 34px;
}

.btn-papper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: inherit;
  border-radius: inherit;
  z-index: -1;
  left: 0;
  top: 0;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-transform: translate3d(5px, 7px, -5px);
          transform: translate3d(5px, 7px, -5px);
}

.btn-papper:hover {
  border-color: #006EF3;
  background: #006EF3;
  color: #fff;
  -webkit-transform: translate(0, 7px);
      -ms-transform: translate(0, 7px);
          transform: translate(0, 7px);
}

.btn-papper:hover:after {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0, 0, -5px);
          transform: translate3d(0, 0, -5px);
}

.btn-papper_hover_purple:hover {
  border-color: #8A71E7;
  background: #8A71E7;
}

.btn-papper_hover_green:hover {
  border-color: #2AC6AE;
  background: #2AC6AE;
}

.btn-brown {
  border-color: #E6D6C7;
}

.btn-brown:hover {
  background-color: #E6D6C7;
  color: #fff;
}

.btn-accent {
  background-color: #006EF3;
  border-color: #006EF3;
  color: #fff;
}

.btn-accent:hover {
  color: #fff;
  background-color: #0062da;
}

.btn-decorated {
  text-decoration: underline;
}

/* ~~ FORM ELEMENTS ~~ */
/* ~~ TABLE ELEMENTS ~~ */
/* ~~ LAYOUT STYLES ~~ */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  overflow-x: auto;
  scrollbar-color: transparent transparent;
}

.tabs::-webkit-scrollbar {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)) no-repeat center/auto 2px;
  background: linear-gradient(transparent, transparent) no-repeat center/auto 2px;
}

.tabs::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
}

.tab {
  padding: 0 0 6px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 500;
  margin: 0 0 3px;
  border-bottom: 2px solid #E6D6C7;
}

.tab:not(.active):hover {
  color: #8A71E7;
}

.tab:not(:last-child) {
  padding: 0 20px 6px 0;
}

.tab.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -4px;
  left: 0;
  background-color: #E6D6C7;
}

.tab:not(:last-child).active::after {
  width: calc(100% - 20px);
}

.services-tabs {
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 0 0 318px;
}

.tab-content {
  display: none;
}

/*header*/
.header-btn {
  margin: 8px 40px 8px 0;
  padding: 2px 25px;
  font-size: 28px;
  font-weight: 400;
}

.submenu {
  position: absolute;
  z-index: 1;
  background: #fff;
  padding: 20px;
  border: 1px solid #C9B5A3;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-wrap: wrap;
  align-items: flex-start;
  box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.2);
  transform: translateZ(300px);
}

.header-btn-wrap:hover .submenu {
  display: flex;
}

.submenu-item {
  width: 50%;
  padding: 5px 10px;
}

.submenu-item-link {
  font-size: 0.9em;
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 9px;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -32px;
  padding: 0;
  list-style-type: none;
}

.header-menu li {
  margin: 0 30px 8px;
}

.header-menu a {
  text-decoration: none;
}

.header-phone {
  display: inline-block;
  margin: 0 74px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header-phone:hover {
  text-decoration: none;
}

.header-old {
  margin-top: 10px;
  color: #006ef3;
  display: inline-block;
}

.header-content {
  position: relative;
  max-width: 800px;
}

.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 32px 0 0;
}

.header-search-link {
  font-size: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 4px auto;
}

.header-search-link:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  text-decoration: none;
  font-weight: 700;
}

.header {
  padding: 20px 0;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.logo {
  display: block;
  width: 350px;
  margin: 0 30px 0 0;
}

.header-logo {
  z-index: 2;
  position: relative;
}

.header-content {
  margin: 0 0 0 auto;
}

/*about-section*/
.about-section {
  padding: 20px 0 150px;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 685px;
}

.about-text {
  max-width: 730px;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 100px;
  font-weight: 400;
}

.about-body {
  width: 100%;
  padding: 0 30px 0 0;
}

.about-text p {
  max-width: 310px;
  line-height: 1;
}

.about-text h1 {
  position: relative;
  margin: 0 0 60px;
  padding: 0 160px 0 0;
}

.about-text h1::after {
  content: "";
  width: 145px;
  height: 145px;
  display: block;
  background-color: #E6D6C7;
  border-radius: 50%;
  margin: -20px 0 0 auto;
}

.about-text strong {
  display: block;
  margin-top: 80px;
  font-weight: 400;
}

.cards {
  position: relative;
  width: 414px;
  height: 474px;
  margin-left: auto;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1900px;
          perspective: 1900px;
  -webkit-perspective-origin: 0 -100px;
          perspective-origin: 0 -100px;
  --offset: 720px;
}

.card {
  display: block;
  color: inherit;
  text-decoration: none;
  position: absolute;
  top: var(--top);
  left: calc(var(--offset) * -1 / var(--amount) * (var(--amount) - var(--index)));
  width: 100%;
  min-height: 100%;
  -webkit-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
  background-color: rgba(230, 214, 199, 0.8);
  border: 2px solid #fff;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateY(var(--rotate, -30deg));
          transform: rotateY(var(--rotate, -30deg));
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 20px 30px 30px;
  text-align: center;
}

.card:after {
  content: "подробнее";
  display: block;
  width: 105px;
  line-height: 105px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: #FF6766;
  position: absolute;
  bottom: 30px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.card-title {
  font-size: 30px;
  line-height: 1;
  font-weight: inherit;
  margin: 0 0 0.2em;
  color: #191919;
}

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

.card-title:after {
  content: " \e900";
  font-family: icomoon;
  font-size: 15px;
}

.card-image {
  display: block;
  margin: 0 auto;
}

/*info-section*/
.info-body {
  max-width: 900px;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.info-body h2 {
  margin: 0 0 95px;
}

.info-text {
  margin: 0 0 80px;
}

.info-text h4 {
  max-width: 685px;
  width: 100%;
}

.info-box {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 830px;
}

.info-item {
  width: 332px;
  margin: 0 15px 60px;
  font-size: 18px;
}

.info-item h3 {
  font-weight: 500;
  margin: 0 0 16px;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info-sidebar {
  width: 332px;
  margin: 0 0 0 auto;
}

.news-items:not(:last-child) {
  margin: 0 0 40px;
}

.news-item:not(:last-child) {
  margin-bottom: 40px;
}

.news-item h4 {
  font-size: 14px;
}

.news-item h4 a {
  display: block;
}

.news-block-heading {
  padding: 0 0 8px;
  margin: 0 0 40px;
  border-bottom: 2px solid #E6D6C7;
}

.news-block-heading h4 {
  font-size: 16px;
}

.info-head {
  width: 100%;
  margin: 0 0 103px;
  padding: 0 350px 0 0;
}

.info-section {
  padding: 0 0 115px;
}

.info-slider:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

.info-slider {
  /*margin-left: -825px;*/
  margin-right: -10px;
  margin-left: -10px;
  margin-top: 50px;
  padding: 0 90px 0 0;
  text-align: center;
}

.info-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-slide {
  /*width: 802px;*/
  /*height: auto;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 10px;
}

.info-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.info-slider-arrow {
  position: absolute;
  top: calc(100% + 30px);
  cursor: pointer;
}

.info-slider-arrow::before {
  font-family: icomoon;
  font-size: 20px;
  line-height: 1;
}

.info-slider-arrow-right::before {
  content: "\e903";
}

.info-slider-arrow-left::before {
  content: "\e904";
}

.info-slider-arrow-left {
  right: 885px;
}

.info-slider-arrow-right {
  right: 100px;
}

.info-slider-arrow:hover {
  color: #006EF3;
}

/*services-section*/
.services {
  counter-reset: services-item;
  font-size: 18px;
}

.services-item {
  border-top: 2px solid #E6D6C7;
}

.services-item:hover .services-item-head h2,
.services-item.open .services-item-head h2 {
  color: #006EF3;
}

.services-item:hover .services-item-head::after,
.services-item.open .services-item-head::after,
.services-item:hover .services-item-head::before,
.services-item.open .services-item-head::before {
  color: #006EF3;
}

.services-item_purple:hover .services-item-head h2,
.services-item_purple:hover .services-item-head::before,
.services-item_purple:hover .services-item-head::after {
  color: #8A71E7;
}

.services-item:last-child {
  border-bottom: 2px solid #E6D6C7;
}

.services-item-head {
  padding: 35px 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 -200px;
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.services-item-head::after {
  content: "\e901";
  font-family: icomoon;
  font-size: 45px;
  line-height: 1;
  position: absolute;
  right: 200px;
  top: 35px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.services-item-static .services-item-head::after {
  display: none;
}

.services-item-static .services-item-body {
  display: block;
}

.services-item-static .services-item-head {
  cursor: auto;
  padding: 35px 115px 35px 200px;
}

.services-item-head-btn {
  margin: 0 0 0 auto;
}

.services-item-head::before {
  counter-increment: services-item;
  content: counter(services-item, decimal-leading-zero);
  position: absolute;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  color: #E6D6C7;
  left: 50px;
  top: 30px;
}

.services-item-head h2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0 20px 0 0;
  margin: 0;
}

.services-item-subtitle {
  max-width: 685px;
  width: 100%;
  display: none;
}

.services-item.open .services-item-head {
  border-color: #E6D6C7;
}

.services-item.open .services-item-head h2 {
  width: 470px;
}

.services-item.open .services-item-head h2:last-child {
  width: 100%;
}

.services-item.open .services-item-subtitle {
  display: block;
}

.services-item.open .services-item-head::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.services-item-body {
  display: none;
  padding: 0 0 60px;
}

.services-item-body-full {
  margin: 0 0 0 -150px;
  padding: 25px 0 45px;
}

.services-item.open .services-item-body {
  display: block;
}

.params {
  padding: 20px 0 0;
}

.services-slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #E6D6C7;
}

.services-slider {
  padding: 0 75px 0 10px;
  position: relative;
  width: 570px;
}

.services-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-slide {
  width: 237px;
  line-height: 45px;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  padding: 0 15px;
  background-color: #006EF3;
  border-radius: 10px 10px 0px 0px;
  color: #fff;
  margin: 0 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.services-slider-btn {
  width: 53px;
  text-align: center;
  font-size: 0;
  background: 0;
  padding: 0;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  margin: 0 0 0 auto;
  cursor: pointer;
}

.services-slider-btn::before {
  display: inline-block;
  content: "\e901";
  font-family: icomoon;
  font-size: 28px;
  font-weight: 700;
  color: #006EF3;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.services-nav-item.slick-active:hover:before {
  -webkit-transform: translate(50%, -50%) rotate(45deg) scale(1.2);
      -ms-transform: translate(50%, -50%) rotate(45deg) scale(1.2);
          transform: translate(50%, -50%) rotate(45deg) scale(1.2);
}

.services-steps {
  max-width: 610px;
  width: 100%;
}

.params-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 2px solid #E6D6C7;
}

.params-item:first-child {
  border: 0;
}

.params-item-head {
  width: 470px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 60px 60px 60px 0;
}

.params-item-body {
  margin: 0 0 0 auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 60px 0;
}

.params-item-body > p:not(:last-child) {
  margin-bottom: 40px;
}

.params-item-head h3 {
  font-weight: 500;
  color: #191919;
}

.services-item:first-child .services-item-head {
  border-color: transparent;
}

.service-item-inner {
  padding: 45px 0 0;
  display: none;
}

.services-slider-arrow-left {
  display: none;
}

.services-slider-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.services-slider-arrow::before {
  font-family: icomoon;
  font-size: 20px;
  color: #006EF3;
}

.services-slider-arrow-right::before {
  content: "\e903";
}

.services-slider-arrow-right {
  right: 40px;
}

.services-block {
  display: none;
}

.services-text {
  max-width: 570px;
  width: 100%;
}

.services-text:not(:last-child) {
  margin-bottom: 40px;
}

.services-text h3 {
  font-size: 40px;
  margin: 0 0 30px;
}

.text-block h3 {
  font-size: 24px;
  font-weight: 500;
  color: #191919;
  line-height: 1.1;
  margin: 0 0 28px;
}

.services-text-items {
  max-width: 568px;
  width: 100%;
  line-height: 1.33;
}

.services-text-item h4 {
  font-size: 24px;
  line-height: 1;
  color: #006EF3;
}

.services-text-item:not(:last-child) {
  margin-bottom: 60px;
}

.services-text-item {
  max-width: 860px;
  width: 100%;
}

.main-logo-section {
  padding: 75px 0 25px;
}

.main-logo {
  margin: 0 -15px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-logo-item {
  padding: 15px;
  max-width: 25%;
  text-align: center;
}

.main-logo-link {
  display: block;
}

.main-logo-link:hover {
  transform: scale(1.05);
}

.main-logo-img {
  max-height: 80px;
}

.advantages-item {
  margin: 0 60px;
  width: 332px;
}

.advantages-item:nth-child(n+3) {
  margin: 60px 60px 0;
}

.advantages-item h4 {
  font-size: 24px;
  color: #006EF3;
  margin: 0 0 20px;
}

.advantages-box {
  margin: 0 -60px;
}

.targets-box {
  margin: 0 -10px;
}

.targets-item {
  margin: 0 10px;
  width: 190px;
  min-height: 190px;
  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;
  text-align: center;
  background-color: #006EF3;
  color: #fff;
  border-radius: 50%;
  padding: 15px 20px;
  position: relative;
}

.targets-item:nth-child(n+5) {
  margin: 30px 10px 0 10px;
}

.targets-item::after {
  content: "\e907";
  font-family: icomoon;
  font-size: 35px;
  line-height: 1;
  position: absolute;
  right: 17.5px;
  top: 0;
  background-color: #fff;
  border-radius: 50%;
  color: #006EF3;
}

.params-card h5 {
  color: #006EF3;
  font-size: 16px;
  margin: 0 0 20px;
}

.params-item-body-brown {
  background-color: #E6D6C7;
  padding: 60px 50px;
}

.params-card {
  width: 200px;
  margin: 0 15px;
}

.params-card-wide {
  width: 332px;
}

.params-card:nth-child(n+4) {
  margin: 30px 15px 0 15px;
}

.demand-box {
  margin: 0 -60px;
}

.demand-box:not(:last-child) {
  margin-bottom: 60px;
}

.demand-column {
  width: 350px;
  margin: 0 60px;
}

.demand-column > h4 {
  font-size: 24px;
}

.demand-column-head {
  margin: 0 0 50px;
}

.demand-item:not(:last-child) {
  margin-bottom: 40px;
}

.demand-item {
  padding: 0 0 0 50px;
  position: relative;
}

.demand-item::before {
  content: "\e907";
  font-family: icomoon;
  font-size: 35px;
  position: absolute;
  left: 0;
  top: -4px;
  color: #006EF3;
  line-height: 1;
}

.demand-item-alt::before {
  color: #8A71E7;
}

.options-box {
  margin: 0 -10px;
}

.options-box:not(:empty) {
  margin-bottom: -20px;
}

.options-box:not(:last-child) {
  margin-bottom: 40px;
}

.options-card {
  width: 450px;
  min-height: 305px;
  margin: 0 10px 20px;
  border: 2px solid #E6D6C7;
  border-radius: 20px;
  padding: 30px 30px 45px;
  position: relative;
  overflow: hidden;
}

.options-card-small {
  width: 215px;
  min-height: 215px;
}

.options-card-block {
  width: calc(100% - 20px);
  min-height: 224px;
}

.options-card::before {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: -o-linear-gradient(318.52deg, #7452AD 7.47%, #8A71E7 72.92%);
  background: linear-gradient(131.48deg, #7452AD 7.47%, #8A71E7 72.92%);
  position: absolute;
  left: -2px;
  top: -2px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  opacity: 0;
  pointer-events: none;
}

.options-card:hover:before {
  opacity: 1;
}

.options-card:hover {
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}

.options-card-describe {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-weight: 700;
  color: #C9B5A3;
  font-size: 14px;
}

.options-card:hover .options-card-describe {
  color: #fff;
}

.options-card-describe::after {
  content: "\e900";
  display: inline-block;
  font-family: icomoon;
  font-weight: normal;
  margin: 0 0 0 10px;
}

.options-card h3 {
  color: #191919;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.options-card h3,
.options-card h4 {
  position: relative;
  z-index: 1;
}

.options-card:hover h3,
.options-card:hover h4 {
  color: inherit;
}

.options-card img {
  position: absolute;
  left: 25px;
  bottom: 25px;
  max-width: 255px;
  max-height: 210px;
  pointer-events: none;
  display: none;
}

.options-card:hover .options-card-text {
  opacity: 0;
  pointer-events: none;
}

.options-card:hover img {
  display: block;
  opacity: 1;
}

.options-card-text {
  font-size: 14px;
  max-width: 305px;
  width: 100%;
}

.partners p {
  line-height: 1;
  margin: 0 0 30px;
}

.partners-box {
  margin: 0 -7.5px;
}

.partners-item {
  margin: 0 7.5px 20px;
  line-height: 20px;
  height: 60px;
  text-align: center;
  border: 2px solid #E6D6C7;
  border-radius: 60px;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partners-item:hover {
  background: #E6D6C7;
}

.partners-item img {
  margin: auto;
  max-height: 100%;
}

.services-box {
  padding: 60px 0 0 0;
  margin: 0 -10px;
  max-width: 1315px;
  width: 100%;
  position: relative;
}

.services-more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  left: auto;
}

.services-card {
  width: 568px;
  min-height: 295px;
  background: #E6D6C7;
  border-radius: 0px 20px 20px 20px;
  margin: 0 10px;
  padding: 30px 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  pointer-events: none;
}

.services-card:nth-child(odd):after {
  right: 52px;
  top: -20px;
}

.services-card:nth-child(even):after {
  right: -25px;
  top: 55px;
}

.services-card:nth-child(3n-1):after {
  background-color: #FF6766;
}

.services-card:nth-child(3n-2):after {
  background-color: #191919;
}

.services-card:nth-child(3n-3):after {
  background-color: #006EF3;
}

.services-card:nth-child(n+3) {
  margin: 25px 10px 0 10px;
  display: none;
}

.services-card-type {
  font-size: 14px;
  padding: 0 0 0 20px;
  position: relative;
  color: #006EF3;
  line-height: 1;
  margin: 0 0 40px;
}

.services-card-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #006EF3;
}

.services-card-accent {
  background-color: #006EF3;
  color: #fff;
}

.services-card-accent .services-card-type {
  color: #E6D6C7;
}

.services-card-accent .services-card-type::before {
  background-color: #E6D6C7;
}

.services-card-accent .services-card-link {
  color: #E6D6C7;
}

.services-card-text {
  max-width: 390px;
  width: 100%;
  margin: 0 0 18px;
}

.services-card-text h3 {
  margin: 0 0 15px;
  font-weight: 500;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.services-card h3 {
  color: #191919;
}

.services-card-accent h3 {
  color: #fff;
}

.services-card-footer {
  text-align: right;
  margin-top: auto;
}

.services-card-link {
  margin: 0 0 0 auto;
  position: relative;
  line-height: 1;
  color: #006EF3;
}

.services-card-link::after {
  content: "\e900";
  font-family: icomoon;
  font-size: 15px;
  margin: 0 0 0 10px;
  vertical-align: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
}

.services-card-link:hover {
  text-decoration: none;
}

.services-card-link:hover:after {
  -webkit-transform: scale(1.2) translateY(-5px);
      -ms-transform: scale(1.2) translateY(-5px);
          transform: scale(1.2) translateY(-5px);
}

.services-card img {
  position: absolute;
  top: -55px;
  right: 50px;
  max-width: 260px;
  max-height: 225px;
  z-index: 1;
}

.services-text h4:not(:last-child) {
  margin: 0 0 60px;
}

.post-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-block-main {
  width: 600px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 80px 0 0;
}

.post-image {
  display: block;
  height: 350px;
  margin: 0 0 40px;
  background-color: #006EF3;
  border-radius: 0px 20px 20px 20px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.post-image:hover img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.post h3 a {
  display: block;
}

.post h3 {
  line-height: 1.1;
  margin: 0 0 20px;
  color: #191919;
}

.post-box {
  margin: 0 -30px;
}

.post-column {
  margin: 0 30px;
  width: 360px;
}

.post-item h4 {
  font-size: 16px;
  margin: 0 0 18px;
}

.post-item:not(:last-child) {
  margin: 0 0 55px;
}

.post-item h4 a {
  display: block;
}

.mobile-search-link {
  font-size: 25px;
  margin: 0 20px 0 0;
  position: relative;
  z-index: 2;
}

.mobile-search-link:hover {
  text-decoration: none;
  color: #191919;
}

.mobile-btn {
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  position: relative;
  z-index: 2;
}

/*footer*/
.footer {
  padding: 80px 0 10px 0;
  margin-top: auto;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 50px;
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
}

.footer-social-link {
  margin: 10px 80px 10px 0;
}

.footer-column {
  width: calc(16.6666666667% - 30px);
  margin: 0 15px;
  line-height: 1.28;
}

.footer-menu > li > a {
  color: #006EF3;
  font-size: 18px;
  margin: 0 0 30px;
}

.footer-menu > li:not(:last-child) {
  margin: 0 0 60px;
}

.footer-menu a {
  display: block;
}

.footer-menu ul a {
  text-decoration: none;
}

.footer-menu {
  margin: 0;
  padding: 0 65px 0 0;
  list-style-type: none;
  font-size: 14px;
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-menu ul li:not(:last-child) {
  margin: 0 0 20px;
}

.footer-info {
  min-height: 285px;
  background-color: #006EF3;
  margin: 120px 0 0 0;
  border-radius: 50%;
  color: #fff;
  padding: 15px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.footer-bottom {
  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;
  width: 100%;
}

.footer-text {
  width: 58%;
  font-size: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #9A9A9A;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding: 0 20px 0 0;
}

.footer-text p:not(:last-child) {
  margin: 0 0 10px;
}

.footer-text strong {
  font-size: 16px;
  color: #191919;
}

.footer-contacts {
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
  text-align: right;
}

.footer-contacts p:not(:last-child) {
  margin: 0 0 8px;
}

.footer-contacts a {
  text-decoration: none;
}

.footer-box {
  margin: 0 -15px 60px;
}

.footer-social-link::after {
  content: "\e900";
  font-family: icomoon;
  font-size: 15px;
  margin: 0 0 0 10px;
  vertical-align: middle;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
}

.footer-social-link:hover {
  color: inherit;
  text-decoration: none;
}

.footer-social-link:hover:after {
  -webkit-transform: scale(1.3) translateY(-5px);
      -ms-transform: scale(1.3) translateY(-5px);
          transform: scale(1.3) translateY(-5px);
  color: #006EF3;
}

/*modals*/
.modal-search {
  padding: 0;
  background: 0;
  max-width: 1000px;
  width: 100%;
  display: none;
}

.search-form-input {
  background: 0;
  border: 0;
  color: #fff;
  height: 50px;
  padding: 0 80px 0 0;
  font-size: 30px;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 0 10px 0;
}

.search-form-btn {
  line-height: 48px;
  width: 50px;
  text-align: center;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
  background: #006EF3;
  color: #fff;
  font-weight: 700;
}

.search-form-btn:hover {
  background: #fff;
  color: #006EF3;
}

.search-form::before,
.search-form::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  width: 0;
  background-color: #006EF3;
}

.search-form::before {
  left: 50%;
}

.search-form::after {
  right: 50%;
}

.modal-search.fancybox-content .search-form::before,
.modal-search.fancybox-content .search-form::after {
  -webkit-animation: searchBorder 0.25s 0.25s forwards ease-in-out;
          animation: searchBorder 0.25s 0.25s forwards ease-in-out;
}

.modal-search.fancybox-content .search-form-input:focus::-webkit-input-placeholder {
  color: #fff;
}

@-webkit-keyframes searchBorder {
  0% {
    width: 0;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}

@keyframes searchBorder {
  0% {
    width: 0;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
.fancybox-slide--html .fancybox-close-small {
  top: -30px;
  color: #fff;
}

/* ~~ MEDIA QUERIES ALWAYS AT THE END ~~ */
@media (max-width: 1919px) {
  .container {
    max-width: 1550px;
  }

  .about-text {
    max-width: 430px;
    font-size: 70px;
  }

  .about-text h1 {
    font-size: 70px;
    padding: 0 20px 0 0;
    margin: 0 0 20px;
  }

  .about-text h1::after {
    width: 100px;
    height: 100px;
  }

  .container-pl {
    padding: 0 15px 0 255px;
  }

  .services-item-head::after {
    right: 135px;
  }

  .services-card {
    width: 530px;
  }

  .services-more-btn {
    right: 30px;
  }

  .services-item-subtitle {
    max-width: 585px;
    -ms-flex-item-align: center;
        align-self: center;
  }

  .services {
    font-size: 17px;
  }

  .targets-item {
    width: 170px;
    min-height: 170px;
  }

  .demand-box {
    margin: 0 -30px;
  }

  .demand-column {
    margin: 0 30px;
  }

  .advantages-box {
    margin: 0 -30px;
  }

  .advantages-item {
    margin: 0 30px;
    width: 320px;
  }

  .advantages-item:nth-child(n+3) {
    margin: 30px 30px 0;
  }

  .options-card {
    width: 395px;
  }

  .options-card-block {
    width: calc(100% - 20px);
  }

  .post-column {
    width: 345px;
  }

  .footer-menu {
    padding: 0;
  }

  .footer {
    padding: 60px 0 10px 0;
  }

  .footer-social {
    font-size: 38px;
    margin: 0 0 30px;
  }

  .footer-social-link {
    margin: 10px 60px 10px 0;
  }

  .footer-info {
    padding: 15px;
    min-height: 1px;
    border-radius: 15px;
    margin: 80px 0 0 0;
  }

  .footer-menu > li > a {
    font-size: 16px;
  }

  .footer-text {
    width: 53%;
  }

  .footer-contacts {
    font-size: 32px;
  }

  .footer-bottom {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 1579px) {
  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 25px;
  }

  .container {
    max-width: 1200px;
  }

  .logo {
    width: 250px;
  }

  .header-top {
    margin: 0;
  }

  .header-menu {
    margin: 0 -15px;
  }

  .header-menu li {
    margin: 0 15px 8px;
  }

  .about-body {
    padding: 0;
  }

  .about-text {
    max-width: 440px;
    font-size: 60px;
  }

  .about-text h1 {
    font-size: 60px;
    padding: 0 10px 0 0;
    margin: 0 0 20px;
  }

  .cards {
    width: 270px;
    height: 320px;
    --offset: 500px;
  }

  .card-title {
    font-size: 23px;
  }

  .about-text h1::after {
    margin: 0 100px 0 auto;
  }

  .container-pl {
    padding: 0 15px 0 125px;
  }

  .about-section {
    padding: 20px 0 200px 0;
  }

  .about {
    min-height: 1px;
  }

  .info-head {
    margin: 0 0 50px;
  }

  .info-body {
    max-width: 600px;
  }

  .info-item {
    width: 270px;
  }

  .info-sidebar {
    width: 315px;
  }

  .info-section {
    padding: 0 0 80px;
  }

  .info-slider {
    /*margin-left: -650px;*/
    padding: 0;
  }

  .info-slider-arrow-left {
    right: 580px;
  }

  .info-slider-arrow-right {
    right: 0;
  }

  .info-slide {
    /*width: 630px;*/
  }

  .services-item-head {
    padding: 35px 100px;
    margin: 0 0 0 -100px;
  }

  .services-item.open .services-item-head h2 {
    width: 340px;
  }

  .services-item-head::after {
    right: 55px;
    font-size: 40px;
  }

  .services-text h3 {
    font-size: 35px;
  }

  .params-item-head {
    padding: 40px 40px 40px 0;
    width: 340px;
  }

  .params-item-body {
    padding: 40px 0;
  }

  .params-item-body-brown {
    padding: 40px 30px;
  }

  .services-text {
    max-width: 500px;
  }

  .services-item-head::before {
    left: 10px;
    font-size: 50px;
  }

  .services-tabs {
    margin: 0 0 0 262px;
  }

  .params-card {
    width: 186px;
  }

  .demand-column {
    width: 330px;
  }

  .services-card {
    width: 450px;
    min-height: 275px;
  }

  .services-card-text {
    max-width: 320px;
  }

  .services-card::after {
    width: 115px;
    height: 115px;
  }

  .services-card:nth-child(2n)::after {
    right: -35px;
  }

  .services-card:nth-child(2n+1)::after {
    right: 32px;
  }

  .services-card img {
    max-width: 220px;
    right: 25px;
  }

  .services-card-text h3 {
    padding: 0 100px 0 0;
  }

  .services-more-btn {
    right: -20px;
  }

  .targets-item {
    margin: 0 10px 15px;
    width: auto;
    border-radius: 10px;
    min-height: 30px;
    max-width: 300px;
  }

  .targets-item::after {
    right: -15px;
    top: -10px;
  }

  .services-slider {
    width: 520px;
  }

  .params-card {
    width: 146px;
  }

  .params-card-wide {
    width: calc(50% - 30px);
  }

  .params-card h5 {
    min-height: 32px;
  }

  .demand-box {
    margin: 0 -15px;
  }

  .demand-column {
    margin: 0 15px;
    width: 265px;
  }

  .demand-item:not(:last-child) {
    margin-bottom: 40px;
  }

  .demand-item {
    padding: 0 0 0 45px;
  }

  .services-item-static .services-item-head {
    padding: 35px 55px 35px 100px;
  }

  .post-block-main {
    width: 470px;
    margin: 0 50px 0 0;
  }

  .post-image {
    height: 300px;
  }

  .post-box {
    margin: 0 -15px;
  }

  .post-column {
    margin: 0 30px 0 15px;
    width: 297px;
  }

  .services-item-body-full {
    margin: 0 0 0 -85px;
  }

  .options-box:not(:last-child) {
    margin-bottom: 30px;
  }

  .options-card h3 {
    font-size: 22px;
  }

  .options-card {
    width: 350px;
  }

  .options-card-block {
    width: calc(100% - 20px);
  }

  .footer-box {
    margin: 0 -10px;
  }

  .footer-column {
    margin: 0 10px 40px;
    width: calc(16.6666666667% - 20px);
  }
}
@media (max-width: 1279px) {
  h2 {
    font-size: 35px;
  }

  .container {
    max-width: 960px;
  }

  .header-phone {
    margin: 0 40px 0 0;
  }

  .header-menu {
    margin: 0 -5px;
  }

  .header-menu li {
    margin: 0 5px 8px;
  }

  .header-btn {
    margin: 8px 30px 8px 0;
  }

  .about-text {
    margin-right: auto;
    margin-left: auto;
    font-size: 40px;
  }

  .about-text p {
    max-width: 206px;
  }

  .about-text h1 {
    font-size: 40px;
  }

  .about-text h1::after {
    margin: 0 50px 0 auto;
  }

  .about-text strong {
    margin-top: 50px;
  }

  .cards {
    width: 220px;
    height: 240px;
    --offset: 400px;
  }

  .card-title {
    font-size: 18px;
  }

  .card::after {
    width: 70px;
    line-height: 70px;
    font-size: 12px;
  }

  .modal-search {
    max-width: 800px;
  }

  .search-form-input {
    font-size: 25px;
  }

  .modal-search {
    padding: 0 30px;
  }

  .container-pl {
    padding: 0 15px;
  }

  .info-head {
    padding: 0;
    max-width: 600px;
    width: 100%;
  }

  .info-sidebar {
    width: 270px;
  }

  .news-item:not(:last-child) {
    margin: 0 0 30px;
  }

  .news-items:not(:last-child) {
    margin: 0 0 30px;
  }

  .services-item-head {
    padding: 25px 50px 25px 60px;
    margin: 0;
  }

  .services-item-head::after {
    font-size: 35px;
    right: 0;
    top: 24px;
  }

  .services-item-head::before {
    left: 0;
    font-size: 42px;
    top: 20px;
  }

  .services-item-subtitle {
    max-width: 510px;
  }

  .services-card {
    width: 445px;
  }

  .services-more-btn {
    position: static;
    margin: 30px auto 0;
  }

  .services-item.open .services-item-head h2 {
    width: 310px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .services-tabs {
    margin: 0 0 0 195px;
  }

  .params-item-head {
    width: 370px;
    padding: 30px 30px 30px 0;
  }

  .services-text h3 {
    font-size: 30px;
  }

  .services-text {
    max-width: 450px;
  }

  .params-item-body {
    padding: 30px 0;
  }

  .params-item-body-brown {
    padding: 30px;
  }

  .advantages-item h4 {
    font-size: 20px;
  }

  .advantages-box {
    margin: 0 -15px;
  }

  .advantages-item {
    margin: 0 15px;
    width: 250px;
  }

  .advantages-item:nth-child(n+3) {
    margin: 30px 15px 0;
  }

  .services-item-body-full {
    margin: 0;
  }

  .post-block-main {
    margin: 0 40px 0 0;
    width: 370px;
  }

  .post-image {
    height: 250px;
    margin: 0 0 30px;
  }

  .post-column {
    width: 245px;
  }

  .services-item-static .services-item-head {
    padding: 25px 55px 25px 60px;
  }

  .options-card {
    width: calc(100% - 20px);
    min-height: 240px;
  }

  .options-card-text {
    max-width: 350px;
  }

  .footer-box {
    margin: 0 -15px;
  }

  .footer-column {
    margin: 0 15px 40px;
    width: calc(33.3333333333% - 30px);
  }

  .footer-social {
    font-size: 30px;
  }

  .footer-info {
    margin: 40px 0 0;
  }

  .footer-contacts {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .overflow-off {
    overflow: hidden;
  }

  body {
    padding-top: var(--h-height);
  }

  .container {
    max-width: 720px;
  }

  .about {
    display: block;
  }

  .about-text p {
    max-width: 100%;
    text-align: right;
    margin: 0 auto 30px;
  }

  .about-text h1 {
    font-size: 50px;
  }

  .about-text h1::after {
    margin: 20px auto 0;
    width: 50px;
    height: 50px;
  }

  .card-title {
    font-size: 25px;
    min-height: 50px;
  }

  .cards {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }

  .card {
    position: relative;
    top: auto;
    left: auto;
    width: 320px;
    height: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .card:hover {
    color: #191919;
    text-decoration: none;
  }

  .header-logo {
    margin: 0 auto 0 0;
    width: 300px;
  }

  .header-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(40, 33, 59, 0.1);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: #fff;
  }

  .header-content {
    position: fixed;
    width: 100%;
    max-width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    padding: 90px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    pointer-events: none;
  }

  .header-content.open {
    opacity: 1;
    pointer-events: auto;
  }

  .header-search-link {
    display: none;
  }

  .about-section {
    padding: 45px 0 75px;
  }

  .header-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: auto;
  }

  .header-bottom {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: auto;
  }

  .header-menu {
    display: block;
    text-align: center;
    font-size: 26px;
    line-height: 1;
    text-transform: uppercase;
  }

  .header-phone {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 10px 0 20px;
    font-size: 20px;
  }

  .header-buttons {
    margin: 0 -15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header-btn {
    margin: 0 15px 25px;
  }

  .header-menu li {
    margin: 0 5px 25px;
  }

  .mobile-btn.active::before {
    content: "\e909";
    font-weight: normal;
  }

  .info {
    display: block;
  }

  .info-head {
    max-width: 100%;
  }

  .info-body {
    max-width: 100%;
  }

  .info-item {
    width: 320px;
  }

  .info-sidebar {
    width: 100%;
    margin: 0;
  }

  .info-slider {
    margin: 30px -10px 40px;
  }

  .news-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
    overflow-x: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .news-item {
    margin: 0 15px 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 320px;
  }

  .news-item:not(:last-child) {
    margin: 0 15px 30px;
  }

  .news-items:not(:last-child) {
    margin: 0 -15px;
  }

  .services-item-head {
    display: block;
  }

  .services-item.open .services-item-head h2 {
    width: 100%;
    margin: 0 0 20px;
  }

  .services-item-subtitle {
    max-width: 100%;
  }

  .service-item-inner {
    padding: 0;
  }

  .services-item-static .services-item-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .services-tabs {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 25px auto 0 -45px;
    width: calc(100% + 45px);
  }

  .services-item-static .services-item-body {
    padding-top: 0;
  }

  .params-item {
    display: block;
    padding: 40px 0 0 0;
  }

  .params-item-head {
    padding: 0 0 40px;
    width: 100%;
  }

  .services-text {
    max-width: 100%;
  }

  .params {
    padding: 0;
  }

  .params-item-body {
    padding: 0 0 40px;
  }

  .params-item-body-brown {
    padding: 40px 30px;
  }

  .params-card {
    width: 190px;
  }

  .demand-column {
    width: 330px;
  }

  .advantages-item {
    width: 330px;
  }

  .services-card {
    margin: 60px auto 0;
    text-align: left;
  }

  .services-card:nth-child(n+3) {
    margin: 60px auto 0;
  }

  .services-card:first-child {
    margin-top: 0;
  }

  .services-box {
    margin: 0;
    display: block;
    text-align: center;
  }

  .services-item-static .services-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0 25px 60px;
  }

  .options-card {
    width: 335px;
  }

  .options-card-block {
    width: calc(100% - 20px);
  }

  .post-block {
    display: block;
  }

  .post-block-main {
    width: 100%;
  }

  .post-column {
    width: 330px;
  }

  .post-item {/*:not(:last-child)*/
    margin: 0 0 40px;
  }

  .footer-info {
    display: none;
  }

  .footer {
    padding: 45px 0 0;
  }

  .footer-social-link {
    margin: 0 30px 10px 0;
  }

  .footer-social {
    font-size: 25px;
  }

  .footer-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer-contacts {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: left;
  }

  .footer-text {
    width: 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding: 0 0 30px 0;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 17px;
  }

  .container {
    max-width: 540px;
  }

  .card {
    width: 247px;
  }

  .card-title {
    font-size: 20px;
  }

  .info-text {
    margin: 0 0 50px;
  }

  .info-item {
    width: 240px;
  }

  .news-item {
    width: calc(100% - 30px);
  }

  .params-item-head {
    padding: 0 0 30px;
  }

  .advantages-item {
    width: 240px;
  }

  .params-item:first-child .params-item-head {
    display: none;
  }

  .params-card {
    width: 210px;
  }

  .params-card h5 {
    min-height: 1px;
    margin: 0 0 15px;
  }

  .params-card:nth-child(n+3) {
    margin: 30px 15px 0 15px;
  }

  .demand-item:not(:last-child) {
    margin: 0 0 30px;
  }

  .demand-column {
    width: calc(100% - 30px);
  }

  .demand-column:not(:last-child) {
    margin-bottom: 30px;
  }

  .services-slider {
    width: calc(100% - 30px);
    padding: 0 35px 0 10px;
  }

  .demand-item::before {
    top: -6px;
  }

  .post-column {
    width: calc(100% - 30px);
  }

  .post-block-main {
    margin: 0 0 40px 0;
  }

  .post-item:not(:last-child) {
    margin: 0 0 30px;
  }

  .services-card:first-child {
    margin-top: 40px;
  }

  .services-slider-arrow-right {
    right: 0;
  }

  .services-text-item:not(:last-child) {
    margin-bottom: 40px;
  }

  .services-text-item h4 {
    font-size: 22px;
  }

  .main-logo-item {
    width: 50%;
    max-width: 50%;
    text-align: left;
  }

  .options-card {
    padding: 15px 15px 50px;
    width: 245px;
  }

  .options-card-block {
    width: calc(100% - 20px);
  }

  .options-card h3 {
    font-size: 20px;
  }

  .services-text h3 {
    font-size: 28px;
  }

  .footer-column {
    width: calc(50% - 30px);
  }

  .footer-menu > li:not(:last-child) {
    margin: 0 0 40px;
  }

  .footer-social {
    font-size: 20px;
    margin: 0 -15px 25px;
  }

  .footer-social-link {
    margin: 0 15px 15px;
  }

  .footer-social-link::after {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  body {
    font-weight: 400;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
  }

  h2 {
    font-size: 28px;
  }

  .container {
    max-width: 100%;
  }

  .about-text h1 {
    font-size: 40px;
    margin: 0 0 10px;
    padding: 0;
  }

  .about-text {
    font-size: 40px;
  }

  .about-text p {
    max-width: 290px;
  }

  .about-text * {
    text-align: left !important;
  }

  .about-text strong {
    margin-top: 30px;
  }

  .card {
    max-width: 290px;
    width: 100%;
  }

  .card-title {
    font-size: 24px;
    font-weight: 500;
  }

  .header-logo {
    width: 200px;
  }

  .header {
    padding: 15px 0;
  }

  .header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 1;
  }

  .modal-search {
    padding: 0;
  }

  .search-form-input {
    font-size: 18px;
  }

  .search-form-btn {
    line-height: 43px;
    width: 45px;
  }

  .search-form {
    padding: 0 0 5px;
  }

  .about-section {
    padding: 45px 0;
  }

  .info-head {
    margin: 0 0 40px;
  }

  .info-text h4 {
    margin: 0 0 20px;
  }

  .info-item {
    width: calc(100% - 30px);
    margin: 0 15px 40px;
  }

  .info-section {
    padding: 0 0 50px;
  }

  /*.info-slide {*/
    /*height: 260px;*/
  /*}*/

  .services-item-head h2 {
    font-size: 20px;
    padding: 0;
  }

  .services-item-head {
    padding: 25px 35px 25px 45px;
  }

  .services-item-head::after {
    font-size: 24px;
    top: 24px;
  }

  .services-item-head::before {
    font-size: 30px;
  }

  .services {
    font-size: 16px;
  }

  .services-card {
    width: calc(100% - 10px);
    padding: 25px;
  }

  .services-box {
    padding: 45px 0 0;
  }

  .services-card img {
    position: static;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: -10px 0 20px;
  }

  .services-card::after {
    width: 60px;
    height: 60px;
  }

  .services-card:nth-child(2n+1)::after {
    right: 15px;
    top: -15px;
  }

  .services-card-type {
    margin: 0 0 20px;
  }

  .services-card:nth-child(2n)::after {
    right: -15px;
  }

  .services-card-text h3 {
    padding: 0;
  }

  .services-card {
    margin: 40px auto 0;
  }

  .services-card:nth-child(n+3) {
    margin: 40px auto 0;
  }

  .advantages-item {
    max-width: calc(100% - 30px);
    width: 100%;
  }

  .advantages-item:nth-child(n+2) {
    margin: 30px 15px 0;
  }

  .services-text h3 {
    font-size: 27px;
  }

  .partners-item {
    height: 40px;
  }

  .services-box {
    margin-top: -40px;
  }

  .params-card {
    width: calc(100% - 30px);
  }

  .services-item-body {
    padding-bottom: 40px;
  }

  .params-card:nth-child(n+2) {
    margin: 30px 15px 0;
  }

  .options-card {
    width: calc(100% - 20px);
  }

  .footer-column {
    width: calc(100% - 30px);
  }

  .footer-menu ul li:not(:last-child) {
    margin: 0 0 10px 0;
  }

  .footer-menu > li > a {
    font-weight: 500;
  }

  .footer-contacts {
    font-size: 17px;
  }

  .footer-text p:not(:last-child) {
    margin: 0 0 15px 0;
  }

  .services-item-static .services-item-head {
    padding: 25px 0 25px 45px;
  }

  .steps-item {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .card:hover {
    background-color: var(--hover-bg, rgba(0, 62, 223, 0.8));
    -webkit-transform: rotateY(-38deg);
            transform: rotateY(-38deg);
    text-decoration: none;
    color: #fff;
  }

  .card:hover .card-title::after {
    opacity: 0;
  }

  .card:hover .card-title {
    color: #fff;
  }

  .card:first-child:hover {
    z-index: 2;
  }

  .card:hover:after {
    opacity: 1;
  }

  .card--prev-hover {
    -webkit-transform: rotateY(calc(var(--rotate) - 7.5deg));
            transform: rotateY(calc(var(--rotate) - 7.5deg));
  }

  .card--prev-hover:nth-last-child(2) {
    -webkit-transform: translateX(-40px) rotateY(-50deg);
            transform: translateX(-40px) rotateY(-50deg);
  }

  .card--next-hover {
    -webkit-transform: rotateY(calc(var(--rotate) + 7.5deg));
            transform: rotateY(calc(var(--rotate) + 7.5deg));
  }

  .card:last-child {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }

  .mobile-search-link {
    display: none;
  }

  .mobile-btn {
    display: none;
  }
}