.wallpaper {
  background-image: url(../img/front-hladna.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.wallpaper h1 {
  color: #fff;
  opacity: 0.7;
  font-size: 5em;
}

.container-about {
  display: flex;
  width: 100%;
  height: 100%;
}

.container-about .nav-bar {
  width: 20%;
  min-height: 100%;
  flex-direction: column;
  background-image: linear-gradient(
      rgba(240, 239, 239, 0.9),
      rgba(240, 239, 239, 0.9)
    ),
    url(../img/AlucoBondFasade.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 70px;
}

.container-about .nav-bar button {
  border: none;
  background-color: transparent;
  width: 100%;
  outline: none;
}

.container-about .right-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  padding: 70px;
  background: #fff;
}

.container-about .right-text p {
  color: #333;
  line-height: 1.7em;
  text-align: justify;
  margin: none;
  max-width: 100%;
}

.container-about .right-text .right-btns {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-content: center;
  justify-items: center;
}

.container-about .right-text .right-btns .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.container-about .right-text .right-btns .btns a img {
  height: 350px;
  width: 350px;
  object-fit: cover;
  transition: transform 0.7s;
}

.container-about .right-text .right-btns .btns a img:hover {
  transform: scale(1.1);
  box-shadow: 10px 10px 30px #33333333;
}

.container-about .right-text .right-btns .btns p {
  position: absolute;
  display: block;
  top: 50%;
  font-weight: 900;
  color: #fff;
  opacity: 0.8;
  padding: 10px;
  background-color: #3333339c;
}

@media (max-width: 1405px) {
  .container-about .right-text .right-btns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 993px) {
  .container-about .right-text .right-btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

@media (max-width: 963px) {
  .wallpaper h1 {
    font-size: 3em;
  }
}

@media (max-width: 777px) {
  .container-about .nav-bar {
    width: 25%;
  }

  .container-about .right-text {
    width: 75%;
    padding: 35px;
  }

  .container-about .right-text p {
    line-height: none;
  }

  .container-about .right-text ul {
    line-height: none;
  }
}

@media (max-width: 610px) {
  .container-about {
    flex-direction: column;
  }

  .container-about .nav-bar {
    min-width: 100%;
  }

  .container-about .right-text {
    min-width: 96.5%;
    padding: 10px;
  }

  .container-about .right-text p {
    width: 90%;
  }
}

@media (max-width: 591px) {
  .wallpaper h1 {
    font-size: 2em;
  }
}
