* {
  margin: 0;
  padding: 0;
}

.menu {
  background-color: rgba(20, 50, 64, 0.9);
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 16;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  right: -100vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

.menu-link {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 20;
}

.menu-link span {
  display: block;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: 49%;
  margin-top: -2px;
  background-color: #143240;
}

.menu-link span:before {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: 50%;
  margin-top: -8px;
  background-color: #143240;
}

.menu-link span:after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: 50%;
  margin-top: 7px;
  background-color: #143240;
}

.menu-link_active span {
  background-color: transparent;
}

.menu-link_active span:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: 0;
  background-color: #fff;
}

.menu-link_active span:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 0;
  background-color: #fff;
}

.menu_active {
  right: 0;
}

.menu ul {
  list-style: none;
  padding-top: 150px;
  text-transform: uppercase;
}

.menu ul a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  text-align: center;
  letter-spacing: 4px;
  line-height: 3;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.menu ul a:hover {
  text-decoration: none;
  background-color: rgba(91, 168, 204, 0.7);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Montserrat;
  letter-spacing: 0.2px;
  color: #1b1b1b;
  overflow: auto;
  position: relative;
}

button {
  background-color: #143240;
  color: #ffffff;
  border: none;
  border-radius: 20px;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: none;
}

.title {
  padding-top: 80px;
  font-size: 39px;
  color: #1b1b1b;
  font-weight: bold;
}

.input {
  outline: none;
  border: none;
  border-bottom: 1.5px solid #3482a7;
  margin-bottom: 20px;
  width: 150px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 70px;
}

.dn {
  display: none;
}

a.button {
  width: 140px;
  font-size: 10px;
  background-color: #143240;
  color: #ffffff;
  border: none;
  border-radius: 20px;
}

a.button:hover {
  cursor: pointer;
}

a.button:focus {
  outline: none;
}

header {
  background-color: #3482a7;
  position: relative;
}

header:before {
  position: absolute;
  top: 37px;
  right: 0%;
  content: "";
  width: 28.5vw;
  height: 75px;
  border-radius: 20px 0 0 20px;
  background-color: #143240;
  z-index: 1;
}

header.__sticky {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
}

header.__sticky:before {
  top: 7px;
  height: 54px;
}

header.__sticky .head {
  padding-top: 5px;
  padding-bottom: 5px;
}

header.__sticky .head_contacts {
  padding: 10px 0 10px 13px;
}

header.__sticky .logo_img img {
  max-height: 45px;
}

header.__sticky .nav_list__item {
  margin: 10px;
}

header.__sticky .menu-link {
  height: 34px;
}

.head_contacts-social {
  display: none;
}

.head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 35px;
  padding-bottom: 55px;
}

.head .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head .logo_img img {
  max-height: 54px;
}

.head .logo_text {
  font-weight: bold;
  font-size: 30px;
  line-height: 37px;
  margin-left: 15px;
  color: #ffffff;
}

.head .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  color: #ffffff;
}

.head .nav_list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px;
  font-size: 16px;
  line-height: 37px;
}

.head .nav_list__item-icon {
  margin: 12px;
  width: 14px;
}

.head .nav_list a {
  cursor: pointer;
  color: #ffffff;
}

.head .nav_list a:hover {
  cursor: pointer;
}

.head_contacts {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 20px 23px;
  border-radius: 20px 0 0 20px;
  background-color: #2c769a;
}

.head_contacts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head_contacts-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head_contacts-social--item {
  width: 34px;
  height: 34px;
  background-color: #3482a7;
  border-radius: 10px;
  margin-right: 5px;
}

.head_contacts-social--item img {
  width: 18.5px;
  margin: 8px;
}

.head_contacts-phone {
  font-weight: bold;
  font-size: 16px;
  margin-left: 28px;
  margin-right: 28px;
  z-index: 2;
}

.head_contacts-phone a {
  color: #ffffff;
  text-decoration: none;
}

.head_contacts-btn {
  margin-left: 20px;
  z-index: 3;
}

.head_contacts-btn .btn {
  font-size: 12px;
  letter-spacing: 1.44px;
  padding: 10px;
  position: relative;
}

#main {
  background: #3482a7 url(../img/main-bg.png) 0% 20% no-repeat;
  background-size: contain;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 35px;
}

