
.left-content{
  position: relative;
}

.right-content{
  position: relative;
  display: grid;
  justify-items: end;
}

.side-container{
  position: sticky;
  top: 210px;
  padding-right: 20px;
}

.projeto{
    display: grid;
    grid-template-columns: 40% 60%;
    margin-top: 60px;
    gap: 25px;
}

.left-content{
    position: relative;
  }
  
  .right-content{
    position: relative;
    display: grid;
    justify-items: end;
  }
  
  .texto-container{
    margin-top: 150px;
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    flex-direction: column
  }
  
  .texto-container p{
    color: #825C40;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .texto-container p:last-child{
    margin-bottom: 0px;
  }
  
  .texto-container h1{
    font-family: 'Segoe UI Variable Semibold';
    color: #AB7954;
    font-size: 1.5rem;
    text-transform: uppercase;
  }
  
  .texto-container hr{
    width: 100%;
    border-top: 1px solid #AB7954;
  }
  
  .projeto-imagens{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 150px;
  }

  .item{
    width: 100%;
    display: flex;
    height: auto;
  }
  

.item img{
    width: 100%;
}


.modal {
  display: none;
  position: fixed;
  z-index: 50;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: white;
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: #AB7954;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #AB7954;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  justify-content: center;
}

.mySlides img{
  height: 100%;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #AB7954;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(255, 255, 255, 0.76);
}

/* Position the "next button" to the right */
.next {
  right: 0;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn3{
  color: #A2685C;
  background-color: white;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #A2685C;
  padding: 8px 22px;
  transition: .2s ease-in-out;
  display: inline-block;
  margin-top: 40px;
  width: fit-content;
  height: fit-content;
}


@media (max-width: 770px){
  .projeto {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .projeto-imagens {
    margin-top: 20px;
  }

  .side-container{
    padding-right: 0px;
  }
}