body {
  overflow-x: hidden;
  font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #525056;
}

p {
  line-height: 1.75;
}

a {
  color: #000000;
}

a:hover {
    color: #fed136;
  text-decoration: none;
}

.text-primary {
  color: #fed136 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

section {
  padding: 60px 0;
}

.bg-grey{
  background-color: #F8F9FA;
}

section h2.section-heading {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

section h3.section-subheading {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 50px;
  text-transform: none;
  font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@media (max-width: 768px) {
  section h2.section-heading {
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 5px;
  }
  
  section h3.section-subheading {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 50px;
    text-transform: none;
    font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
}

@media (min-width: 768px) {
  section {
    padding: 70px 0;
  }
}

.btn {
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.btn-xl {
  font-size: 18px;
  padding: 20px 40px;
}

.btn-primary {
  background-color: #fed136;
  border-color: #fed136;
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: #fec810 !important;
  border-color: #fec810 !important;
  color: white;
}

.btn-primary:active, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}

::-moz-selection {
  background: #fed136;
  text-shadow: none;
}

::selection {
  background: #fed136;
  text-shadow: none;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/*--------------------------------------------------------------
# Header index
--------------------------------------------------------------*/
#header {
    padding: 30px 0;
    height: 115px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(0,0,0,0.35);
    border-bottom: solid 2px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    #header {
        padding: 20px 0;
        height: 80px;
    }
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

}

#header #logo h1 a, #header #logo h1 a:hover {
    color: #fff;
}

#logo {
    padding: 0;
    margin: 0;
    margin: -10px 0;
    transition: all 0.5s;
}
#logo.logo-fixed{
    transform: scale(0.6);
    margin: -20px 0;
}
@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 26px;
    }
    #header #logo {
        max-height: 50px;
    }
    #logo.logo-fixed {
        transform: scale(0.9);
        margin: -10px 0;
    }
}

#header.header-fixed {
    background: rgba(23, 24, 28, 0.85);
    padding: 20px 0;
    height: 72px;
    transition: all 0.5s;
}


/*--------------------------------------------------------------
# Header site
--------------------------------------------------------------*/
#siteheader {
  
    left: 0;
    top: 0;
    right: 0;
    z-index: 997;
    background: rgba(23, 24, 28, 0.85);
    padding: 20px 0;
    height: 72px;
   
    
}
#sitelogo {
  padding: 0;
    transform: scale(0.6);
    margin: -20px 0;
}


#siteheader #nav-menu-container {
    float: right;
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}

@media (max-width: 768px) {
  #siteheader {
    padding: 20px 0;
    height: 80px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size:14px;
 
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
  padding: 17px 0;
  transition: all 0.5s;
}
#nav-menu-container.nav-menu-container-fixed {
    padding: 0;
    transition: all 0.5s;
}

@media (max-width: 992px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fed136;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #fed136;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
  color: #fed136;
}


#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 992px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}
#mobile-nav ul .sf-with-ul:after {
content: "\f107";
position: absolute;
right: 40px;
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 14px;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fed136;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


