
:root {
  --white-color:                  #ffffff;
  --grey-color:                   #F5F5F5;
  --secondary-color:              #808080;
  --green-dark-color:             #197167;
  --dark-color:                   #000000;
  --p-color:                      #515252;
  --border-color:                 #003BB0;
  --featured-border-color:        #EBEBEB;
  --grey-dark-color:              #869791;
    --green-color:                #03B145;
    --red-color:                  #ff565b;

  --body-font-family:             'Poppins', sans-serif;

  --h1-font-size:                 60px;
  --h2-font-size:                 40px;
  --h3-font-size:                 30px;
  --h4-font-size:                 25px;
  --h5-font-size:                 18px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               12px; 
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           200;
  --font-weight-medium:           300;
  --font-weight-bold:             600;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



body {
    font-family: var(--body-font-family);
    background-color: var(--green-dark-color);
    overflow-x: hidden;
    
   
}
main {
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
.center {
    text-align: center;
}

h4,
h5,
h6 {
  color: var(--dark-color);
}
h3 {
    
    color: var(--white-color);
}

h1,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
    color: var(--dark-color);
    text-align: left;
    display: block;
    margin: 0 auto;
    line-height: 60px;
    font-weight: 700;
    
    
}
em {
    font-style: normal;
    color: #ff565b;
    overflow: hidden;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--white-color);
    text-align: center;
    font-weight: 600;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  
  font-size: var(--p-font-size);
    
  font-weight: var(--font-weight-normal);
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul li {
  color: var(--secondary-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--yellow-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-padding-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-padding-3 {
  padding-top: 60px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-small);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--green-dark-color);
}

.spinner {
  border: 5px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 5px solid var(--green-dark-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

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

@keyframes spinner {
  to {transform: rotate(360deg);}
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--yellow-color);
  border-radius: var(--border-radius-small);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 49px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--yellow-color);
  color: var(--dark-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--red-color);
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  padding: 12px 24px;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.custom-btn:hover {
  background: var(--grey-dark-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.3);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
	background-color: var(--yellow-color);
}

.custom-link:hover {
	background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.bi-facebook {
    background: var(--white-color);
    border-radius: var(--border-radius-small);
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    margin-top: -4px;
}

.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--blue-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

/*--.is-sticky .navbar-nav .nav-link {
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}--*/

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
  text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2.5px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after {
  background: var(--red-color);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--red-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hello {
	margin: 0 auto;
    height: 60vh;
    position: relative;
    display: flex;
 justify-content: left;
 align-items: center;
}
.hello p{
    text-align: right;
    padding-top: 160px;
}
.hero {
 /* position: relative;*/
  overflow: hidden;
  padding-top: 330px;
  padding-bottom: 330px;
    
}

@media  screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}

.hero-title,
.hero h2 {
}
.tlo {
     background: url("../images/tlo_glowne.webp") no-repeat right top;
    background-size: contain;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-attachment: fixed;
    width: 100%;
    background-color: var(--white-color);
}


.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 100%;
  min-width: 550px;
}


.hello li {
    list-style-type: none;
    
}
.hello li span {
    color: var(--dark-color);
    line-height: 20px;
    font-size: 20px;
    display: block;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.white-button a {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  color: #ffffff;
  background-color: #ff565b;
  padding: 11px 25px;
  border-radius: 7.5px;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.white-button a:hover {
  color: #ffffff;
  background-color: var(--green-dark-color);
}
.slide {
    display: block;
    height: 80px;
    padding-top: 20px;
}
@keyframes slideshow__fade {
  0% {
    opacity: 0;
    z-index: 2;
  }
  6.6666666667% {
    opacity: 1;
  }
  26.6666666667% {
    opacity: 1;
  }
  27.6666666667% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
  }
}
.slideshow {
  position: relative;
}
.slideshow li{
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 auto;
  animation-duration: 9s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: slideshow__fade;
  animation-timing-function: ease-in;
  transition: opacity 2s ease-in;
}
.slideshow li:nth-child(1) {
  animation-delay: 0s;
}
.slideshow li:nth-child(2) {
  animation-delay: 3s;
}
.slideshow li:nth-child(3) {
  animation-delay: 6s;
}
/*---------------------------------------
  CZYSTE POWIETRZE           
-----------------------------------------*/
.search-form {
    margin-top: -100px;
    
}

    .form-container{
        max-width: 1320px;
        margin: 0 auto;
        
    }
.form-container p{
        color: var(--white-color);
    text-align: center;
    font-size: var(--p-font-size);
            margin-bottom: 0;
    }

.search-form #search-form {
    padding: 30px;
    background: var(--green-dark-color);
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-radius: 7.5px;
    margin-bottom: 0px;
    border: 1px solid transparent;
}
@media (min-width: 1200px) {
    .search-form #search-form {
        padding: 60px;
    }
}
.procent {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.circle {
    position: absolute;
    z-index: 999;
  display: block;
  background: var(--red-color);
  border-radius: 50%;
  height: 230px;
  width: 230px;
  margin: 0;
    right: 10%;
    top: 500px;
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}
.circle h3 {
    font-size: var(--h1-font-size);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 0 auto;
    margin: 0;
    padding: 0;
    margin: 0;
}
.circle p {
    color: var(--white-color);
    line-height: 20px;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.floatleft {
    float: left;
}
.floatright {
    float: right;
}

.paddingi {
    padding:50px 0 ;
    
}
.flexvertical {
     display: flex;
    align-items: center;
    justify-content: center;
}

.about {
    background-blend-mode: multiply;
    
}
.about span {
    color: var(--white-color);
    font-size: var(--p-font-size);
    padding-left: 10px;
}
.about p {
    font-size: 16px;
}
.relative {
    position: relative;
}
.vertical_align {
        display: flex;
    align-items: center;
    justify-content: center;
}
}
.tekst_bialy{
    color: var(--white-color);
}
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-small);
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.about-thumb {
  padding-right: 50px;
  padding-left: 50px;
}
.about-thumb p{
  color: var(--white-color);
}
.about p {
    color: var(--white-color);
}
.realizacje-icon{
    color: var(--white-color);
    text-align: center;
    font-size: 50px;
    margin: 0 auto;
}
.proces_realizacji h3{
    text-align: center;
}
.about .services-thumb {
  background: var(--green-dark-color);
  border: 1px solid transparent;
    border-color: #ffffff;
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 40px 40px;
  transition: all 0.5s;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
	height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}


.services .services-thumb {
  background: var(--blue-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 40px 40px;
  transition: all 0.5s;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.services-thumb-up {
  position: relative;
  margin-bottom: -50px;
}

.services-thumb:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  color: var(--white-color);
}
.services h2 {
    color: var(--blue-color);
}
.services h3 {
    text-align: center;
    display: block;
    margin: 0 auto;
}
.services h4 {
    color: var(--yellow-color);
    text-align: center;
    margin-bottom: 0;
}
.services p{
    text-align: center;
    color: var(--white-color);
}
.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.centrowanie {
    margin: 0 auto;
}
.services span {
    font-weight: var(--font-weight-normal);
    color: var(--white-color);
    padding-right: 1em;
}

/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects {
    background: var(--section-bg-color);
}
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-small);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.tlo2 {
    
	background: url("../images/tlo_kontakt.webp") no-repeat center center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-attachment:fixed;
}

.contact-info {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
  height: 100%;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}
.contact-icon{
    color: var(--dark-color);
    text-align: center;
    font-size: 50px;
    margin: 0 auto;
}
.contact p {
    margin-top: 0;
    margin-bottom: 0;
}
.contact span {
    text-align: center;
    display: block;
    font-size: 12px;
    padding-top: 10px;
    line-height: 12px;
}
.contact .services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 40px 40px;
  transition: all 0.5s;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}
