/*
Theme Name: Pod Lipą
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;
  background-color: #efefef;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

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

/**********   HEDER   **********/

header {
  padding: 0;
  background-color: #fff;
}
header .logo{
  padding: 10px 0;
}
header .logo img{
  height: 140px;
}
header .close-menu{
  display: none;
  text-align: right;
  margin-top: 20px;
  margin-bottom: 10px;
}
header .close-menu img{
  height: 20px;
}
header .mobile-menu{
  display: none;
  height: 160px;
  justify-content: flex-end;
  align-items: center;
  font-size: 26px;
}
header .mobile-menu i{
  padding: 20px;
  cursor: pointer;
}

header .contact-bar{
  display: block;
  background-color: #efefef;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 300;
  float: right;
  line-height: 20px;
}
header .contact-bar .contact-bar-item{
  float: left;
  margin-right: 20px;
}
header .contact-bar ul{
  padding-left: 0;
  margin-bottom: 0;
}
header .contact-bar li{
  list-style: none;
  float: left;
  margin-right: 15px;
}
header .contact-bar li:last-child{
  margin-right: 0;
}
header .contact-bar i{
  color: #50834b;
  margin-right: 5px;
  font-size: 20px;
}
header .contact-bar li i{
  margin-right: 0;
}

header .main-menu{
}
header .main-menu ul{
  margin-top: 10px;
  padding-left: 0;
  display: flex;
  height: 100px;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
}
header .main-menu li{
  list-style: none;
}
header .main-menu li a{
  display: block;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: #222;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 20px 10px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  header .main-menu li a{
    letter-spacing: 1px;
  }
}
@media (max-width: 992px){
  header .menu{
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    left: 0;
    top: 0;
    text-align: center;
  }
  header .close-menu{
    display: block;
  }
  header .menu.mob-is-vis{
    display: inline-block;
  }
  
  header .mobile-menu{
    display: flex;
  }
  header .main-menu ul{
    display: block;
  }
  header .main-menu ul li{
    margin-bottom: 10px;
  }
  header .main-menu ul li a{
    text-align: center;
    background-color: rgba(255,255,255,0.5);
  }
  header .contact-bar{
    line-height: 30px;
    display: inline-block;
    float: none;
    text-align: center;
  }
  header .contact-bar .contact-bar-item ul li{
    display: inline-block;
    float: none;
  }
  header .contact-bar .contact-bar-item.socialmedia{
    clear: both;
    width: 100%;
    text-align: center;
  }


}
@media (max-width: 991px) and (min-width: 768px) {
}
@media (max-width: 767px) {
  header .contact-bar .contact-bar-item{
    clear: both;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  header .logo img{
    margin-left: 10px;
  }
}
@media (max-width: 400px) {
}
@media (max-width: 300px) {
}

/********  END HEADER  *********/



/*******   FOOTER    *******/
footer {
  background-color: #d7eaed;
  background-image: url(/img/bg.svg);
  background-size: 100px;
  padding-top: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #000;
}
footer ul {
  padding-left: 0;
}
footer img {
  max-width: 80%;
}
footer h4 {
  color: #000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}
footer p {
  margin-bottom: 0;
}
footer .socialmedia{
  list-style: none;
}
footer .socialmedia li{
  float: left;
  margin-right: 10px;
  line-height: 60px;
}
footer .socialmedia li a{
  padding: 15px;
  background-color: #d6d6d6;
  border-radius: 30px;
  text-align: center;
}
footer .socialmedia li a.facebook:hover {
  background-color: #4267b2;
}
footer .socialmedia li a.instagram:hover {
  background-color: #c13584;
}
footer .socialmedia li a i{
  color: #6b6b6b;
  line-height: 20px;
  font-size: 20px;
  width: 20px;
}
footer .socialmedia li a:hover i{
  color: #fff;
}
footer .footer-copyright {
  background-color: #074f00;
  color: #bbe1b8;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 0;
  margin-top: 20px;
}
footer .footer-copyright p {
  margin-bottom: 0;
  line-height: 24px;
}
footer .footer-copyright a {
  color: #fff;
  font-weight: 500;
  transition: ease-in-out 0.4s color;
}
footer .footer-copyright a:hover {
  color: #bbe1b8;
}
footer .footer-copyright .woiteh {
  text-align: right;
}

@media (max-width: 1199px) and (min-width: 992px) {
  footer {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 991px)  {
  footer .logo{
    margin-bottom: 20px;
    text-align: center;
  }
  footer .logo img{
    height: 120px;
  }
}
@media (max-width: 767px) {
  footer,
  footer .woiteh p{
    text-align: center;
  }
  footer .footer-copyright .woiteh {
    margin-top: 10px;
  }
  footer .sm{
    margin-top: 20px;
  }
  footer .socialmedia{
    text-align: center;
  }
  footer .socialmedia li{
    float: none;
    display: inline-block;
  }
}
@media (max-width: 550px) {
}