header.masthead {
  text-align: center;
  color: white;
  background-image: url("../img/header-bg.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

header.masthead .intro-text {
  padding-top: 150px;
  padding-bottom: 100px;
}

header.masthead .intro-text .intro-lead-in {
  font-size: 22px;
  font-style: italic;
  line-height: 22px;
  margin-bottom: 25px;
  font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

header.masthead .intro-text .intro-heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 25px;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
  header.masthead .intro-text {
    padding-top: 300px;
    padding-bottom: 200px;
  }
  header.masthead .intro-text .intro-lead-in {
    font-size: 40px;
    font-style: italic;
    line-height: 40px;
    margin-bottom: 25px;
    font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  header.masthead .intro-text .intro-heading {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 50px;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
}

.service-heading {
  margin: 15px 0;
  text-transform: none;
}

.portfolio-caption{

  border-left: solid 1px rgba(0,0,0, 0.3);
  border-right: solid 1px rgba(0,0,0, 0.3);
  border-bottom: solid 1px rgba(0,0,0, 0.3);
}
.portfolio-caption a{
  color: black;
}
.portfolio-caption a:hover{
  color: #fed136;
  text-decoration: none;
}


.portfolio-item {
  right: 0;
  margin: 0 0 15px;
}

.portfolio-item .portfolio-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
  overflow:hidden
}

.portfolio-link .portfolio-hover {
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
  top:0;
  left:0;
  opacity:0;
  background-color:rgba(0,0,0,0.3);
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out
}

.portfolio-link:hover .portfolio-hover {
  opacity:1;
  filter:alpha(opacity=100);
}

.portfolio-link{
  overflow: hidden;


}
.portfolio-link img {
  display:block;
  position:relative;
  -webkit-transition:all .4s linear;
  transition:all .4s linear;

}

.portfolio-link:hover img  {
  -ms-transform:scale(1.1);
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}
.portfolio-item .portfolio-caption a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.portfolio-item .portfolio-caption a:hover {
  color: #fed136;
}


.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

.portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
}

.portfolio-item .portfolio-caption h4 {
  margin: 0;
  text-transform: none;
}

.portfolio-item .portfolio-caption p {
  font-size: 14px;
  font-style: normal;
  margin: 0;
  font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


@media (min-width: 767px) {
  .portfolio-item {
    margin: 0 0 30px;
  }
  .portfolio-caption{
    min-height: 130px;
  }
}

#modernizacje .portfolio-caption{
 
    border-left: solid 1px rgba(0,0,0, 0.3);
    border-right: solid 1px rgba(0,0,0, 0.3);
    border-bottom: solid 1px rgba(0,0,0, 0.3);
}

#modernizacje .portfolio-caption a{
  color: black;
}
#modernizacje .portfolio-caption a:hover{
  color: #fed136;
  text-decoration: none;
}

#modernizacje .portfolio-item {
  right: 0;
  margin: 0 0 15px;
}

#modernizacje .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
  overflow:hidden
}

#modernizacje .portfolio-link .portfolio-hover {
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
  top:0;
  left:0;
  opacity:0;
  background-color:rgba(0,0,0,0.3);
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out
}

#modernizacje .portfolio-link:hover .portfolio-hover {
  opacity:1;
  filter:alpha(opacity=100);
}

#modernizacje .portfolio-link{
  overflow: hidden;
  border-top-left-radius: 0.35em;
  border-top-right-radius: 0.35em;

}
#modernizacje .portfolio-link img {
  display:block;
  position:relative;
  -webkit-transition:all .4s linear;
  transition:all .4s linear;

}

#modernizacje .portfolio-link:hover img  {
  -ms-transform:scale(1.1);
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}

#modernizacje .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}

#modernizacje .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

#modernizacje .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#modernizacje .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

#modernizacje .portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
}

#modernizacje .portfolio-item .portfolio-caption h4 {
  margin: 0;
  text-transform: none;
}

#modernizacje .portfolio-item .portfolio-caption p {
  font-size: 16px;
  font-style: italic;
  margin: 0;
  font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#modernizacje * {
  z-index: 2;
}

@media (min-width: 767px) {
  #modernizacje .portfolio-item {
    margin: 0 0 30px;
  }
  #modernizacje .portfolio-caption{
    min-height: 140px;
  }
}

.portfolio-modal {
  padding-right: 0px !important;
}

.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.portfolio-modal .modal-content {
  padding: 100px 0;
  text-align: center;
}

.portfolio-modal .modal-content h2 {
  font-size: 3em;
  margin-bottom: 15px;
}

.portfolio-modal .modal-content p {
  margin-bottom: 30px;
}

.portfolio-modal .modal-content p.item-intro {
  font-size: 16px;
  font-style: italic;
  margin: 20px 0 30px;
  font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.portfolio-modal .modal-content ul.list-inline {
  margin-top: 0;
  margin-bottom: 30px;
}

.portfolio-modal .modal-content img {
  margin-bottom: 30px;
}

.portfolio-modal .modal-content button {
  cursor: pointer;
}

.portfolio-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 75px;
  height: 75px;
  cursor: pointer;
  background-color: transparent;
}

.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.portfolio-modal .close-modal .lr {
  /* Safari and Chrome */
  z-index: 1051;
  width: 1px;
  height: 75px;
  margin-left: 35px;
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #212529;
}

