* {
  font-family: 'Rubik', sans-serif;
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  position: relative;
  overflow-x: hidden;
}

button {
  cursor: pointer;
}

input {
  border-radius: 0px;
}

.container {
  position: relative;
  max-width: 1440px;
  padding: 0 22px;
  margin: 0 auto;
}

button {
  cursor: pointer;
  border: 1px solid #026AC4;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

button:hover {
  background-color: transparent;
  color: #026AC4;
  border: 1px solid #026AC4;
}

.btns {
  color: #ffffff;
  background-color: #026AC4;
  text-transform: uppercase;
  padding: 24px 32px;
  font-weight: 700;
  width: 60%;
  line-height: 22px;
  font-size: 22px;
}

h1 {
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

@media (max-width: 1366px) {
  .container {
    max-width: 1140px;
  }
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0px 16px;
  }
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
  h1 {
    font-size: 26px;
    line-height: 36px;
  }
  .btns {
    padding: 16px 16px;
    width: 278px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 578px;
    padding: 0px 16px;
  }
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
  h1 {
    font-size: 22px;
    line-height: 32px;
  }
  .btns {
    padding: 16px 16px;
    width: 278px;
  }
}

@media (max-width: 526px) {
  .container {
    max-width: 328px;
    padding: 0px 16px;
  }
  h1 {
    font-size: 18px;
    line-height: 26px;
  }
  h2 {
    line-height: 22px;
    font-size: 16px;
  }
  .btns {
    padding: 16px 16px;
    width: 100%;
  }
}

.header_wrapper {
  height: 100px;
  z-index: 900;
  border-bottom: 0.2px solid #e2e2e2;
  position: fixed;
  right: 0;
  left: 0;
  background-color: #F7F7F7;
}

.header {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.header__block-calling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__block-calling a {
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  font-size: 24px;
  margin-left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__block-calling a:hover {
  color: #026AC4;
}

.header__block-calling .number-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__block-menu {
  height: 64px;
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 56px;
  cursor: pointer;
}

.header__block-menu span {
  display: block;
  width: 40px;
  min-width: 40px;
  height: 3px;
  background-color: #026AC4;
  position: relative;
}

.header__block-menu span::before, .header__block-menu span::after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #026AC4;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.header__block-menu span::before {
  bottom: 10px;
  right: 8px;
}

.header__block-menu span::after {
  top: 10px;
  right: 8px;
}

.header__block-menu:hover span::before {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

.header__block-menu:hover span::after {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

.logo {
  outline: none;
  text-decoration: none;
  color: #026AC4;
  font-size: 33px;
  font-weight: 400;
  line-height: 33px;
}

@media (max-width: 768px) {
  .header__block-menu {
    margin-left: 48px;
  }
  .header__block-calling a {
    display: none;
  }
}

@media (max-width: 526px) {
  .header, .header_wrapper {
    height: 70px;
  }
  .header__block-menu, .header_wrapper__block-menu {
    margin-left: 40px;
  }
  .header__block-menu span, .header_wrapper__block-menu span {
    min-width: auto;
    width: 30px;
    border-radius: 30px;
  }
  .header__block-menu span::before, .header__block-menu span::after, .header_wrapper__block-menu span::before, .header_wrapper__block-menu span::after {
    width: 30px;
    border-radius: 30px;
  }
  .header__block-menu span::before, .header_wrapper__block-menu span::before {
    bottom: 8px;
  }
  .header__block-menu span::after, .header_wrapper__block-menu span::after {
    top: 8px;
  }
  .header__block-calling img, .header_wrapper__block-calling img {
    height: 25px;
  }
}

.main_wrapper {
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F7F7F7;
}

.main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  height: 400px;
}

.main__content {
  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;
  padding-right: 40px;
}

.main__content p {
  color: #000000;
  font-size: 26px;
  font-weight: 400;
  margin-top: 32px;
}

.main__content button {
  margin-top: 48px;
}

.main__content span {
  color: #026AC4;
}

.main__img {
  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;
}

.main__img img {
  width: 80%;
}

@media (max-width: 1366px) {
  .main {
    -ms-grid-columns: 55% 45%;
        grid-template-columns: 55% 45%;
  }
  .main__img img {
    width: 100%;
  }
}

@media (max-width: 1110px) {
  .main {
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
  }
  .main__content {
    padding-right: 0px;
  }
  .main__content p {
    font-size: 22px;
    line-height: 32px;
  }
  .main__content button {
    font-size: 20px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .main_wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 120px;
  }
  .main {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr;
        grid-template: 1fr / 1fr;
  }
  .main__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main__img img {
    width: 279px;
  }
  .main__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main__content p {
    font-size: 18px;
    line-height: 27px;
    margin-top: 16px;
  }
  .main__content button {
    margin-top: 32px;
  }
}

@media (max-width: 526px) {
  .main_wrapper {
    padding-top: 120px;
    height: 900px;
  }
  .main__content button {
    font-size: 16px;
  }
  .main__img img {
    width: 100%;
  }
}

.advantages {
  height: 130px;
  display: -ms-grid;
  display: grid;
  grid-column-gap: 34px;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 10;
  bottom: 60px;
}

.advantages__block {
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.advantages__block h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding: 0 60px 0 26px;
  z-index: 2;
}

.advantages__block img {
  position: absolute;
  right: 0;
  z-index: 1;
  opacity: 0.7;
}

@media (max-width: 1366px) {
  .advantages {
    height: 100px;
  }
  .advantages__block h3 {
    line-height: 20px;
    font-size: 16px;
    padding: 0 32px 0 16px;
  }
}

@media (max-width: 1024px) {
  .advantages__block h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .advantages__block img {
    height: 67px;
  }
}

@media (max-width: 768px) {
  .advantages {
    bottom: 100px;
    -ms-grid-rows: (80px)[2];
    -ms-grid-columns: (1fr)[2];
        grid-template: repeat(2, 80px)/repeat(2, 1fr);
    grid-gap: 24px;
  }
  .advantages__block h3 {
    padding: 0 32px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 526px) {
  .advantages {
    bottom: 320px;
    -ms-grid-rows: (80px)[4];
    -ms-grid-columns: minmax(40%, 1fr);
        grid-template: repeat(4, 80px)/minmax(40%, 1fr);
    grid-row-gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .advantages__block h3 {
    text-align: left;
  }
}

.portfolio_wrapper {
  margin-top: 120px;
}

.portfolio_wrapper h2 {
  text-align: center;
}

.portfolio {
  display: -ms-grid;
  display: grid;
  grid-gap: 22px;
  margin-top: 56px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
}

.portfolio__block {
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.portfolio__block-img {
  width: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 0px 6px 6px 0px;
}

.portfolio__block-content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 24px 32px 24px;
}

.portfolio__block-content .place, .portfolio__block-content .type, .portfolio__block-content .problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 8px;
  margin-top: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.portfolio__block-content .place p, .portfolio__block-content .type p, .portfolio__block-content .problem p {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #6a6a6a;
}

.portfolio__block-content .place img, .portfolio__block-content .type img, .portfolio__block-content .problem img {
  height: 32px;
}

.portfolio__block-content .text {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.portfolio__block-content .wrapper {
  min-height: 110px;
  overflow-y: hidden;
}

.portfolio__block-content .more {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  color: #026AC4;
  position: relative;
  cursor: pointer;
  width: auto;
}

.portfolio__block-content .more::after {
  content: '';
  position: absolute;
  width: 68%;
  border-bottom: 3px dashed #026AC4;
  bottom: -10px;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.portfolio__block-content .more:hover::after {
  width: 0%;
}

.portfolio .left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.portfolio .left-img {
  background-repeat: no-repeat;
  border-radius: 6px 0px 0px 6px;
}

@media (max-width: 1366px) {
  .portfolio_wrapper {
    margin-top: 60px;
  }
  .portfolio__block-content .place, .portfolio__block-content .type, .portfolio__block-content .problem {
    margin-top: 12px;
  }
  .portfolio__block-content .place p, .portfolio__block-content .type p, .portfolio__block-content .problem p {
    font-size: 16px;
  }
  .portfolio__block-content .place img, .portfolio__block-content .type img, .portfolio__block-content .problem img {
    height: 24px;
  }
  .portfolio__block-content .text {
    font-size: 16px;
    line-height: 1.4;
  }
  .portfolio__block-content .place {
    margin-top: 0px;
  }
  .portfolio__block-content .more {
    margin-top: 24px;
  }
  .portfolio__block-content .more::after {
    width: 90%;
  }
}

@media (max-width: 1081px) {
  .portfolio__block, .portfolio .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .portfolio__block-content, .portfolio .left-content {
    padding: 24px 24px 32px 24px;
    width: auto;
  }
  .portfolio__block-content .more::after, .portfolio .left-content .more::after {
    width: 57%;
  }
  .portfolio__block-img, .portfolio .left-img {
    height: 400px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .portfolio_wrapper {
    margin-top: 80px;
  }
  .portfolio {
    -ms-grid-rows: (1fr)[4];
    -ms-grid-columns: 1fr;
        grid-template: repeat(4, 1fr)/1fr;
  }
  .portfolio .slick-slide img {
    margin: 0;
    -webkit-filter: none;
            filter: none;
    width: inherit;
  }
  .portfolio__block {
    display: block;
    margin: 0 24px;
  }
  .portfolio__block-img {
    width: 50%;
    height: auto;
  }
  .portfolio__block-img img {
    border-radius: 6px 0 0 6px;
  }
  .portfolio__block-content {
    width: 50%;
  }
}

@media (max-width: 526px) {
  .portfolio_wrapper {
    margin-top: 56px;
  }
  .portfolio {
    margin-top: 32px;
    -ms-grid-rows: (1fr)[4];
    -ms-grid-columns: 1fr;
        grid-template: repeat(4, 1fr)/1fr;
  }
  .portfolio__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 16px;
  }
  .portfolio__block-img {
    border-radius: 6px 6px 0 0;
    height: 200px;
    width: auto;
  }
  .portfolio__block-content {
    width: auto;
  }
  .portfolio__block-content .place img, .portfolio__block-content .type img, .portfolio__block-content .problem img {
    height: 20px;
  }
  .portfolio__block-content .place p, .portfolio__block-content .type p, .portfolio__block-content .problem p {
    font-size: 14px;
  }
  .portfolio__block-content .text {
    font-size: 14px;
  }
  .portfolio__block-content .more {
    font-size: 16px;
    max-width: 200px;
  }
  .portfolio__block-content .more::after {
    width: 100%;
  }
  .portfolio .slick-dots {
    bottom: 5px;
  }
  .left .portfolio__block-img {
    border-radius: 6px 6px 0 0;
  }
}

.bad_water-wrapper {
  background-color: #F7F7F7;
}

.bad_water {
  margin-top: 178px;
  height: 450px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.bad_water__container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1 / 7;
}

.bad_water p {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.bad_water h2 {
  padding-right: 130px;
}

.bad_water__photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  position: relative;
  top: 90px;
}

.girl {
  position: relative;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-column: 8 / 12;
  bottom: 28px;
}

@media (max-width: 1366px) {
  .bad_water {
    height: 360px;
  }
  .bad_water h2 {
    padding-right: 150px;
  }
  .bad_water p {
    font-size: 18px;
    line-height: 1.4;
  }
  .bad_water__photos {
    top: 30px;
  }
  .bad_water__photos img {
    height: 120px;
  }
  .girl {
    bottom: 42px;
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .bad_water {
    margin-top: 120px;
    height: 330px;
  }
  .bad_water__container {
    padding-top: 42px;
  }
  .bad_water__container h2 {
    padding-right: 40px;
  }
  .bad_water__container p {
    font-size: 16px;
    line-height: 1.4;
  }
  .bad_water__photos {
    top: 34px;
  }
  .bad_water__photos img {
    height: 90px;
  }
  .girl {
    -ms-grid-column: 7;
    -ms-grid-column-span: 5;
    grid-column: 7 / 12;
    margin-left: 32px;
    height: 356px;
    bottom: 27px;
  }
}

@media (max-width: 768px) {
  .girl {
    display: none;
  }
  .bad_water__container {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1 / 13;
  }
}

@media (max-width: 526px) {
  .bad_water-wrapper {
    height: 460px;
  }
  .bad_water {
    margin-top: 56px;
  }
  .bad_water__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bad_water__container h2, .bad_water__container p {
    text-align: center;
    padding: 0;
  }
  .bad_water__container p {
    font-size: 14px;
    line-height: 22px;
  }
  .bad_water__photos {
    -ms-grid-columns: (90px)[2];
        grid-template-columns: repeat(2, 90px);
    grid-gap: 18px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bad_water__photos img:nth-child(5) {
    display: none;
  }
}

.steps-wrapper {
  margin-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.steps-wrapper h2 {
  text-align: center;
}

.steps {
  margin-top: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.steps .arrow {
  margin-top: 80px;
}

.steps h3 {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #6a6a6a;
  text-align: center;
  margin-bottom: 56px;
}

.steps__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 90px;
  padding: 0 40px;
}

.steps__container-block {
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  background-color: #ffffff;
  height: 120px;
  position: relative;
  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;
}

.steps__container-block img {
  position: absolute;
  bottom: 0;
}

.steps__container-block p {
  padding: 0 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.steps__container-block .number {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  color: #026AC4;
  position: absolute;
  left: -30px;
  top: -20px;
}

.horisontal__form {
  width: 1032px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 32px;
}

.horisontal__form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.horisontal__form-block-phone, .horisontal__form-block-name, .horisontal__form-block-email, .horisontal__form-block-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.horisontal__form-block-phone input, .horisontal__form-block-name input, .horisontal__form-block-email input, .horisontal__form-block-file input {
  width: 80%;
}

.horisontal__form-block-phone .name-icon, .horisontal__form-block-phone .phone-icon, .horisontal__form-block-phone .email-icon, .horisontal__form-block-phone .file-icon, .horisontal__form-block-name .name-icon, .horisontal__form-block-name .phone-icon, .horisontal__form-block-name .email-icon, .horisontal__form-block-name .file-icon, .horisontal__form-block-email .name-icon, .horisontal__form-block-email .phone-icon, .horisontal__form-block-email .email-icon, .horisontal__form-block-email .file-icon, .horisontal__form-block-file .name-icon, .horisontal__form-block-file .phone-icon, .horisontal__form-block-file .email-icon, .horisontal__form-block-file .file-icon {
  width: 20%;
  border-left: none;
  border-right: 2px solid #ececec;
  border-top: 2px solid #ececec;
  border-bottom: 2px solid #ececec;
  background-color: #ffffff;
  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;
}

.horisontal__form label {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 8px;
}

.horisontal__form button {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  border: 1px solid #026AC4;
  background-color: #026AC4;
  color: #ffffff;
  height: 58px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  -webkit-transition: 0.3 all;
  transition: 0.3 all;
}

.horisontal__form button:hover {
  background-color: transparent;
  color: #026AC4;
}

.horisontal__form input {
  border: 2px solid #ececec;
  background-color: #ffffff;
  height: 54px;
  font-size: 18px;
  padding: 0 20px 0 20px;
}

.horisontal__form span {
  color: #FF0000;
}

@media (max-width: 1366px) {
  .steps-wrapper {
    margin-top: 120px;
  }
  .steps__container {
    grid-column-gap: 66px;
  }
  .steps__container-block p {
    padding: 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }
  .steps__container-block .number {
    font-size: 42px;
    left: -27px;
  }
}

@media (max-width: 1024px) {
  .steps-wrapper {
    margin-top: 140px;
  }
  .steps__container {
    grid-column-gap: 32px;
  }
  .steps__container-block p {
    font-size: 14px;
  }
  .steps__container-block .number {
    font-size: 36px;
    left: auto;
    top: -24px;
  }
  .horisontal__form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .steps-wrapper {
    margin-top: 100px;
  }
  .steps-wrapper h2 {
    padding: 0 48px;
  }
  .steps h3 {
    margin-top: 56px;
  }
  .steps__container {
    -ms-grid-rows: (1fr)[2];
    -ms-grid-columns: (1fr)[2];
        grid-template: repeat(2, 1fr)/repeat(2, 1fr);
    grid-gap: 24px;
  }
  .steps .arrow {
    margin-top: 56px;
  }
  .horisontal__form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 340px;
    grid-gap: 16px;
  }
}

@media (max-width: 526px) {
  .steps-wrapper {
    margin-top: 120px;
  }
  .steps-wrapper h2 {
    padding: 0;
  }
  .steps__container {
    padding: 0px;
    -ms-grid-rows: (1fr)[4];
    -ms-grid-columns: 1fr;
        grid-template: repeat(4, 1fr)/1fr;
  }
  .steps h3 {
    font-size: 16px;
  }
  .horisontal__form {
    width: 100%;
  }
  .horisontal__form-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-wrapper {
  margin-top: 80px;
  background-color: #F7F7F7;
  padding-bottom: 88px;
}

.product-wrapper h2 {
  padding-top: 80px;
  text-align: center;
}

.product {
  margin-top: 56px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 22px;
}

.product__block {
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  background-color: #ffffff;
}

.product__block img {
  width: 100%;
}

.product__block-content {
  padding: 34px 24px 34px 24px;
}

.product__block-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  height: 56px;
  margin-bottom: 16px;
}

.product__block-content .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  height: 126px;
}

.product__block-content .price {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
}

.product__block-content h4 {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  color: #026AC4;
  position: relative;
  cursor: pointer;
  width: auto;
}

.product__block-content h4::after {
  content: '';
  position: absolute;
  width: 65%;
  border-bottom: 3px dashed #026AC4;
  bottom: -10px;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.product__block-content h4:hover::after {
  width: 1%;
}

.product__block-content .btn-wrapper {
  margin-top: 32px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product__block-content button {
  padding: 16px 32px;
  border: 1px solid #026AC4;
  background-color: #026AC4;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  color: #ffffff;
}

.product__block-content button:hover {
  background-color: transparent;
  color: #026AC4;
}

@media (max-width: 1366px) {
  .product__block-content {
    padding: 16px 16px 34px 16px;
  }
  .product__block-content .text {
    min-height: 126px;
    height: 200px;
  }
  .product__block-content h3 {
    font-size: 16px;
    line-height: 1.4;
    height: 56px;
  }
  .product__block-content h4::after {
    width: 82%;
  }
  .product__block-content button {
    padding: 16px 16px;
  }
}

@media (max-width: 1024px) {
  .product {
    -ms-grid-rows: (1fr)[2];
    -ms-grid-columns: (1fr)[2];
        grid-template: repeat(2, 1fr)/repeat(2, 1fr);
    grid-gap: 22px;
  }
  .product__block-content h3 {
    height: 32px;
  }
  .product__block-content .text {
    height: 130px;
  }
  .product__block-content h4 {
    max-width: 235px;
  }
}

@media (max-width: 768px) {
  .product-wrapper {
    padding-bottom: 56px;
  }
  .product-wrapper h2 {
    padding-top: 56px;
  }
  .product__block-content button {
    font-size: 14px;
    padding: 12px 16px;
  }
  .product__block-content h3 {
    height: auto;
    min-height: 66px;
  }
  .product__block-content h4 {
    font-size: 16px;
    line-height: 16px;
    max-width: 210px;
  }
  .product__block-content .text {
    font-size: 14px;
    line-height: 1.4;
    min-height: 135px;
  }
  .product__block-content .price {
    margin-top: 8px;
    font-size: 20px;
    line-height: 20px;
  }
}

@media (max-width: 526px) {
  .product-wrapper h2 {
    max-width: 328px;
    padding: 56px 16px 24px 16px;
    margin: auto;
  }
  .product {
    -ms-grid-rows: (1fr)[4];
    -ms-grid-columns: 1fr;
        grid-template: repeat(4, 1fr)/1fr;
    margin-top: 24px;
  }
}

.video-wrapper {
  margin-top: 156px;
  padding-bottom: 120px;
}

.video {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 22px;
}

.video__photo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-column: 1 / 6;
}

.video__content {
  -ms-grid-column: 7;
  -ms-grid-column-span: 6;
  grid-column: 7 / 13;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}

.video__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 24px;
}

.video__content h2 {
  margin-top: 32px;
  padding-right: 200px;
}

.video__content-social {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (80px)[4];
      grid-template-columns: repeat(4, 80px);
  grid-column-gap: 24px;
}

.video__content-social-block {
  -webkit-box-shadow: 0 0 4px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 4px rgba(216, 216, 216, 0.5);
  border-radius: 2px;
  background-color: #ffffff;
  height: 80px;
  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;
}

.video__content-social-block img {
  height: 60%;
}

@media (max-width: 1366px) {
  .video__photo img {
    width: 500px;
  }
  .video__content p {
    font-size: 18px;
    font-size-line-height: 1.4;
    padding-right: 32px;
  }
  .video__content-social {
    -ms-grid-columns: (60px)[4];
        grid-template-columns: repeat(4, 60px);
  }
  .video__content-social-block {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1024px) {
  .video-wrapper {
    margin-top: 120px;
  }
  .video__photo img {
    width: 359px;
  }
  .video__content h2 {
    padding-right: 20px;
  }
  .video__content p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .video-wrapper {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .video {
    -ms-grid-rows: (1fr)[2];
    -ms-grid-columns: 1fr;
        grid-template: repeat(2, 1fr)/1fr;
  }
  .video__photo {
    -ms-grid-column: 1;
    grid-column: 1;
    margin: 0 auto;
  }
  .video__content {
    -ms-grid-column: 1;
    grid-column: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .video__content h2 {
    padding: 0 56px;
  }
  .video__content p {
    padding: 0;
  }
}

@media (max-width: 526px) {
  .video {
    -ms-grid-rows: auto 1fr;
    -ms-grid-columns: 1fr;
        grid-template: auto 1fr / 1fr;
  }
  .video__photo img {
    width: auto;
    max-width: 280px;
  }
  .video__content h2 {
    padding: 0px;
  }
  .video__content p {
    width: 100%;
  }
  .video__content-social {
    margin-top: 32px;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
  }
  .video__content-social-block {
    width: 40px;
    height: 40px;
  }
}

.parners-wrapper {
  padding-bottom: 120px;
  text-align: center;
}

.parners-wrapper h2 {
  margin-bottom: 62px;
}

.slick-slide img {
  margin: 0 auto;
  cursor: pointer;
  -webkit-filter: grayscale(0.9);
          filter: grayscale(0.9);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 70%;
}

.slick-slide img:hover {
  -webkit-filter: none;
          filter: none;
}

.dot {
  margin-top: 32px;
  display: block;
  width: 30px;
  height: 15px;
  text-decoration: none;
  border: 1px solid #026AC4;
  border-radius: 8px;
  cursor: pointer;
}

.slick-active .dot {
  background-color: #026AC4;
  border: 1px solid #026AC4;
}

.slider-arrow {
  position: absolute;
  width: 22px;
  height: 100%;
  top: 0;
  z-index: 100;
  background-color: red;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.slider-arrow-right {
  background: url(../img/arrows/arrow_right.png) no-repeat center;
  right: -10px;
}

.slider-arrow-left {
  background: url(../img/arrows/arrow_left.png) no-repeat center;
  left: -10px;
}

@media (max-width: 1366px) {
  .slider-arrow-right {
    right: 0px;
  }
  .slider-arrow-left {
    left: 0px;
  }
  .slick-slide img {
    height: 150px;
  }
}

@media (max-width: 1024px) {
  .slick-slide img {
    height: inherit;
  }
}

@media (max-width: 768px) {
  .parners-wrapper {
    padding-bottom: 56px;
  }
  .slick-slide img {
    height: auto;
  }
  .slider-arrow-right,
  .slider-arrow-left {
    background-size: 10px;
    top: -15px;
  }
}

.connect-wrapper {
  background-color: #F7F7F7;
  margin-top: 150px;
}

.connect {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.connect__content {
  -ms-grid-column: 3;
  -ms-grid-column-span: 4;
  grid-column: 3 / 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 56px;
  text-align: center;
}

.connect__content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 16px;
  padding: 0 32px;
}

.connect__content-img {
  margin-bottom: 48px;
}

.vertical-form {
  margin: 88px 0;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (1fr)[3] auto;
      grid-template-rows: repeat(3, 1fr) auto;
  grid-row-gap: 16px;
  -ms-grid-column: 7;
  -ms-grid-column-span: 4;
  grid-column: 7 / 11;
  width: 400px;
  margin-left: 56px;
}

@media (max-width: 1366px) {
  .connect-wrapper {
    margin-top: 120px;
  }
  .connect__content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
  }
  .connect__content-img {
    height: 110px;
    margin-bottom: 32px;
  }
}

@media (max-width: 1024px) {
  .connect-wrapper {
    margin-top: 80px;
  }
  .connect__content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1 / 7;
  }
  .vertical-form {
    margin: 88px 0;
    width: 340px;
  }
}

@media (max-width: 768px) {
  .connect-wrapper {
    margin-top: 0px;
    padding-bottom: 150px;
  }
  .connect {
    -ms-grid-rows: 1fr 1fr;
    -ms-grid-columns: 1fr;
        grid-template: 1fr 1fr / 1fr;
  }
  .connect__content {
    -ms-grid-column: 1;
    grid-column: 1;
    margin-right: 0;
  }
  .vertical-form {
    -ms-grid-column: 1;
    grid-column: 1;
    margin: 0 auto;
  }
}

@media (max-width: 526px) {
  .connect__content p {
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.4;
  }
  .vertical-form {
    width: 100%;
  }
}

.contacts-wrapper {
  position: relative;
}

.contacts {
  min-height: 500px;
  position: relative;
}

.contacts__block {
  bottom: 20px;
  position: absolute;
  width: 420px;
  height: 440px;
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  background-color: #ffffff;
}

.contacts__block-photo {
  position: absolute;
  bottom: 0;
}

.contacts__block-phone, .contacts__block-location, .contacts__block h2 {
  padding: 0 24px;
}

.contacts__block h2 {
  margin-top: 32px;
}

.contacts__block-phone, .contacts__block-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 32px;
}

.contacts__block-phone img, .contacts__block-location img {
  margin-right: 16px;
}

@media (max-width: 768px) {
  .contacts-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contacts__block {
    bottom: 120px;
    width: auto;
    max-width: 420px;
  }
  .contacts__block h2 {
    text-align: center;
  }
}

@media (max-width: 526px) {
  .contacts__block {
    max-width: 328px;
  }
  .contacts__block-photo {
    width: 100%;
    height: auto;
  }
  .contacts__block-phone, .contacts__block-location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 24px;
  }
  .contacts__block-phone img, .contacts__block-location img {
    margin: 0;
  }
  .contacts__block-phone p, .contacts__block-location p {
    margin-top: 14px;
  }
}

.menu-wrapper {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  display: none;
}

.menu-active {
  opacity: 1;
}

.menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 100px 1fr 100px;
  -ms-grid-columns: (1fr)[12];
      grid-template: 100px 1fr 100px/repeat(12, 1fr);
  grid-gap: 22px;
  height: 100vh;
}

.menu__head {
  -ms-grid-column: 6;
  -ms-grid-column-span: 7;
  grid-column: 6 / 13;
  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;
}

.menu__head-close {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  cursor: pointer;
}

.menu__head-close::before {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 3px;
  background-color: #026AC4;
  height: 3px;
  width: 40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu__head-close::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 3px;
  background-color: #026AC4;
  height: 3px;
  width: 40px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu__content {
  -ms-grid-column: 6;
  -ms-grid-column-span: 7;
  grid-column: 6 / 13;
  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;
}

.menu__content ul {
  list-style: none;
  text-transform: uppercase;
}

.menu__content ul li {
  padding-top: 62px;
}

.menu__content ul li:nth-child(1) {
  padding-top: 0px;
}

.menu__content ul li:nth-child(4) a {
  color: #026AC4;
}

.menu__content a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  position: relative;
}

.menu__content a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  opacity: 0;
  border: 1px solid #026AC4;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.menu__content a:hover::after {
  width: 100%;
  opacity: 1;
}

.menu__contacts {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  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;
}

.menu__contacts-social {
  display: -ms-grid;
  display: grid;
  grid-gap: 48px;
  -ms-grid-columns: (32px)[3];
      grid-template-columns: repeat(3, 32px);
}

.menu__contacts-social a {
  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;
}

.menu__contacts-number {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  color: #026AC4;
}

@media (max-width: 768px) {
  .logo {
    font-size: 25px;
    line-height: 25px;
  }
  .menu__content, .menu__head {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1 / 13;
  }
  .menu__content a {
    font-size: 20px;
    line-height: 26px;
  }
  .menu__contacts {
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .menu__contacts-number {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 32px;
  }
  .menu__contacts-social {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 526px) {
  .logo {
    line-height: 19px;
    font-size: 19px;
  }
  .menu {
    -ms-grid-rows: 70px 60% 100px;
    -ms-grid-columns: (1fr)[12];
        grid-template: 70px 60% 100px/repeat(12, 1fr);
  }
  .menu__head-close::before, .menu__head-close::after {
    width: 30px;
    left: 12px;
  }
  .menu__content a {
    font-size: 16px;
    line-height: 22px;
  }
  .menu__content ul li {
    padding-top: 56px;
  }
  .menu__contacts-number {
    font-size: 20px;
    line-height: 20px;
  }
  .menu__contacts-social {
    grid-gap: 32px;
  }
  .menu__contacts-social a img {
    height: 30px;
  }
}

.popup {
  position: fixed;
  z-index: 1400;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
  width: 100%;
  display: none;
}

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

.popup__block {
  width: 768px;
  height: 568px;
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  background-color: #ffffff;
  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;
  text-align: center;
}

.popup__block h2 {
  margin-top: 48px;
  padding: 0 32px;
}

.popup__block p {
  margin: 24px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.popup__block p, .popup__block h2 {
  padding: 0 56px;
}

.popup__block .close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}

.popup__block .close::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 0;
  background-color: #026AC4;
  height: 3px;
  width: 40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.popup__block .close::after {
  content: '';
  position: absolute;
  top: 17px;
  right: 0;
  background-color: #026AC4;
  height: 3px;
  width: 40px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.popup__form-fix {
  margin: 0 auto;
  text-align: left;
}

.good_index .horisontal__form-block .file-icon {
  border: 2px dashed #ececec;
}

.good_index .horisontal__form-block input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.good_index .horisontal__form-block .file_choice {
  padding: 0 20px;
  height: 54px;
  width: 80%;
  text-align: center;
  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;
  margin-bottom: 0;
  border: 2px dashed #ececec;
  cursor: pointer;
}

.good_index .horisontal__form-block .file_choice span {
  color: #026AC4;
  line-height: 24px;
  font-size: 16px;
}

@media (max-width: 526px) {
  .popup__block {
    width: 100%;
    height: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 16px;
  }
  .popup__block p {
    margin-top: 24px;
    margin-bottom: 49px;
    font-size: 16px;
    line-height: 1.4;
  }
  .popup__form-fix {
    max-width: 326px;
  }
  .popup .close::before, .popup .close::after {
    width: 30px;
    left: 12px;
  }
}

.water_analys {
  background-color: #026AC4;
  width: 260px;
  height: 64px;
  border-radius: 6px 6px 0 0;
  position: fixed;
  right: -100px;
  top: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 500;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  cursor: pointer;
  display: none;
}

.water_analys img, .water_analys h2 {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.water_analys h2 {
  line-height: 18px;
  color: #fff;
  margin-left: 16px;
  font-size: 20px;
}

.water_analys:hover img {
  -webkit-transform: translatex(-60px);
          transform: translatex(-60px);
}

.water_analys:hover h2 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translatex(-20px);
          transform: translatex(-20px);
}

@media (max-width: 1024px) {
  .water_analys {
    width: 64px;
    height: 64px;
    right: 0px;
    top: 400px;
  }
  .water_analys h2 {
    display: none;
  }
  .water_analys:hover img {
    -webkit-transform: translatex(0);
            transform: translatex(0);
  }
}

.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thanks__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: left;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-top: 32px;
  color: #026AC4;
  position: relative;
}

.thanks__back::before {
  content: '';
  background-image: url(../../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 27px;
  height: 48px;
  left: -50px;
  bottom: -12px;
  -webkit-transform: rotate(90deg) translateY(0);
          transform: rotate(90deg) translateY(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.thanks__back:hover::before {
  -webkit-transform: rotate(90deg) translateY(25px);
          transform: rotate(90deg) translateY(25px);
}

.thanks__block {
  width: 600px;
  height: 400px;
  -webkit-box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
          box-shadow: 0 0 17px rgba(216, 216, 216, 0.5);
  background-color: #ffffff;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  overflow: hidden;
  position: relative;
  padding: 64px;
}

.thanks__block h1 {
  margin-top: 0px;
  margin-bottom: 32px;
}

.thanks__block .ok {
  position: absolute;
  bottom: 0;
  right: 0;
}

.thanks__block .line {
  margin-top: 156px;
  margin-bottom: 32px;
  max-width: 421px;
  height: 2px;
  background-color: #d8d8d8;
}

.thanks__block-social {
  margin-top: 32px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (48px)[3];
      grid-template-columns: repeat(3, 48px);
  grid-column-gap: 80px;
}

.thanks__block-social img {
  height: 48px;
}

@media (max-width: 768px) {
  .thanks__block {
    width: 500px;
    height: 300px;
    padding: 32px;
  }
  .thanks__block .ok {
    height: 70%;
  }
  .thanks__block p {
    width: 300px;
    line-height: 1.4;
  }
  .thanks__block .line {
    margin-top: 56px;
  }
  .thanks__block-social {
    grid-column-gap: 56px;
  }
  .thanks__block-social img {
    height: 35px;
  }
}

@media (max-width: 526px) {
  .thanks {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 56px;
  }
  .thanks__block {
    max-width: 90%;
    margin: 0 32px;
    height: 400px;
    padding: 16px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .thanks__back {
    margin-left: 56px;
    font-size: 16px;
  }
  .thanks__back::before {
    -webkit-transform: scale(0.8) rotate(90deg);
            transform: scale(0.8) rotate(90deg);
  }
  .thanks__back:hover::before {
    -webkit-transform: scale(0.8) rotate(90deg);
            transform: scale(0.8) rotate(90deg);
  }
  .thanks__back p {
    padding: 0 16px;
    width: auto;
  }
  .thanks__back .line {
    width: auto;
  }
  .thanks__back .ok {
    width: 80%;
    height: auto;
    opacity: 0.4;
  }
  .thanks__back-social {
    -ms-grid-columns: (32px)[3];
        grid-template-columns: repeat(3, 32px);
    grid-column-gap: 32px;
  }
  .thanks__back-social a {
    width: 30px;
    height: 30px;
  }
  .thanks__back-social img {
    height: 30px;
  }
}

.footer {
  background-color: #F7F7F7;
  height: 100px;
}

.footer__content {
  height: inherit;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 22px;
}

.footer__content .logo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__content .confidence {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-column: 5 / 9;
  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;
}

.footer__content .confidence a {
  font-size: 16px;
  text-decoration: none;
  color: #026AC4;
  position: relative;
  text-align: center;
  line-height: 1.4;
}

.footer__content .confidence a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  opacity: 0;
  border: 1px solid #026AC4;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.footer__content .confidence a:hover::after {
  width: 100%;
  opacity: 1;
}

.footer__content-social {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-column: 9 / 13;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__content-social a {
  margin-left: 32px;
}

@media (max-width: 768px) {
  .footer {
    height: 240px;
  }
  .footer__content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 80px;
        grid-template-rows: 80px;
    grid-row-gap: 22px;
  }
  .footer__content .logo {
    margin-top: 16px;
  }
  .footer__content .confidence {
    font-size: 14px;
  }
  .footer__content .logo, .footer__content .confidence, .footer__content-social {
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__content-social a:nth-child(1) {
    margin-left: 0px;
  }
}

@media (max-width: 526px) {
  .footer {
    height: 180px;
  }
  .footer__content {
    -ms-grid-rows: 60px;
        grid-template-rows: 60px;
  }
  .footer__content-social img {
    width: 30px;
  }
}
/*# sourceMappingURL=main.css.map */