/*
Theme Name: A1Group
Theme URI: 
Description: Motyw dla strony A1Group
Author: RoxArt, Dominik Skarbek
Author URI: https://roxart.pl/
Version: 1.0
*/

body {
  font-family: "Open Sans", serif;
  color: var(--darkText);
  font-weight: 300;
  overflow: visible;
}

p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 32px;
  color: var(--paraText);
}

.bold {
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  color: var(--mainBlack);
}

.custom_bold {
  font-weight: bold;
}

.outer_container > .right > img {
  width: 100%;
  height: 100%;  
  object-fit: cover;
}

.line_height {
  line-height: 1.5;
}

.fullwidth {
  width: 100%;
}

.title {
  color: var(--mainBlack);
  font-size: 38px;
  font-weight: bold;
  letter-spacing: -1.14px;
  line-height: 1.1;
  margin-bottom: 50px;
}

.title_2 {
  color: var(--mainBlack);
  font-size: 24px;
  text-align: left;
  font-weight: normal;
  letter-spacing: -1.14px;
  line-height: 1.1;
  margin-bottom: 50px;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 38% 6px;
  margin-bottom: 15px;
}

.title_thin {
  font-weight: 600;
}

.yellow {
  color: var(--gold);
  letter-spacing: 3.94px;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 65px 6px;
  margin-bottom: 15px;
}

:root {
  --white: #fff;
  --mainBlack: #1b1b1b;
  --darkText: #3b3938;
  --greyText: #878380;
  --grey2Text: #E1E1E1;
  --paraText: #3B3938;
  --gold: #f2b145;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.body-wrapper {
  overflow: hidden;
  position: relative;
}

img {
  max-width: 100%;
}
*:focus,
button:focus {
  outline: none !important;
}
a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}
header {
  -webkit-box-shadow: 0px 20px 30px #00000040;
  box-shadow: 0px 20px 30px #00000040;
  background: #fff;
  z-index: 2;
  position: relative;
}
.header-top1 {
  background: #3B4957;
  padding: 5px 0;
  position: relative;
  z-index: 2;
}
.header-top1-left h1 {
  color: #E1E1E1;
  font-size: 12px;
  margin-bottom: 0;
  line-height: 17px;
}
.gold_button {
  position: relative;
  padding: 19px 26px;
  background-color: var(--gold);
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  display: inline-block;
}
.gold_button.long {
  width: 350px;
  padding: 19px 52px;
}
.gold_button::before {
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  position: absolute;
  content: "";
  background-color: #fff;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gold_button:hover::before {
  width: 100%;
}
.gold_button span {
  position: relative;
  z-index: 2;
  color: var(--mainBlack);
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 22px;
  font-weight: 700;
}
.gold_button span img {
  margin-left: 18px;
  transform: rotate(-90deg);
}

.none_button {
  display: inline-block;
  padding: 15px 0;
  /* border-bottom: 2px solid var(--gold); */
  position: relative;
  margin-bottom: 0;
}
.none_button::after {
  position: absolute;
  left: 0;
  height: 2px;
  background-color: var(--gold);
  content: "";
  bottom: 0;
  width: calc(100% - 40px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.none_button:hover::after {
  width: 100%;
}
.none_button span {
  position: relative;
  z-index: 2;
  color: var(--mainBlack);
  font-size: 16px;
  display: block;
  line-height: 22px;
  font-weight: 700;
}
.none_button span img {
  margin-left: 18px;
  transform: rotate(-90deg);
}

.header-top1-left h1 span {
  margin-left: 32px;
  margin-right: 32px;
}
.header-top1-right ul {
  list-style: none;
  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;
  padding: 0;
  margin: 0;
}
.header-top1-right ul li {
  color: var(--greyText);
  font-size: 12px;
  line-height: 17px;
  margin-left: 32px;
}
.header-top1-right ul li:first-of-type {
  margin-left: 0 !important;
}
.header-top1-right ul li a {
  color: #E1E1E1;
  font-size: 12px;
  line-height: 17px;
}
.header-top1-right ul li a:hover {
  color: var(--gold);
}

.header-top2-left {
  -ms-flex: 0 0 40px;
  -webkit-box-flex: 0;
  flex: 0 0 40px;
  max-width: 40px;
  padding: 0;
  padding-left: 15px;
}

.header-top2-left .btn-group {
  z-index: 1;
}
.header-top2-left .btn-group .btn {
  padding: 0;
}
.header-top2-left .dropdown-menu {
  width: 345px;
  padding-left: 70px;
  padding-top: 35px;
  border-radius: 0;
  border: none;
}
.header-top2-left .dropdown-menu li {
  margin-bottom: 20px;
}
.header-top2-left .dropdown-menu li a {
  opacity: 0.2;
}
.header-top2-left .dropdown-menu li a:hover {
  opacity: 1;
}
.logo {
  z-index: 2;
  position: relative;
}
.header-top2-right > .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-top2-right > .wrapper .kreska {
  margin: 0 45px;
}
.header-top2-right-tresc-hr {
  background: #626664;
  height: 24px;
  width: 2px;
}

.header-top2-right-tresc p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 19px;
}
.header-top2-right-tresc p:nth-child(1) {
  font-weight: bold;
}
.header-top2-right-tresc p:nth-child(2) {
  color: var(--greyText);
}
.header-top2-right-tresc p img {
  margin-right: 12px;
}
.navbar {
  padding-top: 13px;
  padding-bottom: 13px;
  -webkit-box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.25);
}
.navbar > .container {
  display: block;
}

.navbar-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar-nav li {
  text-align: center;
}
.navbar-expand-md .navbar-nav .nav-link {
  color: #3B3938;
  font-weight: 600;
  font-size: 16px;
  padding: 0;
}
.navbar-expand-md .navbar-nav .nav-link:hover {
  color: var(--gold);
}
.navbar > .container > .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-menu {
  margin-top: 13px;
}
body.scrolled {
  padding-top: 123px;
}
.navbar.scrolled .main-menu {
  margin-top: 0;
}
.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.navbar.scrolled .header-top2-right {
  display: none !important;
}
.navbar.scrolled .main-menu {
  -ms-flex: 0 0 70%;
  -webkit-box-flex: 0;
  flex: 0 0 70%;
  max-width: 70%;
  margin-left: auto;
}
.dropdown-toggle::after {
  display: none;
}

.main-slider {
  position: relative;
}

.main-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.main-slider .item {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 125px 0 185px;
}
.main-slider .item::before {
  display: block;
  width: auto;
  height: calc(100% + 120px);
  content: url(img/header-mask.svg);
  left: 0px;
  position: absolute;
  z-index: 1;
  bottom: -120px;
  mix-blend-mode: multiply;
}
.main-slider .item .container {
  position: relative;
  z-index: 2;
}