.main_text {
  color: #ffffff;
}

.main_text-title {
  margin-top: 70px;
  font-size: 50px;
  font-weight: bold;
  line-height: 68.8px;
  letter-spacing: 0.53px;
}

.main_text-subtitle {
  font-size: 21px;
  line-height: 33px;
  margin-top: 35px;
}

.main_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  letter-spacing: 1.56px;
  margin-top: 70px;
  padding: 24px 34px;
  text-transform: uppercase;
}

.main_btn img {
  margin-left: 30px;
  width: 6px;
}

.main_img {
  margin-bottom: -75px;
}

.service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.service-wrap__arrow {
  z-index: 100;
  position: absolute;
  top: 40%;
  right: -40px;
  width: 20px;
  height: 50px;
  cursor: pointer;
  background: url(../img/service/arrow-right.svg) center no-repeat;
  background-size: contain;
}

.service-wrap__arrow-left {
  position: absolute;
  top: 40%;
  left: -40px;
  width: 20px;
  height: 50px;
  cursor: pointer;
  background: url(../img/service/arrow-left.svg) center no-repeat;
  background-size: contain;
}

.service_item {
  position: relative;
  max-height: 300px;
  padding: 136px 27px 120px 27px;
  font-size: 22px;
  line-height: 32px;
  -webkit-box-shadow: inset -20px 0 71px 0 rgba(54, 54, 54, 0.07);
          box-shadow: inset -20px 0 71px 0 rgba(54, 54, 54, 0.07);
}

.service_item:after {
  position: absolute;
  content: '';
  width: 50%;
  height: 13%;
  margin-left: -25%;
  top: 18%;
  left: 50%;
  border-radius: 37px;
  background-color: #f1f1f1;
  z-index: -1;
}

.service_item:hover .service_item__descr span {
  background: #2c769a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.service_item:hover .service_item__img img {
  -webkit-transform: rotateZ(360deg);
          transform: rotateZ(360deg);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.service_item:hover .service-btn {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service_item:focus {
  outline: none;
}

.service_item:focus .service_item__descr span {
  background: #2c769a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.service_item:focus .service_item__img img {
  -webkit-transform: rotateZ(360deg);
          transform: rotateZ(360deg);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.service_item:focus .service-btn {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service_item__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  width: 47%;
}

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

.service_item__text {
  margin-top: 63px;
  margin-bottom: 34px;
}

.service_item__text span {
  font-weight: bold;
}

.service_item__descr span {
  text-transform: uppercase;
  font-size: 10px;
  line-height: 37.5px;
  letter-spacing: 0.8px;
  background-color: #f1f1f1;
  color: rgba(27, 27, 27, 0.7);
  border-radius: 20px;
  padding: 8px 15px;
}

.service-btn {
  opacity: 0;
}

.service-btn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  letter-spacing: 1.56px;
  margin-top: 13px;
  padding: 24px 34px;
  text-transform: uppercase;
}

.service-btn .btn img {
  margin-left: 30px;
  width: 6px;
}

.process {
  background: #f1f1f1 url(../img/process/process-bg.png) 0% 40% no-repeat;
  background-size: contain;
}

.process_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 70px;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.process_item {
  width: 33%;
  margin-bottom: 65px;
}

.process_item__img {
  width: 75px;
  height: 75px;
}

.process_item__img img {
  width: 100%;
  height: 100%;
}

.process_item__title {
  margin-top: 32px;
  margin-bottom: 35px;
  color: #3482a7;
  font-size: 29px;
  font-weight: bold;
}

.process_item__descr {
  padding-right: 100px;
  font-size: 18px;
  line-height: 29px;
}

.footer-link {
  width: 60px;
  height: 35px;
  background: #3482a7 url(../img/socil/icon-tgm.svg) 50% 50% no-repeat;
  border-radius: 10px;
}

.portfolio {
  background-color: #f1f1f1;
  padding-bottom: 50px;
}

.portfolio-title {
  margin-bottom: -40px;
}

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

.portfolio .slider-wrap {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-preferred-size: 42%;
      flex-basis: 42%;
}

.portfolio .slider-wrap_title {
  margin-top: 95px;
  margin-bottom: 35px;
  padding-bottom: 33px;
  font-size: 43px;
  line-height: 75px;
  position: relative;
}

.portfolio .slider-wrap_title:before {
  position: absolute;
  content: '';
  width: 76px;
  height: 3px;
  bottom: 0;
  left: 0;
  background: #3482a7;
}

.portfolio .slider-wrap_descr {
  font-size: 19px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.8);
}

.portfolio .slider-wrap_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 34px;
  margin-top: 50px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.45px;
}

