:root {
  --of-max-page-width: 1400px;
}

:root {
  --of-font-family: "Mulish", sans-serif;
  --of-font-size-xl: 40px;
  --of-font-weight-xl: bold;
  --of-font-size-l: 32px;
  --of-font-weight-l: bold;
  --of-font-size-m: 22px;
  --of-font-weight-m: bold;
  --of-font-size-body: 17px;
  --of-font-weight-body: normal;
  --of-font-size-s: 14px;
  --of-font-weight-s: normal;
  --of-font-size-xs: 12px;
  --of-font-weight-xs: normal;
}

@media screen and (max-width: 599px) {
  :root {
    --of-font-size-xl: 32px;
    --of-font-size-l: 26px;
    --of-font-size-m: 20px;
  }
}

.font-xl {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xl);
  font-weight: var(--of-font-weight-xl);
  line-height: normal;
}

.font-l {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-l);
  font-weight: var(--of-font-weight-l);
  line-height: normal;
}

.font-m {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-m);
  font-weight: var(--of-font-weight-m);
  line-height: normal;
}

body {
  font-family: var(--of-font-family) !important;
  font-size: var(--of-font-size-body) !important;
  font-weight: var(--of-font-weight-body) !important;
  line-height: normal !important;
}

.font-s {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-s);
  font-weight: var(--of-font-weight-s);
  line-height: normal;
}

.font-xs {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xs);
  font-weight: var(--of-font-weight-xs);
  line-height: normal;
}

.section-title {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-body);
  font-weight: bold;
  padding-bottom: var(--of-spacing-xs);
  border-bottom: 1px solid var(--of-color-details);
}

h1 {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-l);
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  h1 {
    font-size: var(--of-font-size-xl);
  }
}

h2 {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-m);
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  h2 {
    font-size: var(--of-font-size-l);
  }
}

h3,
section {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-body);
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  h3,
section {
    font-size: var(--of-font-size-m);
  }
}

:root {
  --of-transition-duration: 250ms;
  --of-transition-effect: ease;
}

.initial-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000000000;
  overflow: hidden;
  opacity: 1;
}

.initial-loader.hide {
  bottom: 100%;
  opacity: 0;
  transition: opacity linear 1s, bottom 0ms linear 1s;
}

.initial-loader img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: pulse 2s infinite;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.95);
    opacity: 1;
  }
}

@media screen and (max-width: 1199px) {
  .mat-column-extra {
    align-self: center;
    grid-column: 2/-1;
  }
}