.portfolio-modal .close-modal .lr .rl {
  /* Safari and Chrome */
  z-index: 1052;
  width: 1px;
  height: 75px;
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #212529;
}


#sprzedaz a{
  color: black;
  text-decoration: none;
  transition: all 0.3s; 
}

#sprzedaz a:hover{
  color: #fed136;
  text-decoration: none;
}


#sprzedaz .portfolio-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
  overflow:hidden;
}

#sprzedaz .portfolio-hover {
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
  top:0;
  left:0;
  opacity:0;
  background-color:rgba(0,0,0,0.3);
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out
}

#sprzedaz .portfolio-link:hover .portfolio-hover {
  opacity:1;
  filter:alpha(opacity=100);
}

#sprzedaz .portfolio-link{
  overflow: hidden;

}
#sprzedaz .portfolio-link img {
  display:flex;
  position:relative;
  -webkit-transition:all .4s linear;
  transition:all .4s linear;
}

#sprzedaz .portfolio-link:hover img  {
  -ms-transform:scale(1.1);
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}

#sprzedaz .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}

#sprzedaz  .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

#sprzedaz  .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#sprzedaz .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

#sprzedaz p {
  font-size: 14px;
  font-style: italic;
  margin: 0;
  font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#sprzedaz * {
  z-index: 2;
}

.sprzedazikona{
  float: left;
  margin-right: 4px;
  vertical-align:middle
}




#nowosci .portfolio-caption{

  border-left: solid 1px rgba(0,0,0, 0.3);
  border-right: solid 1px rgba(0,0,0, 0.3);
  border-bottom: solid 1px rgba(0,0,0, 0.3);
}
#nowosci .portfolio-caption a{
  color: black;
}
#nowosci .portfolio-caption a:hover{
  color: #fed136;
  text-decoration: none;
}

#nowosci .portfolio-caption .nazwa{
  min-height: 57px;
}

#nowosci .portfolio-caption ul{
  min-height: 30px;
}

#nowosci .portfolio-item {
  right: 0;
  margin: 0 0 15px;
}

#nowosci .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
  overflow:hidden
}

#nowosci .portfolio-link .portfolio-hover {
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
  top:0;
  left:0;
  opacity:0;
  background-color:rgba(0,0,0,0.3);
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out
}

#nowosci .portfolio-link:hover .portfolio-hover {
  opacity:1;
  filter:alpha(opacity=100);
}

#nowosci .portfolio-link{
  overflow: hidden;
  border-top-left-radius: 0.35em;
  border-top-right-radius: 0.35em;

}
#nowosci .portfolio-link img {
  display:block;
  position:relative;
  -webkit-transition:all .4s linear;
  transition:all .4s linear;
 

}

#nowosci .portfolio-link:hover img  {
  -ms-transform:scale(1.1);
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}

#nowosci .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}

#nowosci .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

#nowosci .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#nowosci .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

#nowosci .portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  padding: 15px;
  background-color: #fff;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#nowosci .portfolio-item .portfolio-caption h6 {
  margin: 0;
  text-transform: none;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: .5rem
}

#nowosci .portfolio-item .portfolio-caption a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

#nowosci .portfolio-item .portfolio-caption a:hover {
  color: #fed136;
}
#nowosci .portfolio-item .portfolio-caption .price {
  color: #ee5624;
  display: inline-block;
}

#nowosci .portfolio-item .portfolio-caption ul {
  border-top: solid 1px rgba(0,0,0, 0.3);
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 5px;
  padding-left: 10px;
}
#nowosci .portfolio-item .portfolio-caption li{
  margin-right: 1rem;
  display: inline-block;
  font-size: 0.8rem;
}

#nowosci * {
  z-index: 2;
}
@media (min-width: 767px) {
  #nowosci .portfolio-item {
    margin: 0 0 30px;
  }
  #nowosci .portfolio-caption{
    min-height: 130px;
  }
}

.status {
float:right;
margin-right: 0 !important;

}

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: '';
  background-color: #e9ecef;
}

.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
  display: table;
  content: ' ';
}

.timeline > li:after {
  clear: both;
}

.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #fed136;
}

.timeline > li .timeline-image h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
}

