/*
Theme Name:   Kreotech
Description:  Write here a brief description about your child-theme
Author:       admin
Author URL:   https://iqon.kreotech.pl
Template:     blankslate
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  Kreotech
*/

/* Write here your own personal stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  overflow-x: hidden !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
}
.main {
  display: block;
  width: 100%;
  padding-top: 100px;
}
img{
  max-width: 100%;
  height: auto;
}
/*hamburger*/
#nav-icon1 {
  width: 45px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 12;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #d7b56d;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 15px;
}

#nav-icon1 span:nth-child(3) {
  top: 30px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/*hamburger*/
.header {
  width: 100%;
  padding: 0 20px;
  height: 100px;
  background-color: white;
  position: fixed;
  top: 0px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.nav {
  display: none;
}
.nav-mobile {
  position: absolute;
  right: -100%;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 11;
  transition: all 0.3s;
}
.nav-mobile.open {
  transform: translateX(-100%);
}
.nav-mobile__link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 43.91px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.logo {
  width: 95px;
}
img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 999px) {
  .header {
    padding: 0 40px;
  }
  #nav-icon1,
  .nav-mobile {
    display: none;
  }
  .nav {
    display: flex;
    width: auto;
    justify-content: space-between;
  }
  .nav__link {
    height: 14px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 20px;
  }
  .logo {
    width: 95px;
  }
}
.nav-link{
  position: relative;
}
.nav-link::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #d7b56d;
}
.nav-link-fade-up::before {
  width: 100%;
  bottom: -20px;
  opacity: 0;
}
.nav-link-fade-up:hover::before {
  bottom: -12px;
  opacity: 1;
}
.nav__link.active::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #d7b56d;
  width: 100%;
  bottom: 0;
  opacity: 1;
}
a{
    text-decoration: none;
}
.footer{
    margin-top: auto;
    color: #ffffff;
    background-color: black;
    padding: 40px 0;
}
@media(max-width: 1320px){
  .header {
    padding: 0 25px;
  }
  .nav__link {
    font-size: 13px;
    margin-left: 16px;
  }
}
.transparent-menu{
  background-color: transparent !important;
}
/*Homepage*/
/*Section iq-hero*/
.iq-hero {
  width: 100%;
  background: url('https://iqon.lukas.stronazen.pl/wp-content/uploads/2020/06/AdobeStock_204286931.png') no-repeat;
  background-position: right top;
  background-size: contain;
  height: 817px;
  margin-top: -100px;
} 
.iq-hero__wrap {
  max-width: 1610px;
  padding: 0 40px;
  padding-top: 300px;
  margin-left: auto;
  margin-right: auto;
} 
.iq-hero__h1 {
  color: #000000;
  font-size: 40px;
  font-weight: 400;
  line-height: 60px;
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: 27px;
} 
.iq-hero__h1::after{
  content: "";
  display: inline-flex;
  margin-top: 36px;
  width: 155px;
  height: 2px;
  background-color: #d7b56d;
}
.iq-hero__p {
  margin: 0;
  margin-bottom: 30px;
  color: #6c6c6c;
  font-size: 25px;
  font-weight: 300;
} 
.iq-hero__btn {
  padding: 20px 56px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #d7b56d;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
}
.iq-hero__btn:hover{
  color: #d7b56d;
  background-color: #ffffff;
  transition: all .4s;
}
@media(max-width: 1800px){
  .iq-hero {
    height: 700px;
  } 
  .iq-hero__wrap {
    padding-top: 220px;
  } 
}
@media(max-width: 1600px){
  .iq-hero {
    height: 600px;
  } 
  .iq-hero__wrap {
    padding-top: 190px;
  } 
}
@media(max-width: 1350px){
  .iq-hero {
    height: 550px;
  } 
  .iq-hero__wrap {
    padding-top: 190px;
  } 
}
@media(max-width: 1200px){
  .iq-hero {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  } 
  .iq-hero__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 600px;
    margin-left: 20px;
    margin-right: auto;
    background-color: rgba(229, 243, 251, 0.6);
  } 
  .iq-hero__h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .iq-hero__p {
    font-size: 26px;
  }
}
@media(max-width: 980px){
  .iq-hero {
    height: 600px;
    justify-content: flex-end;
  }
  .iq-hero__wrap {
    margin-left: 20px;
    margin-right: 20px;
  } 
  .iq-hero__h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .iq-hero__p {
    font-size: 24px;
  }
  .iq-hero__h1::after{
    margin-top: 20px;
  }
}
@media(max-width: 480px){
  
  .iq-hero {
    height: 500px;
    margin-top: 0px;
  }
  .iq-hero__wrap {
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  } 
  .iq-hero__h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .iq-hero__p {
    font-size: 22px;
  }
}
/*Section iq-icon*/
.iq-icon {
  width: 100%;
  background-color: #ffffff;
} 
.iq-icon__wrap {
  max-width: 1220px;
  padding: 100px 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
} 
.iq-icon__col {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} 
.iq-icon__img {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 130px;
} 
.iq-icon__h2 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center; 
  text-transform: uppercase;
} 
.iq-icon__h2::after{
  content: "";
  display: inline-flex;
  margin-top: 6px;
  width: 50px;
  height: 4px;
  background-color: #d7b56d;
}
.iq-icon__p {
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
} 

