.fo-loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  transition: opacity .3s;
}
.fo-loader-screen::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#1d4ed8, #93c5fd);
  opacity: 0;
  animation: screen-appear .3s ease .3s;
  animation-fill-mode: forwards;
}
@keyframes screen-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fo-loader-screen__removed {
  opacity: 0;
}

.fo-logo-container {
  display: flex;
  align-items: center;
}

#fo-logo {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 2rem;
  transform-origin: 50% 50%;
  opacity: 0;
  animation: square-appear 2s ease 1s infinite;
  animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  #fo-logo {
    margin-right: 1rem;
  }
}
@keyframes square-appear {
  from { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  to { transform: scale(1); opacity: 0; }
}
#fo-logo svg {
  max-width: 15vw;
}
#fo-title svg {
  max-width: 55vw;
}

#fo-logo_parts > g {
  opacity: 0;
  transform: translateY(2rem);
  animation: parts-appear 1s ease-out 0s infinite alternate;
  animation-fill-mode: forwards;
}

#fo-logo_parts > g:nth-child(1)  {
  animation-delay: .2s;
}
#fo-logo_parts > g:nth-child(2)  {
  animation-delay: .4s;
}
#fo-logo_parts > g:nth-child(3)  {
  animation-delay: .6s;
}
#fo-logo_parts > g:nth-child(4)  {
  animation-delay: .4s;
}
#fo-logo_parts > g:nth-child(5)  {
  animation-delay: .6s;
}
#fo-logo_parts > g:nth-child(6)  {
  animation-delay: .8s;
}
@keyframes parts-appear {
  from { transform: translateY(.9rem); opacity: 0; }
  to { transform: translateY(-.2rem); opacity: 1; }
}

#fo-title {
  position: relative;
}
#fo-title path {
  display: block;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: 0% 50%;
  opacity: 0;
  animation: title-appear 2s ease 4.5s infinite;
  animation-fill-mode: forwards;
}
@keyframes title-appear {
  from { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  to { transform: scale(1); opacity: 0; }
}

#fo-title path:nth-child(1) {
  animation-delay: 1.4s;
}
#fo-title path:nth-child(2) {
  animation-delay: 1.5s;
}
#fo-title path:nth-child(3) {
  animation-delay: 1.6s;
}
#fo-title path:nth-child(4) {
  animation-delay: 1.7s;
}
#fo-title path:nth-child(5) {
  animation-delay: 1.8s;
}
#fo-title path:nth-child(6) {
  animation-delay: 1.9s;
}
#fo-title path:nth-child(7) {
  animation-delay: 2.0s;
}
#fo-title path:nth-child(8) {
  animation-delay: 2.1s;
}
#fo-title path:nth-child(9) {
  animation-delay: 2.2s;
}
#fo-title path:nth-child(10) {
  animation-delay: 2.3s;
}
#fo-title path:nth-child(11) {
  animation-delay: 2.4s;
}
#fo-title path:nth-child(12) {
  animation-delay: 2.5s;
}