.portfolio .slider-wrap_btn img {
  margin-left: 27px;
  width: 8px;
}

.portfolio .slider-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70%;
}

.portfolio .slider-img_big {
  width: 45%;
}

.portfolio .slider-img_big img {
  width: 100%;
}

.portfolio .slider-img_small {
  width: 38%;
  padding-top: 54px;
}

.portfolio .slider-img_small img {
  width: 100%;
}

.portfolio-item {
  position: relative;
}

.portfolio-item__arrow {
  z-index: 100;
}

.portfolio-item__arrow-left {
  width: 59px;
  height: 59px;
  border-radius: 20px;
  position: absolute;
  top: 280px;
  left: 420px;
  content: '';
  background: #143240 url(../img/slider/arrow-light_left.svg) 47% 50% no-repeat;
  background-size: 15%;
  cursor: pointer;
}

.portfolio-item__arrow-right {
  width: 59px;
  height: 59px;
  border-radius: 20px;
  position: absolute;
  top: 280px;
  right: 0;
  content: '';
  background: #143240 url(../img/slider/arrow-light_right.svg) 50% 50% no-repeat;
  background-size: 15%;
  cursor: pointer;
}

.offer {
  padding-bottom: 70px;
}

.offer-form {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offer-form_btn {
  padding: 24px 44px;
  font-size: 13px;
  letter-spacing: 1.56px;
  cursor: pointer;
  text-transform: uppercase;
}

.offer-form_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: rgba(27, 27, 27, 0.5);
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
}

.offer-form_check input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.offer-form_check__text {
  margin-left: 15px;
}

.offer-form_check a {
  color: rgba(27, 27, 27, 0.5);
  text-decoration: underline;
}

.offer-form_check a:hover {
  color: #000;
  text-decoration: none !important;
}

.offer-form_check .icon-checkbox {
  font-size: 18px;
}

.offer .input {
  margin-top: 50px;
}

.offer .input-name {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.offer .input-mail {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.offer .input-phone {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.offer .input-descr {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  line-height: 25px;
  padding-bottom: 20px;
}

.offer .input-file input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.offer .input-file label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-display: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-family: Montserrat;
  font-size: 16px;
  line-height: 70px;
  margin-left: 75px;
  margin-right: 98px;
  text-decoration: underline;
}

.offer .input-file label img {
  width: 26px;
  margin-right: 14px;
}

section.line {
  width: 100%;
  height: 24px;
  background-color: #f1f1f1;
}

.footer {
  background-color: #3482a7;
  padding-top: 100px;
  padding-bottom: 25px;
  color: #ffffff;
}

.footer a {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
}

.footer_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 40px;
  position: relative;
}

.footer_wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #236888;
}

.footer-phone_text {
  font-size: 18px;
  line-height: 70px;
}

.footer-phone_number {
  font-size: 45px;
}

.footer-mail_text {
  font-size: 18px;
  line-height: 70px;
}

.footer-mail_email {
  font-size: 47px;
}

.footer-logo {
  width: 65px;
  height: 54px;
  margin-bottom: 8px;
  background: url(../img/logo.svg) 0 0 no-repeat;
  background-size: contain;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  margin-bottom: 130px;
}

.footer .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  color: #ffffff;
}

.footer .nav_list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 40px 0 0;
  font-size: 14px;
  line-height: 37px;
}

.footer .nav_list__item:hover {
  cursor: pointer;
}