.timeline .timeline-heading h4.subheading {
  text-transform: none;
}

.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
}

.team-member {
  margin-bottom: 50px;
  text-align: center;
}

.team-member img {
  width: 225px;
  height: 225px;
  border: 7px solid #fff;
}

.team-member h4 {
  margin-top: 25px;
  margin-bottom: 0;
  text-transform: none;
}

.team-member p {
  margin-top: 0;
}

#google-map {
    height: 400px;
    margin-bottom: 20px;
}

#contact .details{
    padding-top: 30px;
}

#contact .nazwa{
    text-align: center;
}

#contact .nazwa p{
    padding-top:15px
}

#contact .nazwa span{
    font-weight: 700;
}

#contact .nazwa a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
#contact .nazwa a:hover {
    color: #fed136;
}

/*Sprzedaż*/

#sprzedazhead{
    padding: 50px 0;
}
#sprzedazbody{
    padding: 50px 0;
}

#sprzedazbody .pozycja{
    padding-left: 35px;
    transition: all 0.3s;
}
#sprzedazbody .pozycja:hover{
    background: #fed136;
    transition: all 0.5s;
    text-decoration: none;
}
#sprzedazbody .card-header:hover{
    background: #e2b635;
    transition: all 0.5s;
    text-decoration: none;
}

#sprzedazbody .card a{
    color: black;
    margin: -15px;
    padding: 15px;
    display: block;
}
#sprzedazbody .card a:hover{
    color: black;
    text-decoration: none;
}



#sprzedazbody .portfolio-caption{
  border-bottom-left-radius: 0.35em;
  border-bottom-right-radius: 0.35em;
  border-left: solid 1px rgba(0,0,0, 0.3);
  border-right: solid 1px rgba(0,0,0, 0.3);
  border-bottom: solid 1px rgba(0,0,0, 0.3);
}
#sprzedazbody .portfolio-caption a{
  color: black;
}
#sprzedazbody .portfolio-caption a:hover{
  color: #fed136;
  text-decoration: none;
}

#sprzedazbody .portfolio-item {
  right: 0;
  margin: 0 0 15px;
}

#sprzedazbody .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
  overflow:hidden
}

#sprzedazbody .portfolio-link .portfolio-hover {
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
  top:0;
  left:0;
  opacity:0;
  background-color:rgba(0,0,0,0.3);
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out
}

#sprzedazbody .portfolio-link:hover .portfolio-hover {
  opacity:1;
  filter:alpha(opacity=100);
}

#sprzedazbody .portfolio-link{
  overflow: hidden;
  border-top-left-radius: 0.35em;
  border-top-right-radius: 0.35em;

}
#sprzedazbody .portfolio-link img {
  display:block;
  position:relative;
  -webkit-transition:all .4s linear;
  transition:all .4s linear;

}

#sprzedazbody .portfolio-link:hover img  {
  -ms-transform:scale(1.1);
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}

#sprzedazbody .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}

#sprzedazbody .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

#sprzedazbody .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#sprzedazbody .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

#sprzedazbody .portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  padding: 15px;
  background-color: #fff;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#sprzedazbody .portfolio-item .portfolio-caption h6 {
  margin: 0;
  text-transform: none;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: .5rem
}

#sprzedazbody .portfolio-item .portfolio-caption a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

#sprzedazbody .portfolio-item .portfolio-caption a:hover {
  color: #fed136;
}
#sprzedazbody .portfolio-item .portfolio-caption .price {
  color: #ee5624;
  display: inline-block;
}

#sprzedazbody .portfolio-item .portfolio-caption ul {
  border-top: solid 1px rgba(0,0,0, 0.3);
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 5px;
  padding-left: 10px;
  min-height: 20px;
}
#sprzedazbody .portfolio-item .portfolio-caption li{
  margin-right: 1rem;
  display: inline-block;
  font-size: 0.8rem;
}

#sprzedazbody * {
  z-index: 2;
}
@media (min-width: 767px) {
  #sprzedazbody .portfolio-item {
    margin: 0 0 30px;
  }
  #sprzedazbody .portfolio-caption{
    min-height: 130px;
  }
}

.price{
    color: #ee5624;
}