/*---------------------------------------
  GALERIA             
-----------------------------------------
#owl-demo-1 .item, #owl-demo-2 .item, #owl-demo-3 .item{
	margin: 17px 10px;
	color: #FFF;
	text-align: center;
    height: 100%;
}
#owl-demo-1 .item img, #owl-demo-2 .item img, #owl-demo-3 .item img{
	width: auto;
	height: flex;
	margin: 0 auto;
	display: block;
	max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
    border-radius: 15px;
    
}
.owl-carousel .owl-stage{display: flex;}
#galeria_1, #galeria_2, #galeria_3 {
    padding: 50px 0;
}
#galeria_2 {
    background: var(--section-bg-color);
}*/
/*---------------------------------------
  FIRMA       
-----------------------------------------*/
.firma-section {
  background: var(--green-dark-color);
    box-sizing:border-box;
    
}
.firma-container {
    width: 100%;
}


  .ss-carousel a {
    text-decoration: none;
    color: #fff;
  }
  .ss-carousel img {
      height: 100%;
    width:auto;
    overflow: hidden;
    object-fit: cover;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
  }

  .ss-carousel .dragging a {
    pointer-events: none;
  }
  .ss-carousel .ss-carousel__wrapper {
    position: relative;
  }
  @media only screen and (min-width: 1180px) {
    .ss-carousel .ss-carousel__wrapper.has-arrows .ss-carousel__content {
      justify-content: space-between;
    }
  }
  @media only screen and (min-width: 1180px) {
    .ss-carousel .ss-carousel__wrapper.has-arrows .ss-carousel__arrows {
      display: flex;
    }
  }

  .ss-carousel .ss-carousel__content {
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: grid;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding: 0;
    margin: 0;
    grid-auto-flow: column;
    list-style: none;
  }
  .ss-carousel .ss-carousel__content::-webkit-scrollbar {
    display: none;
  }
  .ss-carousel .ss-carousel__item .ss-carousel__description {
    width: 100%;
  }
  .ss-carousel .ss-carousel__item a {
    display: flex;
    justify-content: center;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
    user-select: none;

    cursor: pointer;
  }
  .ss-carousel .ss-carousel__controls {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 24px;
  }
  .ss-carousel .ss-carousel__arrow {
   border: none;
      position: absolute;
      z-index: 9999;
  background-color: var(--white-color);
  box-shadow: 0 0 3rem rgba(0,0,0,.5);
      width: 50px;
      height: 50px;
  border-radius: 50%;
  display: inline-block;
  margin: auto;
  top: 50%;
  transform: translateY(-40%);
      
  }
  .arrow-next img {
   
      width: auto;
      height: 30px;
  padding-left: 5px;
      
  }
 .arrow-prev img {
   
      width: auto;
      height: 30px;
  padding-right: 3px;
      
  }
