h1 {
  margin: 0;
  font-size: 60px;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #474747;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: 48px;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #454545;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: 36px;
  margin-top: 18px;
  margin-bottom: 9px;
  line-height: 1.5;
  color: #424242;
  font-weight: 700;
}

h4 {
  margin: 0;
  font-size: 25.2px;
  margin-top: 12.6px;
  margin-bottom: 6.3px;
  line-height: 1.5;
  color: #404040;
  font-weight: 700;
}

h5 {
  margin: 0;
  font-size: 17.64px;
  margin-top: 8.82px;
  margin-bottom: 4.41px;
  line-height: 1.5;
  color: #3b3b3b;
  font-weight: 700;
}

h6 {
  margin: 0;
  font-size: 12.348px;
  margin-top: 6.174px;
  margin-bottom: 3.087px;
  line-height: 1.5;
  color: #3b3b3b;
  font-weight: 700;
}

body {
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  color: #212121;
}/* preloader */.loader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader__frame {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100vh;
}

.svg-loader {
  width: 110px;
  -webkit-animation: svg-loader 1s linear infinite;
  animation: svg-loader 1s linear infinite;
}

*:focus {
  outline: none;
}

div,p,input,form,button,span,a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.button {
  display: inline-block;
  vertical-align: top;
  padding: 10px 40px;
  background-color: #0022DA;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
  text-decoration: none;
  border: 1px solid #0022DA;
  border-bottom-color: #000;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.button:hover {
  background-color: #f19900;
  border-color: #f19900;
  border-bottom-color: #1a1a1a;
}

.button--outline {
  background-color: transparent;
  border: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.button--outline:hover {
  background-color: #f19900;
  border-color: #f19900;
  border-bottom-color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
}

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

.text-center {
  text-align: center;
}/* ************************* HEADER */.header {
  width: 100%;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: fixed;
  z-index: 10;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

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

.header__logo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
}

.header__logo img {
  margin-right: 10px;
}

.header__logo a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
  position: relative;
}

.header__logo a:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  background-image: url(../img/logo.png);
  background-position: left top;
  background-repeat: no-repeat;
}

.header__logo a span {
  display: inline-block;
  vertical-align: top;
  margin: 10px 0 0 5px;
}

.header__menu {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu ul {
  margin: 0;
  padding: 0;
}

.header__menu ul li {
  font-size: 16.64px;
  position: relative;
  display: inline-block;
}

.header__menu ul li a {
  display: inline-block;
  color: #ffffff;
  padding: 7px 12px;
  text-decoration: none;
  -webkit-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  transition: .2s ease-out;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
}

.header__menu ul li a:hover {
  text-decoration: none;
  color: #f19900;
}

.header__phone {
  font-size: 16.64px;
  font-weight: 700;
  margin-left: 30px;
  color: #ffffff;
}

.header__phone a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  transition: .2s ease-out;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
}

.header__phone a:hover {
  color: #f19900;
  text-decoration: none;
}

.header__phone a:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 17px;
  margin-right: 8px;
  margin-top: 1px;
  background-image: url(../img/phone_ico.png);
  background-position: left top;
  background-repeat: no-repeat;
}

.header.sticky {
  height: 70px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}

.header.sticky .row {
  height: 70px;
}

.header.sticky .header__logo a {
  color: #212121;
  text-shadow: none;
}

.header.sticky .header__logo a:before {
  background-position: left bottom;
}

.header.sticky .header__menu ul li a {
  color: #212121;
  text-shadow: none;
}

.header.sticky .header__menu ul li a:hover {
  color: #f19900;
}

.header.sticky .header__phone a {
  color: #212121;
  text-shadow: none;
}

.header.sticky .header__phone a:hover {
  color: #f19900;
}

.header.sticky .header__phone a:before {
  background-position: left bottom;
}

.header__hamburger {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 35px;
}

.header__hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  text-align: center;
  background-color: #212121;
  margin-bottom: 3px;
}

.offer-wrapper {
  width: 100%;
  margin: 0 auto;
}

