*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #4b4949;
}

.box-wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.text-wrapper {
  flex-basis: 50%;
  flex-shrink: 0;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title {
  font-size: 56px;
  color: rgb(28, 28, 191)
}

.description-site {
  font-size: 36px;
  margin-bottom: 24px
}

.project-description {
  font-size: 28px;
  margin-bottom: 24px
}

.text-wrapper::after {
  content: '';
}

.image-wrapper img {
  object-fit: cover;
  height: 100%;
}

@media (max-width: 992px) {
  .box-wrapper {
    display: block;
    position: relative;
  }

  .text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    color: white;
    text-align: center;
  }

  .title {
    color: white;
    font-size: 36px;
  }

  .description-site {
    font-size: 24px;
  }

  .project-description {
    font-size: 16px;
    margin-bottom: 0;
  }

  .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 3;
  }
}