.home-background {
  width: 100%;
  overflow: hidden;
  z-index: -2;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.home-background img {
  min-width: 100%;
  min-height: 100%;
}
.home-introduction {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 10px;
  box-sizing: border-box;
}
@media only screen and (min-width: 500px) {
  .home-introduction {
    padding: 50px 30px 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-introduction {
    width: 50%;
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 1700px) {
  .home-introduction {
    top: 50%;
    bottom: auto;
    padding: 50px;
  }
}
.home-introduction p {
  text-align: justify;
}
@media only screen and (min-width: 360px) {
  .home-introduction p {
    text-align: left;
  }
}
section.home {
  height: 100vh;
  position: relative;
}
section.home img.bosh {
  display: none;
}
@media only screen and (min-width: 1200px) {
  section.home img.bosh {
    display: block;
    position: absolute;
    top: 1.5%;
    right: 1%;
  }
}
@media only screen and (min-width: 1700px) {
  section.home img.bosh {
    width: 320px;
  }
}
@media only screen and (min-width: 1200px) {
  section.home .home-image {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 55%;
  }
}
@media only screen and (min-width: 1430px) {
  section.home .home-image {
    right: -3%;
  }
}
@media only screen and (min-width: 1700px) {
  section.home .home-image {
    right: -10%;
  }
}
section.home .home-image figure {
  height: 50vh;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 500px) {
  section.home .home-image figure {
    height: 60vh;
  }
}
@media only screen and (min-width: 768px) {
  section.home .home-image figure {
    height: 75vh;
    width: 100%;
  }
}
@media only screen and (min-width: 1700px) {
  section.home .home-image figure {
    height: 85vh;
  }
}
section.home .home-image figure img {
  max-width: 100%;
  max-height: 45vh;
  position: absolute;
  top: 25px;
  left: 0;
  transition: .5s;
}
@media only screen and (min-width: 500px) {
  section.home .home-image figure img {
    top: 50px;
  }
}
@media only screen and (min-width: 768px) {
  section.home .home-image figure img {
    max-height: 50vh;
  }
}
@media only screen and (min-width: 1430px) {
  section.home .home-image figure img {
    width: 100%;
    max-height: none;
  }
}
@media only screen and (min-width: 1700px) {
  section.home .home-image figure img {
    top: 90px;
    width: 80%;
  }
}
section.home .home-image figure img.triangle {
  animation: rotateTriangle 15s linear infinite;
}
section.home .home-image figure img.car {
  animation: rotateCar 10s ease-in-out infinite;
}
section.home .home-image figure img.circle:hover {
  transform: scale(1.1);
}
@keyframes rotateTriangle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateCar {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