.offer {
  width: 100%;
  background-color: #000;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}

.offer__inner {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 150px 0 70px 0;
  height: 700px;
  text-align: center;
}

.offer .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.offer__title {
  color: #ffffff;
  line-height: 1;
  margin-top: 10%;
  margin-bottom: 7%;
  text-shadow: 0 2px rgba(0, 0, 0, 0.9);
}

.offer__button {
  padding: 18px 70px;
  background-color: #0022DA;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  margin-bottom: 50px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.offer__button:hover {
  background-color: #f19900;
  border-color: #1a1a1a;
}

.offer__button--more {
  background-color: transparent;
  border: 1px solid #ffffff;
  margin-left: 30px;
}

.offer__button--more:hover {
  background-color: #f19900;
  border-color: #f19900;
  border-bottom-color: #1a1a1a;
}

.section {
  padding: 80px 0;
}

.section--color {
  background-color: #e6e6e6;
}

.section__title {
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 50px;
}

.about .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
  padding: 15px;
  text-align: center;
}

.about__ico {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about p {
  line-height: 1.65;
  margin: 25px 0 0 0;
}

.planning .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.planning__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
  height: 320px;
  margin-bottom: 50px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.planning__item--inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.planning__item_title {
  color: #ffffff;
  font-size: 17.64px;
  text-align: center;
  margin-top: 60px;
  height: 110px;
  width: 100%;
}

.planning__item .button {
  margin-bottom: 10px;
}

.planning__button {
  text-transform: uppercase;
  padding: 18px 40px;
  border-bottom: 2px solid #000;
}

.construction .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.construction__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(33.33333% - 30px);
  width: calc(33.33333% - 30px);
  height: 250px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.construction__item--inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.construction__item_title {
  color: #ffffff;
  font-size: 17.64px;
  text-align: center;
  margin-top: 40px;
}

.construction__item .button {
  margin-bottom: 10px;
}

.consulting .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.consulting__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(33.33333% - 30px);
  width: calc(33.33333% - 30px);
  padding: 15px;
  text-align: center;
}

.consulting__ico {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.consulting__ico img {
  max-width: 100%;
}

.consulting p {
  line-height: 1.65;
  margin: 25px 0 0 0;
}

.trust__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(33.33333% - 30px);
  width: calc(33.33333% - 30px);
  margin-left: -webkit-calc(8.33333% + 15px);
  margin-left: calc(8.33333% + 15px);
  margin-right: -webkit-calc(8.33333% + 15px);
  margin-right: calc(8.33333% + 15px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.trust__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
}

.trust__ico {
  width: 100px;
  height: 100px;
  margin-right: 40px;
}

.trust__ico img {
  max-width: 100%;
}

.trust__text {
  font-size: 17.64px;
  line-height: 1.5;
  margin: 0;
}

.portfolio__images {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(58.33333% - 30px);
  width: calc(58.33333% - 30px);
}

.portfolio__text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(41.66667% - 30px);
  width: calc(41.66667% - 30px);
}

.portfolio__text ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.portfolio__text ul li {
  font-size: 16px;
  line-height: 1.8;
  margin: 5px 0;
}

