body {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: none;
}

.mention {
  text-align: center;
  font-size: 13px;
  color: #ddd;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.5%;
  z-index: 15;
}

.bloc {
  height: 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--gap-pad);
  font-size: 22px;
  line-height: 1.4;
}

.bloc:after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--light);
}

.bloc:before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--grey);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: .8s ease-in-out;
  z-index: 1;
  opacity: .3;
}

.bloc:hover:before {
  transform: scaleX(1);
}

.bloc small {
  display: block;
  color: #777;
  font-size: 1.1rem;
  margin: 5px 0;
}

.bloc a:hover {
  opacity: 1;
}

.bloc-right {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
  transition: .5s ease-in;
}

.bloc-right:after,
.bloc-right:before {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bloc-left {
  text-align: left;
  transition: .5s ease-in;
}

.bloc-left:after,
.bloc-left:before {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right;
}

.address {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address .link {
  font-size: .9rem;
  font-weight: 600;
}

.address small {
  font-size: 1rem;
}

[data-mail] {
  font-weight: 600;
  display: block;
  cursor: pointer;
}

[data-mail]:after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--light);
}

[data-mail]:before {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transition: .3s ease-in;
}

[data-mail]:hover:before {
  width: 100%;
}


/* anim logo */

.logo {
  position: absolute;
  height: 40vw;
  width: 40vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.logo:after {
  content: '';
  display: block;
  height: 85%;
  width: 85%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.right .logo .gw {
  transform: rotate(20deg);
}

.left .logo .gw {
  transform: rotate(-20deg);
}

svg {
  transition: transform 0.5s ease-in-out;
}

.gw {
  transform-origin: center center;
  transition: transform 0.5s ease-in-out;
}

.gw0 {
  transition-duration: .5s;
}

.gw1 {
  transition-duration: .7s;
}

.gw2 {
  transition-duration: 1s;
}

.gw3 {
  transition-duration: 1.25s;
}

.gw4 {
  transition-duration: 1.75s;
}

.gw5 {
  transition-duration: 2.25s;
}

.gw6 {
  transition-duration: 3s;
}


@media screen and (max-width: 850px) {
  .mention {
    left: 0;
    top: 0;
    bottom: auto;
    transform: none;
    padding: var(--gap-pad);
  }

  .logo {
    height: 60vw;
    width: 60vw;
  }
}

@media screen and (max-width: 450px) {
  .bloc {
    justify-content: center;
  }

  .bloc small {
    margin: 10px 0;
  }

  .bloc-left {
    flex-direction: column-reverse;
  }

  .logo {
    height: 75vw;
    width: 75vw;
  }

}
