body {
  z-index: 23;
}

img {
  width: 15vw;
  margin-bottom: 8vh;
}

.text_wim {
  margin-left: 5vw;
  font-family: "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.5vw;
  color: #0d1821;
  text-align: justify;
}

h2 {
  margin: 0;
  text-align: center;
  font-family: "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 2vw;
  color: #0d1821;
}

.container_wim {
  width: 70%;
}

.parts {
  display: flex;
  align-items: center;
}

.left_part_wim {
  position: relative;
  left: -100%;
  transition: left 2s ease;
}

.right_part_wim {
  position: relative;
  right: -100%;
  transition: right 2s ease;
}

.button_wim {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 7vh;
  margin-left: 35vw;
  max-width: 9vw;
  line-height: 4vh;
  font-family: "Helvetica";
  font-size: 0.9vw;
  color: #4adbc8;
  text-transform: uppercase;
  cursor: pointer;
  background: #ebebeb;
  border-left: 2px solid #4adbc8;
}
.button_wim span {
  position: absolute;
  transition: all 200ms ease-in-out;
  /* horizontal */
  /* horizontal - small */
}
.button_wim span.line-1 {
  top: 0;
  left: 0;
  width: 10vw;
  height: 2px;
  background: #4adbc8;
  transform: translateX(-48px);
}
.button_wim span.line-2 {
  bottom: 0;
  right: 0;
  width: 8vw;
  height: 2px;
  background: #4adbc8;
  transform: translateX(-25px);
}
.button_wim span.line-3 {
  top: 0;
  right: 0;
  width: 2.5vw;
  height: 2px;
  background: #4adbc8;
  transform: translateX(20px);
}
.button_wim span.line-4 {
  bottom: 0;
  right: 0;
  width: 6vw;
  height: 2px;
  background: #4adbc8;
  transform: translateX(95px);
}
.button_wim span.line-5 {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 6.5vh;
  background: #4adbc8;
  transform: translateY(0px);
}
.button_wim span.line-6 {
  top: 0;
  right: 0;
  width: 2px;
  height: 1vh;
  background: #4adbc8;
  transform: translateY(-48px);
}
.button_wim:hover .line-1 {
  transform: translateX(0px);
}
.button_wim:hover .line-2 {
  transform: translateX(-65px);
}
.button_wim:hover .line-3 {
  transform: translateX(60px);
}
.button_wim:hover .line-4 {
  transform: translateX(55px);
}
.button_wim:hover .line-5 {
  transform: translateY(44px);
}
.button_wim:hover .line-6 {
  transform: translateY(-2px);
}
/****/

@media (max-width: 1200px) {
  body {
    overflow-x: hidden;
  }

  .button_wim .line-1,
  .line-2,
  .line-3,
  .line-4,
  .line-5,
  .line-6 {
    display: none;
  }

  .left_part_wim,
  .right_part_wim {
    position: static;
    transition: none;
  }

  h2 {
    font-size: 1.2rem;
  }

  .text_wim {
    font-size: 1rem;
  }

  .left_part_wim img {
    width: 30vw;
  }

  .parts {
    flex-direction: column;
  }

  .button_wim {
    margin-left: 0;
    font-size: 1rem;
    max-width: 20vw;
  }
}
