* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}

body {
  background: #b12e2e;
  text-align: center;
  font-family: "Muli", sans-serif;
  margin: 0;
  color: #fff;
}

h1 {
  text-align: center;
  margin-top: 30px;
  font-size: 40px;
  font-family: sans-serif;
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.max {
  display: block;
}
.min,
.micro {
  display: none;
}

.container {
  width: 100%;
  display: flex;
  padding: 0 20px;
}

.slide {
  height: 80vh;
  border-radius: 20px;
  margin: 10px;
  cursor: pointer;
  color: #fff;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 500ms ease-in-out;
}

.top {
  background-position: top;
}
.left {
  background-position: left;
}
.right {
  background-position: right;
}

.slide.active {
  flex: 5;
}

.portfolio__btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
  color: #a42718;
  background-color: #fff;
  text-transform: uppercase;
  font-family: "Corporate-A-Bold";
  border: 1px solid #a42718;
  transition: all 0.8s;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-top: 1%;
  margin-bottom: 1%
}

.portfolio__btn:hover {
  color: #fff;
  background-color: #a42718;
  border-color: #fff;
}

footer h5 {
  padding: 10px;
  color: #fff;
}


@media (max-width: 1000px) {
  .slide {
    height: 40vh;
  }
  .min {
    display: block;
  }
  .max,
  .micro {
    display: none;
  }
}

@media (max-width: 700px) {
  .micro {
    display: block;
  }
  .max,
  .min {
    display: none;
  }
}
