/*html,
body,
main,
.page-host,
section {
    height: 100%;
    overflow: hidden;  
}
body {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: #464D69;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.loader {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-rows: 25% 25% 25% 25%;
  grid-gap: 10px;
  width: 200px;
  height: 270px;
  position: fixed;
  top: calc(50% - 135px);
  left: calc(50% - 100px);
}
.loader > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: darkslategray;
  transform: scale(0);
  transform-origin: center center;
  animation: loader 2s infinite linear;
}
.loader > h1 {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  grid-column: 2;
  text-align: center;  
}
.loader > div:nth-of-type(1), .loader > div:nth-of-type(5), .loader > div:nth-of-type(9) {
  animation-delay: 0.4s;
}
.loader > div:nth-of-type(4), .loader > div:nth-of-type(8) {
  animation-delay: 0.2s;
}
.loader > div:nth-of-type(2), .loader > div:nth-of-type(6) {
  animation-delay: 0.6s;
}
.loader > div:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
*/

body {
  margin: 0;
  overflow: hidden;
}

.container-logo {
  background-color: #F2F4FE;
  width: 476px;
  height: 200px;
  margin-left: 3px;
  position: relative;
  overflow: hidden;
}

.subtitle{
  color: #3C54E4;
  font-size: 36px;
  display: flex;
  font-family: 'Spectral';
  font-style: normal;
  justify-content: center;
  gap: 10px;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
}

.span-logo {
  margin-top: 58.5vh;
}

@keyframes aniload {
  0% {
    transform:translate(0px, 40px);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100%   {
    transform:translate(0px, 5px);
    opacity: 1;
  }
}

.span-universal {
  animation:aniload 0.4s;
  animation-fill-mode: forwards;
}

.span-solutions {
  animation:aniload 0.8s;
  animation-fill-mode: forwards;
}

.span-for {
  animation:aniload 1.2s;
  animation-fill-mode: forwards;
}

.span-builders {
  animation:aniload 1.6s;
  animation-fill-mode: forwards;
}

.center-logo {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.move {
  background-color: #1E2342;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 3px;
  left: 0;
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%);
  animation-name: animation;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
}

@keyframes animation {
  0% {
    width: 50px;
    height: 50px;
    clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%);
  }
  100% {
    width: 900px;
    height: 600px;
  }
}

.svg {
  font-family: "Nunito", sans-serif;
  font-size: 100px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  /*animation-name: text;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.8s;*/
}

.svg rect {
  fill: #FFFFFF;
  mask: url(#mask);
}

@keyframes text {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.01);
  }
}
/*
.bloc {
  background-color: #FFFFFF;
  width: 500px;
  height: 50px;
  position: absolute;
  top: 65vh;
  left: 50%;
  transform: translateX(-50%);
}
*/
@media only screen and (min-width: 1920px) {
  /*.bloc {
    top: 59vh;
  }
*/
  .span-logo {
    margin-top: 55vh;
  }
}