.footer .nav_list__item-icon {
  margin: 0 12px 0 0;
  width: 14px;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-social_text {
  font-size: 16px;
  line-height: 37px;
  margin-right: 15px;
}

.footer-social_link {
  width: 61px;
  height: 35px;
  border-radius: 10px;
  margin-left: 15px;
}

.footer .vk {
  background: #266b8c url(../img/socil/icon-vk.svg) 47% 50% no-repeat;
  background-size: 33%;
}

.footer .instagram {
  background: #266b8c url(../img/socil/icon-inst.svg) 50% 50% no-repeat;
  background-size: 30%;
}

.footer .youtube {
  background: #266b8c url(../img/socil/icon-ytb.svg) 50% 50% no-repeat;
  background-size: 35%;
}

.footer-bottom {
  color: #60b3da;
  font-size: 13px;
}

.footer-bottom a {
  margin-left: 15px;
  text-decoration: underline;
  color: #60b3da;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(73, 73, 73, 0.98);
  z-index: 2000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.overlay .popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 50%;
  left: 50%;
  width: 300px;
  padding: 61px 60px 61px 54px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px 40px 40px 40px;
}

.overlay .popup-close {
  position: absolute;
  right: 12px;
  top: -6px;
  color: #d2d4d6;
  font-size: 56px;
  font-family: san-serif;
  font-weight: 300;
  cursor: pointer;
  z-index: 2155;
}

.overlay .popup-title {
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  line-height: 64px;
}

.overlay .popup-descr {
  font-size: 16px;
  font-family: Montserrat;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 35px;
}

.overlay .popup-descr:after {
  position: absolute;
  top: 9px;
  left: 0;
  content: '';
  width: 16px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #3482a7;
}

.overlay .popup-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}

.overlay .popup-form_input {
  width: 100%;
  font-size: 16px;
}

.overlay .popup-form_btn {
  padding: 24px 61px;
  margin-top: 25px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.56px;
  font-weight: 700;
}

.overlay .popup-form_politics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  color: rgba(62, 63, 65, 0.4);
  font-size: 12px;
}

.overlay .popup-form_politics__text {
  margin-left: 15px;
}

.overlay .popup-form_politics__text a {
  color: rgba(62, 63, 65, 0.4);
  text-decoration: underline;
}

.overlay-thankyou {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(73, 73, 73, 0.98);
  z-index: 1999;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.overlay-thankyou .popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 50%;
  left: 50%;
  width: 300px;
  padding: 61px 60px 61px 54px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px 40px 40px 40px;
}

.overlay-thankyou .popup-close {
  position: absolute;
  right: 12px;
  top: -6px;
  color: #d2d4d6;
  font-size: 56px;
  font-family: san-serif;
  font-weight: 300;
  cursor: pointer;
  z-index: 2155;
}

.overlay-thankyou .popup-title {
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
}

.overlay-thankyou .popup-descr {
  margin-top: 20px;
  font-size: 16px;
  font-family: Montserrat;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 35px;
}

.overlay-thankyou .popup-descr:after {
  position: absolute;
  top: 9px;
  left: 0;
  content: '';
  width: 16px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #3482a7;
}

.overlay-thankyou .popup-social {
  margin-top: 50px;
}

.overlay-thankyou .popup-social_text {
  font-size: 19px;
  font-weight: 700;
  line-height: 39px;
  color: #3482a7;
}

.overlay-thankyou .popup-social_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.overlay-thankyou .popup-social_link {
  width: 90px;
  height: 59px;
  border-radius: 20px;
}

.overlay-thankyou .popup .vk {
  background: #143240 url(../img/socil/icon-vk.svg) 47% 50% no-repeat;
  background-size: 33%;
}

.overlay-thankyou .popup .instagram {
  background: #143240 url(../img/socil/icon-inst.svg) 50% 50% no-repeat;
  background-size: 30%;
}

.overlay-thankyou .popup .youtube {
  background: #143240 url(../img/socil/icon-ytb.svg) 50% 50% no-repeat;
  background-size: 35%;
}

@media (max-width: 1440px) {
  header:before {
    top: 22px;
    width: 21vw;
  }
  header .head {
    padding-top: 20px;
  }
}