#pozycja img{
    max-height: 550px;
    vertical-align: middle;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 768px){
    #pozycja img {
        max-height: 380px;
    }
}
@media (max-width: 500px){
    #pozycja img {
        max-height: 200px;

    }
}

#pozycja .img-thumbnail{
    max-height: 106px;
}
.swiper-container {
  width: 100%;

  margin-left: auto;
  margin-right: auto;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
}
.gallery-top {
  height:80%;
  width: 100%;
}
.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.6;
}
.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide:hover {
    height: 100%;
    opacity: 0.8;
    cursor: pointer;
}


#pozycja table{
    font-size: 0.875rem;
    color: #757575;
}

#pozycja .pn{
    font-weight: 600;
    color: #000;

}

.container-img { position: relative; }
.container-img img { display: block; }
.container-img .fa-search-plus { 
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 10px;
  background: #fff;
  text-align: center;
  vertical-align: middle; 
  opacity: 50%;
  font-size: 2.3em;
}


#loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #777777;
    background-image: url("/img/background.jpg");

    /* display: none; */
}

 /* LOADER */

.loader {
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.loader p {
    color: #fed136;
    margin-top: 5px;

    letter-spacing: 2px;
    font-size: 16px;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fed136;
    margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* LOADER END */

@-webkit-keyframes motion {
    0% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    25% {
        -webkit-transform: translateX(-50px) scale(0.3);
        transform: translateX(-50px) scale(0.3);
    }
    50% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    75% {
        -webkit-transform: translateX(50px) scale(0.3);
        transform: translateX(50px) scale(0.3);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@keyframes motion {
    0% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    25% {
        -webkit-transform: translateX(-50px) scale(0.3);
        transform: translateX(-50px) scale(0.3);
    }
    50% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    75% {
        -webkit-transform: translateX(50px) scale(0.3);
        transform: translateX(50px) scale(0.3);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

.starman_stopnice {
  position: relative;
}


@media (min-width: 992px) {
  .starman_stopnice_text1 {
    position: absolute;
    top: 0;
    left: 21%;
      max-width: 550px;

  }

  .starman_stopnice_text2 {
    position: absolute;
    top: 20%;
    left: 54%;
  }

}

.starman_zawieszenie {
  position: relative;
}


@media (min-width: 992px) {
  .starman_zawieszenie_text1 {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: 60%;
  }

  .starman_zawieszenie_text2 {
    position: absolute;
    bottom: 3%;
    left: 5%;
    max-width: 60%;
  }

}

@media (min-width: 768px) and (max-width: 992px) {
  .starman_zawieszenie_text1 {
    margin-left: 40%;
    max-width: 60%;
  }

  .starman_zawieszenie_text2 {
    max-width: 75%;
  }

}


.starman_hamulce {
  position: relative;
}


@media (min-width: 992px) {
  .starman_hamulce_text1 {
    position: absolute;
    top: 0;
    left: 40%;
    max-width: 60%;

  }

  .starman_hamulce_text2 {
    position: absolute;
    bottom: 0%;
    left: 5%;
    max-width: 45%;
  }

}

@media (min-width: 768px) and (max-width: 992px) {
    .starman_hamulce_text1 {
        margin-left: 68%;
        max-width: 60%;
    }

    .starman_hamulce_text2 {
        max-width: 40%;
    }

}

@media (max-width: 768px) {
    .starman_hamulce_text1{
        margin-left: 60%;
    }
    .starman_hamulce_text2{
        max-width: 60%;
    }
}

.starman_elektryka {
    position: relative;
}

@media (min-width: 992px) {
    .starman_elektryka_text1 {
        position: absolute;
        top: -30px;
        left: 45%;
        max-width: 60%;

    }

    .starman_elektryka_text2 {
        position: absolute;
        top: 82%;
        left: 0%;
        max-width: 75%;
    }
    .starman_elektryka{
        padding-bottom: 30px;

}

@media (min-width: 768px) and (max-width: 992px) {
    .starman_elektryka_text1 {
        margin-left: 30%;
        max-width: 80%;
    }

    .starman_elektryka_text2 {
        max-width: 75%;
    }

}
}
@media (min-width: 992px) {
  #starman_pages_body .container {
    max-width: 960px;
  }
}

#starman_pages_body #slider img{
    object-fit: cover;
    max-height: 650px;
    padding: 0;

}

#starman_pages_body .img-thumbnail{
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    height: auto;
}
#starman_pages_body .carousel{
    margin: 0;
}
#starman_pages_body .flexslider{

    border-radius: 0px;
    border: 0;

}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #fed136;
    color: #272727;
}



