* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
	text-decoration: none;
}






.container {
	width: 1080px;
	display: block;
	margin: 0 auto;
}

.custom-logo {
	max-width: 300px;
	height: auto;
	margin-top: 10px;
}

.sticky {
  position: fixed;
  z-index: 99;
}

.header {
	width: 100%;
	height: 90px;
	line-height: 90px;
	box-shadow: 0px 2px 5px #424242;
	display: flex;
	justify-content: space-around;
  -webkit-transition: all 3s ease;
     -moz-transition: all 3s ease;
      -ms-transition: all 3s ease;
       -o-transition: all 3s ease;
          transition: all 3s ease;
}

nav ul {
	height: 90px;
	text-align: center;	
}


nav ul li {
	display: inline;
	padding: 35px;
	transition: width 2s;
	border-width: 10px;
	
}

nav ul li:hover {
	border-bottom: 3px solid #FFCE0A;
	border-width: 100%;
}

nav ul li a {
	color: #FFCE0A;
}

/*==================================SLIDER=====================================*/



.banner {
 width: auto;
  height: 750px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}


.boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 100%;
  width: 100%;
  padding: 50px 0;

}

@media(max-width: 1280px) {

  .banner {
  width: auto;
  height: 500px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}


  .boxes {
  display: flex;
  justify-content: center;
  align-items:baseline;
  position: relative;
  top: 50%;
  width: 100%;
  padding: 10px 0;

}
}

.box {
  width: 300px;
  height: 200px;
  background-color: #01216B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  border-radius: 15px;
  box-shadow: 1px 1px 30px #424242;
}

.box h4 {
  color: #fff;
  font-size: 24px;
}



.box:nth-child(2) {
  background-color: #FAC83C;
}

.call-to-action {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.call-to-action h2 {
  color:#01216B;
  font-size: 42px;
  font-weight: 700;
  background-color:  #FAC83C;
  padding: 6px;
}

a.btn {
  padding: 25px 55px;
  background-color: #01216B;
  color: #FAC83C;
}

a.btn:hover {
 
  background-color: #FAC83C;
  color:#01216B;
}

.about {
  padding: 25px 0;
  background-color: #FAC83C;
}

.about > .container > h2 {
   font-size: 42px;
   color:  #01216B;
   padding: 15px 0;
}

.about > .container > p {
   font-size: 26px;
   color:  #01216B;
   padding: 15px 0;
   text-align: justify;
}


.footer {
  width: 100%;
  height: auto;
  background-color: #424242;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}


.social-media ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;

}

.social-media ul li a img {
  width: 26px;
  margin-left: 20px;
}

.local ul li, .local h3 {
  color: #fff;
}

.contatos ul {
  padding-top: 10px;
}

@media(max-width: 500px) {
  .about > .container > p {
    font-size: 18px !important;
  }
  .about > .container > h2 {
    text-align: center;
  }
  .boxes {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 30px 0;
  }

  .box {
    width: 360px;
  }
  nav {
    display: none !important;
  }

  .container {
    width: 95%;
  }

  .call-to-action {
    display: block;
    height: auto;
    text-align: center;
    padding: 30px;
  }

  .title {
    margin-top: 20px;
  }

  .banner {
   height: 300px;
    background-size: cover;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    height: auto;
  }

  .sidebar-1, .sidebar-2, .sidebar-3, .sidebar-4 {
    margin: 20px;
  }
}



@media(max-width: 375px) {
  .box {
    width: 335px !important;
  }

  .banner {
    height: 250px !important;
  }
}



