/*
 * Copyright (c) 2024
 * Sergii Karanda steve@3dsource.com - All Rights Reserved
 * Last modified 2/14/24, 2:01 PM
 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;

  font-family: 'Playfair Display', serif;

  background: #ffffff;
}

.loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10%;

  animation-name: appear;
  animation-duration: 0.35s;
  animation-timing-function: ease;

  animation-fill-mode: forwards;
}

.loader__logo {
  width: 200px;
  margin: 0 auto 56px;
}

.loader__logo img {
  width: 100%;
}

.loader__heading {
  margin-bottom: 1em;

  font-weight: 400;
  font-size: 36px;
  line-height: 2;
  font-family: 'Playfair Display', serif;
  color: #1d284f;
}

@media (min-width: 1900px) {
  .loader__heading {
    font-size: 56px;
  }
}

.progress {
  position: relative;

  width: 100%;
  max-width: 666px;
}

@media (min-width: 1900px) {
  .progress {
    max-width: 999px;
  }
}

.progress__label {
  margin-bottom: 18px;

  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #1d284f;
}

@media (min-width: 1900px) {
  .progress__label {
    margin-bottom: 29px;

    font-size: 24px;
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
