@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;  
}

body {
  background: #ffffff;
}

.titulo {
  background: #ffffff;
  padding: 10px calc((100% - 1400px) / 2);
  display: flex;
  flex-wrap: wrap; 
  border-bottom: 1px solid green; 
}

/*  */

.titulo h2 {
  /* margin: 0 auto; */
  font-size: 24px;
  color: #484848;
  text-align: left;  
  margin-bottom: 20px;
  margin-top: 20px;
  border-bottom: 5px solid green;
}


/* imagem */

.imagem {
  background: #ffffff;
  padding: 10px calc((100% - 1100px) / 2);
  padding: 30px 60px 30px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.imagem img {
  margin: 0 auto;
  width: 70%;
}

.imagem i {
  display: block;
  position: absolute;
  font-size: 28px;
  color: red;
  top: 780px; 
  left: 1000px; 
  margin: auto;
  width: 100%;
}



.container {
  margin: 20px auto 0;
  position: relative;
  width: 90%;
}

.pyramid {
  margin: 0 auto;
  width: 100%;
  z-index: 99;
}

img[usemap] {
	border: none;
	height: auto;
  max-width: 70%;
  width: auto;
  margin: 0 auto;
}  

p {
  margin: 0;  
}

.overlayBg {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: none;
  /* background: black;
  opacity: 0.2; */
}
.overlayBg.open {
  display: block;
}
[overlay] {
  position: fixed;
  top: 65%;
  left: 90%;
  z-index: 10;
  transform: translate(-50%, -50%);
  width: 260px;
  /* padding: 5px; */
  background-color: white;
  box-shadow: 0 1px 3px #0005;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s linear 0.4s,
    opacity 0.4s,
    transform 0.4s;
}

[overlay] h2 {
  color: green;
  /* background: green; */
  padding-bottom: 15px;
  padding-top: 15px;
  text-align: center;
}

[overlay] h3 {
  color: #eb511f;
  text-align: left;
  padding-left: 10px;
}

[overlay].open {
  visibility: visible;
  opacity: 1;
  transition:
    opacity 0.7s,
    transform 0.7s;
}
[overlay] button.close {
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  margin-right: 10px;
  font-size: 24px;
  color: rgb(233, 230, 230);
  cursor: pointer;
  outline: none;
}
[overlay] button.close:hover,
[overlay] button.close:focus {
  color: #000;
}

area:hover {
  cursor: pointer;
}

.clientes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  padding-bottom: 20px;
  margin: 0 auto;
}

.clientes-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  margin-top: 60px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;

} 

.clientes-item img {
  width: 220px;
  padding: 0px 40px 40px 40px;
}

#ferrous {
  max-width: 90%;
}

#amg {
  max-width: 90%;
}

#mosaic {
  max-width: 90%;
}

#cmoc {
  max-width: 90%;
}

.btnfixed {
  display: none;
}


@media (max-width: 700px) {

  .titulo {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .titulo h2 {    
    margin: 0 auto;    
    text-align: center;      
  }

  img[usemap] {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .pyramid {
    margin: 0 auto;
    width: 100%;
  }

  .btnfixed {
    display: flex;
  }

  .clientes-item img {
    width: 100%;
    padding-bottom: 60px;
    margin: 0 auto;
  }  

  [overlay] {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 350px;
    /* padding: 5px; */
    background-color: white;
    box-shadow: 0 3px 5px #0005;
    visibility: hidden;
    opacity: 0;
    transition:
      visibility 0s linear 0.4s,
      opacity 0.4s,
      transform 0.4s;
  }
}