@media(max-width: 1200px){
  .iq-icon__col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media(max-width: 980px){
  .iq-icon__wrap {
    padding: 80px 20px;
  }
}
@media(max-width: 768px){
  .iq-icon__wrap {
    padding: 60px 20px;
    flex-direction: column;
    align-items: center;
  }
  .iq-icon__col{
    padding: 0;
  }
  .iq-icon__col:not(:last-child){
    margin-bottom: 40px;
  }
}
/*Section iq-text*/
.iq-text {
  width: 100%;
  margin: 100px 0;
  
} 
.iq-text--special{
  margin-top: 0;
}
.iq-text__wrap {
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.iq-text__wrap.reverse{
  flex-direction: row-reverse;
}
.iq-text__wrap.reverse .iq-text__content--big{
  max-width: 100%;
  padding-right: 30px;
  padding-left: 0;
}
.iq-text__col {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
} 
.iq-text__col--text-left{
  text-align: left;
}
.iq-text__img {} 
.iq-text__content{
  max-width: 400px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.iq-text__content--big{
  max-width: 540px;
  padding-left: 15px;
  padding-right: 15px;
}
.iq-text__h2 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  text-transform: uppercase;
} 
.iq-text__content--big .iq-text__h2{
  align-items: flex-start;
}
.iq-text__h2::after{
  content: "";
  display: inline-flex;
  margin-top: 6px;
  width: 50px;
  height: 4px;
  background-color: #d7b56d;
}
.iq-text__p {
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 40px;
}
.iq-text__btn {
  padding: 20px 56px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #d7b56d;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
}
.iq-text__btn:hover{
  color: #d7b56d;
  background-color: #ffffff;
  transition: all .4s;
}
.iq-text__img-full {} 

@media(max-width: 1200px){
  .iq-text{
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .iq-text__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media(max-width: 768px){
  .iq-text{
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .iq-text__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .iq-text__col {
    width: 100%;
  } 
  .iq-text__img {
    margin-bottom: 40px;
    max-width: 70%;
  }
  .iq-text__img-full {
    margin-top: 40px;
  } 
  .iq-text__wrap.reverse{
    flex-direction: column;
  }
  .iq-text__wrap.reverse .iq-text__content--big{
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media(max-width: 480px){
  .iq-text__img {
    margin-bottom: 40px;
    max-width: 100%;
  }
}
/*Section iq-home-blog*/
.iq-home-blog {
  width: 100%;
  padding: 100px 0;
  background-color: #d7b56d;
} 
.iq-home-blog__wrap {
  max-width:1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.iq-home-blog__wrap--center{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
.iq-home-blog__col {
  display: flex;
  flex-direction: column;
  width: 30%;
} 
.iq-home-blog__img {
  width: 100%;
  height: auto;
} 
.iq-home-blog__date{
  opacity: 0.5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 24px;
  margin-bottom: 17px;
}
.iq-home-blog__h2 {
  margin: 0;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
} 
.iq-home-blog__p p{
  margin: 0;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
} 
.iq-home-blog__btn {
  margin: 0;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  transition: all .4s;
}
.iq-home-blog__btn:hover{
  color:#E5F3FB;
  transition: all .4s;
}
.iq-home-blog__link {
  padding: 20px 56px;
  color: #d7b56d;
  font-size: 14px;
  font-weight: 400;
  background-color: #ffffff;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
}
.iq-home-blog__link:hover{
  color: #d7b56d;
  background-color: #E5F3FB;
  transition: all .4s;
}
@media(max-width: 1200px){
  .iq-home-blog{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .iq-home-blog__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media(max-width: 768px){
  .iq-home-blog__wrap {
    flex-direction: column;
  }
  .iq-home-blog__col{
    width: 100%;
  }
}
/*Section iq-client-slider*/
.iq-client-slider {
  width: 100%;
  padding: 100px 0;
} 
.iq-client-slider__h2 {
  color: #000000;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  text-align: center; 
} 
.iq-client-slider__h2::after{
  content: "";
  display: inline-flex;
  margin-top: 24px;
  width: 155px;
  height: 2px;
  background-color: #d7b56d;
}
.iq-client-slider__wrap {
  margin-top: 70px;
  max-width: 1220px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
} 
.iq-client-slider__img {
  align-self: center;
} 
.slick-prev{
  left: -20px !important;
  width: 50px !important;
  height: 50px !important;
} 
.slick-prev::before{
  content: "" !important;
  background: url('https://iqon.lukas.stronazen.pl/wp-content/uploads/2020/06/arrow-left.png') no-repeat;
  width: 50px !important;
  height: 50px !important;
  background-size: 50px 50px;
  display: inline-flex;
} 
.slick-next{
  right: -20px !important;
  width: 50px !important;
  height: 50px !important;
} 
.slick-next::before{
  content: "" !important;
  background: url('https://iqon.lukas.stronazen.pl/wp-content/uploads/2020/06/arrow-right.png') no-repeat;
  width: 50px !important;
  height: 50px !important;
  background-size: 50px 50px;
  display: inline-flex;
} 
.slick-list{
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.slick-slide div div{
  text-align: center;
  display: flex !important;
  justify-content: center !important;
  justify-content: center;
  height: 90px;
}
@media(max-width: 1200px){
  .iq-client-slider {
    padding: 120px 0;
  } 
  .iq-client-slider__wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media(max-width: 980px){
  .iq-client-slider {
    padding: 80px 0;
  } 
  .slick-prev{
    width: 28px !important;
    height: 28px !important;
    left: -20px !important;
  } 
  .slick-prev::before{
    content: "" !important;
    background: url('https://iqon.lukas.stronazen.pl/wp-content/uploads/2020/06/arrow-left.png') no-repeat;
    background-size: 28px 28px;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex;
  } 
  .slick-next{
    width: 28px !important;
    height: 28px !important;
    right: -20px !important;
  } 
  .slick-next::before{
    content: "" !important;
    background: url('https://iqon.lukas.stronazen.pl/wp-content/uploads/2020/06/arrow-right.png') no-repeat;
    width: 28px !important;
    height: 28px !important;
    background-size: 28px 28px;
    display: inline-flex;
  } 
  .slick-list{
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
}
@media(max-width: 768px){
  .iq-client-slider {
    padding: 60px 0;
  } 
}
/*Footer*/
.footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: black;
  padding: 60px 20px;
  padding-bottom: 40px;
}
.iq-footer__img {
  margin-bottom: 56px;
  max-width: 380px;
} 
.iq-footer__h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
} 
.iq-footer__wrap {
  margin: 30px auto;
  width: 400px;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
} 
.iq-footer__link {
  color: #f4f4f4;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 10px 0;
} 
.iq-footer__btn {
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}
@media(max-width: 1200px){
  .footer{
    padding: 60px 20px;
  }
  .iq-footer__img {
    margin-bottom: 36px;
  }
  .iq-footer__wrap {
    margin: 20px auto;
  }
}
@media(max-width: 450px){
  .iq-footer__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
  }
}
/*ABOUT US PAGE*/
/*Section iq-big-title*/
.iq-big-title {
  width: 100%;
  padding: 70px 0 140px 0;
  background-color: #e5f3fb;
} 
.iq-big-title__h1 {
  color: #000000;
  font-size: 35px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
} 
@media(max-width: 980px){
  .iq-big-title {
    padding: 60px 0 120px 0;
  }
  .iq-big-title__h1{
    font-size: 30px;
  }
}

/*Section iq-under-title*/
.iq-under-title {
  z-index: 2;
  width: calc(100% - 40px);
  margin: auto;
  margin-top: -70px;
} 
.iq-under-title__wrap {
  max-width: 1020px;
  padding: 60px 30px;
  box-shadow: 0 0 16px 3px rgba(95, 86, 82, 0.11);
  background-color: #ffffff;
  margin: auto;
} 
.iq-under-title__h1 {
  text-align: center;
  color: #000000;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 45px;
} 
.iq-under-title__h1 span{
  color: #d7b56d;
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  display: block;
}
.iq-under-title__p {
  text-align: center;
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
} 
.iq-under-title__p--small{
  max-width: 945px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.iq-under-title__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
} 
.iq-under-title__col {
  width: 45%;
} 
.iq-under-title__img {
  margin-left: auto;
  margin-right: auto;
} 
.iq-under-title__col--under-title-left {} 
.iq-under-title__h2 {
  color: #000000;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 30px;
} 
.iq-under-title__h2::after{
  content: "";
  display: inline-flex;
  margin-top: 24px;
  width: 155px;
  height: 2px;
  background-color: #d7b56d;
}
.iq-under-title__p--dots{
  text-align: left;
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 33px;
  display: flex;
  align-items: center;
  width: 100%;
}
.iq-under-title__p--dots::before{
  content:"";
  display: inline-flex;
  width: 10px;
  height: 10px;
  background-color:#d7b56d;
  border-radius: 50%;
  margin-right: 20px;
}

@media(max-width: 980px){
  .iq-under-title {
    margin-top: -60px;
  }
  .iq-under-title__p--small{
    margin-bottom: 40px;
  }
}
@media(max-width: 768px){
  .iq-under-title__wrap {
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 15px;
  }
  .iq-under-title__row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 
  .iq-under-title__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 
  .iq-under-title__img {
    max-width: 80%;
    margin-bottom: 30px;
  }
}
/*Section iq-steps*/
.iq-steps {
  width: 100%;
  background-color:#e5f3fb;
  padding: 100px 0;
} 
.iq-steps__wrap {
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
} 
.iq-steps__h2 {
  color: #000000;
  font-size: 25px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 30px;
} 
.iq-steps__col {
  max-width: 490px;
  width: 32%;
  padding-top: 30px;
} 
.iq-steps__col:not(:last-child){
  margin-right: 20px;
}
.iq-steps__img {
  margin-bottom: 30px;
} 
.iq-steps__p {
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
} 
.iq-steps__p span{
  font-weight: 700;
}

@media(max-width: 980px){
  .iq-steps {
    padding: 80px 0 80px 0;
  } 
}
@media(max-width: 768px){
  .iq-steps {
    padding: 60px 0;
  } 
  .iq-steps__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .iq-steps__col {
    max-width: 490px;
    width: 100%;
  } 
  .iq-steps__col:not(:last-child){
    margin-right: 0px;
  }
}
.iq-people {
  width: 100%;
  margin: 100px 0;
} 
.iq-people__wrap {
  max-width: 1220px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
} 
.iq-people__img {} 
.iq-people__h2 {
  color: #d7b56d;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 50px;
  text-align: center;
} 
.iq-people__btn {
  padding: 20px 56px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #d7b56d;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
}
.iq-people__btn:hover{
  color: #d7b56d;
  background-color: #ffffff;
  transition: all .4s;
} 
@media(max-width: 980px){
  .iq-people {
    margin: 50px 0 50px 0;
  }
}
/*Section iq-circle*/
.iq-circle {
  width: 100%;
  margin: 100px 0;
} 
.iq-circle__wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  height: 333px;
} 
.iq-circle__wrap--last {
  justify-content: center;
} 
.iq-circle__item {
  width: 309px;
  height: 309px;
  border-radius: 50%;
  background-color: #e5f3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  transition: all .4s;
} 
.iq-circle__item:hover{
  background-color: #008dd4; 
  color: white;
  box-shadow: 0 0 16px 3px rgba(95, 86, 82, 0.31);
}
.iq-circle__item--1 {
  transform: translateY(160px);
} 
.iq-circle__item--3 {
  transform: translateY(160px);
} 
.iq-circle__item--4 {
  background-color: #008dd4; 
} 
.iq-circle__item--5 {
  transform: translateY(-160px);
} 
.iq-circle__item--7 {
  transform: translateY(-160px);
} 
@media(max-width: 1050px){
  .iq-circle {
    margin: 90px 0;
  } 
  .iq-circle__wrap {
    max-width: 750px;
    height: 250px;
  }
  .iq-circle__item {
    width: 230px;
    height: 230px;
    font-size: 15px;
    line-height: 20px;
  } 
  .iq-circle__item--1 {
    transform: translateY(100px);
  } 
  .iq-circle__item--3 {
    transform: translateY(100px);
  } 
  .iq-circle__item--5 {
    transform: translateY(-100px);
  } 
  .iq-circle__item--7 {
    transform: translateY(-100px);
  } 
}
@media(max-width: 768px){
  .iq-circle {
    margin:50px 0;
  } 
  .iq-circle__wrap {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .iq-circle__item{
    width: 300px;
    height: 300px;
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .iq-circle__item--1 {
    transform: translateY(0px);
  } 
  .iq-circle__item--3 {
    transform: translateY(0px);
  } 
  .iq-circle__item--5 {
    transform: translateY(-0px);
  } 
  .iq-circle__item--7 {
    transform: translateY(-0px);
  } 
}
/*Section iq-blue*/
.iq-blue {
  width: 100%;
  padding: 100px 0;
  background-color: #d7b56d;
} 
.iq-blue__wrap {
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} 
.iq-blue__p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 40px;
  text-align: center;
} 
.iq-blue__btn {
  padding: 20px 56px;
  color: #d7b56d;
  font-size: 14px;
  font-weight: 400;
  background-color: #ffffff;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
}
.iq-blue__btn:hover{
  color: #ffffff;
  background-color: #000000;
  transition: all .4s;
}
@media(max-width: 980px){
  .iq-blue {
    padding: 60px 0;
  }
  .iq-blue__p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}
/*Section iq-small-title */
.iq-small-title{
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #e5f3fb;
}
.iq-small-title__h1{
  color: #000000;
  font-size: 35px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
}
@media(max-width: 980px){
  .iq-small-title{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .iq-small-title__h1{
    font-size: 30px;
  }
}
/*iq-blog*/
.iq-blog {
  width: 100%;
  margin: 100px 0;
} 
.iq-blog__wrap {
  max-width: 1220px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
} 
.iq-blog__item {
  display: flex;
  align-items: center;
} 
.iq-blog__item:not(:last-child){
  margin-bottom: 50px;
}
.iq-blog__img-col {
  width: 550px;
  padding-right: 100px;
} 
.iq-blog__text-col {
  width: calc(100% - 550px);
} 
.iq-blog__date {
  opacity: 0.5;
  color: #222121;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 19px;
} 
.iq-blog__h2 {
  margin: 0;
  margin-bottom: 22px;
  color: #222121;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
} 
.iq-blog__p p{
  color: #5d5d5d;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
  margin-bottom: 22px;
} 
.iq-blog__btn {
  color: #008dd4;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
} 
@media(max-width: 1200px){
  .iq-blog {
    margin: 100px 0;
  } 
  .iq-blog__wrap {
    padding: 0 20px;
  }
  .iq-blog__img-col {
    width: 450px;
    padding-right: 40px;
  }
  .iq-blog__text-col {
    width: calc(100% - 450px);
  }
}
@media(max-width: 980px){
  .iq-blog {
    margin: 80px 0;
  } 
  .iq-blog__img-col {
    width: 350px;
    padding-right: 30px;
  }
  .iq-blog__text-col {
    width: calc(100% - 350px);
  }
}
@media(max-width: 768px){
  .iq-blog__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .iq-blog {
    margin: 60px 0;
  } 
  .iq-blog__img-col {
    width: 100%;
    max-width: 350px;
    padding-right: 0px;
  }
  .iq-blog__text-col {
    width: 100%;
    margin-top: 20px;
  }
  .iq-blog__item:not(:last-child){
    margin-bottom: 40px;
  }
}
/*Section iq-form*/
.iq-form {
  width: 100%;
  margin-top: -70px;
  z-index: 2;
  position: relative;
} 
.iq-form__wrap {
  max-width: 1020px;
  padding: 80px 40px;
  box-shadow: 0 0 16px 3px rgba(95, 86, 82, 0.11);
  background-color: #ffffff;
  margin: auto;
} 
.iq-form__wrap {} 
.iq-form__h2 {
  color: #000000;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  text-align: center; 
} 
.iq-form__h2::after{
  content: "";
  display: inline-flex;
  margin-top: 24px;
  width: 155px;
  height: 2px;
  background-color: #d7b56d;
} 
.iq-form__p {
  width: 100%;
  max-width: 521px;
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
} 
.iq-form__input{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.iq-form__input .wpcf7-form-control-wrap{
  width: calc(50% - 10px);
  margin-bottom: 10px;
}
.iq-form__input .wpcf7-form-control{
  height: 48px;
  border: 1px solid #acacac;
  width: 100%;
  padding-left: 10px;
  font-family: 'Montserrat', sans-serif;
}
.iq-form__textarea{
  width: 100%;
  margin-bottom: 30px;
}
.iq-form__textarea .wpcf7-form-control-wrap{
  width: 100%;
}
.iq-form__textarea  .wpcf7-textarea{
  width: 100%;
  border: 1px solid #acacac;
  padding-left: 10px;
  padding-top: 10px;
  font-family: 'Montserrat', sans-serif;
}
.iq-form__btn{
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.iq-form__btn .wpcf7-submit {
  padding: 20px 56px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #d7b56d;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
  cursor: pointer;
}
.iq-form__btn .wpcf7-submit:hover{
  color: #d7b56d;
  background-color: #ffffff;
  transition: all .4s;
}
@media(max-width: 1570px){
  .iq-form__wrap {
    padding: 80px 30px;
  }
}
@media(max-width: 980px){
  .iq-form {
    margin-top: -60px;
  }
}
@media(max-width: 768px){
  .iq-form__wrap {
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 15px;
  }
}
/*Section documents*/
.iq-document {
  width: 100%;
  margin-top: -70px;
  z-index: 2;
  position: relative;
} 
.iq-document__wrap {
  max-width: 1020px;
  padding: 80px 40px;
  box-shadow: 0 0 16px 3px rgba(95, 86, 82, 0.11);
  background-color: #ffffff;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} 
.iq-document__col {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:50px 20px;
} 
.iq-document__img {
  margin-bottom: 20px;
} 
.iq-document__p {
  margin-bottom: 30px;
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
} 
.iq-document__btn {
  padding: 20px 56px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #d7b56d;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #d7b56d;
  transition: all .4s;
}
.iq-document__btn:hover{
  color: #d7b56d;
  background-color: #ffffff;
  transition: all .4s;
}
@media(max-width: 1570px){
  .iq-document__wrap {
    padding: 80px 30px;
  }
}
@media(max-width: 980px){
  .iq-document {
    margin-top: -60px;
  }
}
@media(max-width: 768px){
  .iq-document__wrap {
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 15px;
  }
  .iq-document__col {
    width: 100%;
    padding: 25px 10px;
  }
}
/*Section iq-background*/
.iq-background{
  width: 100%;
  margin-top: -100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: -1;
  position: relative;
}
.iq-background img{
  max-width: 300px;
}
@media(max-width: 980px){
  .iq-background{
    width: 70%;
    margin-top: 50px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/*Section iq-contact*/
.iq-contact {
  width: 100%;
  margin-top: -100px;
  z-index: 2;
  position: relative;
} 
.iq-contact__wrap {
  max-width: 1020px;
  padding: 70px 40px;
  box-shadow: 0 0 16px 3px rgba(95, 86, 82, 0.11);
  background-color: #ffffff;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
} 
.iq-contact__col {
  width: 50%;
} 
.iq-contact__col-text{
  padding-left: 30px; 
}
.iq-contact__h2 {
  color: #000000;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
} 
.iq-contact__h2::after{
  content: "";
  display: inline-flex;
  margin-top: 24px;
  width: 155px;
  height: 2px;
  background-color: #d7b56d;
}
.iq-contact__link-wrap {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
} 
.iq-contact__link {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #222222;
} 
.iq-contact__p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #222222;
} 
.iq-contact__p span{
  font-weight: 500;
}
@media(max-width: 1570px){
  .iq-contact__wrap {
    padding: 80px 30px;
  }
}
@media(max-width: 980px){
  .iq-contact {
    margin-top: -60px;
  }
  .iq-contact__col {
    width: 100%;
    padding: 25px 10px;
  }
}
@media(max-width: 768px){
  .iq-contact__wrap {
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 15px;
  }
}
/*Section iq-single-post*/
.iq-single-content{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-bottom: 80px;
}
.iq-single-content .author {
  display: none;
}
.iq-single-content .entry-title{
  display: none;
}
.iq-single-content .post-edit-link{
  display: none;
}
.iq-single-content .meta-sep{
  display: none;
}
.iq-single-content .entry-footer{
  display: none;
}
.iq-single-content header{
  margin-bottom: 30px;
}
.iq-single-content .attachment-post-thumbnail{
  margin-bottom: 30px;
}
.iq-single-content p{
  color: #222222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}
/*Separator*/
.separator{
  width: 100%;
  text-align: center;
  background-color: black;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 100px;
  z-index: 999;
  position: relative;
}

/*nowe*/
.de-hero {
  position: relative;
  background: url('https://dentesmielec.pl/wp-content/uploads/2020/07/2-layers.jpg') no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding-bottom: 76px;
} 
.de-hero__img{
  width: 60%;
}
.de-hero__text {
  display: flex;
  width: 40%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} 
.de-hero__h1 {
  color: #000000;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
} 
.de-hero__p-special {
  color: #ffffff;
  font-size: 41px;
  font-weight: 400;
  padding: 15px 24px;
  margin-top: 12px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: #1451ae;
  text-align: center;
} 
.de-hero__p {
  color: #666666;
  font-size: 30px;
  font-weight: 300;
  margin-top: 15px;
} 
.de-hero__a {
  margin-top: 29px;
  border: 5px solid #1451ae;
  padding: 12px 50px;
  color: #1250af;
  font-size: 14px;
  font-weight: 700;
  border-radius: 21px;
  display: inline-flex;
  transition: all .4s;
} 
.de-hero__a:hover {
  transition: all .4s;
  color: #ffffff;
  background-color: #1250af;;
}
@media(max-width: 1200px){
  .de-hero__img{
    width: 50%;
  }
  .de-hero__text {
    display: flex;
    width: 50%;
  } 
  .de-hero__h1 {
    color: #000000;
    font-size: 25px;
    font-weight: 400;
    line-height: 34px;
  } 
  .de-hero__p-special {
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
    padding: 10px 15px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #1451ae;
    text-align: center;
  } 
  .de-hero__p {
    color: #666666;
    font-size: 20px;
    font-weight: 300;
  } 
  .de-hero__a {
    margin-top: 20px;
    border: 5px solid #1451ae;
    padding: 9px 30px;
    color: #1250af;
    font-size: 13px;
    font-weight: 700;
    border-radius: 21px;
    display: inline-flex;
    transition: all .4s;
  }
}
@media(max-width: 768px){
  .de-hero{
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
  .de-hero__img{
    width: 100%;
    margin-bottom: 40px;
  }
  .de-hero__text {
    display: flex;
    width: 100%;
  }
}

/*De hero*/
.pe-hero {
  position: relative;
  background: #f4f4f4;
  background-size: cover;
  display: flex;
  justify-content: space-between;
} 
.pe-hero__img{
  width: 60%;
}
.pe-hero__text {
  display: flex;
  width: 40%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} 
.pe-hero__h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: #59655f;
} 
.pe-hero__h1 span{
  color: #b2cc18;
}

.pe-hero__p {
  color: #59655f;
  font-size: 18px;
  font-weight: 300;
  margin-top: 20px;
  line-height: 24px;
} 
.pe-hero__a{
  padding: 12px 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #b2cc18;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #b2cc18;
  transition: all .4s;
  margin-top: 24px;
}
.pe-hero__a:hover{
  color: #b2cc18;
  background-color: #ffffff;
  transition: all .4s;
}
.pe-hero__a--2{
  padding: 12px 50px;
  color: #b2cc18;
  font-size: 14px;
  font-weight: 400;
  background-color: #ffffff;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  transition: all .4s;
  margin-top: 24px;
}
.pe-hero__a--2:hover{
  color: #111111;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  transition: all .4s;
}
.pe-hero.green .pe-hero__p{
  color: #ffffff;
}
.pe-hero.green .pe-hero__h2{
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 20px;
  margin-left: 20px;
}
.pe-hero__h2--no-margin{
  margin-bottom: 0 !important; 
}
.pe-hero__img--mobile{
  display: none;
}
@media(max-width: 1200px){
  .pe-hero__img{
    width: 50%;
  }
  .pe-hero__text {
    display: flex;
    width: 50%;
  } 
  .pe-hero__h1 {
    color: #000000;
    font-size: 25px;
    font-weight: 400;
    line-height: 34px;
  } 
  .pe-hero__p {
    color: #666666;
    font-size: 20px;
    font-weight: 300;
  } 
  .pe-hero.green .pe-hero__p{
    font-size: 15px;
  }
  .pe-hero.green .pe-hero__h2{
    font-size: 24px;
    line-height: 30px;
  }
}
@media(max-width: 980px){
  .pe-hero{
    flex-direction: column-reverse;
    padding-bottom: 0px;
  }
  .pe-hero__img{
    width: 100%;
    margin-bottom: 40px;
  }
  .pe-hero__text {
    display: flex;
    width: 100%;
    padding: 40px 20px;
  }
  .pe-hero__img{
    display: none;
  }
  .pe-hero__img--mobile{
    display: block;
  }
}
.green{
  background: #b2cc18;
}
/*pe icon*/
.pe-icon{
  background: url('https://resfinance.kreotech.pl/wp-content/uploads/2020/07/Kształt_1.png') no-repeat;
  background-position: bottom left;
  padding: 100px 0;
  padding-bottom: 0;
}
.pe-icon__top {
  text-align: center;
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
} 
.pe-icon__h2 {
  color: #2b2a2a;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
} 
.pe-icon__p {
  color: #2b2a2a;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
} 
.pe-icon__bottom {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
} 
.pe-icon__col {
  width: 50%;
  padding-bottom: 100px;
  display: flex;
  align-items: flex-start;
} 
.pe-icon__col img{
  align-self: flex-start;
}
.pe-icon__text {
  padding-left: 40px;
  max-width: 360px;
} 
.pe-icon__h3 {
  color: #222121;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
} 
.pe-icon__p--smal {
  color: #5d5d5d;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
} 
.right-back{
  background: url('https://resfinance.kreotech.pl/wp-content/uploads/2020/07/Kształt_1_kopia.jpg') no-repeat;
  background-position: right top;
  margin-top: 0;
  padding-top: 100px;
}
@media (max-width: 980px){
  .pe-icon__col {
    width: 100%;
    padding-bottom: 60px;
    align-items: center;
    justify-content: center;
  }
  .pe-icon , .left-back{
    background-size: 60%;
  }
  .right-back{
    background-size: 60%;
    margin-top: 0;
    padding-top: 50px;
  }
}
@media (max-width: 480px){
  .pe-icon__col img{
    width: 55px;
  }
  .iq-footer__img{
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .pe-icon__text {
    width: calc(100% - 55px);
  } 
}
.pe-icon__col--special{
  margin-right: auto;
  margin-left: auto;
}
/*de location*/
/*Location*/
.de-location{
  max-width: 1320px;
  padding: 100px 20px;
  margin-left: auto;
  margin-right: auto;
}
.de-location__h2 {
  color: #1a1a1a;
} 
.de-location__wrap {
  display: flex;
  justify-content: space-between;
} 
.de-location__col {
  width: 31%;
} 
.de-location__col img{
  margin-bottom: 50px;
}
.de-location__p{
  color: #1a1a1a;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
.de-location__h2--bold{
  font-weight: bold;
}
.de-location__p a, .de-location__p a:hover{
  text-decoration: none;
  color: #1a1a1a;
}
@media(max-width: 768px){
  .de-location{
    padding: 50px 20px;
  }
  .de-location__wrap {
    flex-direction: column;
  } 
  .de-location__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .de-location__col:not(:last-child){
    margin-bottom: 40px;
  }
  .de-location__col img{
    margin-bottom: 25px;
  }
}
/*w-hero*/
.w-hero{
  margin-top: -100px;
  width: 100%;
  position: relative;
}
.w-hero img{
  width: 100%;
  max-width: 100%;
  height: auto;
}
.w-hero__text {
  position: absolute;
  max-width: 500px;
  left: 20%;
  display: block;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
} 
.w-hero__h1 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 45px;
} 
.w-hero__h1 span{
  color: #ffffff;
  font-size: 24px;
  line-height: 24px;
  font-weight: 300;
  padding: 16px 20px;
  background-color: #d7b56d;
  display: inline-flex;
  margin-top: 15px;
  margin-bottom: 18px;
  width: auto;
  flex: 1 0 auto; 
}
.w-hero__p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
} 
.w-hero__btn {
  border-radius: 18px;
  background-color: #ffffff;
  color: #000000;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  display: inline-flex;
  transition: all .3s;
} 
.w-hero__btn:hover{
  color: #ffffff;
  background-color: #d7b56d;
}
@media(max-width: 980px){
  .w-hero__text {
    position: absolute;
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    left: 50%;
    display: block;
    flex-direction: column;
    top: initial;
    bottom: 10%;
    transform: translateX(-50%); 
    text-align: center;
  } 
}
@media(max-width: 900px){
  .w-hero{
    margin: 0;
  }
  .w-hero__h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
  } 
  .w-hero__h1 span{
    font-size: 20px;
    line-height: 20px;
    padding: 12px 15px;
    background-color: #000000;
    display: inline-flex;
    margin-top: 12px;
    margin-bottom: 15px;
  }
  .w-hero__p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
  } 
}
@media(max-width: 550px){
  .w-hero__text {
    position: static;
    transform: translate(0);
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .w-hero__h1 {
    color: #000000;
  } 
  
  .w-hero__p {
    color: #000000;
  }
  .w-hero__btn{
    color: #ffffff;
    background-color: #d7b56d;
  }
}
/*w-testimonials*/
.w-testimonials {
  padding: 100px 0;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
} 
.w-tes{
  background: #f2f2f2;
}
.w-testimonials__head {
  text-align: center;
  width: 38%;
} 
.w-testimonials__h2 {
  color: #181818;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
} 
.w-testimonials__p {
  color: #181818;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
} 
.w-testimonials__text {
  width: 62%;
} 
.w-testimonials__opinion {
  color: #181818;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
} 
.w-testimonials__author {
  color: #181818;
  font-size: 19px;
  font-weight: 700;
  margin-top: 30px;
  text-transform: uppercase;
} 
@media(max-width: 980px){
  .w-testimonials {
    padding: 40px 20px;
    flex-direction: column;
  } 
  .w-testimonials__head {
    width: 100%;
    margin-bottom: 50px;
  } 
  .w-testimonials__h2 {
    font-size: 20px;
  } 
  .w-testimonials__text {
    width: 100%;
  } 
  .w-testimonials__author {
    font-size: 17px;
    margin-top: 20px;
  } 
}
.w-testimonials .slick-prev{
  left: -20px !important;
  width: 50px !important;
  height: 50px !important;
} 
.w-testimonials .slick-prev::before{
  content: "" !important;
  background: url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/left.png') no-repeat;
  width: 50px !important;
  height: 50px !important;
  background-size: 50px 50px;
  display: inline-flex;
} 
.w-testimonials .slick-next{
  right: -20px !important;
  width: 50px !important;
  height: 50px !important;
} 
.w-testimonials .slick-next::before{
  content: "" !important;
  background: url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/right.png') no-repeat;
  width: 50px !important;
  height: 50px !important;
  background-size: 50px 50px;
  display: inline-flex;
} 
.w-testimonials .slick-list{
  margin-left: 50px !important;
  margin-right: 50px !important;
}
@media(max-width: 980px){
  .w-testimonials .slick-prev{
    width: 28px !important;
    height: 28px !important;
    left: -20px !important;
  } 
  .w-testimonials .slick-prev::before{
    content: "" !important;
    background: url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/left.png') no-repeat;
    background-size: 28px 28px;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex;
  } 
  .w-testimonials .slick-next{
    width: 28px !important;
    height: 28px !important;
    right: -20px !important;
  } 
  .w-testimonials .slick-next::before{
    content: "" !important;
    background: url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/right.png') no-repeat;
    width: 28px !important;
    height: 28px !important;
    background-size: 28px 28px;
    display: inline-flex;
  } 
  .w-testimonials .slick-list{
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
}
.w-testimonials .slick-prev.slick-arrow{
  left: -40% !important;
}
.w-testimonials .slick-next.slick-arrow{
  left: -30% !important;
}
@media(max-width: 980px){
  .w-testimonials .wolowina{
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .w-testimonials .slick-prev.slick-arrow{
    left: 40% !important;
    top:-30px;
  }
  .w-testimonials .slick-next.slick-arrow{
    right: 40% !important;
    left: unset !important;
    top: -30px
  }
}
.w-testimonials .slick-slide div div{
  height: auto;
  display: flex;
  flex-direction: column;
}
/*w-us*/
.w-us {
  background: #ece6b6 url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/wolowina-i-chmiel-13.jpg') no-repeat;
  background-position: top left;
  padding-top: 100px;
} 
.w-us__h2 {
  color: #181818;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
} 
.w-us__p {
  color: #181818;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 40px;
} 
.w-us__wrap {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-end;
} 
.w-us__col {
  width: 50%;
}
.w-us__col--1{
  text-align: right;
}
.w-us__col--1 img{
  vertical-align: bottom;
}
.w-us__col--2{
  padding-left: 30px;
} 

.w-us__text img{
  align-self: flex-start;
  width: 80px;
  height: 80px;
} 
.w-us__text-wrap {
  margin-left: 32px;
} 
.w-us__text {
  display: flex;
  align-items: center;
  margin-top: 20px;
} 
.w-us__text--1 {
  margin-right: 100px;
} 
.w-us__text--2 {
  margin-left: 50px;
  margin-right: 50px;
} 
.w-us__text--3 {
  margin-bottom: 100px;
  margin-left: 100px;
} 

.w-us__h3{
  color: #181818;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.w-us__p--special{
  padding-left: 20px;
  padding-right: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media(max-width: 1200px){
  .w-us__text--3 {
    margin-bottom: 50px;
  } 
}
@media(max-width: 980px){
  .w-us {
    padding-top: 40px;
  } 
  .w-us__h2 {
    font-size: 20px;
  }  
  .w-us__wrap {
    flex-direction: column-reverse;
  } 
  .w-us__col--1{
    text-align: center;
    width: 100%;
  }
  .w-us__col--2{
    width: 100%;
  }
  .w-us__text--3 {
    margin-bottom: 10px;
  }
  .w-us__col--2{
    padding-left: 0;
  }
}
@media(max-width: 600px){
  .w-us__text--1 {
    margin-right: 40px;
  } 
  .w-us__text--2 {
    margin-left: 20px;
    margin-right: 20px;
  } 
  .w-us__text--3 {
    margin-left: 40px;
  } 
  .w-us__text img{
    width: 40px;
    height: 40px;
  } 
  .w-us__text-wrap {
    margin-left: 15px;
  } 
}
@media (max-width: 767px) {
  .laptop[data-aos] { display: none }
}

@media (min-width: 768px) {
  .mobile[data-aos] { display: none }
}
/*About us*/
.w-about {
  padding: 100px 20px;
  background: url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/wolowina-i-chmiel-12.jpg') no-repeat;
  background-position: right bottom;
} 
.w-about__wrap {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.w-about__col {
  width: 30%;
} 
.w-about__h2 {
  color: #181818;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
} 
.w-about__p {
  color: #181818;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
} 
.nav-mobile a{
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
}
.w-about__btn {
  border-radius: 18px;
  color: #ffffff;
  background-color: #d7b56d;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  display: inline-flex;
  transition: all .3s;
  margin-top: 30px;
} 
.w-about__btn:hover{
  color: #ffffff;
  background-color: #000000;
}
.w-about__btn2 {
  border-radius: 18px;
  color: #000000;
  background-color: #ece6b6;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  display: inline-flex;
  transition: all .3s;
  margin-top: 30px;
} 
.w-about__btn2:hover{
  color: #ffffff;
  background-color: #000000;
}

.col-back {
  background: url('https://wolowina.kreotech.pl/wp-content/uploads/2020/07/Kształt_1.png') no-repeat;
  background-position: 35px 0px;
} 
.w-about__text {
  display: flex;
  margin-bottom: 30px;
} 
.w-about__h3{
  color: #181818;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.w-about__text img{
  width: 70px;
  height: 70px;
  margin-right: 26px;
}
.w-about__wrap2{
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.w-about__wrap2  .text-center{
  text-align: center;
}
.w-about__wrap2{
  text-align: center;
  margin-top: 80px;
}
@media(max-width: 1150px){
  .w-about__text{
    margin-bottom: 20px;
  }
}
@media(max-width: 980px){
  .w-about__text{
    margin-bottom: 50px;
  }
  .w-about{
    padding: 40px 20px;
  }
  .w-about__wrap{
    flex-direction: column;
  }
  .w-about__col{
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .w-about__wrap2{
    margin-top: 0;
  }
}
@media(max-width: 600px){
  .w-about__text{
    margin-bottom: 30px;
  }
  .col-back{
    background: transparent;
  }
  .w-about__text{
    flex-direction: column;
    align-items: center;
  }
  .w-about__text img{
    margin-bottom: 20px;
  }
  .w-about__h3{
    font-size: 17px;
  }
}
.r-back{
  background: url('https://weldingcrew.pl/wp-content/uploads/2020/09/img1dd.jpg') no-repeat;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
}
.r-back__wrap{
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 50px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 13px 3px rgba(0, 0, 0, 0.21), inset 0 0 21px rgba(0, 0, 0, 0.53);
}
.r-back__wrap .iq-icon__p{
  margin-bottom: 30px;
}
.r-back__logo{
  max-width: 120px;
  margin-bottom: 30px;
}
@media(max-width: 980px){
  .r-back{
    padding: 50px 0;
  }
  .r-back__wrap{
    padding: 20px 15px;
    margin-left: 10px;
    margin-right: 10px;
    
  }
}
.slick-arrow{
  top: 65% !important;
}
.iq-text__h2--gallery{
  text-align: center;
  margin-bottom: 40px;
}
.iq-text__btn--wrap{
  margin: 40px auto;
  display: flex;
  justify-content: center;
}
.iq-text__wrap-gallery, .foogallery {
  width: 100%;
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
} 
.r-top-back{
  width: 100%;
  position: relative;
}
.r-top-back img{
  width: 100%;
  height: auto;
}
.r-top-back__wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.r-top-back h1{
  font-size: 45px;
  font-weight: 700;
  color:white;
  width: 100%;
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
@media(max-width: 980px){
  .r-top-back{
    background-size: contain;
    height: auto;
  }
  .r-top-back h1{
    font-size: 25px;
  }
}
.foogallery.fg-border-thin .fg-item-inner {
  border-width: 0 !important;
  border: none !important;
}
.iq-contact2{
  margin: 70px auto;
}
.iq-contact2 .iq-text__h2, .iq-text__full{
  width: 100%;
}
.contact-form{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.iq-contact__col--margin{
  margin-bottom: 30px;
}
.iq-contact__col--margin-small{
  margin-bottom: 20px;
}
div.wpcf7 .ajax-loader{
  display: none;
}
.pe-icon{
  padding-top: 0 !important;
}
.pe-icon img{
  width: 120px;
  height: 120px;
}
.foogallery-album-header p a::before{
  content:"<< Powrót do realizacji";
  display: inline-flex;
  font-size: 16px !important;
  font-weight: bold;
  color: black;
  transition: all .3s;
}
.foogallery-album-header p a{
  font-size: 0;
  margin-bottom: 30px;
}
.foogallery-album-header h2{
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.foogallery-album-header{
  display: flex;
  flex-direction: column-reverse;
}
.foogallery-album-header{
  margin-bottom: 35px;
}
.foogallery-album-header p a:hover::before{
  color: #d7b56d !important;
}
.foogallery-album-header p {
  text-align: center;
}
.foogallery-album-gallery-list  .foogallery-pile .foogallery-pile-inner h3{
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px !important;
}
.foogallery-album-gallery-list  .foogallery-pile .foogallery-pile-inner h3{
  background: rgba(215, 181, 109, .8) !important;
  opacity: 1 !important;
  padding: 10px 5px;
}
.foogallery-album-gallery-list  .foogallery-pile .foogallery-pile-inner h3 span{
  display: none;
}
.foogallery-album-gallery-list  .foogallery-pile::before,
.foogallery-album-gallery-list  .foogallery-pile::after{
  display: none;
}
.foogallery-album-gallery-list  .foogallery-pile .foogallery-pile-inner {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.foogallery-album-gallery-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}
body .foogallery-album-gallery-list .foogallery-pile{
  margin: 0 !important;
}
@media(max-width: 768px){
  .foogallery-album-gallery-list{
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}
@media(max-width: 480px){
  .foogallery-album-gallery-list{
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}
.iq-text__wrap-gallery{
  z-index: 0;
  position: relative;
}
.nav-mobile a{
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media(max-width: 480px){
  .pe-icon__col{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .pe-icon__col img{
    margin-bottom: 25px;
    align-self: center;
  }
  .pe-icon__text{
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
  .pe-icon__text .pe-icon__h3,
  .pe-icon__text .pe-icon__p--smal{
    text-align: center;
  }
  .foogallery-album-gallery-list .foogallery-pile .foogallery-pile-inner h3{
    font-size: 11px;
  }
  .iq-text__h2{
    font-size: 20px;
    text-align: center;
  }
}
@media(max-width: 980px){
  .iq-contact__wrap .iq-text__h2 {
    order: -1;
  }
  .iq-contact__col--margin{
    margin-bottom: 0;
  }
  .iq-contact__link-wrap {
    margin: 0;
  }
}
.iq-contact__col.iq-contact__col--full{
  width: 100% !important; 
}
.max-650 .iq-blue__p{
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}