* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: black;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.logo-wrapper img {
  width: 85px;
  height: auto;
}

.splitscreen-wrapper {
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.design {
  text-align: center;
  background-image: url(files/media/47613b21-a8b1-4425-a78f-8a654b4d3f2a.webp);
  background-position: 30% center;
}

.detailing {
  text-align: center;
  background-image: url(files/media/6fd85950-29d3-4ee2-8898-61f1e070b6ea.webp);
  background-position: 30% center;
}

.design,
.detailing {
  width: 50%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.design::before,
.detailing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.design h1,
.detailing h1 {
  position: relative;
  z-index: 2;
  margin-top: 22%;
  font-size: 2.7rem;
  color: white;
}

main p {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.1rem;
  font-weight: 100;
}

main button {
  position: relative;
  z-index: 2;
}

.button_container {
  margin-top: 5%;
}

.action_btn_one {
  cursor: pointer;
  width: 160px;
  height: 40px;
  font-size: 0.9rem;
  margin-top: 2%;
  border: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.action_btn_one:hover {
  background: rgb(61, 106, 255);
  box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: white;
}

.action_btn_one:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

.action_btn_one::before {
  content: "";
  display: block;
  width: 0px;
  height: 50%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 30px 10px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.action_btn_one:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

@media screen and (max-width: 768px) {
  .splitscreen-wrapper {
    flex-direction: column;
  }

  .design h1,
  .detailing h1 {
    position: relative;
    z-index: 2;
    margin-top: 30%;
    font-size: 1.7rem;
    color: white;
  }

  .design,
  .detailing {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .splitscreen-wrapper {
    flex-direction: column;
  }

  .design h1,
  .detailing h1 {
    position: relative;
    z-index: 2;
    margin-top: 25%;
    font-size: 2.5rem;
    color: white;
  }

  .design,
  .detailing {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
}