.main-slider .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-slider .item h2 {
  font-family: "Open Sans", "Noto Serif", serif;
  color: var(--gold);
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 3.92px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.main-slider .item h3 {
  font-size: 54px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1.6px;
  margin-bottom: 24px;
}
.main-slider .item h3 span {
  display: block;
  font-weight: 700;
}

.main-slider .item h3 span.dot {
  color: var(--gold);
  display: inline;
}

.main-slider .item p.text {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  margin-bottom: 35px;
  max-width: 450px;
  color: #fff;
}
.main-slider.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1110px;
  margin: 0px auto 0 auto;
  position: relative;
  z-index: 1000;
  -webkit-transform: translateY(-120px);
  -ms-transform: translateY(-120px);
  transform: translateY(-120px);
}
.main-slider.owl-carousel button.owl-dot {
  width: 3px;
  height: 2px;
  background-color: var(--greyText);
  margin-bottom: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-slider.owl-carousel button.owl-dot.active {
  background-color: var(--gold);
  width: 7px;
}

.home-atuty {
  padding-top: 36px;
  padding-bottom: 36px;
}
.home-atuty .container {
  position: relative;
}
.home-atuty-left {
  position: absolute;
  right: calc(100% + 80px);
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}
.atuty-all {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.atut {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22%;
  border-right: 1px solid #E1E1E1;
  height: 56px;
}

.atut:first-child {
  padding-right: 20px;
}

.atut:last-child {
  border-right: none;
}

.atut img {
  margin-right: 32px;
}

.atut .content p:nth-child(1) {
  color: var(--mainBlack);
  line-height: 26px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
}
.atut .content p:nth-child(2) {
  color: var(--greyText);
  line-height: 17px;
  font-size: 12px;
  margin-bottom: 0;
}

.home-about-us {
  margin-top: 100px;
  margin-bottom: 80px;
}

.home-about-left {
  max-width: 410px;
}
.home-about-us2 {
  position: relative;
}
.dot {
  color: var(--gold);
}

.home-about-us-img {
  z-index: 2;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-about-us-img:hover::before {
  top: -32px;
  left: -32px;
}

.home-about-us-button {
  z-index: 4;
  margin-top: -100px;
  margin-left: -95px;
  position: absolute;
}
.home-offer-title {
  text-align: center;
  margin-bottom: 50px;
}

.home-offer .container-fluid {
  max-width: 1730px;
  margin: 0 auto;
}
.home-offer .container-fluid .row > div {
  height: 345px;
  overflow: hidden;
}

.home-offer .container-fluid .row > div img {
  transition: all 0.6s;
}
.home-offer .container-fluid .row > div:hover > img {
  transform: scale(1.2);
}
.home-offer-info {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: var(--mainBlack);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.home-offer-info:hover {
  background: transparent linear-gradient(128deg, #454645 0%, #626664 100%) 0%
    0% no-repeat padding-box;
  text-decoration: none;
  color: #fff;
}
.home-offer-info:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/* .home-offer-info p:nth-child(1) {
  width: 14px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 5px;
} */
.home-offer-info p.title {
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.home-offer-info:hover p {
  color: var(--white) !important;
}

.home-offer-info p:nth-child(2) {
  margin-bottom: 14px;
}

.home-offer-info .none_button {
  margin-top: auto;
}

.home-offer-info:hover .none_button span {
  color: #fff;
}

@media (max-width: 1800px) {
  .home-offer-info p:nth-child(3) {
    font-size: 12px;
    line-height: 20px;
  }
  .home-offer-info {
    padding: 40px;
  }
}

.home-reviews {
  background-image: url(img/globe.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  padding: 120px 0;
}
.home-reviews-left {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-reviews-left p.title {
  font-size: 24px;
  letter-spacing: -0.78px;
  margin-bottom: 26px;
  font-weight: normal;
}
.home-reviews-left p:nth-child(2) {
  margin: 0 0 40px 0;
}
.home-reviews-left p:nth-child(3) {
  font-size: 12px;
  letter-spacing: 0.24px;
  margin: 0 0 0px 0;
}
.home-reviews-left p.bold {
  margin-bottom: 0;
  font-weight: normal;
}
.home-reviews-star {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}
.home-reviews .owl-carousel .owl-item img {
  float: left;
  width: auto;
}

.home-reviews .owl-carousel .owl-item .item {
  margin: 0 15px;
}
.home-reviews-star span {
  float: right;
  font-size: 12px;
  display: inline-block;
  line-height: 1.1;
  color: var(--darkText);
}
.home-reviews-tekst p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 10px;
  font-family: "Noto Serif";
  font-style: italic;
}
.home-reviews-klient p {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
  color: var(--darkText);
  letter-spacing: 2px;
}
.owl-prev {
  width: 29px;
  height: 29px;
  position: absolute;
  top: 40%;
  left: -40px;
  display: block !important;
  background-color: rgba(135, 131, 128, 0.1) !important;
  border-radius: 50% !important;
}

.owl-next {
  width: 29px;
  height: 29px;
  position: absolute;
  top: 40%;
  right: -40px;
  display: block !important;
  border-radius: 50% !important;
  background-color: rgba(135, 131, 128, 0.1) !important;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(135, 131, 128, 0.3) !important;
}
.owl-prev span,
.owl-next span {
  font-size: 20px;
  font-weight: bold;
  line-height: 0;
  margin-top: -2px;
  display: block;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 2px;
  margin: 5px 7px;
  background: #d6d6d6;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--gold);
}

.small_title {
  font-size: 15px;
  font-weight: bold;
}

.list_item {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 30px;
}

.home-ask_content {
  width: 66%;
}

.outer_container > .right {
  width: 48%;
}

.outer_container > .right > img {
  width: 100%;
  height: 100%;
}

.home-ask_container {
  width: 100%;
  height: 100%;
  padding: 60px 10%;
  position: relative;
  background: rgb(59,73,87);
  background: linear-gradient(110deg, rgba(59,73,87,1) 0%, rgba(86,114,142,1) 88%);
}

.home-ask_container > p {
  z-index: 4;
}

.home-ask_container > .img-mail {
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
}

.home-ask_container > .img-letter {
  z-index: 1;
  position: absolute;
  right: 0;
  height: 100%;
  bottom: 0;
}

.list_item:last-child {
  margin-bottom: 40px;
}

.home-steps {
  background-image: url(img/bg-steps.png);
  background-position: center;
  background-color: #3B3938;
  background-size: cover;
  padding: 120px 0 200px 0;
  background-blend-mode: multiply;
}

.home-steps-left p:nth-child(1) {
  color: #fff;
  max-width: 455px;
}
.home-steps-left a.none_button span,
.home-steps-left a.none_button {
  color: #fff;

  font-size: 14px;
}
.home-steps-left a.none_button img {
  filter: invert(1);
}

.home-steps-right p:nth-child(2) {
  color: #fff;
}

.five-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}

.five-steps .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  height: 400px;
  position: relative;
}

.five-steps .box .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;
  width: 200px;
  height: 50%;
}

.five-steps .box::after {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold);
  content: "";
  top: 50%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}

.five-steps .box::before {
  position: absolute;
  left: -124px;
  width: 222px;
  content: "";
  background-color: #fff;
  opacity: 0.2;
  height: 2px;
  top: 202px;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.five-steps .box:nth-of-type(even)::before {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
}

.five-steps .box:nth-of-type(even) .inner {
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
}
.five-steps .box:nth-of-type(even)::after {
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
}

.five-steps .box .toolt {
  position: absolute;
  top: calc(50% + 35px);
  left: -50px;
  right: -50px;
  height: auto;
  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; */
  padding: 18px 30px;
  color: var(--mainBlack);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  z-index: 2;
  opacity: 0;
  background: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.five-steps .box .toolt b {
  font-weight: 700;
}

.five-steps .box:hover .toolt {
  top: calc(50% + 20px);
  opacity: 1;
}

.five-steps .box:nth-of-type(even) .toolt {
  top: unset !important;
  bottom: calc(50% + 35px);
  border: 0;
}

.five-steps .box:nth-of-type(even):hover .toolt {
  bottom: calc(50% + 20px);
  opacity: 1;
}

.five-steps .box .step {
  font-size: 14px;
  letter-spacing: 8.4px;
  line-height: 1;
  margin: 0 0 11px;
  color: var(--white);
  opacity: 0.1;
  font-weight: 700;
}

.five-steps .box .title {
  margin: 12px 0 0 0;
  font-size: 26px;
  line-height: 34px;
  color: var(--white);
}

.home-number {
  margin-top: -143px;
  height: 580px;
  position: relative;
}

.home-number .col {
  position: static;
}

.home-number .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-number-all {
  background-size: contain;
  background: rgb(59,73,87);
background: linear-gradient(124deg, rgba(59,73,87,1) 0%, rgba(86,114,142,1) 100%);
  text-align: center;
  padding: 50px;
  height: 285px;
  width: 410px;
  margin-left: 200px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}
.home-number-all1 {
  color: var(--white);
  font-weight: normal;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 50% 5px;
  background-repeat: no-repeat;
  background-size: 65px 6px;
}
.home-number-all1 p:nth-child(1) {
  color: var(--white);
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: -0.78px;
}

.home-number-all2 p:nth-child(1) {
  color: var(--gold);
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.home-number-all2 p:nth-child(1) span {
  font-size: 32px;
}
.home-number-all2 p:nth-child(2) {
  color: var(--white);
  font-size: 14px;
  line-height: 18px;
  opacity: 0.6;
  margin: 0;
}

.gallery-carousel {
  position: absolute;
  top: 0;
  left: 630px;
}

.gallery-carousel2 {
  position: absolute;
  left: unset;
  right: 550px;
  top: 295px;
}

.gallery-carousel a {
  display: block;
  position: relative;
  margin: 0px 5px 10px 5px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.box-hover {
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.box-hover .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: end;
  -ms-flex-pack: end;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.6+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.6))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=0 ); /* IE6-9 */
}

.box-hover:hover .mask {
  opacity: 1;
}

.box-hover .mask img {
  width: auto !important;
  margin-bottom: 10px;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.box-hover:hover .mask img {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.box-hover .mask p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}

.box-hover img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-carousel a > img {
  width: 285px !important;
  height: 285px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.box-hover:hover > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.view-all {
  width: 285px;
  height: 285px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 295px;
  right: calc(550px - 295px);
  background: #fff;
  z-index: 1;
}

.view-all .owl-nav {
  margin-bottom: 20px;
}

.view-all button {
  color: var(--mainBlack);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  margin: 5px;
  border-radius: 50% !important;
  background: rgba(135, 131, 128, 0.1);
  border: 0;
  font-family: "Noto Serif";
}
.view-all button.owl-custom-prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.view-all button:hover {
  background: rgba(135, 131, 128, 0.3);
}

.home-text {
  margin-top: 100px;
}
.home-text h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--mainBlack);
  line-height: 32px;
}
.home-text p {
  line-height: 2;
  color: var(--paraText);
  font-size: 13px;
}
.home-ask {
  margin-top: 100px;
  margin-bottom:50px;
  position: relative;
}

body.page-template-projects .home-ask,
body.home .home-ask {
  position: relative;
}

body.page-template-projects .home-ask .outer_container,
body.home .home-ask .outer_container {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.home-ask .outer_container {
  position: relative;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 1110px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.home-ask .col-md-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-ask .title {
  font-size: 38px;
  line-height: 48px;
  margin: 0 0 20px 0;
  letter-spacing: -1.74px;
  color: var(--white);
}

.home-ask .para {
  color: #b9b9b9;
  margin: 0 0 30px 0;
  max-width: 380px;
}

.home-loga {
  background: #fff;
  padding: 75px 0;
}

.home-loga .row .col .wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.home-loga a {
  opacity: 0.2;
  filter: grayscale(1);
  width: 195px;
}
.home-loga a:hover {
  opacity: 1;
  filter: grayscale(0);
}
.home-logo1 {
  width: 16%;
}
.home-logo2 {
  width: 18%;
}
.home-logo3 {
  width: 18%;
}
.home-logo4 {
  width: 18%;
}
.home-logohr {
  width: 10%;
  text-align: center;
}
.home-logohr hr {
  width: 2px;
  height: 38px;
  background: #000;
  opacity: 0.2;
}

footer {
  padding-top: 91px;
  background: url(img/footer.svg) #3B4957;
  background-position: top right -200px;
  background-repeat: no-repeat;
}
footer h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 24px;
}
footer p {
  color: var(--grey2Text);
  font-size: 14px;
  line-height: 1.4;
}
footer p img {
  margin-right: 12px;
}
footer ul {
  padding: 0;
}
footer ul li {
  margin-bottom: 8px;
  list-style: none;
}
footer ul li a {
  color: var(--grey2Text);
  font-size: 14px;
}
footer a:hover {
  color: var(--gold);
}

footer .footer-tekst {
  color: var(--grey2Text);
  font-size: 12px;
  line-height: 20px;
}

.stopka-copy p span {
  color: var(--grey2Text);
  margin-left: 20px;
  margin-right: 20px;
}
.footer-linki hr {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 0;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
  border-top: 2px solid var(--gold);
  opacity: 1;
  width: 20px;
  height: 2px;
  left: 0;
  margin-left: 0;
}
.footer-adres hr {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 0;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
  border-top: 2px solid var(--gold);
  opacity: 1;
  width: 20px;
  height: 2px;
  left: 0;
  margin-left: 0;
}
.footer-adres p {
  color: var(--grey2Text);
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  word-break: break-word;
}
.footer-adres p img {
  margin-top: 6px;
}
.footer-adres p:nth-child(3),
.footer-adres p:nth-child(5),
.footer-adres p:nth-child(7) {
  margin-bottom: 8px;
}
.footer-tekst {
  text-align: right;
  color: var(--grey2Text);
}
.footer-tekst p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--grey2Text);
}
.footer-tekst2 {
  margin-top: 30px;
}
.footer-tekst2 p {
  font-size: 12px;
  line-height: 22px;
  color: var(--grey2Text);
  font-weight: 300;
}
footer hr {
  margin-top: 80px;
  margin-bottom: 30px;
  color: var(--white);
  opacity: 0.1;
  width: 100%;
  border: 1px solid var(--grey2Text);
  margin-bottom: 100px;
}
.wgore a {
  position: absolute;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 8.4px;
  right: -220px;
  top: 75px;
  padding: 18px 26px;
  transform: rotate(-90deg);
}
.wgore a img {
  transform: rotate(-90deg);
}
.stopka-rox {
  margin-bottom: 60px;
  text-align: right;
}

.stopka-rox p {
  display: inline-block;
  color: #B9B9B9;
  font-size: 11px;
}

.stopka-rox a {
  display: inline-block;
  margin: 0;
  filter: grayscale(1);
  opacity: 1;
}

.stopka-rox a:hover {
  filter: grayscale(0);
  opacity: 1;
}

.stopka-rox p {
  margin: 0;
  margin-right: 15px;
  font-size: 12px;
  line-height: 16px;
}

svg,
svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.stopka-rox svg path {
  fill: #ff9f00;
}
.stopka-rox svg:hover path {
  fill: rgb(255, 92, 1);
}

.stopka-copy {
  padding-top: 11px;
}

.about-us-header {
  background: url(img/about-us-header.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header {
  position: relative;
  padding: 100px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header::before {
  display: block;
  width: auto;
  height: auto;
  content: url(img/header-mask2.svg);
  left: 0px;
  position: absolute;
  z-index: 0;
  bottom: -120px;
  mix-blend-mode: multiply;
}

.page-header h2 {
  font-family: "Open Sans", "Noto Serif", serif;
  color: var(--gold);
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 3.92px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.page-header h2::after {
  position: absolute;
  top: 45%;
  left: 110%;
  width: 190px;
  height: 2px;
  background-color: var(--gold);
  content: "";
}

.page-header .title_shad {
  position: relative;
}

.page-header .title_shad p {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  line-height: 48px;
  max-width: 70%;
}

.page-header .title_shad .shad {
  position: absolute;
  font-size: 90px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  top: -24px;
  z-index: 0;
  opacity: 0.03;
}

.page-header.high .top {
  margin-bottom: 125px;
}

.page-header.high .number {
  font-weight: 700;
  font-size: 38px;
  line-height: 42px;
  letter-spacing: -1.14px;
  color: var(--white);
  opacity: 0.2;
  margin: 0 0 5px;
}

.page-header.high .bottom h3 {
  font-size: 24px;
  line-height: 36px;
  color: var(--white);
  font-weight: 500;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: 0;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0px 7px;
  background-repeat: no-repeat;
  background-size: 40px 3px;
  margin-bottom: 15px;
}

.page-header.high .buttons a {
  margin-right: 60px;
}

.page-header.high .buttons a.none_button span {
  color: var(--mainBlack);
}

.about-us1 {
  padding: 120px 0;
}

.about-us1 .text-wrapper {
  max-width: 400px;
}

.about-us1.page-content .text-wrapper {
  max-width: unset;
}

.about-us1 .container .row:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.about-us1 .container .row:not(:last-child) {
  margin-bottom: 120px;
}

.about-us2 {
  position: relative;
}

.about-us2::before {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background: #f8f8f8;
}

.about-us2 .navigation {
  margin-bottom: 50px;
}

.about-us2 .navigation .nav {
  margin: 0 -4px;
}

.about-us2 .navigation .nav-pills .nav-item {
  text-align: left;
}

.about-us2 .navigation .nav-pills .nav-link {
  border-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 190px;
  margin: 0 4px;
  background: var(--white);
}

.about-us2 .navigation .nav-pills .nav-link:hover,
.about-us2 .navigation .nav-pills .nav-link.active {
  background: url(img/letter.svg) right no-repeat,
    transparent linear-gradient(125deg, #f2b145 0%, #ce8712 100%) 0% 0%
      no-repeat padding-box;
  background-size: contain;
  transform: translateY(10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.about-us2 .navigation span {
  color: var(--gold);
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  display: block;
  opacity: 0.4;
}

.about-us2 .navigation .nav-link:hover span,
.about-us2 .navigation .nav-link.active span {
  color: var(--white);
  opacity: 1;
}

.about-us2 .bold {
  font-size: 26px;
  line-height: 34px;
  letter-spacing: -0.78px;
  margin: 0;
  opacity: 0.4;
}

.about-us2 .navigation .nav-link:hover .bold,
.about-us2 .navigation .nav-link.active .bold {
  opacity: 1;
}

.about-us2 .content .tab-pane.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
}

.about-us2 .content .tab-pane .left {
  width: 36%;
}

.about-us2 .content .tab-pane .right {
  width: 48%;
}

.text-wrapper p:last-child {
  margin-bottom: 0;
}

.kwadrat {
  width: 88px;
  height: 88px;
  background: transparent -webkit-gradient(
      linear,
      left top,
      right top,
      from(#55566b),
      to(#2b2b36)
    ) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(left, #55566b 0%, #2b2b36 100%) 0% 0%
    no-repeat padding-box;
  background: transparent linear-gradient(90deg, #55566b 0%, #2b2b36 100%) 0% 0%
    no-repeat padding-box;
  -webkit-box-shadow: 0px 15px 30px #00000040;
  box-shadow: 0px 15px 30px #00000040;
  z-index: 3;
  position: absolute;
}

.accordion {
  margin-top: 40px;
}
.acc-single {
  -webkit-box-shadow: inset 0px 0px 0px 2px #e1e1e1;
  box-shadow: inset 0px 0px 0px 2px #e1e1e1;
}

.acc-header {
  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: 100%;
  text-align: left;
  border: 0;
  padding: 32px;
  background: #f5f5f5;
  color: var(--mainBlack) !important;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  border-radius: 0;
  margin-top: 12px;
  text-decoration: none !important;
  /* -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; */
  border: 2px solid #e1e1e1;
}

.acc-header[aria-expanded="true"] {
  margin-left: 20px;
  background: transparent -webkit-gradient(
      linear,
      left top,
      right top,
      from(#55566b),
      to(#2b2b36)
    ) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(left, #55566b 0%, #2b2b36 100%) 0% 0%
    no-repeat padding-box;
  background: transparent linear-gradient(90deg, #55566b 0%, #2b2b36 100%) 0% 0%
    no-repeat padding-box;
  color: #fff !important;
  border: 2px solid transparent;
  border-bottom: 0;
}

.acc-header span {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: rgba(135, 131, 128, 0.1);
  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;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.acc-header[aria-expanded="true"] span {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.acc-header[aria-expanded="true"] span svg path {
  fill: #fff;
}

.acc-body {
  margin-left: 20px;
  background: #f5f5f5;
  width: 100%;
  color: #fff;
  background: transparent -webkit-gradient(
      linear,
      left top,
      right top,
      from(#55566b),
      to(#2b2b36)
    ) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(left, #55566b 0%, #2b2b36 100%) 0% 0%
    no-repeat padding-box;
  background: transparent linear-gradient(90deg, #55566b 0%, #2b2b36 100%) 0% 0%
    no-repeat padding-box;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.acc-body div {
  padding: 0px 32px 32px 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 24px;
}

.aboutus-reviews {
  background: #fff;
}

.cta {
  background: url(img/letter.svg) left no-repeat,
    transparent
      linear-gradient(
        104deg,
        rgba(69, 70, 69, 1) 0%,
        rgba(98, 102, 100, 1) 100%
      )
      0% 0% no-repeat padding-box;
  background-size: contain;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
  padding: 100px 0;
  position: relative;
}

.cta .title {
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 30px 0;
  letter-spacing: -0.78px;
  color: var(--white);
}

.cta .para {
  color: #b9b9b9;
  margin: 0;
}

.cta .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta .right .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta .right .wrapper .or {
  color: #fff;
  opacity: 0.5;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin: 20px 0;
}

.cta .right .wrapper .numbers a {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta .right .wrapper .numbers a.phone {
  font-weight: 700;
}

.cta .right .wrapper .numbers a img {
  margin-right: 12px;
}

.offer-header {
  background-image: url(img/offer-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 630px;
  display: flex;
  align-items: center;
}

.below-header {
  padding: 20px 0;
}

.below-header .wrapper {
  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;
}

.page-template-about-us .below-header.white {
  margin-top: -90px;
}

#breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  /* max-width: 40%; */
  flex-wrap: wrap;
}
#breadcrumbs li {
  list-style: none;
  font-family: "Open Sans", serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 3.94px;
  font-weight: 700 !important;
  color: var(--gold);
}

#breadcrumbs li strong {
  font-weight: 700 !important;
  color: var(--gold);
}

#breadcrumbs li.separator {
  margin: 0 6px;
  color: var(--gold);
}

#breadcrumbs li a {
  color: var(--gold);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.white #breadcrumbs li,
.white #breadcrumbs li strong,
.white #breadcrumbs li.separator,
.white #breadcrumbs li a {
  color: #fff;
}

.offer1 {
  position: relative;
  padding: 100px 0 40px 0;
}

.offer1 .first .title {
  margin-bottom: 30px;
}

.offer1 .row {
  margin-bottom: 40px;
}
.offer1 .row:last-of-type {
  margin-bottom: 0;
}

.offer1 .third .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offer1 .third .wrapper .img1 {
  -webkit-transform: translate(0, 16px);
  -ms-transform: translate(0, 16px);
  transform: translate(0, 16px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.offer1 .third .wrapper .img2 {
  position: relative;
  z-index: -1;
  -webkit-transform: translate(-32px, -16px);
  -ms-transform: translate(-32px, -16px);
  transform: translate(-32px, -16px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.offer1 .third .wrapper:hover .img1 {
  -webkit-transform: translate(0, -16px);
  -ms-transform: translate(0, -16px);
  transform: translate(0, -16px);
}

.offer1 .third .wrapper:hover .img2 {
  -webkit-transform: translate(-32px, 16px);
  -ms-transform: translate(-32px, 16px);
  transform: translate(-32px, 16px);
}

.offer1 .third .wrapper .kwadrat {
  top: 60%;
  right: -60px;
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}

.offer1b {
  padding-top: 0;
}

.offer1b h4 {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.offer2 {
  padding: 0 0 100px 0;
}

.offer1b h3,
.offer2 .text-wrapper h3 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: center;
  color: var(--mainBlack);
}

.offer2 .grid2 {
  display: -ms-grid;
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  border-top: 1px solid #f5f5f5;
  border-left: 1px solid #f5f5f5;
}

.offer2 .item {
  padding: 32px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
}

.offer2 .item:hover {
  background-color: #f5f5f5;
}

.offer2 .item img {
  margin-bottom: 12px;
}

.offer2 .item p {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  margin: 0 0 24px;
  color: var(--mainBlack);
}

.offer2 .item p.small {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: #626664;
  margin: 0;
}

.offer2 .item.last {
  background: transparent linear-gradient(134deg, #f2b145 0%, #ce8712 100%) 0%
    0% no-repeat padding-box;
  display: flex;
  align-items: center;
  text-align: center;
  border: 0;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.offer2 .item.last p.small {
  font-size: 18px;
  line-height: 34px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.big-header {
  position: relative;
}

.big-header h2 {
  font-size: 38px;
  line-height: 48px;
  font-weight: 700;
  position: relative;
}
.big-header h2::before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  height: 2px;
  width: 14px;
  background-color: var(--gold);
}

.big-header .shad {
  position: absolute;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  top: -24px;
  z-index: 0;
  opacity: 0.03;
}

.projects {
  position: relative;
  padding: 100px 0px 120px;
}
.projects::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 330px;
  background-color: #f5f5f5;
}

.projects-slide {
  margin-top: -380px;
}

.owl-carousel .owl-item img {
  width: auto;
}
.projects-carousel {
  margin-top: 50px;
}

.projects-carousel a {
  margin: 0 5px;
  display: block;
}
.projects-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}
.projects-carousel .owl-nav button {
  position: static !important;
}

.projects-header {
  background-image: url(img/projects_bg.png);
  background-position: center;
  background-size: cover;
  padding-bottom: 400px;
}
.projects-header::before {
  display: none;
}

.projects-slide {
  margin-top: -330px;
}

.white.below-header img {
  opacity: 0;
  visibility: hidden;
}

.projects-header .top {
  margin-bottom: 140px !important;
}

.projects-header .home-number-all2 p:nth-child(1) {
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  margin: 0;
}
.projects-header .home-number-all2 p:nth-child(1) span {
  font-size: 54px;
}
/* .projects-header .home-number-all2 p:nth-child(2) {
  color: var(--white);
  font-size: 14px;
  line-height: 18px;
  opacity: 0.6;
} */

.projects-header .bottom {
  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;
}

.projects-header .bottom div {
  width: 180px;
  text-align: center;
  margin: 0 10px;
}

.projects-slider.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.projects-slider .item {
  display: block;
  position: relative;
  margin: 24px 40px;
}
.projects-slider .item > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 500px;
}
.projects-slider .item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 1) 0% 0% no-repeat padding-box;
  opacity: 0.2;
}

.projects-slider .center .item::after {
  opacity: 0;
}

.projects-slider .item .mask {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 65px 50px;
}

.projects-slider .item .mask h2 {
  color: var(--white);
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.78px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.projects-slider .item .mask .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 8.4px;
  font-weight: 700;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.projects-slider .item .mask .date img {
  margin-right: 10px;
}

.projects-slider .center .item {
  padding: 0;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.projects-slider .center .item .mask {
  background: transparent -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(59, 57, 56, 0.5)),
      to(rgba(59, 57, 56, 0))
    ) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(
      bottom,
      rgba(59, 57, 56, 0.5) 0%,
      rgba(59, 57, 56, 0) 100%
    ) 0% 0% no-repeat padding-box;
  background: transparent
    linear-gradient(360deg, rgba(59, 57, 56, 0.5) 0%, rgba(59, 57, 56, 0) 100%) 0%
    0% no-repeat padding-box;
}

.projects-slider .center .item .mask h2,
.projects-slider .center .item .mask .date {
  opacity: 1;
}
.projects-slider .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  max-width: 40%;
  margin: auto;
}
.projects-slider .owl-nav button {
  position: static !important;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}

.projects-slider .owl-nav button span {
  color: #fff;
}

.projects-grid {
  padding: 80px 0 100px;
}

.projects-grid .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.projects-grid .button-group span {
  border: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  background: transparent;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0px;
  margin: 0 20px;
  cursor: pointer;
  width: auto;
  position: relative;
}

.projects-grid .button-group span::after {
  position: absolute;
  left: 0;
  height: 2px;
  background-color: var(--gold);
  content: "";
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.projects-grid .button-group span.is-checked::after {
  width: 100%;
}

.projects-grid .button-group span img {
  margin-left: 18px;
  transform: rotate(-90deg);
}

.projects-grid .grid {
  margin: 0 -40px;
}
.projects-grid .grid .grid-item {
  width: 285px;
  height: 283px;
  margin: 5px;
}
.projects-grid .grid .grid-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-content {
  padding: 120px 0 80px;
}

.contact-content .title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  letter-spacing: -1.14px;
  margin-bottom: 0;
}

.contact-content .subtitle {
  color: #b9b9b9;
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.78px;
  font-weight: 700;
  margin: 0 0 50px;
}
.form-row {
  margin-bottom: 12px;
}
.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap input[type="email"] {
  padding: 18px 32px;
  border: 2px solid #f5f5f5;
  color: #3B3938;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wpcf7-form-control-wrap input[type="text"]:focus,
.wpcf7-form-control-wrap textarea:focus,
.wpcf7-form-control-wrap input[type="email"]:focus {
  border-color: var(--gold);
}

.wpcf7 .gold_button {
  border: 0;
  width: 350px;
}

span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  font-size: 14px;
  line-height: 24px;
}

.wpcf7 .policy {
  font-size: 12px;
  line-height: 17px;
  opacity: 0.5;
}

.contact-content .right .wrapper {
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
}

.contact-content .right .wrapper .top {
  background: rgb(59,73,87);
  background: linear-gradient(135deg, rgba(59,73,87,1) 0%, rgba(86,114,142,1) 85%);
  padding: 45px 65px;
  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;
}

.contact-content .right .wrapper .top > img {
  margin-bottom: 45px;
}

.contact-content .right .wrapper h4 {
  color: var(--white);
  font-size: 18px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 65px 6px;
}
.contact-content .right .wrapper p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 12px;
}
.contact-content .right .wrapper p img {
  margin-top: 6px;
  margin-right: 12px;
}
.contact-content .right .wrapper p span {
  color: var(--white);
  font-size: 14px;
  line-height: 21px;
  display: block;
}

.contact-content .right .wrapper .bottom .gold_button {
  width: 100%;
  text-align: center;
  background: rgb(242,177,69);
  background: linear-gradient(90deg, rgba(242,177,69,1) 0%, rgba(242,177,69,1) 100%);
}

.contact-content .right .wrapper .bottom .gold_button span {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.project-header {
  padding: 100px 0 180px 0;
}

.page-header.high.project-header .bottom h3 {
  margin-bottom: 5px;
}

.page-header.high.project-header .bottom h3::before {
  display: none;
}

.page-header.high.project-header .bottom .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 8.4px;
  font-weight: 700;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.page-header.high.project-header .bottom .date img {
  margin-right: 10px;
}

.project1 {
  position: relative;
  padding: 120px 0 100px 0;
}

.project1 .wrapper {
  display: flex;
  padding-bottom: 40px;
  position: relative;
}

.project1 .wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 35px;
  bottom: 0px;
  width: 2px;
  opacity: 0.1;
  background: var(--darkText);
}

.project1 .wrapper::after {
  position: absolute;
  content: "";
  left: -3px;
  top: 15px;
  bottom: 15px;
  width: 8px;
  height: 8px;
  border-radius: 5px;

  background: var(--gold);
}

.project1 .wrapper:last-of-type:before {
  display: none;
}

.project1 .wrapper .left {
  width: 150px;
  text-align: center;
}

.project1 .wrapper .right {
  width: calc(100% - 150px);
}

.project1 .wrapper .right .title {
  font-size: 26px;
  line-height: 34px;
  letter-spacing: -0.78px;
  margin: 0 0 24px;
}

.text-wrapper ul {
  padding: 0;
  margin: 0;
}

.text-wrapper ul li {
  list-style: none;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.text-wrapper ul li::before {
  content: url(img/tick.svg);
  margin-right: 12px;
}

.project-gallery {
  padding: 0 0 80px 0;
}

.project-gallery .gallery-wrapper {
  margin: 0 -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.project-gallery .gallery-wrapper .box {
  display: block;
  margin: 3px;
}

.project-gallery .gallery-wrapper .box.view_all {
  width: 272px;
  height: 272px;
  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;
}

/************* RWD ***********/

@media screen and (max-width: 1730px) {
  .home-offer .container-fluid .col > img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-offer .container-fluid .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-offer .container-fluid .col {
    height: 345px;
    width: 425px;
    -ms-flex: 0 0 425px;
    -webkit-box-flex: 0;
    flex: 0 0 425px;
    max-width: 425px;
  }
  .home-offer .container-fluid .col-md-6 {
    width: 850px;
    -ms-flex: 0 0 850px;
    -webkit-box-flex: 0;
    flex: 0 0 850px;
    max-width: 850px;
  }
  .home-offer .container-fluid .row > div:nth-of-type(3) {
    transform: translateX(200%);
  } 
  .home-offer .container-fluid .row > div:nth-of-type(4) {
    transform: translateX(-100%);
  }

.home-offer .container-fluid .row > div:nth-of-type(5) {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 1400px) {
  .wgore a {
    right: -140px;
  }
}

@media screen and (max-width: 1340px) {
  .main-slider .item {
    overflow: hidden;
  }
  .page-header {
    overflow: hidden;
  }
  .main-slider .item::before {
    left: unset;
    right: 50%;
  }
}

@media screen and (max-width: 1304px) {
.home-offer .container-fluid .row > div:nth-of-type(3) {
    transform: translateY(100%);
  }

  .home-offer .container-fluid .row > div:nth-of-type(4) {
    transform: translateY(0%);
  }

 .home-offer .container-fluid .row > div:nth-of-type(5) {
    transform: translateY(-100%);
  } 
}

@media screen and (max-width: 1200px) {
  .navbar-expand-md .navbar-nav .nav-link {
    font-size: 13px;
  }
  .main-slider.owl-carousel .owl-dots {
    max-width: 930px;
  }
  .home-about-us3 p,
  .home-about-us4 p {
    margin-bottom: 20px;
  }
  .home-reviews {
    padding: 70px 0;
  }
  .home-reviews-left {
    margin-bottom: 40px;
  }
  .five-steps .box {
    width: 180px;
  }
  .five-steps .box::before {
    left: -100px;
    width: 190px;
    top: 202px;
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  .five-steps .box:nth-of-type(even)::before {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  .view-all {
    right: 0;
  }
  .gallery-carousel2 {
    right: 275px;
  }
  .home-number-all {
    margin-left: 0;
    display: flex;
    align-items: center;
  }
  .gallery-carousel1 {
    left: 430px;
  }
  .offer1 .third .wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .projects-grid .grid .grid-item,
  .project-gallery .gallery-wrapper .box,
  .project-gallery .gallery-wrapper .box.view_all {
    width: calc(25% - 10px);
    height: auto;
  }
  .projects-grid .grid {
    margin: 0;
  }
  .project-gallery .gallery-wrapper {
    margin: 80px 0 0 0;
  }
  .box-hover .mask {
    padding: 30px;
  }
  .box-hover .mask > img {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1030px) {
  .wgore a {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .header-top1-left h1 span {
    margin: 0 5px;
  }
  .header-top1-left h1 {
    font-size: 11px;
  }
  .header-top1-right ul li {
    margin-left: 16px;
  }
  .main-menu {
    margin-top: 0;
    padding-left: 0;
  }
  .header-top2-left .dropdown-menu {
    width: 285px;
    padding-left: 40px;
  }
  .main-slider.owl-carousel .owl-dots {
    max-width: 690px;
  }
  .main-slider .item h3 {
    font-size: 35px;
  }
  .home-about-left {
    margin-bottom: 150px;
  }
  .home-about-right {
    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;
  }
  .home-about-us-button {
    margin: 0;
    top: -100px;
  }

  .five-steps {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-ask .col-md-10 {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-ask .title {
    font-size: 36px;
    line-height: 40px;
  }
  .home-ask .left {
    margin-bottom: 30px;
  }
  .home-ask-img1 {
    right: 0;
  }
  .home-ask-img2 {
    display: none;
  }
  .home-logo1,
  .home-logo2,
  .home-logo3,
  .home-logo4 {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .home-logohr {
    display: none;
  }
  footer hr {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .about-us1 .row,
  .offer1 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-us1 .row > div,
  .offer1 .row > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }

  .about-us1 .row .col-md-5,
  .offer1 .row .col-md-5 {
    margin-bottom: 60px;
  }
  .about-us1 .text-wrapper {
    max-width: unset;
  }
  .page-header::before {
    left: -100px;
    bottom: -80px;
  }
  .contact-content .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .contact-content .row .left {
    margin-top: -100px;
  }
  .projects-slide {
    margin-top: -140px;
  }
  .projects-header {
    padding-bottom: 200px;
  }
  .projects-grid .button-group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .projects-grid .grid .grid-item,
  .project-gallery .gallery-wrapper .box,
  .project-gallery .gallery-wrapper .box.view_all {
    width: calc(33% - 10px);
  }
  .project-gallery .gallery-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .projects-header .top {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 880px) {
/*   .home-offer .container-fluid .row > div:nth-of-type(3) {
    transform: none;
  }

  .home-offer .container-fluid .row > div:nth-of-type(4) {
    transform: none;
  }

  .home-offer .container-fluid .row > div:nth-of-type(5) {
    transform: none;
    display: none;
  } */
}

@media screen and (max-width: 767px) {
  .animated-icon2 {
    width: 27px;
    height: 22px;
    position: relative;
    margin: 0px 15px 0px 20px;
    border: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 0;
    right: 0px;
    margin-top: 5px;
    margin-left: auto;
  }

  .animated-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 27px;
    border-radius: 9px;
    opacity: 1;
    right: 0px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .animated-icon2 span {
    background: var(--mainBlack);
  }
  .animated-icon2 span:nth-child(1) {
    top: 0px;
  }

  .animated-icon2 span:nth-child(2),
  .animated-icon2 span:nth-child(3) {
    top: 7px;
  }

  .animated-icon2 span:nth-child(4) {
    top: 14px;
  }

  .animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    right: 0px;
  }

  .animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    right: 30px;
  }
  .main-menu {
    padding: 0;
  }
  .navbar.scrolled .main-menu {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    font-size: 16px;
    padding: 9px;
  }
 
  .logo img {
    max-width: unset;
  }
  .main-slider.owl-carousel .owl-dots {
    max-width: 510px;
  }
  .main-slider .item .wrapper {
    max-width: 70%;
  }
  .main-slider .item::before {
    right: 30%;
  }
  .home-offer .container-fluid .col {
    width: 425px;
    -ms-flex: 0 0 425px;
    -webkit-box-flex: 0;
    flex: 0 0 425px;
    max-width: 425px;
  }
  .atuty-all {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .atut {
    width: 300px;
    margin-bottom: 25px;
  }
  .home-about-us {
    margin-top: 50px;
  }

  .home-steps-left p:nth-child(1),
  .home-steps-left p:nth-child(2) {
    padding-left: 0;
  }
  .five-steps .box {
    width: 50%;
  }
  .home-number-all {
    width: 100%;
    margin-bottom: 10px;
    padding: 30px 12px;
  }
  .home-number .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gallery-carousel {
    position: static;
  }
  .gallery-carousel2 {
    display: none !important;
  }
  .view-all {
    position: static;
    height: auto;
    padding: 30px 0;
  }
  .home-number {
    position: static;
    height: auto;
  }
  .home-text {
    margin-top: 50px;
  }
  .home-ask .col-md-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .home-ask-img1 {
    position: static;
  }
  .home-ask-bg::before {
    right: 0;
  }
  .home-logo1,
  .home-logo2,
  .home-logo3,
  .home-logo4 {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer-linki {
    margin-bottom: 20px;
  }
  .stopka-rox,
  .stopka-copy {
    text-align: center;
    margin-bottom: 100px;
  }
  .cta .right {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
  }
  .page-header .title_shad p {
    max-width: 100%;
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
  }
  .page-header.high .top {
    margin-bottom: 60px;
  }
  .offer1 .row.first .col-md-3 {
    margin-top: 30px;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .offer2 .grid2 {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
  .offer2 {
    padding: 50px 0;
  }
  .projects-slider .item .mask {
    padding: 35px 30px;
  }
  .projects-slide {
    margin-top: -80px;
  }
  .projects-grid .grid .grid-item,
  .project-gallery .gallery-wrapper .box,
  .project-gallery .gallery-wrapper .box.view_all {
    width: calc(50% - 10px);
  }
  .project-gallery .gallery-wrapper .box.view_all {
    width: calc(100% - 10px);
  }
  .project1 .left {
    margin-bottom: 80px;
  }
  .projects-slider .item .mask h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .project1 .wrapper .left {
    width: 90px;
  }
  .project1 .wrapper .right {
    width: calc(100% - 90px);
  }
}

@media screen and (max-width: 600px) {
  .projects-slider .center .item {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .projects-slider .item {
    margin: 12px 15px;
  }
}

@media screen and (max-width: 575px) {
  .main-slider.owl-carousel .owl-dots {
    max-width: 100%;
    padding: 0 15px;
  }
  .main-slider .item a.gold_button {
    width: auto;
  }
  .main-slider .item .wrapper {
    max-width: 80%;
  }
  .main-slider .item::before {
    right: 15%;
  }
  .five-steps .box {
    width: 80%;
    height: 200px;
  }
  .five-steps .box .inner {
    height: 80%;
  }
  .five-steps .box .toolt {
    height: auto;
  }
  .five-steps .box::after {
    top: 85%;
  }
  .five-steps .box::before {
    display: none;
  }
  .five-steps .box:nth-of-type(even) .inner {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .five-steps .box:nth-of-type(even) .toolt {
    top: calc(50% + 35px) !important;
    bottom: unset !important;
    border-top: 0;
  }
  .five-steps .box:hover .toolt {
    top: calc(50% + 20px) !important;
  }
  .five-steps .box:nth-of-type(even)::after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .home-ask-bg p:nth-child(1),
  .home-ask-bg p:nth-child(2),
  .home-ask-bg p:nth-child(3) {
    padding-left: 0;
  }
  .home-ask-bg {
    height: auto;
    padding: 40px 30px;
  }
  footer .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-linki,
  .footer-adres {
    max-width: 300px;
  }
  .footer-tekst {
    text-align: center;
    max-width: 300px;
    margin-top: 30px;
  }
  .wgore a {
    right: 15px;
  }
  #breadcrumbs {
    display: none;
  }
  .projects-slider .owl-nav {
    max-width: 80%;
  }
  .projects-slider .owl-nav button {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .projects-slider .owl-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .projects-header {
    padding-bottom: 130px;
  }
  .projects-slider .item .mask .date {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .none_button.long,
  .gold_button.long {
    width: auto;
  }
  .home-offer .container-fluid .col {
    width: 100%;
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    height: auto !important;
  }
  .home-logo1,
  .home-logo2,
  .home-logo3,
  .home-logo4 {
    width: 100%;
    margin-bottom: 20px;
  }
  .offer2 .grid2 {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .projects-slider .item .mask {
    padding: 15px 10px;
  }
  .projects-slider .item .mask h2 {
    font-size: 16px;
    line-height: 1.2;
  }
  .projects-header .bottom {
    flex-wrap: wrap;
  }
  .projects-header .bottom div:not(:last-child) {
    margin: 0 0 15px;
  }
}

.yellow-footer {
  color: var(--white);
  text-transform: none;
  font-weight: 530;
}

.yellow_top {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 15px 15px 13px 15px;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 50% 5px;
  background-repeat: no-repeat;
  background-size: 65px 6px;
}

.offer1 .subtitle {
  color: #3B3938;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}

.grid2_subtitle {
  margin-top: 40px;
}

.grid2_subtitle > p {
  color: #3B3938;
  text-align: center;
}

.trades_section, .projects-text-section{
  max-width: 1110px;
  margin: 0 auto;
}

.trade-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.trade_item {
  width: 39%;
  margin: 30px 60px;
}

.trade_item > p {
  text-align: left;
  font-size: 14px;
  color: #3B3938;
}

.trade_item > h3 {
  text-align: left;
  display: inline-block;
  font-weight: bold;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 65px 6px;
  margin-bottom: 15px;
}

.offer_title > h3 {
  color: #3B3938;
  font-size: 38px;
  letter-spacing: 0;
  text-transform: none;
}

.offer_title > .subtitle {
  margin-bottom: 15px;
}

.offer_title > .text_content {
  font-size: 14px;
  color: #3B3938;
  line-height: 24px;
}

.text-wrapper > h3 {
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 65px 6px;
  margin-bottom: 15px;
}

.text-wrapper > .bold { 
  font-size: 16px;
}

.projects-text > h3 {
  font-size: 38px;
  line-height: 48px;
  text-align: left;
  font-weight: bold;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 65px 6px;
}

.projects-text > p > b {
  font-weight: bold;
}

.projects_custom_text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.projects_custom_text > div > img {
  width: 190px;
  height: 57px;
}

.sections_tabs_content > ul > li {
  display: block;
}

.custom-tabs {
  flex-direction: column;
}

.nav-tabs {
  border: none;
}

.sections_tabs_right_container {
  position: relative;
}

.sections_tabs_right_container > a {
  position: absolute;
  bottom: 70px;
  left: calc(50% - 112px);
  text-align: center;
  width: 225px;
}

.sections_tabs_left_container {
  max-width: 660px;
  float: right;
  padding: 60px;

}

.sections_tabs_right {
  height: 950px;
}

.sections_tabs_right_container {
  height: 100%;
}

.sections_tabs_right_container > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sections_tabs_left_container > h3 {
  font-weight: bold;
  font-size: 38px;
  text-align: left;
  line-height: 48px;
  margin-bottom: 64px;
}

.custom_tab_menu_item { 
  color: #3B3938;
  font-size: 15px;
  line-height: 30px;
  text-align: left;
  border: 2px solid #E1E1E1;
  margin: 5px 0;
  padding: 25px 20px;
  z-index: 10;
}

.a {
  transition: all 0.3s ease;
}

.custom_tab_menu_item:hover .link_tab > .link_tab_icon > .a  {
  fill: #878380;
  opacity: 0.6;
}

.custom_tab_menu_item {
  cursor: pointer;
}

.link_tab_icon {

}

.card .active {

}

.card {
  background-color: transparent;
}

.link_tab {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #3B3938;
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
}

.link_tab:hover{
  color: #3B3938;
  text-decoration: none;
}

.sections_tabs_container {
  position: relative;
  height: 1050px;
}

.active_card {
  background: rgb(59,73,87);
  background: linear-gradient(109deg, rgba(59,73,87,1) 0%, rgba(86,114,142,1) 92%);
}

.active_card > a:hover {
  color:var(--white);
}

.active_card >.tab_dropdown_content > .card-body > hr {
  background-color: #F39F2F;
  height: 2px;
}

.active_card > a {
  color: #fff;
}

.active_card > .tab_dropdown_content > .card-body > p {
  color: #fff;
}

.sections_tabs_left {
  left: 0;
  position: absolute;
  top: 80px;
  width: 60%;
  background-color: #F5F5F5;
  z-index: 2;
}

.sections_tabs_right {
  right: 0;
  position: absolute;
  width: 60%;
}

.faq_sub {
  color: #3B3938;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
  font-weight: bold;
}

.faq_item > p {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  margin: 15px 0;
}

.rotated_90 {
  transform: rotate(90deg);
}

.faq_item > h3 {
  color: #3B3938;
  font-size: 38px;
  text-align: left;
  line-height: 48px;
  display: inline-block;
  padding: 15px 15px 13px 0;
  background-image: linear-gradient(to right, var(--gold),var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 65px 6px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1110px) {
  .trade_item {
    width: 90%;
  }

  .sections_tabs_right {
    position: inherit;
    width: 100%;
  }

  .sections_tabs_left_container {
    max-width: unset;
  }

  .sections_tabs_container {
    position: inherit;
  }

  .sections_tabs_left {
    position: inherit;
    width: 100%;
  }

  .sections_tabs_container {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 770px) {
  .atut {
    border: none;
  }

  .outer_container > .right {
    display: none;
  }

  .projects_custom_text {
    flex-direction: column;
  }

  .projects_custom_text  > div > img {
    margin-bottom: 30px;
  }

}   

.active_card > a > svg {
  transform: rotate(90deg)!important;
}


/* 190625 */
.header-top2-right-tresc p:nth-child(2) a {
    color: var(--greyText);
}
.footer-adres p a {
    color: var(--grey2Text);
}
.contact-content .right .wrapper p span a {
    color: var(--white); 
}
section.home-about-partner {
    margin-bottom: 80px;
}

section.home-about-partner .logo-img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

section.home-about-partner .logo-img:hover {
  transform: scale(1.05);
}
.google-review{
    margin-top: 25px;
}
.google-review .ti-widget{
    text-align: unset !important;
}

@media (max-width: 1024px) {
	.home-about-us {
        margin-bottom: 40px;
    }
	section.home-about-partner {
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
  section.home-about-partner .logo-img {
    max-height: 60px;
    margin-bottom: 15px;
  }
}
