/*
Theme Name: Limpio
Author: woiteh.com
Author URI: http://www.woiteh.com
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/*********   GLOBAL   *********/
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body,
html {
  font-family: "Roboto", sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 24px;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #accc44;
  margin-bottom: 10px;
}
h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  position: relative;
}
a.more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #083f21;
  color: #fff;
  transition: background-color ease-in-out 0.3s;
}
a.more:hover {
  background-color: #accc44;
}
@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) and (min-width: 768px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/**********   TOP NAV   **********/
#topnav {
  background-color: #accc44;
  padding: 5px 0;
}
#topnav .contact-item {
  float: left;
  margin-right: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
#topnav .contact-item i {
  font-size: 16px;
  line-height: 20px;
  margin-right: 5px;
  color: #89a727;
}
#topnav .contact-item:last-child {
  margin-right: 0;
}
#topnav .socialmedia {
  margin-bottom: 0;
  padding-left: 0;
  float: right;
}
#topnav .socialmedia li {
  list-style: none;
  float: left;
}
#topnav .socialmedia li {
  margin-left: 15px;
}
#topnav .socialmedia a i {
  color: #8fad2d;
  font-size: 20px;
  line-height: 20px;
  transition: transform ease-in-out 0.5s, color ease-in-out 0.5s;
}
#topnav .socialmedia a:hover i {
  transform: scale(1.1);
}
#topnav .socialmedia a.facebook:hover i {
  color: #4267b2;
}
#topnav .socialmedia li a.instagram:hover i {
  color: #c13584;
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) and (min-width: 768px) {
}
@media (max-width: 767px) {
  #topnav {
    display: none;
  }
}
@media (max-width: 575px) {
}

/**********   HEDER   **********/
header .logo {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-content: center;
}
header .logo img {
  max-width: 100%;
  max-height: 85px;
}
header .logo a {
  display: inline-block;
}
header .mobile-menu {
  display: none;
}
header .menu .socialmedia {
  display: none;
}
header .menu .close-menu {
  height: 30px;
  display: none;
  text-align: right;
}
header .menu .close-menu img {
  max-height: 100%;
}
header .menu nav {
  float: right;
  height: 100%;
}
header .menu nav ul {
  margin-bottom: 0;
  height: 100%;
  padding-left: 0;
}
header .menu nav ul li {
  list-style: none;
  float: left;
  margin-left: 10px;
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
  overflow: hidden;
}
header .menu nav ul li a {
  position: relative;
  display: block;
  line-height: 50px;
  padding: 10px;
  font-weight: 500;
  color: #083f21;
  font-size: 16px;
  text-transform: uppercase;
  transition: color ease-in-out 0.3s;
}
header .menu nav ul li a:hover {
  color: #accc44;
}
header .menu nav ul li a::before {
  content: "";
  height: 2px;
  width: 0%;
  position: absolute;
  bottom: 18px;
  left: 10px;
  background-color: #accc44;
  transition: width ease-in-out 0.3s;
}
header .menu nav ul li.current-menu-item a::before,
header .menu nav ul li a:hover::before {
  width: 60%;
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) and (min-width: 768px) {
  header .menu ul li a::before {
    top: auto;
    bottom: -4px;
  }
  header .menu ul li.current-menu-item a::before,
  header .menu ul li a:hover::before {
    transform: translateY(-4px);
  }
}
@media (max-width: 767px) {
  header .logo {
    justify-content: left;
  }
  header .menu {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    transition: transform ease-in-out 0.3s;
    padding: 30px;
  }
  header .menu .close-menu {
    display: block;
  }
  header .menu.mob-is-vis {
    transform: translateX(100%);
  }
  header .menu nav {
    height: auto;
  }
  header .menu nav ul li {
    width: 100%;
  }
  header .menu nav ul li a {
    width: 100%;
    text-align: center;
  }
  header .menu nav ul li a::before {
    display: none;
  }
  header .menu .socialmedia {
    display: flex;
    float: left;
    width: 100%;
    justify-content: center;
  }
  header .menu .socialmedia ul {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
  }
  header .menu .socialmedia ul li {
    list-style: none;
    padding-left: 0;
    display: inline-block;
    margin-top: 20px;
  }
  header .menu .socialmedia ul li a {
    font-size: 20px;
    padding: 10px;
    color: #222;
  }
  header .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: right;
  }
  header .mobile-menu i {
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
  }
}
@media (max-width: 575px) {
  header .logo img {
    max-width: 100%;
  }
}

/**********   SLIDER   **********/
#slider {
  min-height: 400px;
  background-color: #efefef;
}

/**********   ABOUT   **********/

