/*-----------------------------------------------------------------------------
	Name	    : Footer
	Description	: footer setings
	Author		: abcreativity
	Author URL	: https://abcreativity.pl/
	Created		: 01 September 2019
	License		: All Rights Reserved. Do Not Copy!
-------------------------------------------------------------------------------*/
footer p {
  margin: 0 !important;
}
#footer-main {
  padding: 3rem 0 2rem;
  position: relative;
}
#footer-main:before {
  position: absolute;
  content: "";
  background: #f7f7f7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#footer-main p, #footer-main a {
  font-size: 0.85rem;
}
#footer-main .footer-logo {
  max-height: 4rem;
  width: auto;
}
.footer-menu a {
  font-weight: 500;
}
/* Footer contact */
.footer-info, .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer-contact-icon {
  margin-right: 0.5rem;
}
.footer-info .footer-contact {
  margin-bottom: 1rem;
}
.footer-info .footer-contact:last-child {
  margin-bottom: 0;
}
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.footer-menu li {
  position: relative;
  padding: 0;
  margin: 0.5rem 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .footer-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .footer-info .footer-contact {
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .footer-info .footer-contact:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .footer-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-menu li:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 40%;
    background: #8D8D8D;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: calc(-1rem - 0.5px);
  }
  .footer-menu li:first-child:after {
    display: none;
  }
}
/* Footer author */
#footer-bottom {
  background: #f7f7f7;
  padding: 1rem 0;
  font-size: 0.85rem;
  border-top: 1px solid #E5E5E5;
}
#footer-bottom p {
  font-size: 0.75rem;
}