.ss-carousel .ss-carousel__arrow:hover {
   
      background: var(--grey-dark-color);
      
  }
.arrow-prev {
    left: 50px;
}
.arrow-next {
    right: 50px;
}
 /* .ss-carousel .ss-carousel__arrow:before {
    content: '';
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=');
    background-size:contain;
    display: block;
    width: 38px;
    height: 18px;
    cursor: pointer;
      vertical-align: middle;
  }*/
  .ss-carousel .ss-carousel__arrow.arrow-prev:before {
    transform: rotate(90deg);
  }
  .ss-carousel .ss-carousel__arrow.arrow-next:before {
    transform: rotate(-90deg);
  }
  .ss-carousel .ss-carousel__arrow.disabled::before {
    filter: brightness(2);
  }

  .disclaimer a {
    color: #fff;
  }

/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.hero-section {
  background: var(--grey-color);
  padding: 150px 0 150px 0;
    
}
.hero-section h2{
  color: var(--dark-color);
  
}
.owl-carousel {
  text-align: center;
}

.owl-carousel-image {
  display: block;
}

.owl-carousel .owl-item .owl-carousel-verified-image {
  display: inline-block;
  width: 30px;
  height: auto;
  position: relative;
  right: 5px;
}

.verified-image {
  display: inline-block;
  width: 20px;
  height: auto;
}