@media (max-width: 1024px) {
  header:before {
    width: 17vw;
    top: 11px;
    height: 58px;
  }
  header .head {
    padding-top: 10px;
  }
  header .head .logo_img img {
    max-width: 45px;
  }
  header .head .logo_text {
    font-size: 25px;
    margin-left: 7px;
  }
  header .head .nav_list__item {
    margin: 10px;
  }
  header .head_contacts {
    padding: 12px 0 12px 15px;
  }
  header .head_contacts-phone {
    margin-left: 10px;
    margin-right: 5px;
  }
  header .head_contacts-btn {
    margin-left: 10px;
  }
  .main_text-title {
    font-size: 38px;
    line-height: 49px;
  }
  .main_text-subtitle {
    font-size: 17px;
    margin-top: 25px;
    line-height: 13px;
  }
  .main_text_btn {
    margin-top: 40px;
  }
  .main_img {
    margin-bottom: -40px;
    width: 40%;
  }
  .main_img img {
    width: 98%;
  }
  .service-wrap__arrow-left {
    left: -20px;
  }
  .service-wrap__arrow-right {
    right: -20px;
  }
  .service_item {
    padding-bottom: 100px;
  }
  .service_item__img {
    height: 70px;
  }
  .service_item__text {
    font-size: 19px;
    margin-top: 50px;
  }
  .service_item__descr span {
    font-size: 9px;
  }
  .portfolio .slider-wrap_title {
    margin-bottom: 25px;
    padding-bottom: 22px;
    margin-top: 70px;
  }
  .portfolio .slider-wrap_descr {
    padding-right: 10px;
    line-height: 30px;
    font-size: 17px;
  }
  .portfolio-item__arrow-left {
    left: 350px;
  }
  .offer .input-file label {
    margin-left: 25px;
    margin-right: 30px;
  }
  .footer-phone_number {
    font-size: 41px;
  }
  .footer-mail_email {
    font-size: 41px;
  }
}