.container.gallery-container {
  background-color: #fff;
  color: #35373a;
  min-height: 100vh;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h1 {
  text-align: center;
  margin-top: 70px;
  font-family: 'Droid Sans', sans-serif;
  font-weight: bold;
}

.gallery-container p.page-description {
  text-align: center;
  max-width: 800px;
  margin: 25px auto;
  color: #888;
  font-size: 18px;
}

.tz-gallery {
  padding: 40px;
}

.tz-gallery .lightbox img {
  width: 100%;
  margin-bottom: 30px;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}


.tz-gallery .lightbox img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery img {
  border-radius: 4px;
}



footer {
  padding: 25px 0;
  text-align: center;
}

footer span.copyright {
  font-size: 90%;
  line-height: 40px;
  text-transform: none;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

footer ul.quicklinks {
  font-size: 90%;
  line-height: 40px;
  margin-bottom: 0;
  text-transform: none;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  justify-content: center;
}
footer ul.quicklinks li {
  padding-right: 10px;
  display: inline-block;
}

ul.social-buttons {
  margin-bottom: 0;
}

ul.social-buttons li a {
  font-size: 20px;
  line-height: 40px;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: white;
  border-radius: 100%;
  outline: none;
  background-color: #212529;
}

ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover {
  background-color: #fed136;
}


.admin-pojazdy .pojazdy-thumbnail{
  position: relative;
}
.pojazdy-actions{
  text-align: left;
}
.pojazdy-buttons{
float:right;
}

.admin-index-date{
  font-size:5em;
}
.admin-index-count{
  font-size:5em;
}

.pojazdy-button{
  display: inline-block;

  text-align: center;

  width: 30px;

  height: 30px;

  line-height: 30px;

  padding: 0;

  font-size: 90%;

  border-radius: 0.2rem;
}

.product-filter {
  padding:0;
  margin:0;
  list-style:none;
  margin-bottom:60px
}
@media(min-width:992px) {
  .product-filter {
    margin-bottom:0
  }
}
.product-filter li {
  display:block;
  position:relative;
  border-left:1px solid #eee;
  border-bottom:1px solid #eee
}
.product-filter li:first-child {
  border-top:1px solid #eee
}
.product-filter li a {
  display:block;
  position:relative;
  padding:13px 20px 13px 20px;
  text-align:left;
  text-decoration:none;
  font-size:13px;
  color:#555;
  font-weight:600;
  line-height:20px;
  text-transform:uppercase;
  transition:all .3s ease-out;
  -moz-transition:all .3s ease-out;
  -webkit-transition:all .3s ease-out;
  -o-transition:all .3s ease-out
}
.product-filter li a:hover {
  color:#181c2a
}
.product-filter li a:before {
  content:"\f105";
  font-family:'Font Awesome 5 Free';
  font-weight: 900;
  display:inline-block;
  position:absolute;
  right:40%;
  top:50%;
  margin-top:-10px;
  font-size:14px;
  color:#555;
  opacity:0;
  -moz-opacity:0;
  filter:alpha(opacity=0);
  transition:all .3s ease-out;
  -moz-transition:all .3s ease-out;
  -webkit-transition:all .3s ease-out;
  -o-transition:all .3s ease-out
}
.product-filter li a:hover:before {
  right:15px;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity=100)
}
.product-filter li a:after {
  content:'';
  display:block;
  background:#ddd;
  width:3px;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  transition:all .3s ease-out;
  -moz-transition:all .3s ease-out;
  -webkit-transition:all .3s ease-out;
  -o-transition:all .3s ease-out
}
.product-filter li a:hover:after {
  background:#ff8d3b
}

.product-filter .product-child{
  padding-left: 15px;
}

.product-filter .product-child li{
  background-color: #f9f9f9;
  border-bottom-color: #dddddd;
}

.product-filter .active a:before {
  right:15px;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity=100)
}