.owl-carousel .owl-item {
  opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
  opacity: 1;
}

.owl-carousel-info-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.owl-carousel-info {
  background-color: var(--section-bg-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.badge {
    font-size: 16px;
    font-weight: normal;
    text-align: left;
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  padding-bottom: 5px;
    line-height: normal;
    padding: 0;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
  position: absolute;
  right: 0;
  bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(0);
  padding-right: 20px;
  padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
  transform: translateY(-100%);
  opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
  margin-top: 5px;
  margin-bottom: 5px;
}

.owl-carousel .owl-dots {
  background-color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  margin: auto;
  margin-top: 40px;
  padding: 15px 25px;
  padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px !important;
}

/*---------------------------------------
  MAPA             
-----------------------------------------*/
.mapa {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: grayscale(100%) contrast(100%);
    padding: 120px 50px 0 50px;
    
    
}
.mapa iframe {
    border-radius: 15px;
}
/*---------------------------------------
  FOOTER              
-----------------------------------------*/
    footer {
        text-align: left;
        padding-top: 120px;
        padding-bottom: 30px;
        background: var(--white-color);
    }
.about-widget p{
    margin-top:20px;
}
.follow-us {
    padding-top:40px;
}

footer a:hover{
    color: var(--green-dark-color);
}
.stopka {
    text-align: right;
    padding-top: 10px;
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }
  
  /*.hero-title,
	.hero h2 {
	  font-size: var(--h2-font-size);
	}*/

}

@media screen and (max-width: 1600px) {
    .circle {
    right: 5%;
    top: 430px;
    height: 180px;
    width: 180px;
}
    .circle h3 {
    font-size: 50px;
}
    .circle p {
        font-size: 16px;
    }
    .form-container{
    max-width: 90%;
}
    #oferta h4 {
        font-size: 20px;
    } 
    #oferta span {
        font-size: 14px;
    }
    .about .services-thumb {
    padding: 30px;
}
    .hero-text {
        
    top: 30px;
}
    
}

@media screen and (max-width: 1400px) {
    .tlo {
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
    
}
@media screen and (max-width: 1200px) {
        .col-lg-2 {
        width: 25%;
    }
        .col-lg-3 {
        flex: 0 0 auto;
        width: 35%
    }
        .offset-lg-4 {
        margin-left: 5%;
    }
 .flexvertical {
        display: block;
    }
    .floatleft, .floatright {
        float: none;
        width: 100%;
    }
    .floatleft {
        padding-bottom: 50px;
    }
    .floatright img{
        display: block;
        margin: 0 auto;
    }
    .proces_realizacji .col-lg-3{
        width: 50%;
    }
    #oferta .container{
        width: 100% !important;
        max-width: 100% !important;
    }
    #search-form em {
        display: block;
    }
       .form-container{
    max-width: 70%;
}
    .przycisk {
        display: none;
    }
    .form-container p {
    font-size: 16px;
}
        .form-container h2 {
    font-size: 30px;
}
    .hello {
    margin: 0;
    width: 50%;
}
    .hello h1{
        font-size: 50px;
        line-height: 50px;
        text-shadow: 0px 0px 50px rgba(255, 255, 255, 1);
    }
}