#about {
  padding: 50px 0;
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) and (min-width: 768px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/**********   SERVICES   **********/

#services {
  padding: 50px 0 20px;
  background-color: #efefef;
}
#services h2 {
  color: #083f21;
  margin-bottom: 20px;
}
#services .service {
  margin-bottom: 30px;
}
#services .service a {
  transition: transform ease-in-out 0.3s, box-shadow ease-in-out 0.3s;
  display: block;
  overflow: hidden;
  position: relative;
}
#services .service a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#services .service a img {
  transition: transform ease-in-out 0.3s;
  margin-bottom: 0px;
}
#services .service a:hover img {
  /* transform: scale(1.1) rotate(5deg); */
}
#services .service h3 {
  background-color: #accc44;
  font-size: 24px;
  color: #fff;
  padding: 10px 20px;
  display: block;
  float: left;
  margin-bottom: 10px;
}
#services .service h4 {
  background-color: #ccc;
  font-size: 18px;
  color: #333;
  padding: 5px 10px;
  display: block;
  float: left;
  clear: both;
  margin-bottom: 0;
}
#services .service .text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) and (min-width: 768px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/**********   OPINIE GOOGLE   **********/

#google-opinions {
  padding: 20px 0;
  min-height: 200px;
}

/*******   SUPPLIERS    *******/

#suppliers {
  padding: 40px 0 30px;
  background-color: #efefef;
}
#suppliers a {
  display: block;
  padding: 10px 20px;
  transition: ease-in-out 0.3s background, ease-in-out 0.3s transform;
  background-color: #efefef;
  margin-bottom: 10px;
  filter: grayscale(100%);
}
.page-template-page-branze #suppliers,
.page-template-page-branze #suppliers a,
.page-template-page-branze #suppliers a span,
.single-branze #suppliers,
.single-branze #suppliers a,
.single-branze #suppliers a span {
  background-color: #fff;
}
#suppliers a span {
  display: block;
  text-align: center;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: multiply;
  background-color: #efefef;
  transition: ease-in-out 0.3s background;
  margin-bottom: 0;
}
#suppliers a:hover span {
  background-color: #fff;
  filter: grayscale(0%);
}
#suppliers a img {
  filter: grayscale(100%);
  transition: ease-in-out 0.3s filter;
  mix-blend-mode: multiply;
}
#suppliers a:hover img {
  filter: grayscale(0%);
  background-color: #fff;
}
#suppliers a:hover {
  background-color: #fff;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/*******   PAGE    *******/

#page-top {
  padding: 20px 0 20px;
  background-color: #efefef;
}
#page-top h2 {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #083f21;
}

#page-content {
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) and (min-width: 768px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/**********   FOOTER   **********/
footer {
  background-color: #e9e9e9;
}
footer .contact-row {
  display: flex;
}
footer .contact-row .item {
  width: 33.3%;
  padding: 50px 20px 50px 120px;
  background-color: #e80202;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  color: #fff;
  position: relative;
}
footer .contact-row .item::before {
  content: "";
  opacity: 0.3;
  position: absolute;
  height: 60px;
  width: 60px;
  background-image: url(img/marker.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  left: 40px;
  top: calc(50% - 30px);
}
footer .contact-row .item.tel::before {
  background-image: url(img/phone.svg);
  opacity: 0.5;
}
footer .contact-row .item.mail::before {
  background-image: url(img/mail.svg);
}
footer .contact-row .item.tel {
  background-color: #fcd425;
}
footer .contact-row .item.mail {
  background-color: #007ecd;
}
footer .contact-row .item:nth-child(2) {
  width: 33.4%;
}
footer .contact-row .item h4 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 5px;
  width: 100%;
}
footer .contact-row .item p {
  margin-bottom: 0;
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) {
  footer .contact-row .item {
    padding: 120px 20px 20px 20px;
    justify-content: center;
    align-content: flex-start;
    text-align: center;
  }
  footer .contact-row .item::before {
    left: calc(50% - 30px);
    top: 40px;
  }
}
@media (max-width: 767px) {
  footer .contact-row .item h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  footer .contact-row {
    flex-direction: column;
  }
  footer .contact-row .item,
  footer .contact-row .item:nth-child(2) {
    width: 100%;
  }
}

footer .footer {
  padding: 20px 0;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
footer .footer h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 5px;
  color: #1c1c1c;
}
footer .footer p {
  margin-bottom: 5px;
}
footer .footer ul {
  margin-bottom: 0;
  padding-left: 0;
}
footer .footer ul li {
  list-style: none;
  margin-bottom: 5px;
}
footer .footer ul li a {
  color: #1c1c1c;
  display: block;
  transition: transform ease-in-out 0.3s, color ease-in-out 0.3s;
}
footer .footer ul li a:hover {
  transform: translateX(5px);
  color: #007ecd;
}
footer .footer-copyright {
  padding: 10px 0;
  font-size: 14px;
  background-color: #accc44;
  color: #083f21;
}
footer .footer-copyright p {
  margin-bottom: 0;
}
footer .footer-copyright .woiteh {
  text-align: right;
}
footer .footer-copyright .woiteh a {
  color: #083f21;
  transition: color ease-in-out 0.3s;
}
footer .footer-copyright .woiteh a:hover {
  color: #000;
}

@media (max-width: 1199px) and (min-width: 992px) {
}
@media (max-width: 991px) {
  footer .footer .onas,
  footer .footer .kontakt {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  footer .footer {
    text-align: center;
  }
  footer .footer-copyright,
  footer .footer-copyright .woiteh {
    text-align: center;
  }
}
@media (max-width: 575px) {
}
