/*nav*/
/* Basic styling */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  body {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }
  nav {
    background: #ba763f;
    padding: 0 15px;


}
  a {
    color: white;
    text-decoration: none;
    padding: 15px 30px;
  }
  .menu {
    list-style-type: none;
}
  .logo {
    font-size: 20px;
    padding: 7.5px 10px 7.5px 0;
  }
  .item {
    float: center;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 30px 30px;
    text-decoration: none;
    font-size: 17px;
  }
 
  .item a:hover,
  .item a:hover::after {
    color: rgb(60, 60, 60);
    background-color: #ffff;
  }
  /* Mobile menu */
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .menu li a {
    display: block;
    padding: 15px 5px;
  }
  .toggle {
    order: 1;
    font-size: 20px;
  }
  .item {
    order: 2;
    width: 100%;
    text-align: center;
    display: none;
  }
  .active .item {
    display: block;
  }

  .icon-bar {
    z-index: 10;
    right:0;
      position: fixed;
      top: 70%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
    }
    
    .icon-bar a {
      width:60px;
      height:60px;
      display:block;
      text-align:center;
      margin:0 10px;
      border-radius: 50%;
      padding: 6px;
      box-sizing: border-box;
      text-decoration:none;
      box-shadow: 0 10px 15px rgba(0,0,0,0.3);
      background: linear-gradient(0deg, #ddd, #fff);
      transition: .5s;
    }
    
    .icon-bar a:hover {
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      text-decoration:none;
    }
    
    .facebook,.instagram,.whatsapp {
      width: 100%;
      height:100%;
      display:block;
      background: linear-gradient(0deg, #fff, #ddd);
      border-radius: 50%;
      line-height: calc(60px - 12px);
      font-size:24px;
      color: #262626;
      transition: .5s;
    }
     
    
    .instagram:hover {
      color: #e95950;
    }
    
    .whatsapp:hover {
      color: #25D366;
    }

  /* Tablet menu */
  @media all and (min-width: 700px) {
    .menu {
      justify-content: center;
    }
    .logo {
      flex: 1;
    }
    .toggle {
      flex: 1;
      text-align: right;
      order: 2;
    }
   
  /* Desktop menu */
  @media all and (min-width: 960px) {
    .menu {
      align-items: flex-start;
      flex-wrap: nowrap;
      background: none;
    }
    .logo {
      order: 0;
    }
    .item {
      order: 1;
      position: relative;
      display: block;
      width: auto;
    }
    
    .toggle {
      display: none;
    }
 }
}
  /* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 20px;
    height: 500px; /* Should be removed. Only for demonstration */
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 960px) {
    .column {
      width: 100%;
    height: auto;
    }
    
}

.Imagem, .Imagem1{
    height: 30vw;
    object-fit: contain;
        
    }
@media screen and (max-width:960px){
    .Imagem{
        width: 90vw;
        height: 60vw;
        object-fit: contain;
    }
    .Imagem1{
        width: 90vw;
        height: 90vw;
        object-fit: contain;    
    }
    
}

h1{
    font-size:30px;
    text-align: center;
}
h2{
    font-size: 25px;
}

.texto{
    font-size: 20px;;
    text-align: center;
}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activeDot, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.container {
  padding:10px 16px;
}
.rowGal {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.columnGal {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.columnGal img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .columnGal {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columnGal {
    flex: 100%;
    max-width: 100%;
  }
}
  /* Create three equal columns that floats next to each other */
  .col3 {
    float: left;
    width: 33.33333%;
    padding: 20px;}
  .col2 {
    float: left;
    width: 50%;
    padding: 20px;}
  /* Clear floats after the columns */
  .row3:after {
    content: "";
    display: table;
    clear: both;
  }
  .opacity{
    opacity:0.60
  }
  .opacity:hover{
    opacity:1
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 960px) {

    .col3{
        width: 100%;
        
    }
    .col2{
        width:100%;
    }
   
  }
          /* Add a pointer when hovering over the thumbnail images */
    .cursor {
      cursor: pointer;
    }
       /* Add a transparency effect for thumnbail images */
    .demo {
      opacity: 0.6;
    }
    
    .activeGal,
    .demo:hover {
      opacity: 1;
    }


    
  #NOSSOESPAÇO{
    padding: 50px 0px;
  }
  .video{
    width: 70vw;
    margin: 0 15vw;
    } 
    @media (max-width:800px) {
      #NOSSOESPAÇO{
        padding: 15px 0px;
      }
      .video{
        width: 90vw;
        margin: 0 5vw;
      }    
    }
      
  
    
     @media screen and (max-width: 960px) {

      .map-responsive{
        margin-top: 0;
      }
      .map{
        height:200px;
      }
      .local{
        height: 200px;
      }
    }
 
    .card{
      margin: 10%;
      max-width: 360px;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
    
  }
  .margin-bottom{
  margin-bottom:16px
  }
    @media screen and (max-width:800px) {
      .card{
        margin: 2%;
      }
    }
    
    .card:hover{ 
      transition: all .3s ease-in-out; 
      box-shadow: 5px 0px 40px rgba(0,0,0, .2);
      border-radius: 5;
      }
    
      .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: whitesmoke;
      opacity: .85;
      overflow: hidden;
      width: 100%;
      height: 0;
      transition: .5s ease;
    }
    .containerCurriculo {
      position: relative;
    }
    
    .image {
      display: block;
      width: 100%;
      height: auto;
      }
    .showCurriculo{
      height: 100%;
    }
    .curriculo {
      color: #48433c;
      font-size: 20px;
      position: absolute;
      top: 10%;
      text-align: center;
      margin: 0% 10%;
    }
    
    @media screen and (max-width:800px) {
      .curriculo {
        font-size: 17px;
        top: 2%;
      }
    }
    
    .map-responsive:hover {
      box-shadow: 5px 0px 40px rgba(0,0,0, .2);
    }
    
    .map{
    width: 40vw;
  }
 
  @media screen and (max-width:960px){
    .map{  
      width: 90vw;
      height: 60vw;
    }
  }

  footer{
    margin-top: 40px;;
    padding: 40px 0px;
    text-align: center;
    display:block;
    background-color: #ba763f;
    color: #fff;
    font-size: 19px;
  }
  
  footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
  }