@media screen and (max-width: 991px) {
         .col-lg-2 {
        width: 100%;
    }
        .col-lg-3 {
        width: 100%;
    }
        .offset-lg-4 {
        margin-left: 0;
    }
        .hero {
        height: 50vh;
    }
    .tlo {
        background: none;
        background-color: #ffffff;
    }
        .circle {
    right: 5%;
    top: 430px;
    height: 180px;
    width: 180px;
}
    .circle h3 {
    font-size: 50px;
}
    .circle p {
        font-size: 16px;
    }
      .paddingi {
        padding-right: calc(var(--bs-gutter-x)* 1);
    padding-left: calc(var(--bs-gutter-x)* 1);
        padding-top: 0;
        padding-bottom: 0;
}
    .services span {
        display: block;
        margin: 0 auto;
        padding: 0;
}
        .services h4 {
        display: block;
        margin: 0 auto;
        padding: 0;
            width: 100%;
}
    .vertical_align {
        position: relative;
}

    .realizacje-icon {
    color: var(--dark-color);
    text-align: center;
    width: 100px;
    margin: 0 auto;
}
    .navbar-nav {
    flex-direction: row;
}
  h1 {
    font-size: 48px;
      text-align: center;
      line-height: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
    .hello {
    margin: 0 auto;
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
        padding-top: 80px;
        width: 100%;
}

    .hello li span {
        font-weight: var(--font-weight-normal);
        font-size: 20px;
        line-height: 25px;
        text-align: center;
    }

    .slideshow li:nth-child(1) span{
  text-align: center;
}
.slideshow li:nth-child(2){
    text-align: center;
    width: 100%;
}
.slideshow li:nth-child(3){
  text-align: center;
    width: 100%;
}
    .hello p {
    padding-top: 120px;
        text-align: center;
}
  .section-padding {
    padding-top:0;
    padding-bottom: 80px;
  }
    .section-padding-2 {
            padding-top: 20px;
    padding-bottom: 20px;
    }
    .services h2 {
        padding-top: 50px;
    }
    .contact h2 {
        padding-top: 50px;
    }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--yellow-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--white-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }


  .hero-text {
    top: 0;
    margin-bottom: 0;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
    .floatright, .proces_realizacji {
        display: none;
    }
        #kontakt p, #kontakt h5, .dane_kontaktowe a{
        text-align: center;
        display: block;
    }
     .about-widget img{
        margin: 0 auto;
        display: block;
    }
}
@media screen and (max-width: 800px) {
 .ss-carousel .ss-carousel__item a {
    
    width: 100vw;
  }
    .ss-carousel .ss-carousel__arrow {
    display:none;
}
}
@media screen and (max-width: 767px) {
    .hero-section {
    padding: 80px 0 80px 0;
}
    footer {
    padding-top: 80px;
}
    .about-widget img{
        margin: 0 auto;
        display: block;
    }
    #kontakt p, #kontakt h5, .dane_kontaktowe a{
        text-align: center;
        display: block;
    }
    .mapa {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: grayscale(100%) contrast(100%);
    padding: 80px 20px 0 20px;
}
    .stopka {
    text-align: center;
    padding-top: 10px;
}
        .tlo {
    background:none;
            background-color: #ffffff;
}
   .proces_realizacji .col-lg-3{
        width: 100%;
    }
        .hero {
        height: 50vh;
    }
    .hello {
        width: 100%;
        height: 50vh;
        padding-top: 0;
    }
    button {
        display: none;
    }
     .circle {
    right: 5%;
    top: 500px;
    height: 120px;
    width: 120px;
}
    .circle h3 {
    font-size: 30px;
}
    .circle p {
        font-size: 12px;
        line-height: 12px;
    }
        .form-container h2 {
        font-size: 20px;
    }
    .about .section-title-wrap {
        text-align: center;
        display: block !important;
        width: 100%;
    }
    
    
}

@media screen and (max-width: 575px) {
    
    .floatleft {
        padding-bottom:0;
    }
        .flexvertical, #kontakt .container {
        padding-left: 10%;
            padding-right: 10%;
    }
    .about-thumb p {
    }
        .hello h1 {
        font-size: 30px;
        line-height: 30px;
    }
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
    .circle {
        top: 300px;
    }
        .hero {
        height: 70vh;
            padding: 0;
    }
        .form-container {
        max-width: 90%;
    }
   
    .tel {
        display: none!important;
    }
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}