@media (max-width: 991px) {
  .hidden-md {
    display: none;
  }
  header:before {
    width: 30vw;
    top: 68px;
  }
  header.__sticky:before {
    top: 49px;
    height: 44px;
    border-radius: 15px 0 0 15px;
  }
  header.__sticky .nav_list__item {
    margin: 0 10px;
  }
  header.__sticky .nav_list__item-icon {
    margin: 0 10px;
  }
  header.__sticky .head_contacts {
    padding: 5px 0 5px 13px;
    border-radius: 15px;
  }
  .head {
    padding-bottom: 40px;
  }
  .head_contacts {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main_text-title {
    margin-top: 38px;
    font-size: 33px;
    line-height: 35px;
  }
  .main_text-subtitle {
    font-size: 14px;
  }
  .main_btn {
    margin-top: 20px;
    padding: 20px 30px;
  }
  .main_btn img {
    margin-left: 20px;
  }
  .service-wrap__arrow-left {
    left: -40px;
  }
  .service-wrap__arrow-right {
    right: -40px;
  }
  .service_item {
    padding: 100px 27px 70px 27px;
  }
  .service_item:after {
    height: 10%;
  }
  .service_item__img {
    width: 47%;
    height: 70px;
  }
  .service_item__text {
    margin-top: 45px;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 25px;
  }
  .service_item__descr {
    font-size: 9px;
  }
  .service_item__descr span {
    padding: 5px 10px;
  }
  .process_item__title {
    font-size: 25px;
  }
  .process_item__descr {
    font-size: 17px;
    line-height: 22px;
    padding-right: 70px;
  }
  .portfolio-title {
    margin-bottom: 0px;
  }
  .portfolio .slider-wrap {
    max-width: 38%;
  }
  .portfolio .slider-wrap_title {
    margin-top: 30px;
  }
  .portfolio .slider-wrap_btn {
    padding: 18px 26px;
    border-radius: 16px;
  }
  .portfolio .slider-wrap_btn img {
    margin-left: 18px;
  }
  .portfolio .slider-img {
    padding-top: 50px;
  }
  .portfolio-item__arrow-left {
    left: 261px;
    width: 45px;
    height: 45px;
    border-radius: 16px;
  }
  .portfolio-item__arrow-right {
    width: 45px;
    height: 45px;
    border-radius: 16px;
  }
  .footer {
    padding-top: 60px;
  }
  .footer_wrap {
    padding-bottom: 25px;
  }
  .footer-phone_number {
    font-size: 30px;
  }
  .footer-mail_email {
    font-size: 30px;
  }
  .footer-nav {
    margin-bottom: 50px;
  }
  .footer-nav .nav {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .footer-social {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer-social_text {
    margin-right: 0;
    margin-bottom: 5px;
    text-align: right;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hidden-sm {
    display: none;
  }
  .menu-link {
    display: block;
  }
  header:before {
    top: 50px;
    height: 55px;
  }
  header.__sticky:before {
    top: 44px;
    height: 40px;
  }
  header .head .logo {
    margin-right: 120px;
  }
  header .head .logo_img img {
    max-height: 32px;
  }
  header .head_contacts-social--item {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }
  header .head_contacts-social--item img {
    width: 16.5px;
    margin: 5px;
  }
  header .head .btn {
    padding: 8px;
  }
  header .head .menu-link span:before {
    margin-top: -10px;
  }
  header .head .menu-link_active span:before {
    margin-top: 0;
  }
  .head .logo {
    margin-right: 100px;
  }
  .service-wrap__arrow-left {
    left: -10px;
  }
  .service-wrap__arrow-right {
    right: -10px;
  }
  .title {
    padding-top: 60px;
  }
  .process_item__title {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 25px;
  }
  .process_item__descr {
    padding-right: 60px;
    font-size: 16px;
    line-height: 25px;
  }
  .offer-form {
    margin-top: 0;
  }
  .offer-form_btn {
    padding: 20px 30px;
  }
  .offer-form_check {
    margin-top: 15px;
  }
  .offer .input {
    margin-top: 30px;
    font-size: 16px;
  }
}

@media (max-width: 543px) {
  .container {
    padding: 0 10px;
  }
  .hidden-xm {
    display: none;
  }
  .head .logo {
    margin-right: 50px;
  }
  #main {
    background-position: 0 0;
  }
  .main {
    padding-bottom: 10px;
  }
  .main_text-title {
    margin-top: 0;
    font-size: 30px;
  }
  .main_text-subtitle {
    margin-top: 15px;
  }
  .main_btn {
    padding: 15px;
  }
  .main_btn img {
    margin-left: 10px;
  }
  .service-wrap__arrow-left {
    left: 5px;
    width: 10px;
    height: 40px;
  }
  .service-wrap__arrow-right {
    right: 5px;
    width: 10px;
    height: 40px;
  }
  .service_item__img {
    width: 38%;
    height: 65px;
  }
  .title {
    padding-top: 50px;
    font-size: 25px;
  }
  .process {
    background-color: #f1f1f1;
    background-image: url(../img/process/process-bg.png), url(../img/process/process-bg.png), url(../img/process/process-bg.png);
    background-position: 0 20%, 0% 50%, 0% 80%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain;
  }
  .process_wrap {
    padding-top: 40px;
  }
  .process_item {
    width: 49%;
    margin-bottom: 40px;
  }
  .process_item__title {
    margin-bottom: 21px;
    font-size: 25px;
  }
  .process_item__descr {
    padding-right: 47px;
    line-height: 24px;
  }
  .portfolio-slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
  .portfolio .slider-wrap {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .portfolio .slider-wrap_title {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 0;
    font-size: 35px;
  }
  .portfolio .slider-wrap_btn {
    margin-top: 15px;
  }
  .portfolio .slider-img {
    width: 100%;
    padding: 0 10px;
  }
  .portfolio .slider-img_big {
    width: 43%;
  }
  .portfolio .slider-img_small {
    padding-top: 15px;
    width: 43%;
  }
  .portfolio-item__arrow-left {
    left: 0;
    top: 200px;
  }
  .portfolio-item__arrow-right {
    top: 200px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer-phone_text {
    font-size: 16px;
    line-height: 20px;
  }
  .footer-phone_number {
    font-size: 20px;
  }
  .footer-mail_text {
    font-size: 16px;
    line-height: 20px;
  }
  .footer-mail_email {
    font-size: 20px;
  }
  .footer-logo {
    width: 48px;
    height: 44px;
    margin-bottom: 0;
  }
  .footer-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -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;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .footer-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-social_text {
    text-align: center;
    margin-bottom: 0;
  }
  .footer-social_link {
    margin-left: 0;
    margin: 0 5px;
  }
  .footer .nav_list__item {
    margin: 0 10px;
  }
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .hidden-xs {
    display: none;
  }
  .visible-xs {
    display: block;
  }
  a.button {
    border-radius: 15px;
  }
  header:before {
    width: 44vw;
  }
  header.__sticky .head .logo {
    margin-right: 0;
  }
  header .head .logo {
    margin-right: 0;
  }
  header .head-social__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .head-social--item {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background-color: #2c769a;
    margin-left: 5px;
  }
  header .head-social--item img {
    width: 16.5px;
    margin: 5px;
  }
  header .head_contacts-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_text-title {
    font-size: 25px;
    line-height: 30px;
  }
  .service_item {
    height: 260px;
    padding: 50px 10px 60px 14px;
  }
  .service_item__text {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 16px;
  }
  .service_item:hover .service-btn .btn {
    border-radius: 13px;
    margin-top: 8px;
    padding: 10px 20px;
  }
  .service_item:hover .service-btn .btn img {
    margin-left: 15px;
  }
  .process_wrap {
    padding-bottom: 0;
  }
  .process_item__img {
    width: 56px;
    height: 56px;
  }
  .process_item__title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .process_item__descr {
    font-size: 16px;
    line-height: 20px;
    padding-right: 20px;
  }
  .portfolio .slider-wrap_title {
    margin-top: 0;
    font-size: 32px;
  }
  .portfolio .slider-wrap_descr {
    line-height: 25px;
  }
  .portfolio .slider-wrap_btn {
    font-size: 11px;
    letter-spacing: 0.9px;
    padding: 15px 20px;
  }
  .portfolio .slider-wrap_btn img {
    margin-left: 10px;
    width: 7px;
  }
  .portfolio .slider-img {
    padding: 0;
  }
  .portfolio-item__arrow-left {
    top: 180px;
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }
  .portfolio-item__arrow-right {
    top: 180px;
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }
  .offer-form_check {
    margin-left: 5px;
    font-size: 13px;
  }
  .offer-form_check__text {
    margin-left: 5px;
  }
  .offer .input-name {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .offer .input-mail {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .offer .input-phone {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .footer-phone_number {
    font-size: 18px;
  }
  .footer-mail_email {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .hidden-vs {
    display: none;
  }
  .container {
    padding: 0 10px;
  }
  .head_contacts-phone {
    font-size: 15px;
  }
  .main {
    padding-bottom: 10px;
  }
  .service_item__text {
    font-size: 20px;
  }
  .service_item__descr span {
    font-size: 7px;
    line-height: 0;
  }
  .title {
    padding-top: 30px;
    font-size: 22px;
  }
  .process_wrap {
    padding-top: 16px;
  }
  .process_item__title {
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .footer-logo_link a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .offer-form {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .offer-form_btn {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .offer-form_check {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .overlay .popup, .overlay-thankyou .popup {
    width: 280px;
    padding: 30px 16px;
  }
  .overlay .popup-title, .overlay-thankyou .popup-title {
    font-size: 27px;
  }
  .overlay .popup-descr, .overlay-thankyou .popup-descr {
    font-size: 14px;
    padding-left: 25px;
  }
  .overlay .popup-form_btn, .overlay-thankyou .popup-form_btn {
    padding: 20px 40px;
  }
}

@media (max-width: 320px) {
  header:before {
    width: 48vw;
  }
  .head_contacts-phone {
    font-size: 14px;
  }
  .service_item {
    padding: 50px 8px 38px 8px;
  }
  .service_item:after {
    top: 11%;
  }
  .service_item__img {
    width: 37%;
    height: 50px;
  }
  .service_item__text {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 17px;
  }
  .service_item__descr span {
    padding: 4px 5px;
  }
  .process_item__title {
    font-size: 16px;
  }
  .process_item__descr {
    font-size: 14px;
  }
  .footer-phone_text {
    font-size: 14px;
  }
  .footer-phone_number {
    font-size: 16px;
  }
  .footer-mail_text {
    font-size: 14px;
  }
  .footer-mail_email {
    font-size: 16px;
  }
  .footer .nav_list__item {
    margin: 0 5px;
    letter-spacing: -0.4px;
  }
  .footer .nav_list__item-icon {
    margin-right: 5px;
  }
  .portfolio {
    padding-bottom: 20px;
  }
  .portfolio .slider-wrap {
    max-width: 100%;
  }
  .portfolio-item__arrow-left {
    top: 150px;
  }
  .portfolio-item__arrow-right {
    top: 150px;
  }
}

@media (min-width: 575.98px) {
  .container {
    max-width: 540px;
    margin: auto;
    padding: 0;
  }
}

@media (min-width: 767.98px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 991.98px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1199.98px) {
  .container {
    max-width: 1140px;
  }
}
/*# sourceMappingURL=style.css.map */