@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: local('Montserrat ExtraLight'), local('Montserrat-ExtraLight'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_aZA3gfD-w.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Montserrat Light'), local('Montserrat-Light'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_cJD3gfD-w.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459Wdhzg.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Montserrat Medium'), local('Montserrat-Medium'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_ZpC3gfD-w.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_bZF3gfD-w.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD-w.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_c5H3gfD-w.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local('Montserrat Black'), local('Montserrat-Black'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_epG3gfD-w.ttf) format('truetype');
}
body {
  min-height: 100vh;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  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;
  background-color: #f9f9f9;
}
body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
  padding-right: 17px;
}
body .btn {
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 20px 20px;
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
body .btn.btn-default {
  background: #414141;
  color: #fff;
}
body .btn.btn-default:hover {
  background: #222;
}
body .btn.btn-color {
  background: #00ad97;
  color: #fff;
}
body .btn.btn-color:hover {
  background: #007a6a;
}
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;
}
.body-wrapper {
  position: relative;
}
.body-wrapper .body-wrapper-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  -webkit-transition: opacity 700ms;
  -o-transition: opacity 700ms;
  transition: opacity 700ms;
}
.body-wrapper .body-wrapper-cover.active {
  opacity: 1;
  width: 100%;
}
#return-to-top {
  position: fixed;
  z-index: 999;
  bottom: 50px;
  right: 100px;
  background-color: rgba(0, 173, 151, 0.7);
  width: 45px;
  height: 45px;
  text-decoration: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  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;
}
#return-to-top img {
  width: 21px;
}
#return-to-top:hover {
  background-color: #00ad97;
}
#return-to-top.active {
  opacity: 1;
  visibility: visible;
}
.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.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.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;
}
.grid-borders {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.grid-borders .container {
  height: 100%;
}
.grid-borders .grid-borders-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grid-borders .grid-borders-inner .border-service {
  width: 25%;
}
.grid-borders .grid-borders-inner .border-service.white {
  border-left: 0.5px solid rgba(255, 255, 255, 0.15);
}
.grid-borders .grid-borders-inner .border-service.white:last-child {
  border-right: 0.5px solid rgba(255, 255, 255, 0.15);
}
.grid-borders .grid-borders-inner .border-service.gray {
  border-left: 0.5px solid rgba(0, 0, 0, 0.07);
}
.grid-borders .grid-borders-inner .border-service.gray:last-child {
  border-right: 0.5px solid rgba(0, 0, 0, 0.07);
}
nav.section-header {
  position: relative;
  z-index: 999;
}
nav.section-header .header-flexbox {
  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;
  position: relative;
}
nav.section-header .header-flexbox .flexbox-logo {
  width: 37.5%;
  padding: 40px 0;
}
nav.section-header .header-flexbox .flexbox-logo img {
  height: 20px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper {
  width: 50%;
  padding: 40px 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 30px;
  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 .flexbox-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li {
  width: 25%;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.nav-collapse-mobile {
  display: none;
  -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;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.nav-collapse-mobile .collapse-list {
  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: 10px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.nav-collapse-mobile .collapse-list li {
  padding: 5px 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.nav-collapse-mobile .collapse-list li a {
  font-size: 13px;
  font-weight: 400;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a,
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a:hover,
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button:hover,
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.active,
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.active {
  opacity: 0.6;
}
nav.section-header .header-flexbox .flexbox-social-media {
  width: 12.5%;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
}
nav.section-header .header-flexbox .flexbox-social-media li {
  position: relative;
}
nav.section-header .header-flexbox .flexbox-social-media li img {
  position: absolute;
  top: -35px;
  right: -100px;
  height: 70px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}
nav.section-header .header-flexbox .flexbox-social-media li a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
}
nav.section-header .header-flexbox .flexbox-social-media li:hover img {
  right: -20px;
  opacity: 0.15;
}
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: #00ad97;
  border-radius: 10px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
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;
}
.welcome-categories {
  padding: 50px 0 170px 0;
  position: relative;
  z-index: 111;
}
.welcome-categories.subpage {
  padding: 0 0 40px 0;
}
.welcome-categories.subpage .categories-flexbox .flexbox-service .service-long {
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
  padding: 40px 20px;
}
.welcome-categories.subpage .categories-flexbox .flexbox-service .service-long.visible {
  background-color: #ededed;
}
.welcome-categories .categories-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.welcome-categories .categories-flexbox .flexbox-blank {
  width: 50%;
}
.welcome-categories .categories-flexbox .flexbox-service {
  width: 50%;
  position: relative;
}
.welcome-categories .categories-flexbox .flexbox-service .service-short {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.welcome-categories .categories-flexbox .flexbox-service .service-short li {
  margin-top: 10px;
}
.welcome-categories .categories-flexbox .flexbox-service .service-short li a {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.welcome-categories .categories-flexbox .flexbox-service .service-short li a:hover {
  color: #414141;
}
.welcome-categories .categories-flexbox .flexbox-service .service-short.hidden {
  opacity: 0;
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}
.welcome-categories .categories-flexbox .flexbox-service .service-long {
  left: 0;
  top: 70px;
  position: absolute;
  z-index: 111;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long button {
  padding: 10px;
  background: none;
  border: none;
  position: absolute;
  top: -70px;
  left: -10px;
  outline: none;
  cursor: pointer;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long button img {
  height: 18px;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long ul li {
  margin-bottom: 20px;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long ul li a {
  font-size: 30px;
  font-weight: 500;
  color: #414141;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long ul li a:hover {
  opacity: 0.6;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long ul li:last-child {
  margin-bottom: 0;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service {
  width: 40%;
  display: block;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-heading {
  font-size: 22px;
  font-weight: 500;
  color: #414141;
  opacity: 0.6;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-squares {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-squares span {
  display: block;
  width: calc(100% / 4);
  padding-top: calc(100% / 4);
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-squares span i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-style: normal;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-squares span i.reverse {
  color: #414141;
  z-index: 111;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-info {
  margin-top: 20px;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service .service-info p {
  font-size: 14px;
  color: #414141;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service:hover .service-squares span i.reverse {
  color: #fff;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long .inner-flexbox .flexbox-service:hover .service-squares span:last-child {
  -webkit-transform: translateX(calc(-100% - 1px));
      -ms-transform: translateX(calc(-100% - 1px));
          transform: translateX(calc(-100% - 1px));
  background: #71B280 !important;
}
.welcome-categories .categories-flexbox .flexbox-service .service-long.visible {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
}
section.section-welcome {
  position: relative;
  margin-top: -40px;
  min-height: 690px;
  height: calc(100vh - 64px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.section-welcome .grid-borders {
  top: 40px;
}
section.section-welcome .welcome-slogan {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  color: #414141;
}
section.section-welcome .welcome-slogan h1 {
  font-size: 40px;
}
section.section-welcome .welcome-about {
  height: 100%;
}
section.section-welcome .welcome-about .container {
  height: 100%;
}
section.section-welcome .welcome-about .about-inner {
  height: 100%;
}
section.section-welcome .welcome-about .about-inner .inner-carousel {
  padding-right: 1px;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .carousel-info {
  position: absolute;
  margin-left: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .owl-carousel-welcome {
  padding-right: 1px;
  height: 100%;
  position: relative;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .owl-carousel-welcome .owl-stage,
section.section-welcome .welcome-about .about-inner .inner-carousel .owl-carousel-welcome .owl-stage-outer,
section.section-welcome .welcome-about .about-inner .inner-carousel .owl-carousel-welcome .owl-item {
  height: 100%;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .owl-carousel-welcome .owl-controls {
  display: none;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image {
  width: 37.6%;
  position: relative;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image .image-wrapper {
  height: 100%;
  position: relative;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image .image-wrapper img {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image .image-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description {
  width: 37.5%;
  margin-left: 12.5%;
  padding-top: 50px;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description .info-mobile {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: #414141;
  margin-bottom: 15px;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description p {
  margin-bottom: 50px;
  font-size: 29px;
  font-weight: 300;
  color: #414141;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description img {
  width: auto;
}
section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description .btn {
  width: calc(100% / 3);
}
section.section-welcome .welcome-about .about-inner .inner-carousel.hidden {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}
section.section-news {
  padding: 100px 0;
  background-color: #ededed;
  position: relative;
}
section.section-news .news-inner {
  position: relative;
}
section.section-news .news-inner .section-heading {
  font-size: 40px;
  font-weight: 500;
  color: #414141;
  margin-bottom: 70px;
  display: inline-block;
  -webkit-transform: translateX(-3px);
      -ms-transform: translateX(-3px);
          transform: translateX(-3px);
}
section.section-news .news-inner .section-heading span {
  font-size: 20px;
  opacity: 0.5;
}
section.section-news .news-inner a.section-heading {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section.section-news .news-inner a.section-heading:hover {
  opacity: 0.5;
}
section.section-news .news-inner .inner-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.section-news .news-inner .inner-flexbox .item {
  width: 25%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
}
section.section-news .news-inner .inner-flexbox .item .heading {
  color: #414141;
  display: block;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  margin-bottom: 10px;
}
section.section-news .news-inner .inner-flexbox .item h3 {
  font-size: 19px;
  color: #414141;
}
section.section-news .news-inner .inner-flexbox .item p {
  margin-top: 20px;
  font-size: 14px;
  color: #414141;
}
section.section-news .news-inner .inner-flexbox .item:hover {
  opacity: 0.7;
}
section.section-news .news-inner .inner-flexbox .hidden {
  visibility: hidden;
  width: 25%;
}
section.section-offer {
  position: relative;
  padding: 100px 0 0 0;
}
section.section-offer .offer-inner {
  position: relative;
}
section.section-offer .offer-inner .inner-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-image {
  width: 37.6%;
  position: relative;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-image .image-wrapper {
  height: 100%;
  position: relative;
  overflow: hidden;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-image .image-wrapper img {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-image .image-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-description {
  padding: 70px 0;
  width: 37.5%;
  margin-left: 12.5%;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-description h2 {
  font-size: 40px;
  font-weight: 500;
  color: #414141;
  margin-bottom: 30px;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-description h2 a {
  color: inherit;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-description h2 a:hover {
  opacity: 0.5;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-description p {
  width: 80%;
  font-size: 15px;
  font-weight: 300;
  color: #414141;
  line-height: 26px;
}
section.section-offer .offer-inner .inner-flexbox .flexbox-description .btn {
  margin-top: 30px;
  width: calc(2 * (100% / 3));
}
section.section-offer .offer-inner .inner-flexbox:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.section-offer .offer-inner .inner-flexbox:nth-child(even) .flexbox-image {
  width: 37.6%;
}
section.section-offer .offer-inner .inner-flexbox:not(:first-child) {
  margin-top: 70px;
}
section.section-about {
  position: relative;
  padding: 0 0 100px 0;
}
section.section-about .about-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.section-about .about-inner .inner-description {
  padding-top: 100px;
  margin-left: 12.5%;
  width: 50%;
}
section.section-about .about-inner .inner-description h2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 50px;
  color: #414141;
}
section.section-about .about-inner .inner-description span {
  display: block;
  font-size: 28px;
  margin-top: 20px;
  font-weight: 500;
}
section.section-about .about-inner .inner-description .btn {
  margin-top: 30px;
  width: calc(2 * (100% / 4));
}
section.section-about .about-inner .inner-service {
  margin-left: 12.5%;
  width: 25%;
}
section.section-about .about-inner .inner-service .service-social-media {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
section.section-about .about-inner .inner-service .service-social-media li {
  width: 50%;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
section.section-about .about-inner .inner-service .service-social-media li img {
  position: absolute;
  top: 5px;
  right: -100px;
  height: 70px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}
section.section-about .about-inner .inner-service .service-social-media li a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
}
section.section-about .about-inner .inner-service .service-social-media li:hover img {
  right: -20px;
  opacity: 0.15;
}
section.section-about .about-inner .inner-service .phone {
  font-size: 27.3px;
  color: #00ad97;
  font-weight: 700;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section.section-about .about-inner .inner-service .phone:hover {
  color: #007a6a;
}
section.subpage-section-heading {
  padding: 100px 0;
  background-color: #ededed;
  position: relative;
}
section.subpage-section-heading .heading-inner {
  position: relative;
}
section.subpage-section-heading .heading-inner .inner-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.subpage-section-heading .heading-inner .inner-service .body-square {
  margin-top: 5px;
  width: 12.5%;
}
section.subpage-section-heading .heading-inner .inner-service .body-square .square-box {
  width: 41px;
  height: 40px;
  background: #00ad97;
}
section.subpage-section-heading .heading-inner .inner-service .service-sidebar {
  width: 25%;
}
section.subpage-section-heading .heading-inner .inner-service .service-sidebar .sidebar-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.subpage-section-heading .heading-inner .inner-service .service-sidebar .sidebar-heading h1 {
  font-size: 40px;
}
section.subpage-section-heading .heading-inner .inner-service .service-sidebar .sidebar-heading h1 span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
section.subpage-section-heading .heading-inner .inner-service .service-body {
  width: 62.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.subpage-section-heading .heading-inner .inner-service .service-body .body-text {
  width: 80%;
  margin: 0 0 0 auto;
}
section.subpage-section-heading .heading-inner .inner-service .service-body .body-text p {
  font-size: 15px;
  font-weight: 300;
  color: #414141;
  line-height: 28px;
}
section.subpage-section-heading .heading-inner .inner-service .service-body .body-text p:not(:first-of-type) {
  margin-top: 15px;
}
section.subpage-section-heading .heading-inner .inner-service .service-body .body-text p strong {
  font-weight: 500;
  font-size: 17px;
}
section.uslugi-section-content,
section.o-nas-section-content {
  padding: 60px 0 100px 0;
  position: relative;
}
section.uslugi-section-content .content-inner,
section.o-nas-section-content .content-inner {
  position: relative;
}
section.uslugi-section-content .content-inner .inner-offer-type,
section.o-nas-section-content .content-inner .inner-offer-type {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.uslugi-section-content .content-inner .inner-offer-type .offer-square,
section.o-nas-section-content .content-inner .inner-offer-type .offer-square {
  width: 12.5%;
  margin-left: 12.5%;
}
section.uslugi-section-content .content-inner .inner-offer-type .offer-square .square-box,
section.o-nas-section-content .content-inner .inner-offer-type .offer-square .square-box {
  width: 43px;
  height: 40px;
  background: #00ad97;
}
section.uslugi-section-content .content-inner .inner-offer-type .offer-text,
section.o-nas-section-content .content-inner .inner-offer-type .offer-text {
  width: 87.5%;
  margin: 0 0 0 auto;
}
section.uslugi-section-content .content-inner .inner-offer-type .offer-text p,
section.o-nas-section-content .content-inner .inner-offer-type .offer-text p {
  font-size: 28px;
  font-weight: 300;
  color: #414141;
}
section.uslugi-section-content .content-inner .inner-offer-type .offer-text p strong,
section.o-nas-section-content .content-inner .inner-offer-type .offer-text p strong {
  font-weight: 500;
}
section.uslugi-section-content .content-inner .team-wrapper,
section.o-nas-section-content .content-inner .team-wrapper {
  position: relative;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.uslugi-section-content .content-inner .team-wrapper .bg-element,
section.o-nas-section-content .content-inner .team-wrapper .bg-element {
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: -1;
  width: 62.5%;
  height: 120%;
  background-color: #ededed;
}
section.uslugi-section-content .content-inner .team-wrapper .person,
section.o-nas-section-content .content-inner .team-wrapper .person {
  width: 22%;
  height: 400px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
section.uslugi-section-content .content-inner .team-wrapper .person .person-cover,
section.o-nas-section-content .content-inner .team-wrapper .person .person-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 173, 151, 0.7);
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
section.uslugi-section-content .content-inner .team-wrapper .person .name,
section.o-nas-section-content .content-inner .team-wrapper .person .name {
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #00ad97;
  color: #fff;
  padding: 8px 5px;
  width: 65%;
}
section.uslugi-section-content .content-inner .team-wrapper .person .name h3,
section.o-nas-section-content .content-inner .team-wrapper .person .name h3 {
  font-size: 18px;
}
section.uslugi-section-content .content-inner .team-wrapper .person .name span,
section.o-nas-section-content .content-inner .team-wrapper .person .name span {
  font-size: 12px;
}
section.uslugi-section-content .content-inner .team-wrapper .person p,
section.o-nas-section-content .content-inner .team-wrapper .person p {
  position: absolute;
  top: 25%;
  left: 0;
  opacity: 0;
  font-size: 15px;
  -webkit-transition: all 550ms;
  -o-transition: all 550ms;
  transition: all 550ms;
  color: #fff;
  padding: 5px 10px;
}
section.uslugi-section-content .content-inner .team-wrapper .person:nth-of-type(even),
section.o-nas-section-content .content-inner .team-wrapper .person:nth-of-type(even) {
  margin-top: -5px;
}
section.uslugi-section-content .content-inner .team-wrapper .person:hover,
section.o-nas-section-content .content-inner .team-wrapper .person:hover {
  background-color: #00ad97;
}
section.uslugi-section-content .content-inner .team-wrapper .person:hover p,
section.o-nas-section-content .content-inner .team-wrapper .person:hover p {
  opacity: 1;
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}
section.uslugi-section-content .content-inner .team-wrapper .person:hover .person-cover,
section.o-nas-section-content .content-inner .team-wrapper .person:hover .person-cover {
  opacity: 1;
}
section.uslugi-section-content .content-inner .inner-question,
section.o-nas-section-content .content-inner .inner-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.uslugi-section-content .content-inner .inner-question.question-sm .question-text,
section.o-nas-section-content .content-inner .inner-question.question-sm .question-text {
  width: 72%;
}
section.uslugi-section-content .content-inner .inner-question.question-sm .question-text p,
section.o-nas-section-content .content-inner .inner-question.question-sm .question-text p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
}
section.uslugi-section-content .content-inner .inner-question.question-lg,
section.o-nas-section-content .content-inner .inner-question.question-lg {
  margin-top: 80px!important;
}
section.uslugi-section-content .content-inner .inner-question.question-lg .question-text,
section.o-nas-section-content .content-inner .inner-question.question-lg .question-text {
  margin: 0 0 0 auto;
  width: 87.5%;
}
section.uslugi-section-content .content-inner .inner-question.question-lg .question-text p strong,
section.o-nas-section-content .content-inner .inner-question.question-lg .question-text p strong {
  font-weight: 500;
}
section.uslugi-section-content .content-inner .inner-question .question-square,
section.o-nas-section-content .content-inner .inner-question .question-square {
  width: 12.5%;
  margin-left: 12.5%;
}
section.uslugi-section-content .content-inner .inner-question .question-square .square-box,
section.o-nas-section-content .content-inner .inner-question .question-square .square-box {
  width: 42px;
  height: 40px;
  background: #00ad97;
  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;
}
section.uslugi-section-content .content-inner .inner-question .question-text,
section.o-nas-section-content .content-inner .inner-question .question-text {
  width: 65%;
}
section.uslugi-section-content .content-inner .inner-question .question-text p,
section.o-nas-section-content .content-inner .inner-question .question-text p {
  font-size: 22px;
  font-weight: 400;
  color: #414141;
}
section.uslugi-section-content .content-inner .inner-question:not(:first-child),
section.o-nas-section-content .content-inner .inner-question:not(:first-child) {
  margin-top: 50px;
}
section.uslugi-section-content .content-inner .inner-text,
section.o-nas-section-content .content-inner .inner-text {
  width: 87.5%;
  margin: 20px 0 0 auto;
}
section.uslugi-section-content .content-inner .inner-text .text-content,
section.o-nas-section-content .content-inner .inner-text .text-content {
  padding: 30px 50px 0 0;
}
section.uslugi-section-content .content-inner .inner-text blockquote,
section.o-nas-section-content .content-inner .inner-text blockquote {
  padding: 20px 0;
  font-weight: 500;
}
section.uslugi-section-content .content-inner .inner-text p,
section.o-nas-section-content .content-inner .inner-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  text-align: justify;
}
section.uslugi-section-content .content-inner .inner-text p:not(:first-of-type),
section.o-nas-section-content .content-inner .inner-text p:not(:first-of-type) {
  margin-top: 15px;
}
section.uslugi-section-content .content-inner .inner-text p strong,
section.o-nas-section-content .content-inner .inner-text p strong {
  font-weight: 500;
}
section.uslugi-section-content .content-inner .projects-image-wrapper,
section.o-nas-section-content .content-inner .projects-image-wrapper {
  margin: 80px 0;
  height: 580px;
  position: relative;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .bg-element,
section.o-nas-section-content .content-inner .projects-image-wrapper .bg-element {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 70%;
  height: 108%;
  background-color: #ededed;
}
section.uslugi-section-content .content-inner .projects-image-wrapper img,
section.o-nas-section-content .content-inner .projects-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note {
  position: absolute;
  width: 19%;
  padding-top: 14%;
  border-left: 5px solid #007a6a;
  background: #00ad97;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note .note-inner,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note .note-inner {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
  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;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note .note-inner .heading,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note .note-inner .heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note .note-inner .text,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note .note-inner .text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note.note-1,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note.note-1 {
  margin-left: 3.5%;
  top: 120px;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note.note-2,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note.note-2 {
  margin-left: 50%;
  top: 407px;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .image-note.note-3,
section.o-nas-section-content .content-inner .projects-image-wrapper .image-note.note-3 {
  margin-left: 80%;
  top: -20px;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .project-image,
section.o-nas-section-content .content-inner .projects-image-wrapper .project-image {
  width: 47%;
  position: absolute;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .project-image img,
section.o-nas-section-content .content-inner .projects-image-wrapper .project-image img {
  width: 95%;
}
section.uslugi-section-content .content-inner .projects-image-wrapper .project-image:nth-of-type(2),
section.o-nas-section-content .content-inner .projects-image-wrapper .project-image:nth-of-type(2) {
  bottom: -50px;
  right: 0;
}
section.uslugi-section-content .content-inner .inner-wide-logo,
section.o-nas-section-content .content-inner .inner-wide-logo {
  padding-top: 60px;
}
section.uslugi-section-content .content-inner .inner-wide-logo .logos,
section.o-nas-section-content .content-inner .inner-wide-logo .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 87.5%;
  margin: 0 0 0 auto;
}
section.uslugi-section-content .content-inner .inner-wide-logo .logos img,
section.o-nas-section-content .content-inner .inner-wide-logo .logos img {
  width: 140px;
  height: 100%;
  -webkit-filter: grayscale(0.6);
          filter: grayscale(0.6);
  -webkit-transition: -webkit-filter 350ms;
  transition: -webkit-filter 350ms;
  -o-transition: filter 350ms;
  transition: filter 350ms;
  transition: filter 350ms, -webkit-filter 350ms;
}
section.uslugi-section-content .content-inner .inner-wide-logo .logos img:hover,
section.o-nas-section-content .content-inner .inner-wide-logo .logos img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
section.uslugi-section-content .content-inner .inner-image,
section.o-nas-section-content .content-inner .inner-image {
  margin-top: 80px;
}
section.uslugi-section-content .content-inner .inner-image img,
section.o-nas-section-content .content-inner .inner-image img {
  width: 100%;
}
section.uslugi-section-content .content-inner .inner-wide-image,
section.o-nas-section-content .content-inner .inner-wide-image {
  margin-top: 80px;
  height: 600px;
  position: relative;
}
section.uslugi-section-content .content-inner .inner-wide-image .image-cover,
section.o-nas-section-content .content-inner .inner-wide-image .image-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.section-cta {
  padding-top: 80px;
  text-align: right;
}
.section-cta h3 {
  font-size: 16px;
  font-weight: 400;
}
.section-cta a {
  display: block;
  margin-top: 10px;
  color: #00ad97;
  opacity: 1;
  font-size: 22px;
  font-weight: 500;
  -webkit-transition: opacity 350ms;
  -o-transition: opacity 350ms;
  transition: opacity 350ms;
  -webkit-text-decoration-line: underline!important;
          text-decoration-line: underline!important;
}
.section-cta a:hover {
  opacity: 0.7;
}
section.realizacje-section-content {
  padding: 60px 0 100px 0;
  position: relative;
}
section.realizacje-section-content .grid-borders {
  z-index: -1;
}
section.realizacje-section-content .content-inner .offer-navigation p {
  text-align: center;
  font-size: 15px;
}
section.realizacje-section-content .content-inner .offer-navigation ul {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.realizacje-section-content .content-inner .offer-navigation ul li {
  margin: 10px;
}
section.realizacje-section-content .content-inner .offer-navigation ul li a {
  border-radius: 0;
}
section.realizacje-section-content .content-inner .offer-navigation ul li a.active {
  background: #007a6a;
}
section.realizacje-section-content .content-inner .inner-wrapper {
  padding-top: 100px;
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section.realizacje-section-content .content-inner .inner-wrapper .tab-pane.active {
  -webkit-animation: slide-left 750ms ease-out;
          animation: slide-left 750ms ease-out;
}
@-webkit-keyframes slide-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
section.realizacje-section-content .content-inner .inner-wrapper .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.realizacje-section-content .content-inner .inner-wrapper .item:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
section.realizacje-section-content .content-inner .inner-wrapper .item:nth-of-type(odd) .item-description {
  padding: 50px 50px 50px 0;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-image {
  width: 50%;
  position: relative;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-image .image-wrapper {
  position: absolute;
  height: 100%;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-image .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-image .image-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-description {
  width: 50%;
  padding: 50px 0 50px 50px;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-description h3 {
  font-size: 29px;
  line-height: 46px;
  font-weight: 300;
  color: #414141;
  margin-bottom: 50px;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-description p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 10px;
}
section.realizacje-section-content .content-inner .inner-wrapper .item .item-description .btn {
  margin-top: 50px;
  width: calc(100% / 3);
}
.fancybox-caption {
  font-size: 18px;
  font-weight: 400;
}
section.realizacja-section-content {
  padding: 60px 0 100px 0;
  position: relative;
}
section.realizacja-section-content .grid-borders {
  z-index: -1;
}
section.realizacja-section-content .content-inner .inner-wrapper {
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section.realizacja-section-content .content-inner .inner-wrapper .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-image {
  width: 50%;
  position: relative;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-image .image-wrapper {
  height: 100%;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-image .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-image .image-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-description {
  width: 50%;
  padding: 100px 0 0 50px;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-description h3 {
  font-size: 29px;
  font-weight: 300;
  color: #414141;
  margin-bottom: 50px;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-description p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 10px;
}
section.realizacja-section-content .content-inner .inner-wrapper .item .item-description .btn {
  margin-top: 50px;
  width: calc(100% / 3);
}
section.realizacja-section-content .content-inner .gallery-wrapper {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 75px);
  grid-auto-rows: 75px;
  grid-gap: 15px;
  position: relative;
  grid-auto-flow: row;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item {
  position: relative;
  overflow: hidden;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:nth-of-type(1) {
  grid-column: span 4;
  grid-row-start: 2;
  grid-row-end: 5;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:nth-of-type(2) {
  grid-column: span 6;
  grid-row-start: 1;
  grid-row-end: 5;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:nth-of-type(3) {
  grid-column: span 2;
  grid-row-start: 2;
  grid-row-end: 8;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:nth-of-type(4) {
  grid-column: span 3;
  grid-row-start: 5;
  grid-row-end: 10;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:nth-of-type(5) {
  grid-column: span 4;
  grid-row-start: 5;
  grid-row-end: 9;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:nth-of-type(6) {
  grid-column: span 3;
  grid-row-start: 5;
  grid-row-end: 9;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}
section.realizacja-section-content .content-inner .gallery-wrapper .gallery-item:hover .item-bg {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}
section.realizacja-section-content .content-inner .btn-color {
  margin-top: 60px;
}
section.faq-section-content {
  padding: 60px 0 100px 0;
}
section.faq-section-content .accordion {
  width: 86.7%;
  margin: 0 0 0 auto;
}
section.faq-section-content .accordion .accordion-item {
  margin-bottom: 50px;
}
section.faq-section-content .accordion .accordion-item .item-header {
  position: relative;
  padding: 0;
  padding-left: 40px;
  background: none;
  border: none;
}
section.faq-section-content .accordion .accordion-item .item-header .service-point {
  position: absolute;
  top: 0;
  left: -10px;
  margin-right: 30px;
  min-width: 30px;
  height: 30px;
  background: #00ad97;
}
section.faq-section-content .accordion .accordion-item .item-header button {
  padding: 0;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-radius: 0;
  text-align: left;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}
section.faq-section-content .accordion .accordion-item .item-header button.collapsed {
  color: #313131;
  font-weight: 300;
}
section.faq-section-content .accordion .accordion-item .item-description {
  padding: 20px 100px 0 40px;
}
section.faq-section-content .accordion .accordion-item .item-description p,
section.faq-section-content .accordion .accordion-item .item-description li {
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
}
section.faq-section-content .accordion .accordion-item .item-description p strong,
section.faq-section-content .accordion .accordion-item .item-description li strong {
  font-weight: 500;
}
section.faq-section-content .accordion .accordion-item .item-description p:not(:first-of-type) {
  margin-top: 10px;
}
section.faq-section-content .accordion .accordion-item .item-description ul {
  padding-left: 17px;
}
section.faq-section-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
section.blog-section-content {
  padding: 40px 0 100px 0;
}
section.blog-section-content .grid-borders {
  z-index: -1;
}
section.blog-section-content .content-inner .article {
  margin-top: 60px;
  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.blog-section-content .content-inner .article:hover .article-image img {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}
section.blog-section-content .content-inner .article .article-image {
  width: 37.5%;
  overflow: hidden;
}
section.blog-section-content .content-inner .article .article-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}
section.blog-section-content .content-inner .article .article-content {
  width: 50%;
}
section.blog-section-content .content-inner .article .article-content .content-heading {
  margin-bottom: 15px;
}
section.blog-section-content .content-inner .article .article-content .content-heading .date {
  color: #414141;
  font-size: 11px;
  font-weight: 600;
}
section.blog-section-content .content-inner .article .article-content .content-heading .author {
  color: #414141;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  margin-left: 49px;
}
section.blog-section-content .content-inner .article .article-content header h2 {
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 22px;
  color: #414141;
}
section.blog-section-content .content-inner .article .article-content .description p {
  font-size: 15px;
  line-height: 26px;
}
section.blog-section-content .content-inner .article .article-content .description p:not(:first-of-type) {
  margin-top: 10px;
}
section.blog-section-content .content-inner .article .article-content .btn-color {
  margin-top: 40px;
}
section.wpis-section-content {
  padding: 20px 0 100px 0;
}
section.wpis-section-content .grid-borders {
  z-index: -1;
}
section.wpis-section-content .article {
  margin-top: 60px;
}
section.wpis-section-content .article .article-content {
  width: 87.5%;
  margin: 20px 0 0 auto;
}
section.wpis-section-content .article .article-content .content-heading {
  margin-bottom: 15px;
}
section.wpis-section-content .article .article-content .content-heading .date {
  color: #414141;
  font-size: 11px;
  font-weight: 600;
}
section.wpis-section-content .article .article-content .content-heading .author {
  color: #414141;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  margin-left: 49px;
}
section.wpis-section-content .article .article-content header h2 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 22px;
  color: #414141;
}
section.wpis-section-content .article .article-content .description {
  padding-top: 20px;
}
section.wpis-section-content .article .article-content .description p {
  font-size: 15px;
  line-height: 30px;
}
section.wpis-section-content .article .article-content .description p strong {
  font-weight: 500;
}
section.wpis-section-content .article .article-content .description p:not(:first-of-type) {
  margin-top: 20px;
}
section.wpis-section-content .article .article-content .description p a {
  color: #00ad97;
  opacity: 1;
  -webkit-text-decoration-line: underline!important;
          text-decoration-line: underline!important;
  -webkit-transition: opacity 350ms;
  -o-transition: opacity 350ms;
  transition: opacity 350ms;
}
section.wpis-section-content .article .article-content .description p a:hover {
  opacity: 0.7;
}
section.wpis-section-content .article .article-content .btn-color {
  margin-top: 40px;
}
section.static-page-section-content {
  padding: 20px 0 100px 0;
}
section.static-page-section-content .content-inner {
  width: 87.5%;
  margin: 20px 0 0 auto;
}
section.static-page-section-content .content-inner p {
  font-size: 15px;
  line-height: 30px;
}
section.static-page-section-content .content-inner p strong {
  font-weight: 500;
}
section.static-page-section-content .content-inner p:not(:first-of-type) {
  margin-top: 20px;
}
section.static-page-section-content .content-inner ul {
  padding-left: 18px;
  list-style: decimal;
}
section.static-page-section-content .content-inner ul li {
  padding: 10px 0;
  font-size: 15px;
  line-height: 30px;
}
section.static-page-section-content .content-inner ul li span {
  display: block;
  font-weight: 500;
}
section.static-page-section-content .content-inner ul li ul {
  list-style: disc;
}
section.static-page-section-content .content-inner ul li ul span {
  display: block;
  font-weight: 500;
}
section.kontakt-section-content {
  padding: 60px 0 100px 0;
}
section.kontakt-section-content .grid-borders {
  z-index: -1;
}
section.kontakt-section-content .section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.kontakt-section-content .section-wrapper h2 {
  width: 87.5%;
  margin: 20px 0 0 auto;
}
section.kontakt-section-content .section-wrapper .map iframe {
  width: 100%;
  height: 300px;
}
section.kontakt-section-content .section-wrapper .address {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 87.5%;
  margin: 40px 0 0 auto;
}
section.kontakt-section-content .section-wrapper .address .address-content {
  width: 15.5%;
}
section.kontakt-section-content .section-wrapper .address .address-content:first-of-type {
  width: 30%;
}
section.kontakt-section-content .section-wrapper .address .address-content:last-of-type {
  width: 28.5%;
}
section.kontakt-section-content .section-wrapper .address .address-content h3 {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
}
section.kontakt-section-content .section-wrapper .address .address-content p {
  line-height: 28px;
  font-size: 12px;
}
section.kontakt-section-content .section-wrapper .address .address-content span {
  display: block;
  font-size: 10px;
  margin-bottom: 5px;
}
section.kontakt-section-content .section-wrapper .address .address-content address {
  line-height: 32px;
  margin: 0;
  font-size: 12px;
}
section.kontakt-section-content .section-wrapper .address .address-content a {
  display: block;
  font-size: 15px;
  color: #414141;
  -webkit-transition: color 350ms;
  -o-transition: color 350ms;
  transition: color 350ms;
}
section.kontakt-section-content .section-wrapper .address .address-content a:first-of-type {
  margin-bottom: 12px;
}
section.kontakt-section-content .section-wrapper .address .address-content a:hover {
  color: #00ad97;
}
section.section-footer {
  background: #ededed;
  position: relative;
  overflow: hidden;
}
section.section-footer .footer-flexbox {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
section.section-footer .footer-flexbox .footer-logo {
  width: 25%;
}
section.section-footer .footer-flexbox .footer-logo img {
  height: 20px;
}
section.section-footer .footer-flexbox .footer-logo .text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #888;
  opacity: 0.6;
}
section.section-footer .footer-flexbox .flexbox-service {
  width: 25%;
}
section.section-footer .footer-flexbox .flexbox-service p {
  margin-top: 10px;
  font-size: 14px;
  color: #414141;
}
section.section-footer .footer-flexbox .flexbox-service h3 {
  margin-top: 0;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
}
section.section-footer .footer-flexbox .flexbox-service ul li {
  margin-top: 10px;
}
section.section-footer .footer-flexbox .flexbox-service ul li a {
  font-size: 12px;
  color: #414141;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.section-footer .footer-flexbox .flexbox-service ul li a b {
  font-size: 15px;
}
section.section-footer .footer-flexbox .flexbox-service ul li a span {
  font-size: 10px;
}
section.section-footer .footer-flexbox .flexbox-service ul li a:hover {
  color: #00ad97;
}
section.section-footer .footer-flexbox .flexbox-service ul li p {
  font-size: 12px;
  color: #e6e6e5;
}
section.section-footer .footer-flexbox .flexbox-service ul li p b {
  font-weight: 400;
  font-size: 14px;
}
section.section-footer .footer-flexbox .flexbox-service ul li p span {
  font-size: 10px;
}
section.section-footer .footer-flexbox .flexbox-service .list-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
section.section-footer .footer-flexbox .flexbox-service .list-social li {
  margin-right: 15px;
}
section.section-footer .footer-flexbox .flexbox-service .list-social li a img {
  height: 25px;
}
section.section-footer .footer-flexbox .flexbox-service .list-social li:last-child {
  margin-right: 0;
}
section.section-footer .footer-flexbox .flexbox-service .footer-bip {
  margin-top: 10px;
}
section.section-footer .footer-flexbox .flexbox-service .footer-bip img {
  height: 60px;
}
section.section-footer .footer-bottom {
  background: #ddd;
  padding: 30px 0;
}
section.section-footer .footer-bottom .footer-cookies p {
  font-size: 13px;
  font-weight: 300;
  color: #414141;
}
section.section-footer .footer-bottom .footer-credits {
  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;
  position: relative;
}
section.section-footer .footer-bottom .footer-credits p {
  font-size: 13px;
  font-weight: 300;
  color: #414141;
}
section.section-footer .footer-bottom .footer-credits p a {
  color: #414141;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}
@media (max-width: 1199.98px) {
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description {
    width: 49%;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description {
    width: 49%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note {
    width: 22%;
    padding-top: 18%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note.note-2 {
    top: 415px;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .project-image {
    width: 50%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .project-image:nth-of-type(2) {
    bottom: 100px;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item {
    height: auto;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item:nth-of-type(odd) .item-description {
    padding: 50px 50px 40px 0;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-description {
    padding: 50px 0 40px 50px;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-description h3 {
    font-size: 22px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-description .btn {
    width: auto;
  }
}
@media (max-width: 991.98px) {
  .welcome-categories {
    padding: 50px 0 80px 0;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .carousel-info {
    display: none;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image {
    width: 75%;
    margin: 0 auto;
    height: 300px;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image .image-wrapper {
    position: static;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image .image-wrapper img {
    position: static;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description {
    width: 75%;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description .info-mobile {
    display: block;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description p {
    font-size: 26px;
    margin-bottom: 30px;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description .btn {
    width: auto;
  }
  section.section-news {
    padding: 60px 0;
    margin-top: 80px;
  }
  section.section-news .news-inner .inner-flexbox .item {
    width: 32%;
  }
  section.section-offer .offer-inner .inner-flexbox,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even),
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-image,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-image,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-image {
    width: 75%;
    height: 300px;
    margin: 0 auto;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-image .image-wrapper,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-image .image-wrapper,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-image .image-wrapper {
    position: static;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-image .image-wrapper img,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-image .image-wrapper img,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-image .image-wrapper img {
    position: static;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-description,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-description {
    width: 95%;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description .btn,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-description .btn,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-description .btn {
    width: auto;
  }
  section.section-about .about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.section-about .about-inner .inner-description {
    padding-top: 0;
    width: 75%;
  }
  section.section-about .about-inner .inner-service {
    width: 75%;
  }
  section.o-nas-section-content .content-inner .team-wrapper .bg-element {
    height: 110%;
  }
  section.o-nas-section-content .content-inner .team-wrapper .person {
    width: 45%;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-sidebar .sidebar-heading h1 {
    font-size: 36px;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 350px;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note {
    width: 30%;
    padding-top: 22%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note.note-2 {
    top: 200px;
    margin-left: 45%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note.note-3 {
    top: -60px;
    margin-left: 60%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .project-image {
    position: static;
    width: 47%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .project-image img {
    width: 100%;
  }
  section.uslugi-section-content .content-inner .inner-wide-logo .logos img {
    width: 88px;
  }
  section.realizacje-section-content {
    padding: 60px 0;
  }
  section.realizacje-section-content .content-inner .inner-wrapper {
    padding-top: 40px;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item:nth-of-type(odd) .item-description {
    padding: 50px 0;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-image {
    width: 100%;
    height: 350px;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-description {
    width: 100%;
    padding: 50px 0;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-description h3 {
    font-size: 22px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  section.realizacje-section-content .content-inner .inner-wrapper .item .item-description .btn {
    width: auto;
  }
  section.kontakt-section-content .section-wrapper .address {
    width: 100%;
    margin: 40px 0 0 0;
  }
  section.kontakt-section-content .section-wrapper .address .address-content {
    width: 16.5%;
  }
  section.kontakt-section-content .section-wrapper .address .address-content:first-of-type {
    width: 29%;
  }
  section.kontakt-section-content .section-wrapper .address .address-content:last-of-type {
    width: 37.5%;
  }
}
@media (max-width: 767.98px) {
  .welcome-categories {
    padding: 140px 0 40px 0;
  }
  nav.section-header .header-flexbox .nav-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-logo {
    width: 25.5%;
  }
  nav.section-header .header-flexbox .flexbox-social-media {
    width: 34%;
  }
  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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 100%;
    padding: 50px;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    -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;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.services-desktop {
    display: none;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.nav-collapse-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image {
    height: 250px;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description p {
    font-size: 20px;
  }
  section.section-news {
    margin-top: 40px;
  }
  section.section-news .news-inner {
    width: 87.5%;
    margin: 0 0 0 auto;
  }
  section.section-news .news-inner .section-heading {
    margin-bottom: 40px;
  }
  section.section-news .news-inner .inner-flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.section-news .news-inner .inner-flexbox .item {
    width: 85%;
  }
  section.section-news .news-inner .inner-flexbox .item:not(:first-of-type) {
    margin-top: 30px;
  }
  section.subpage-section-heading {
    padding: 60px 0;
  }
  section.subpage-section-heading .heading-inner .inner-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.subpage-section-heading .heading-inner .inner-service .body-square {
    margin-top: 0;
    margin-bottom: 10px;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-sidebar {
    width: 100%;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-body {
    margin-top: 40px;
    width: 100%;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-body .body-text {
    width: 87.5%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper {
    height: 270px;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note {
    width: 40%;
    padding-top: 25%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note .note-inner .text {
    font-size: 10px;
  }
  section.uslugi-section-content .content-inner .inner-offer-type .offer-text p {
    font-size: 20px;
  }
  section.uslugi-section-content .content-inner .inner-text {
    width: 100%;
    margin: 40px 0 0 auto;
  }
  section.uslugi-section-content .content-inner .inner-text .text-content {
    padding: 0;
  }
  section.uslugi-section-content .content-inner .inner-question.question-sm .question-text p {
    font-size: 16px;
  }
  section.uslugi-section-content .content-inner .inner-question .question-text p {
    font-size: 17px;
  }
  section.realizacja-section-content {
    padding: 60px 0;
  }
  section.realizacja-section-content .content-inner .inner-wrapper .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.realizacja-section-content .content-inner .inner-wrapper .item .item-image {
    width: 100%;
    height: 300px;
  }
  section.realizacja-section-content .content-inner .inner-wrapper .item .item-description {
    width: 100%;
    padding: 50px 0;
  }
  section.realizacja-section-content .content-inner .inner-wrapper .item .item-description h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  section.realizacja-section-content .content-inner .inner-wrapper .item .item-description .btn {
    margin-top: 30px;
    width: calc(100% / 4);
  }
  section.realizacja-section-content .content-inner .gallery-wrapper {
    margin-top: 20px;
    grid-auto-rows: 40px;
    grid-template-rows: repeat(8, 40px);
  }
  section.kontakt-section-content {
    padding: 40px 0 60px 0;
  }
  section.kontakt-section-content .section-wrapper .map iframe {
    height: 200px;
  }
  section.kontakt-section-content .section-wrapper .address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.kontakt-section-content .section-wrapper .address .address-content {
    width: 100%;
    text-align: center;
  }
  section.kontakt-section-content .section-wrapper .address .address-content:not(:first-of-type) {
    margin-top: 20px;
  }
  section.kontakt-section-content .section-wrapper .address .address-content:first-of-type {
    width: 100%;
  }
  section.kontakt-section-content .section-wrapper .address .address-content:last-of-type {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .body-wrapper {
    overflow: hidden;
  }
  .welcome-categories.subpage {
    padding: 0;
  }
  section.subpage-section-heading {
    padding: 60px 0;
  }
  section.subpage-section-heading .heading-inner .inner-service {
    width: 87.5%;
    margin: 0 0 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.subpage-section-heading .heading-inner .inner-service .body-square {
    width: auto;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-sidebar {
    width: 100%;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-body {
    width: 100%;
    margin-top: 25px;
  }
  section.subpage-section-heading .heading-inner .inner-service .service-body .body-text {
    width: 100%;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-description,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-description {
    width: 74.5%;
    margin: 0 auto;
  }
  section.section-about {
    padding: 0 0 60px 0;
  }
  section.section-about .about-inner .inner-description h2 {
    font-size: 20px;
    line-height: 36px;
  }
  section.section-about .about-inner .inner-description span {
    font-size: 17px;
  }
  section.o-nas-section-content {
    padding: 20px 0 80px 0;
  }
  section.o-nas-section-content .content-inner .team-wrapper {
    -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;
  }
  section.o-nas-section-content .content-inner .team-wrapper .bg-element {
    height: 105%;
  }
  section.o-nas-section-content .content-inner .team-wrapper .person {
    width: 60%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper {
    height: auto;
    margin: 40px 0 20px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .bg-element {
    height: 105%;
    bottom: -20px;
    width: 100%;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .project-image {
    width: 65%;
    margin-top: 20px;
  }
  section.uslugi-section-content .content-inner .projects-image-wrapper .image-note {
    display: none;
  }
  section.uslugi-section-content .content-inner .inner-wide-logo {
    padding-top: 40px;
  }
  section.uslugi-section-content .content-inner .inner-wide-logo .logos {
    width: 100%;
  }
  section.uslugi-section-content .content-inner .inner-wide-logo .logos img {
    width: 65px;
  }
  section.realizacja-section-content .content-inner .gallery-wrapper {
    grid-auto-rows: 0;
    grid-template-rows: repeat(8, 20px);
    grid-gap: 10px;
  }
  section.section-footer .footer-flexbox {
    padding: 60px 0;
    -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;
  }
  section.section-footer .footer-flexbox .footer-logo {
    width: 50%;
    text-align: center;
  }
  section.section-footer .footer-flexbox .footer-logo img {
    height: 31px;
  }
  section.section-footer .footer-flexbox .footer-logo .text {
    font-size: 12px;
  }
  section.section-footer .footer-flexbox .flexbox-service {
    margin-top: 20px;
    width: 50%;
    text-align: center;
  }
  section.section-footer .footer-bottom {
    text-align: center;
  }
  section.section-footer .footer-bottom .footer-cookies p {
    font-size: 12px;
  }
  section.section-footer .footer-bottom .footer-credits {
    margin-top: 20px;
  }
  section.section-footer .footer-bottom .footer-credits p {
    font-size: 10px;
    width: 100%;
  }
  #return-to-top {
    bottom: 20px;
    right: 15px;
    width: 41px;
    height: 41px;
  }
}
@media (max-width: 400px) {
  nav.section-header .header-flexbox .flexbox-logo {
    width: auto;
  }
  nav.section-header .header-flexbox .flexbox-logo img {
    margin-bottom: 5px;
  }
  nav.section-header .header-flexbox .flexbox-social-media {
    width: auto;
  }
  section.section-welcome .welcome-slogan {
    width: auto;
  }
  section.section-welcome .welcome-slogan h1 {
    font-size: 36px;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-image {
    height: 200px;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description {
    padding-top: 20px;
  }
  section.section-welcome .welcome-about .about-inner .inner-carousel .item .item-description p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  section.section-offer {
    padding: 60px 0 0 0;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-description,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-description {
    padding: 20px 0 60px 0;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description h2,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-description h2,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-description h2 {
    font-size: 34px;
  }
  section.section-offer .offer-inner .inner-flexbox .flexbox-description p,
  section.section-offer .offer-inner .inner-flexbox:nth-of-type(even) .flexbox-description p,
  section.section-offer .offer-inner .inner-flexbox:not(:first-of-type) .flexbox-description p {
    width: 100%;
  }
  section.section-about .about-inner .inner-description {
    width: 87.5%;
  }
  section.section-about .about-inner .inner-description .btn {
    width: auto;
  }
  section.subpage-section-heading .heading-inner .inner-service {
    width: 100%;
    margin: 0;
  }
  section.o-nas-section-content,
  section.uslugi-section-content {
    padding: 20px 0 60px 0;
  }
  section.o-nas-section-content .content-inner .inner-offer-type,
  section.uslugi-section-content .content-inner .inner-offer-type {
    padding-top: 60px;
  }
  section.o-nas-section-content .content-inner .inner-offer-type .offer-text,
  section.uslugi-section-content .content-inner .inner-offer-type .offer-text {
    margin-left: 40px;
  }
  section.o-nas-section-content .content-inner .inner-offer-type .offer-text p,
  section.uslugi-section-content .content-inner .inner-offer-type .offer-text p {
    font-size: 22px;
  }
  section.o-nas-section-content .content-inner .inner-text,
  section.uslugi-section-content .content-inner .inner-text {
    width: 100%;
  }
  section.o-nas-section-content .content-inner .inner-text p,
  section.uslugi-section-content .content-inner .inner-text p {
    text-align: left;
    line-height: 32px;
  }
  section.o-nas-section-content .content-inner .inner-text .text-content,
  section.uslugi-section-content .content-inner .inner-text .text-content {
    padding: 0;
  }
  section.o-nas-section-content .content-inner .inner-offer-type .offer-square,
  section.uslugi-section-content .content-inner .inner-offer-type .offer-square {
    margin-left: 0;
  }
  section.o-nas-section-content .content-inner .inner-question:not(:first-of-type),
  section.uslugi-section-content .content-inner .inner-question:not(:first-of-type) {
    margin-top: 60px!important;
  }
  section.o-nas-section-content .content-inner .inner-question .question-square,
  section.uslugi-section-content .content-inner .inner-question .question-square {
    margin-left: 0;
  }
  section.o-nas-section-content .content-inner .inner-question.question-sm .question-text,
  section.uslugi-section-content .content-inner .inner-question.question-sm .question-text {
    width: 75%;
  }
  section.o-nas-section-content .content-inner .inner-question.question-sm .question-text p,
  section.uslugi-section-content .content-inner .inner-question.question-sm .question-text p {
    font-size: 14px;
    line-height: 26px;
  }
  section.o-nas-section-content .content-inner .inner-question.question-lg .question-text,
  section.uslugi-section-content .content-inner .inner-question.question-lg .question-text {
    margin-left: 0;
    width: 100%;
  }
  section.o-nas-section-content .content-inner .inner-question.question-lg .question-text p,
  section.uslugi-section-content .content-inner .inner-question.question-lg .question-text p {
    text-align: center;
  }
  section.o-nas-section-content .content-inner .inner-question .question-text,
  section.uslugi-section-content .content-inner .inner-question .question-text {
    margin-left: 40px;
  }
  section.o-nas-section-content .content-inner .team-wrapper,
  section.uslugi-section-content .content-inner .team-wrapper {
    margin-top: 20px;
    -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;
  }
  section.o-nas-section-content .content-inner .team-wrapper .bg-element,
  section.uslugi-section-content .content-inner .team-wrapper .bg-element {
    height: 102.5%;
  }
  section.o-nas-section-content .content-inner .team-wrapper .person,
  section.uslugi-section-content .content-inner .team-wrapper .person,
  section.o-nas-section-content .content-inner .team-wrapper .person:nth-of-type(even),
  section.uslugi-section-content .content-inner .team-wrapper .person:nth-of-type(even) {
    margin-top: 40px;
    width: 75%;
    height: 340px;
  }
  section.o-nas-section-content .content-inner .team-wrapper .person p,
  section.uslugi-section-content .content-inner .team-wrapper .person p,
  section.o-nas-section-content .content-inner .team-wrapper .person:nth-of-type(even) p,
  section.uslugi-section-content .content-inner .team-wrapper .person:nth-of-type(even) p {
    font-size: 13px;
    padding: 5px 15px;
  }
}

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