.product-filter .active a:after {
  background: #ff8d3b
}

.product-filter .badge{
  background: #e1e1e1;
  font-size: 80%;
}

.parallax-modernizacje {
  min-height: 500px;
  background: transparent;
}


@media(max-width:786px) {
  .parallax-modernizacje {
    min-height: 200px;
    background: transparent;
  }   
}

.parallax-ural {
  min-height: 550px;
  background: transparent;
}

.parallax-ofirmie {
  min-height: 450px;
  background: transparent;
}


@media(max-width:786px) {
  .parallax-ural {
    min-height: 300px;
    background: transparent;
  }   
}
.parallax-ural1 {
  min-height: 700px;
  background: transparent;
}


@media(max-width:786px) {
  .parallax-ural1 {
    min-height: 300px;
    background: transparent;
  }   
}

.parallax-plugi1 {
  min-height: 600px;
  background: transparent;
}


@media(max-width:786px) {
  .parallax-plugi1 {
    min-height: 300px;
    background: transparent;
  }   
}

/*
* ----------------------------------------------------------------------------------------
* 06. START COUNTER STYLE
* ----------------------------------------------------------------------------------------
*/

.counter-section {
  padding: 50px 0;
  position: relative;
  float: left;
  width: 100%;
}
.single-counter {
  background: rgba(255, 255, 255, 0.18);
  padding: 15px;
  position: relative;
  margin: 10px 0 0px;
  -webkit-border-radius: 6px 12%;
  -moz-border-radius: 6px 12%;
  border-radius: 6px 12%;
}
.single-counter:hover .single-counter-icon {
  color: #fff;
  box-shadow: 0 0 0 4px #fff;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.single-counter-icon {
  position: absolute;
  left: 0;
  top: -26px;
  right: 0;
  height: 80px;
  width: 80px;
  line-height: 90px;
  color: #fff;
  margin: 0 auto;
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(.8);
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  -moz-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
}
.single-counter i {
  font-size: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single-counter-info {
  margin-top: 52px;
}
.single-counter h2 {
  color: #fff;
}
.single-counter h5 {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
}
/*
* ----------------------------------------------------------------------------------------
* 06. END COUNTER STYLE
* ----------------------------------------------------------------------------------------
*/
/* about style */

.image-hover-style-one-wrap {
  position: relative;
  -webkit-transition: all 1.5s ease .1s;
  -moz-transition: all 1.5s ease .1s;
  -ms-transition: all 1.5s ease .1s;
  -o-transition: all 1.5s ease .1s;
  transition: all 1.5s ease .1s;
}
.image-hover-style-one {
  position: relative;
  margin-bottom: 25px;
}
.image-hover-style-one-wrap:before,
.image-hover-style-one-wrap:after {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: 40px;
  left: 40px;
  content: '';
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.75s, -webkit-transform 0.35s;
  transition: opacity 0.75s, transform 0.35s;
}
.image-hover-style-one-wrap:before {
  border-top: 2px solid #ffc300;
  border-bottom: 2px solid #ffc300;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.image-hover-style-one-wrap:after {
  border-right: 2px solid #ffc300;
  border-left: 2px solid #ffc300;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.image-hover-style-one-wrap:hover:before,
.image-hover-style-one-wrap:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.image-hover-style-one-wrap:hover:before,
.image-hover-style-one-wrap:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.promo-box-style-one {
  padding: 25px 60px;
  border: 1px solid #e1e1e1;
  background: #ffffff;
  z-index: 100;
  
}
.promo-box-style-right{
  margin: 60px 0 0 -40px;
}
.promo-box-style-left{
  margin: 60px -40px 0 0;
}
@media(max-width:786px) {
  .promo-box-style-left{
    margin: 60px 0px 10px 0;
  }  
  .promo-box-style-right{
    margin: 0px 0 0 0px;
  }
}

.promo-box-style-one h6 {
  color: #ffc300;
  letter-spacing: 5px;
  font-weight: 400;
  text-transform: capitalize;
}
.promo-box-style-one h2 {
  font-size: 30px;
  margin: 25px 0;
  text-transform: capitalize;
}
.z-index-1{
z-index:1;
}

