@font-face {
  font-family: 'tt_commonsdemibold';
  src: url('../fonts/ttcommons-demibold-webfont.woff2') format('woff2'), url('../fonts/ttcommons-demibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonslight';
  src: url('../fonts/ttcommons-light-webfont.woff2') format('woff2'), url('../fonts/ttcommons-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonsmedium';
  src: url('../fonts/ttcommons-medium-webfont.woff2') format('woff2'), url('../fonts/ttcommons-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonsblack';
  src: url('../fonts/ttcommons-black-webfont.woff2') format('woff2'), url('../fonts/ttcommons-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commons_boldbold';
  src: url('../fonts/ttcommons-bold-webfont.woff2') format('woff2'), url('../fonts/ttcommons-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonsextrabold';
  src: url('../fonts/ttcommons-extrabold-webfont.woff2') format('woff2'), url('../fonts/ttcommons-extrabold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonsextralight';
  src: url('../fonts/ttcommons-extralight-webfont.woff2') format('woff2'), url('../fonts/ttcommons-extralight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonsregular';
  src: url('../fonts/ttcommons-regular-webfont.woff2') format('woff2'), url('../fonts/ttcommons-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tt_commonsthin';
  src: url('../fonts/ttcommons-thin-webfont.woff2') format('woff2'), url('../fonts/ttcommons-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  min-height: 100vh;
  height: 100%;
  font-family: 'tt_commonsregular';
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}
body .btn {
  display: inline-block;
  padding: 0;
}
body .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
body .btn .btn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .btn .btn-inner span {
  font-family: 'tt_commonsdemibold';
  font-size: 14px;
  text-transform: uppercase;
}
body .btn .btn-inner svg {
  margin-left: 20px;
  height: 9px;
}
body .btn.white .btn-inner span {
  color: #fff;
}
body .btn.white .btn-inner svg {
  fill: #fff;
}
body .btn.black .btn-inner span {
  color: #000;
}
body .btn.black .btn-inner svg {
  fill: #000;
}
body ul,
body ol,
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none !important;
}
.alert-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.2);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.alert-wrapper .alert-service {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  width: 100%;
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
  padding: 50px 0;
}
.alert-wrapper .alert-service .service-inner {
  padding: 50px;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-top: 5px solid #fff;
  position: relative;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss {
  top: 10px;
  right: 10px;
  position: absolute;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  outline: none;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss img {
  height: 15px;
}
.alert-wrapper .alert-service .service-inner.success {
  border-top: 5px solid #78b042;
}
.alert-wrapper .alert-service .service-inner.warning {
  border-top: 5px solid #d51a27;
}
.alert-wrapper .alert-service .service-inner.info {
  border-top: 5px solid #1a88d5;
}
.alert-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.alert-wrapper.active .alert-service .service-inner {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.modal-service-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-service-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.modal-service-wrapper .modal-service {
  padding: 50px;
  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;
  min-height: 100%;
}
.modal-service-wrapper .modal-service .service-inner {
  background: #fff;
  width: 700px;
  max-width: 100%;
  padding: 50px 25px 25px 25px;
  text-align: center;
  position: relative;
}
.modal-service-wrapper .modal-service .service-inner .service-button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  padding: 15px;
  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;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #222;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-content .heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-service-wrapper .modal-service .service-inner .service-content .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5px;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons {
  margin-top: 30px;
  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;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons .btn-link {
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.section-viewport-point {
  position: absolute;
  top: -50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
nav.section-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
nav.section-header .header-flexbox {
  padding: 30px 0;
  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;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-logo {
  position: relative;
}
nav.section-header .header-flexbox .flexbox-logo svg {
  height: 38px;
  fill: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-logo svg:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 20px;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:before,
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:after {
  content: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button {
  outline: none;
  border: none;
  background: none;
  padding: 15px;
  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;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #222;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a {
  color: #fff;
  font-family: 'tt_commonslight';
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li + li {
  margin-left: 50px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li + li {
  margin-left: 15px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
  color: #fff;
  font-family: 'tt_commonsdemibold';
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li + li {
  margin-left: 50px;
}
nav.section-header .header-flexbox .nav-button {
  padding: 10px;
  border: none;
  background: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  display: none;
}
nav.section-header .header-flexbox .nav-button .button-bar {
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(2) {
  margin-top: 4px;
  width: 27px;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(3) {
  margin-top: 4px;
  width: 30px;
}
nav.section-header .header-flexbox .nav-button:hover .button-bar,
nav.section-header .header-flexbox .nav-button:focus .button-bar {
  width: 30px !important;
}
nav.section-header.scrolled .header-flexbox {
  padding: 20px 0;
}
nav.section-header.scrolled .header-flexbox .flexbox-logo svg {
  height: 30px;
}
nav.section-header.scrolled .header-flexbox .flexbox-logo svg:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}
nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
  -webkit-transform: translateX(106px);
      -ms-transform: translateX(106px);
          transform: translateX(106px);
}
nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
  opacity: 0;
  visibility: hidden;
}
nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
  margin-top: 0;
}
nav.section-header.black .header-flexbox .flexbox-logo svg {
  fill: #000;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a {
  color: #000;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li svg {
  fill: #000;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
  color: #000;
}
nav.section-header.black .header-flexbox .nav-button .button-bar {
  background: #000;
}
section.section-welcome {
  background: #627e96;
  position: relative;
}
section.section-welcome .welcome-inner {
  padding-top: 100px;
  min-height: 85vh;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.section-welcome .welcome-inner h1 {
  color: #fff;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: 'tt_commonsdemibold';
}
section.section-welcome .welcome-inner p {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 350px;
  font-family: 'tt_commonslight';
}
section.section-welcome .welcome-inner .btn {
  margin-top: 30px;
}
section.section-welcome .welcome-house {
  position: absolute;
  right: 0;
  bottom: -80px;
  height: calc(100% - 80px);
}
section.section-welcome .welcome-house img {
  height: 100%;
}
section.section-welcome .welcome-house.house-2 {
  height: auto;
  width: 70%;
  bottom: -20px;
}
section.section-welcome .welcome-house.house-2 img {
  height: auto;
  width: 100%;
}
section.section-steps {
  padding-top: 100px;
  padding-bottom: 200px;
  position: relative;
}
section.section-steps .owl-carousel {
  position: relative;
}
section.section-steps .owl-carousel .steps-item {
  padding-top: 130px;
}
section.section-steps .owl-carousel .steps-item .item-slogan {
  position: relative;
}
section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
  font-size: 330px;
  font-family: 'tt_commons_boldbold';
  color: #f2f3f7;
  line-height: 253px;
  position: absolute;
}
section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
  position: relative;
  font-family: 'tt_commons_boldbold';
  line-height: 190px;
  font-size: 170px;
  background-position: left 50%;
  background-size: 103%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: infinite letter-animation 16s ease-in-out both;
          animation: infinite letter-animation 16s ease-in-out both;
}
@-webkit-keyframes letter-animation {
  0% {
    background-position: left 50%;
  }
  50% {
    background-position: right 70%;
  }
  100% {
    background-position: left 50%;
  }
}
@keyframes letter-animation {
  0% {
    background-position: left 50%;
  }
  50% {
    background-position: right 70%;
  }
  100% {
    background-position: left 50%;
  }
}
@-webkit-keyframes letter-animation-2 {
  0% {
    background-position: right 50%;
  }
  50% {
    background-position: left 70%;
  }
  100% {
    background-position: right 50%;
  }
}
@keyframes letter-animation-2 {
  0% {
    background-position: right 50%;
  }
  50% {
    background-position: left 70%;
  }
  100% {
    background-position: right 50%;
  }
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-1 .slogan-number {
  bottom: 0;
  left: 220px;
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-1 .slogan-text {
  background-image: url(../img/backgrounds-n/AdobeStock_310976337_Preview.jpeg);
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-2 .slogan-text {
  margin-left: 200px;
  background-image: url(../img/backgrounds-n/AdobeStock_125119030_Preview.jpeg);
  -webkit-animation: infinite letter-animation-2 15s ease-in-out both;
          animation: infinite letter-animation-2 15s ease-in-out both;
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-3 .slogan-number {
  bottom: 0;
  left: 220px;
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-3 .slogan-text {
  background-image: url(../img/backgrounds-n/AdobeStock_276432902_Preview.jpeg);
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-4 .slogan-text {
  margin-left: 200px;
  background-image: url(../img/backgrounds-n/AdobeStock_215241113_Preview.jpeg);
  -webkit-animation: infinite letter-animation-2 15s ease-in-out both;
          animation: infinite letter-animation-2 15s ease-in-out both;
}
section.section-steps .owl-carousel .owl-carousel-controls {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
}
section.section-steps .owl-carousel .owl-carousel-controls .controls-inner-wrapper {
  position: relative;
}
section.section-steps .owl-carousel .owl-carousel-controls .controls-inner-wrapper .controls-inner {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 55px;
}
section.section-steps .owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  counter-reset: dots;
}
section.section-steps .owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  height: auto;
  width: auto;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 13px;
  outline: none;
  font-family: 'tt_commonsextrabold';
  color: #000;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
section.section-steps .owl-carousel .owl-dots .owl-dot span {
  display: none;
}
section.section-steps .owl-carousel .owl-dots .owl-dot.active {
  opacity: 0.3;
}
section.section-steps .owl-carousel .owl-dots .owl-dot:before {
  content: '0';
}
section.section-steps .owl-carousel .owl-dots .owl-dot:after {
  counter-increment: dots;
  content: counter(dots);
}
section.section-steps .owl-carousel .owl-nav {
  position: absolute !important;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
}
section.section-steps .owl-carousel .owl-nav .owl-prev,
section.section-steps .owl-carousel .owl-nav .owl-next {
  background-color: none;
  background-image: url(../img/icons-n/right-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  display: block;
  height: 9px;
  width: 45.14px;
  outline: none;
  border-radius: 0;
}
section.section-steps .owl-carousel .owl-nav .owl-prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-right: 5px;
}
section.section-steps .steps-description {
  margin-top: 50px;
  padding-left: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.section-steps .steps-description .description-text {
  margin-left: 150px;
}
section.section-steps .steps-description .description-text p {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 550px;
  font-family: 'tt_commonslight';
}
section.section-offer {
  background: #edf0f2;
  padding: 100px 0;
}
section.section-offer .offer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.section-offer .offer-inner .inner-images {
  width: 47.5%;
  padding-top: 47.5%;
  position: relative;
}
section.section-offer .offer-inner .inner-images .image-service {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  padding-top: 100%;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.blue {
  background: #627e96;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.orange {
  background: #fc5850;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.green {
  background: #9baa97;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.red {
  background: #c33f3f;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.dark {
  background: #666;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper.active img {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
section.section-offer .offer-inner .inner-images .image-service .service-description {
  position: absolute;
  left: 40px;
  bottom: 30px;
}
section.section-offer .offer-inner .inner-images .image-service .service-description p {
  max-width: 400px;
  font-family: 'tt_commonslight';
  color: #fff;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 26px;
}
section.section-offer .offer-inner .inner-images .image-service .service-description .btn {
  margin-top: 15px;
}
section.section-offer .offer-inner .inner-images .image-service.active {
  opacity: 1;
  visibility: visible;
}
section.section-offer .offer-inner .inner-navigation {
  width: 46%;
}
section.section-offer .offer-inner .inner-navigation h2 {
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: 'tt_commonsdemibold';
}
section.section-offer .offer-inner .inner-navigation p {
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: 'tt_commonslight';
}
section.section-offer .offer-inner .inner-navigation ul {
  margin-top: 46px;
}
section.section-offer .offer-inner .inner-navigation ul li a {
  color: #000;
  line-height: 40px;
  font-size: 45px;
  letter-spacing: 1px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  font-family: 'tt_commonsdemibold';
}
section.section-offer .offer-inner .inner-navigation ul li a.active.blue,
section.section-offer .offer-inner .inner-navigation ul li a:hover.blue {
  color: #627e96;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.orange,
section.section-offer .offer-inner .inner-navigation ul li a:hover.orange {
  color: #fc5850;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.red,
section.section-offer .offer-inner .inner-navigation ul li a:hover.red {
  color: #c33f3f;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.green,
section.section-offer .offer-inner .inner-navigation ul li a:hover.green {
  color: #9baa97;
}
section.section-offer .offer-inner .inner-navigation ul li a.active {
  padding-left: 30px;
}
section.section-offer .offer-inner .inner-navigation ul li + li {
  margin-top: 25px;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small a {
  font-size: 30px;
  line-height: 35px;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small a.active,
section.section-offer .offer-inner .inner-navigation ul li.nav-small a:hover {
  opacity: 0.35;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small + li {
  margin-top: 15px;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small.margin-top {
  margin-top: 70px;
  position: relative;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small.margin-top:before {
  content: "Pozostała oferta:";
  position: absolute;
  top: -38px;
  left: 0;
  font-family: 'tt_commonsdemibold';
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
}
section.section-portfolio {
  max-width: 1920px;
  padding: 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
section.section-portfolio .owl-carousel {
  position: relative;
  width: calc(100% + 2px);
  margin-left: -1px;
}
section.section-portfolio .owl-carousel .portfolio-item {
  height: 680px;
}
section.section-portfolio .owl-carousel .portfolio-item .item-image {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section-portfolio .owl-carousel .portfolio-item .item-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section-portfolio .owl-carousel .portfolio-item .item-cover .container {
  height: 100%;
}
section.section-portfolio .owl-carousel .portfolio-item .item-cover .cover-inner {
  height: 100%;
  position: relative;
}
section.section-portfolio .owl-carousel .portfolio-item .item-cover .cover-inner img {
  position: absolute;
  height: 170%;
  top: -20%;
  left: 10%;
  display: block;
  -webkit-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
          transform: translateX(-40%);
}
section.section-portfolio .owl-carousel .owl-carousel-controls {
  position: absolute;
  z-index: 111;
  top: 220px;
  left: 0;
  width: 100%;
}
section.section-portfolio .owl-carousel .owl-carousel-controls .controls-inner-wrapper {
  position: relative;
}
section.section-portfolio .owl-carousel .owl-carousel-controls .controls-inner-wrapper .controls-inner {
  position: absolute;
  top: 0;
  padding: 0 55px;
}
section.section-portfolio .owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  counter-reset: dots;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  height: auto;
  width: auto;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 13px;
  outline: none;
  font-family: 'tt_commonsextrabold';
  color: #000;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot span {
  display: none;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot.active {
  opacity: 0.3;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot:before {
  content: '0';
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot:after {
  counter-increment: dots;
  content: counter(dots);
}
section.section-portfolio .owl-carousel .owl-nav {
  position: absolute !important;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
}
section.section-portfolio .owl-carousel .owl-nav .owl-prev,
section.section-portfolio .owl-carousel .owl-nav .owl-next {
  background-color: none;
  background-image: url(../img/icons-n/right-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  display: block;
  height: 9px;
  width: 45.14px;
  outline: none;
  border-radius: 0;
}
section.section-portfolio .owl-carousel .owl-nav .owl-prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-right: 5px;
}
section.section-portfolio .portfolio-inner {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-20%);
      -ms-transform: translateY(-20%);
          transform: translateY(-20%);
}
section.section-portfolio .portfolio-inner .inner-content h2 {
  margin-left: -5px;
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: 'tt_commonsdemibold';
}
section.section-portfolio .portfolio-inner .inner-content p {
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 350px;
  font-family: 'tt_commonslight';
}
section.section-portfolio .portfolio-inner .inner-content .btn {
  margin-top: 30px;
}
section.section-slogan {
  overflow: hidden;
  background: #edf0f2;
  height: 500px;
  position: relative;
  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;
  text-align: center;
}
section.section-slogan .slogan-inner {
  padding: 0 20px;
  max-width: 900px;
}
section.section-slogan .slogan-inner h2 {
  color: #000;
  line-height: 70px;
  font-size: 60px;
  letter-spacing: 2.2px;
  font-family: 'tt_commonsdemibold';
}
section.kontakt-section-content .content-heading {
  padding: 100px 0;
  background: #f2f3f7;
}
section.kontakt-section-content .content-heading .heading-inner h1 {
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: 'tt_commonsdemibold';
}
section.kontakt-section-content .content-heading .heading-inner p {
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 1000px;
  font-family: 'tt_commonslight';
}
section.kontakt-section-content .content-heading .heading-inner .inner-person {
  margin-top: 20px;
}
section.kontakt-section-content .content-heading .heading-inner .inner-person .person {
  font-family: 'tt_commons_boldbold';
  font-size: 16px;
  color: #000;
}
section.kontakt-section-content .content-heading .heading-inner .inner-person .brand {
  text-transform: uppercase;
  font-family: 'tt_commonsdemibold';
  font-size: 12px;
  color: #000;
}
section.kontakt-section-content .content-flexbox {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.kontakt-section-content .content-flexbox .flexbox-service {
  width: 33.33333333%;
}
section.kontakt-section-content .content-flexbox .flexbox-service .heading {
  margin-bottom: 25px;
  color: #000;
  line-height: 60px;
  font-size: 50px;
  letter-spacing: 1.5px;
  font-family: 'tt_commonsdemibold';
}
section.kontakt-section-content .content-flexbox .flexbox-service .small-heading {
  color: #000;
  line-height: 29px;
  font-size: 25px;
  letter-spacing: 1px;
  font-family: 'tt_commonsdemibold';
}
section.kontakt-section-content .content-flexbox .flexbox-service .service-badge {
  margin-top: 15px;
  width: 120px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
section.kontakt-section-content .content-flexbox .flexbox-service ul li a {
  color: #000;
  line-height: 29px;
  font-size: 25px;
  letter-spacing: 1px;
  font-family: 'tt_commonsdemibold';
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
section.kontakt-section-content .content-flexbox .flexbox-service ul li a:hover {
  opacity: 0.5;
}
section.kontakt-section-content .content-flexbox .flexbox-service address {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: 'tt_commonslight';
}
section.kontakt-section-content .content-flexbox .flexbox-service address a {
  color: inherit;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
section.kontakt-section-content .content-flexbox .flexbox-service address a:hover {
  opacity: 0.5;
}
section.kontakt-section-content .content-flexbox .flexbox-service .service-map {
  width: 100%;
  max-width: 400px;
}
section.kontakt-section-content .content-contact {
  background: #627e96;
  padding: 50px 0 100px 0;
}
section.kontakt-section-content .content-contact .footer-inner .inner-contact .contact-service .service-image {
  background: #7f97ac;
}
section.kontakt-section-content .content-contact .footer-inner .inner-form {
  margin-top: 30px;
}
section.kontakt-section-content .content-contact .footer-inner .inner-form .input-service label {
  background: #627e96;
}
section.section-footer {
  position: relative;
  padding: 100px 0 0 0;
  background: #000;
}
section.section-footer .footer-heading h2 {
  color: #fff;
  line-height: 70px;
  font-size: 60px;
  letter-spacing: 2.2px;
  font-family: 'tt_commonsdemibold';
}
section.section-footer .footer-heading p {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: 'tt_commonslight';
}
section.section-footer .footer-credits {
  margin-top: 100px;
  padding: 30px 0;
  background: #fff;
}
section.section-footer .footer-credits .credits-inner {
  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;
}
section.section-footer .footer-credits .credits-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section-footer .footer-credits .credits-inner ul li + li {
  margin-left: 15px;
}
section.section-footer .footer-credits .credits-inner p,
section.section-footer .footer-credits .credits-inner li {
  color: #000;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: 'tt_commonslight';
  text-transform: uppercase;
}
section.section-footer .footer-credits .credits-inner a {
  font-family: 'tt_commonsdemibold';
  color: #000;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
section.section-footer .footer-credits .credits-inner a:hover {
  opacity: 0.5;
}
section.section-footer .footer-credits .credits-inner .inner-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.section-footer .footer-credits .credits-inner .inner-service > * + * {
  margin-left: 30px;
}
section.section-footer.contact-subpage {
  padding-top: 0;
  background: #ddd;
}
section.section-footer.contact-subpage .footer-credits {
  margin-top: 1px;
}
.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-inner .inner-contact {
  margin-top: 50px;
}
.footer-inner .inner-contact .contact-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-inner .inner-contact .contact-service .service-image {
  min-width: 70px;
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
}
.footer-inner .inner-contact .contact-service .service-image img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-inner .inner-contact .contact-service .service-info {
  margin-left: 20px;
}
.footer-inner .inner-contact .contact-service .service-info .job {
  color: #fff;
  line-height: 29px;
  font-size: 25px;
  letter-spacing: 1px;
  font-family: 'tt_commonsdemibold';
}
.footer-inner .inner-contact .contact-service .service-info ul {
  margin-top: 10px;
}
.footer-inner .inner-contact .contact-service .service-info ul li {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: 'tt_commonslight';
}
.footer-inner .inner-contact .contact-service .service-info ul li a {
  color: inherit;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-inner .inner-contact .contact-service .service-info ul li a:hover {
  opacity: 0.5;
}
.footer-inner .inner-contact .contact-service + .contact-service {
  margin-top: 30px;
}
.footer-inner .inner-contact .contact-logo {
  margin-top: 50px;
}
.footer-inner .inner-contact .contact-logo img {
  height: 38px;
}
.footer-inner .inner-contact .contact-logo address {
  margin: 22px 0 0 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: 'tt_commonslight';
}
.footer-inner .inner-contact .contact-logo address a {
  color: inherit;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-inner .inner-contact .contact-logo address a:hover {
  opacity: 0.5;
}
.footer-inner .inner-form {
  margin-top: 50px;
  margin-left: 120px;
  max-width: 550px;
}
.footer-inner .inner-form h3 {
  color: #fff;
  line-height: 60px;
  font-size: 50px;
  letter-spacing: 1.5px;
  font-family: 'tt_commonsdemibold';
  margin-bottom: 15px;
}
.footer-inner .inner-form .input-service label {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: 'tt_commonsdemibold';
  padding: 0 5px;
  background: #000;
  -webkit-transform: translate(10px, 12px);
      -ms-transform: translate(10px, 12px);
          transform: translate(10px, 12px);
}
.footer-inner .inner-form .input-service input {
  display: block;
  width: 100%;
  height: 50px;
  border: 0.5px solid #fff;
  border-radius: 6px;
  background: none;
  outline: none;
  padding: 10px;
  color: #fff;
}
.footer-inner .inner-form select {
  margin-top: 22px;
  display: block;
  width: 100%;
  height: 50px;
  border: 0.5px solid #fff;
  border-radius: 6px;
  background: none;
  outline: none;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: 'tt_commonsdemibold';
}
.footer-inner .inner-form select option {
  color: #000;
}
.footer-inner .inner-form .btn {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  nav.section-header .header-flexbox .nav-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #fff;
    z-index: 555;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
    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;
    min-height: 100%;
    padding: 50px;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
}

/*# sourceMappingURL=maps/style.css.map */
