﻿
footer .container {
	background: white;
	color: #555;
	font-size: 1.2rem;
}
footer .centered {
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .centered .footer-logo {
  flex-basis: 100%;
}
footer .centered .footer-contatti{
  margin-left: 80px;
  margin-top: -30px;	
}
footer .centered .footer-logo img.logo {
  padding: 30px 20px 10px 20px;
  max-width: 100%;
}
footer .centered .footer-navigation {
  flex-basis: 100%;
  padding: 0px 50px 20px 50px;
}
footer .centered .footer-navigation .footer-links-holder {
  width: 33.33333%;
  position: relative;
  float: left;
  margin: 0;
  border: solid #555;
  border-width: 0 1px 0 0;
  padding: 0 30px;
  height: 100%;
}
footer .centered .footer-navigation .footer-links-holder:last-child {
  border: none;
}
footer .centered .footer-navigation .footer-links-holder .footer-links {
  margin-left: 10px;
  padding: 0;
  list-style: none;
  -webkit-transition: max-height .5s;
  transition: max-height .5s;
}
footer .centered .footer-navigation .footer-links-holder .footer-links a {
  color: #555;
}
footer .centered .footer-navigation .footer-links-holder .footer-links.level-2 {
	margin-top: 0px;
}
footer .centered .footer-navigation .footer-links-holder .footer-links.level-2 li{
	margin-top: 0px;
	margin-bottom: 0px;
}
footer .bottom-bar {
  position: relative;
  text-align: center;
  font-size: .8em;
  text-transform: uppercase;
  background: #000;
  padding: 15px 0;
}

/* Responsive Mobile Sizes */
@media only screen and (max-width: 991px) {
  footer .container {
	background: white;
	color: #555;
	font-size: 4rem;
  }

  footer .centered .footer-logo {
    width: 100%;
    margin: 0 auto;
  }
  footer .centered .footer-logo img.logo {
    padding: 30px 10px 0px 10px;
    width: 100%;
  }
  footer .centered .footer-contatti {
    padding: 0 25px;
    margin-bottom: 50px;
    font-size: 3rem;
  }
  footer .centered .footer-navigation .footer-links-holder {
    width: 100%;
    padding: 0;
    border: none;
  }
  footer .centered .footer-navigation .footer-links-holder h4 {
    margin: 0;
    padding: 10px 20px;
    border-top: #0161ac 1px solid;
    border-right: none;
    cursor: pointer;
    /* Down Arrows */
  }
  footer .centered .footer-navigation .footer-links-holder h4 span.arrow {
    float: right;
    margin-right: 10px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-top: 14px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #0C62A1;
    border-right: 2px solid #0C62A1;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: transform .5s;
    transition: transform .5s;
  }
  footer .centered .footer-navigation .footer-links-holder .footer-links {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
  }
  footer .centered .footer-navigation .footer-section.active h4 span.arrow {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  footer .centered .footer-navigation .footer-section.active .footer-links {
    max-height: 10000px;
    margin-bottom: 50px;
  }
  footer .centered .footer-navigation .footer-links-holder {
    height: auto;
  }

}
/* Typography */
footer h4 {
  color: #555;
  font-weight: bold;
  margin-bottom: 10px;
}
footer p, footer li {
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 3px 0;
}
footer a {
  text-decoration: none;
  -webkit-transition: color .5s, background .5s;
  transition: color .5s, background .5s;
}
footer ul.level-2 a:before,
footer ul.level-3 a:before {
    content: "-";
}
footer a:hover {
  color: #65c2ed;
}

/* Misc CSS */
footer .clearfix:before,
footer .clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