.portfolio__item ul.portfolio__gallery {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.portfolio__item ul.portfolio__gallery li {
  width: 49.5%;
  margin: 0 4px 4px 0;
}

.portfolio__item ul.portfolio__gallery li:nth-child(2n) {
  margin-right: 0;
}

.portfolio__item ul.portfolio__gallery li a {
  display: block;
  position: relative;
}

.portfolio__item ul.portfolio__gallery li a:hover:before {
  opacity: 1;
}

.portfolio__item ul.portfolio__gallery li a:hover:after {
  opacity: 1;
}

.portfolio__item ul.portfolio__gallery li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio__item ul.portfolio__gallery li a:after {
  content: '';
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  opacity: 0;
  background-image: url(../img/plus.png);
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio__item img {
  max-width: 100%;
  display: block;
}

.portfolio__title {
  font-size: 17.64px;
  line-height: 1.75;
  margin: 0 0 30px 0;
}

.delimiter {
  margin: 40px 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #b2b0bf;
}

.clients .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.clients__item {
	width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.clients__item img {
	max-width: 100%;
}

.request__title {
  text-align: center;
  font-size: 17.64px;
  margin: 0 0 30px 0;
}

.request__form {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(66.66667% - 30px);
  width: calc(66.66667% - 30px);
  margin-left: -webkit-calc(16.66667% + 15px);
  margin-left: calc(16.66667% + 15px);
  margin-right: -webkit-calc(16.66667% + 15px);
  margin-right: calc(16.66667% + 15px);
  text-align: center;
}

.request__form_control {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(33.33333% - 30px);
  width: calc(33.33333% - 30px);
}

.request__form_input {
  width: 235px;
  padding: 17px 15px;
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.request__form_input:focus {
  border: 1px solid #a7b5ff;
}

.request__form_input--success {
  border: 1px solid #009A00;
}

.request__form_input--error {
  border: 1px solid #CA1400;
}

.request__form .first_name {
  display: none;
}

.request__form .button {
  width: 230px;
  padding: 17px 30px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}

.request__form .error {
  color: #CA1400;
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 0 0 5px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

.request__notice {
  width: 100%;
  font-size: 13px;
  text-align: center;
  margin: 30px auto 0 auto;
}

.request .form-alert {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  text-align: center;
  padding: 15px 30px;
  margin: 25px auto 0 auto;
  color: #ffffff;
  display: none;
}

.request .form-alert--success {
  background-color: #2B9A2B;
  display: block;
}

.request .form-alert--error {
  background-color: #CA1400;
  display: block;
}

.request .form-alert--info {
  background-color: #6BA1FF;
  display: block;
}

.footer {
  background-color: #212121;
  padding: 50px 0 30px 0;
  color: #ffffff;
}

.footer__side {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.footer__side p {
  margin: 0 0 10px 0;
  color: #ffffff;
  line-height: 1.7;
  font-size: 14px;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
}

.footer__title {
  margin: 0;
  font-size: 25.2px;
  color: #f7f7f7;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
}

.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu li {
  display: block;
}

.footer__menu li a {
  display: inline-block;
  vertical-align: top;
  margin: 4px 0;
  line-height: 1.8;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
}

.footer__menu li a:hover {
  text-decoration: underline;
}

.footer__link {
  display: block;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  line-height: 1.8;
  text-shadow: 0 1px rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__link:hover {
  color: #f19900;
  text-decoration: none;
}

.footer__link--tel {
  margin-bottom: 10px;
}

.footer__link--tel:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  margin-top: 5px;
  background-image: url(../img/phone_ico.png);
  background-repeat: no-repeat;
  background-position: left top;
}

.footer__link--mail:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 14px;
  margin-right: 8px;
  margin-top: 7px;
  background-image: url(../img/mail_ico.png);
  background-repeat: no-repeat;
}

.footer__credits {
  margin: 50px 0 0 0;
  color: #f7f7f7;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}/* inner page styles */.pagetitle {
  padding: 120px 0 0 0;
  text-align: center;
}

.pagetitle h2 {
  color: #212121;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
}/* main content */.main-content {
  padding: 50px 0 80px 0;
}

.main-content .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}/* content */.content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(83.33333% - 30px);
  width: calc(83.33333% - 30px);
}

.content .row {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content p {
  font-size: 17.64px;
  line-height: 1.7;
  margin: 20px 0;
}

.content p strong {
  font-weight: 700;
}

.content a {
  font-size: 17.64px;
  line-height: 1.7;
  color: #0022DA;
  text-decoration: underline;
}

.content a:hover {
  text-decoration: none;
}

.content a:visited {
  color: #00168e;
}

.content ul,.content ol {
  padding: 0 0 0 30px;
  margin: 25px 0;
}

.content ul li {
  list-style-type: disc;
  font-size: 17.64px;
}

.content li {
  line-height: 1.8;
  margin: 3px 0;
  font-size: 17.64px;
}

.content table {
  width: 100%;
  max-width: 100%;
  margin: 30px 0;
  background-color: transparent;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #DBDBDB;
}

.content table th,.content table td {
  font-size: 17.64px;
  padding: .75rem;
  vertical-align: top;
  border: 1px solid #DBDBDB;
}/* scroll to top */.scroll-on-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  display: none;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 164, 0, 0.7);
  -webkit-border-radius: 60px;
  border-radius: 60px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 1200px) {
  .request__form {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }

  .request__form {
    margin-left: -webkit-calc(8.33333% + 15px);
    margin-left: calc(8.33333% + 15px);
  }

  .request__form {
    margin-right: -webkit-calc(8.33333% + 15px);
    margin-right: calc(8.33333% + 15px);
  }

  .request .form-alert {
    width: 95%;
  }
}

@media screen and (max-width: 1000px) {
  .container {
    padding-left: 0;
  }

  .container {
    padding-right: 0;
  }

  .header {
    height: auto;
  }

  .header {
    position: relative;
  }

  .header .row {
    height: auto;
  }

  .header .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header .row {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header__logo {
    margin-top: 20px;
  }

  .header__logo {
    margin-bottom: 30px;
  }

  .header__menu {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .header__menu {
    margin-bottom: 30px;
  }

  .header.sticky {
    height: auto;
  }

  .header.sticky .row {
    height: auto;
  }

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

@media screen and (max-width: 780px) {
  .header__menu {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__menu ul {
    width: 100%;
  }

  .header__menu ul {
    text-align: center;
  }

  .header__phone {
    margin: 20px 0 0 0;
  }

  .offer {
    padding: 0;
  }

  .offer {
    background-attachment: scroll;
  }

  .offer {
    display: none;
  }

  .offer:first-child {
    display: block;
  }

  .offer__inner {
    height: auto;
  }

  .offer__inner {
    padding: 50px 0;
  }

  .about__item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .about__item {
    margin-bottom: 15px;
  }

  .about__item {
    margin-top: 15px;
  }

  .planning .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .planning .row {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .planning__item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .planning__item {
    margin-bottom: 15px;
  }

  .planning__item {
    margin-top: 15px;
  }

  .planning__button {
    margin-top: 30px;
  }

  .construction .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .construction .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .construction__item {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }

  .construction__item {
    margin-left: -webkit-calc(8.33333% + 15px);
    margin-left: calc(8.33333% + 15px);
  }

  .construction__item {
    margin-right: -webkit-calc(8.33333% + 15px);
    margin-right: calc(8.33333% + 15px);
  }

  .construction__item {
    margin-bottom: 15px;
  }

  .construction__item {
    margin-top: 15px;
  }

  .consulting__item {
    padding: 10px 0;
  }

  .consulting__ico {
    width: 80px;
  }

  .consulting__ico {
    height: 80px;
  }

  .trust .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .trust__inner {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .trust__inner {
    margin-left: -webkit-calc(0% + 15px);
    margin-left: calc(0% + 15px);
  }

  .trust__inner {
    margin-right: -webkit-calc(0% + 15px);
    margin-right: calc(0% + 15px);
  }

  .trust__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .trust__inner {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .trust__item {
    width: 30%;
  }

  .trust__item {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .trust__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .trust__ico {
    width: 60px;
  }

  .trust__ico {
    height: 60px;
  }

  .trust__ico {
    margin-right: 0;
  }

  .trust__ico {
    margin-bottom: 20px;
  }

  .trust__text {
    text-align: center;
  }

  .portfolio .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .portfolio__images {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .portfolio__images {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .portfolio__text {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .portfolio__text {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .portfolio__text ul li {
    font-size: 14px;
  }

  .portfolio__item {
    margin: 10px 0;
  }

  .portfolio__title {
    text-align: center;
  }

  .clients .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .clients .row {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }

  .clients__item {
    width: 48%;
  }

  .clients__item img {
    margin: 0 auto;
    max-height: 100%;
  }

  .request__form_control {
    text-align: center;
  }

  .request__form_control {
    margin-bottom: 20px;
  }

  .request__form_control {
    width: 100%;
  }

  .request__form_input {
    width: 90%;
  }

  .request__form .button {
    width: 90%;
  }

  .request__form .button {
    margin: 0 auto;
  }

  .request .form-alert {
    width: 85%;
  }

  .request .form-alert {
    margin: 20px auto 0 auto;
  }

  .footer__side {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer__side {
    text-align: center;
  }

  .footer__side {
    margin-bottom: 30px;
  }

  .footer__side p {
    font-size: 17.64px;
  }

  .footer__title {
    font-size: 25.2px;
  }

  .footer__menu li a {
    font-size: 17.64px;
  }

  .footer__credits {
    margin-top: 0;
  }

  .footer__credits {
    font-size: 14px;
  }

  .pagetitle {
    padding-top: 50px;
  }

  .content {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 560px) {
  .header__logo {
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
  }

  .header__menu ul li {
    display: block;
  }

  .header__menu ul li a {
    display: block;
  }

  .header__menu ul li a {
    padding: 10px 15px;
  }

  .header__menu ul li a {
    text-align: center;
  }

  .header__phone {
    margin: 20px 0;
  }

  .header__hamburger {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
  }

  .offer__title {
    font-size: 34px;
  }

  .offer__title {
    margin-bottom: 20%;
  }

  .offer__button {
    margin-bottom: 0;
  }

  .offer__button {
    width: 80%;
  }

  .offer__button {
    text-align: center;
  }

  .offer__button {
    font-size: 12.348px;
  }

  .offer__button--more {
    margin-left: 0;
  }

  .offer__button--more {
    margin-top: 20px;
  }

  .offer__button--more {
    margin-bottom: 10px;
  }

  .section {
    padding: 50px 0;
  }

  .section__title {
    margin-bottom: 30px;
  }

  .section__title {
    font-size: 25.2px;
  }

  .section__title {
    font-weight: 700;
  }

  .about .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about__item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .about p {
    font-size: 17.64px;
  }

  .planning .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .planning .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .planning__item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .planning__button {
    line-height: 1.7;
  }

  .construction__item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .construction__item {
    margin-left: -webkit-calc(0% + 15px);
    margin-left: calc(0% + 15px);
  }

  .construction__item {
    margin-right: -webkit-calc(0% + 15px);
    margin-right: calc(0% + 15px);
  }

  .construction__item {
    margin-bottom: 15px;
  }

  .construction__item {
    margin-top: 15px;
  }

  .consulting .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .consulting .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .consulting__item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .consulting p {
    font-size: 17.64px;
  }

  .trust__inner {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .trust__inner {
    margin-left: -webkit-calc(0% + 15px);
    margin-left: calc(0% + 15px);
  }

  .trust__inner {
    margin-right: -webkit-calc(0% + 15px);
    margin-right: calc(0% + 15px);
  }

  .trust__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .trust__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .trust__item {
    width: 100%;
  }

  .trust__item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .portfolio__item ul.portfolio__gallery li {
    margin: 0 2px 2px 0;
  }

  .clients .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .clients .row {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .request__title {
    font-size: 16.64px;
  }

  .request__title {
    line-height: 1.7;
  }

  .request__form {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .request__form {
    margin-left: -webkit-calc(0% + 15px);
    margin-left: calc(0% + 15px);
  }

  .request__form {
    margin-right: -webkit-calc(0% + 15px);
    margin-right: calc(0% + 15px);
  }

  .request__form_input {
    width: 100%;
  }

  .request__form .button {
    width: 100%;
  }

  .request__notice {
    line-height: 1.7;
  }

  .request__notice {
    font-size: 14px;
  }

  .pagetitle {
    padding-top: 30px;
  }

  .pagetitle h2 {
    font-size: 25.2px;
  }

  .main-content {
    padding: 30px 0;
  }

  .content {
    text-align: center;
  }

  .content ul,.content ol {
    text-align: left;
  }

  .content table {
    display: block;
  }

  .content table {
    width: 100%;
  }

  .content table {
    overflow-x: auto;
  }

  .content table {
    -webkit-overflow-scrolling: touch;
  }

  .content table {
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .content table th,.content table td {
    text-align: left;
  }

  .content table th,.content table td {
    font-size: 14.348px;
  }
}

@-webkit-keyframes svg-loader {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes svg-loader {
  from {
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ========================================= */

.neighbors {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media screen and (max-width: 560px) {
    .neighbors {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media screen and (max-width: 560px) {
    .neighbors span {
      margin-bottom: 15px; } }
  .neighbors a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    background-color: #0022DA;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.85);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.85);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .neighbors a:hover {
      background-color: #f19900; }
    .neighbors a:visited {
      color: #efefef; }


.planning--inner {
  padding-top: 60px;
}
.planning--inner .planning__item {
  height: 200px;
  margin-bottom: 30px;
}
.planning--inner .planning__item_title {
  margin-top: 10px;
  height: 80px;
}

/* ============================================== */

.developer {
	margin-top: 30px;
	text-align: center;
	color: #f7f7f7;
  font-size: 13px;
}
.developer a {
	color: #f7f7f7;
	text-decoration: underline;
}
.developer a:hover {
	text-decoration: none;
}




