.banner-image {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../../imagens/pedestre.jpg);
    background-position: center 20%;
    min-height: 28rem;
}

.slick__slider img {
    border-radius: 3px;
    cursor: pointer;
}

.slick__container img:hover {
    opacity: 0.2;
}

article ul {
    padding: 0 1.5rem;
}

article li {
    margin-bottom: 0.5rem;
}

.orcamento__container {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../../imagens/orcamento.jpg);
    background-size: cover;
    min-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orcamento__container a{
  border: 1px solid black;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
  text-align: center;
  font-size: 1.5rem;
}

.orcamento__container a:active,
.orcamento__container a:hover {
  cursor: pointer;
  background-color: #ff795b;
  color: white;
  border-color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 500;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content { 
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

@media (max-width: 32.6rem) {
    .banner-image {
        display: none;
    }
}

@media (max-width: 26rem) {
    .slick__slider img {
        height: 14rem;
        width: 14rem;
    }
}