*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

body.has-header {
  padding-top: 60px;
}

body.has-footer {
  padding-bottom: 48px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: #80bd38;
}

.flow > * + * {
  margin-top: 32px;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 366px;
  height: 50px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 26px;
  letter-spacing: 0.26px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn.btn-green {
  background-color: #80bd38;
  color: #fff;
}

.btn.btn-green:hover {
  background-color: #73ad2f;
}

/* Header */
.header {
  height: 60px;
  background-color: #fafafa;
  padding: 12px 16px;
  border-bottom: 1px solid #e6e6e6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.header__start {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
}

/* Footer */
.footer {
  height: 48px;
  background: #80bd38;
  color: #fff;
  padding: 12px 16px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer .row {
  display: flex;
}

.footer .row .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.footer__text {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 24px;
}

.footer__text.text-start {
  text-align: start;
}

.footer__text.text-center {
  text-align: center;
}

.footer__text.text-end {
  text-align: end;
}

/* Splash Screen */
.splash-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #81BB27;
  background-image: url(../images/splash-screen-pattern.svg);
  background-repeat: no-repeat;
  background-size: 462px;
  background-position: 42px calc(100% - 28px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.splash-screen__logo img {
  height: 130px;
  width: auto;
}

@media (max-width: 991.98px) {
  .splash-screen {
    background-size: 380px;
    background-position: 16px calc(100% - 6px);
  }
}

@media (max-width: 767.98px) {
  .splash-screen {
    background-size: 294px;
    background-position: 20px calc(100% - 20px);
  }
}

/* 404 */
.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: 3rem 1rem;
}

.error-page__content {
  text-align: center;
}

.error-page__image h1 {
  font-weight: bold;
  font-size: 100px;
  line-height: 1;
  color: #333333;
  margin: 0;
}

.error-page__image {
  background-image: url(../images/error-illustration.svg);
  background-repeat: no-repeat;
  background-size: 100% 100px;
  background-position: center calc(100% - 12px);
}

.error-page__title h2 {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 18px;
  letter-spacing: 0.3px;
  margin: 0;
}

.error-page__title h2:not(:last-child) {
  margin-bottom: 6px;
}

.error-page__subtitle h6 {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 22px;
  letter-spacing: 0.26px;
  margin: 0;
}

.error-page__subtitle h6:not(:last-child) {
  margin-bottom: 24px;
}

.social-media__list li {
  padding: 0 18px;
}

.social-media__list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.social-media__list li:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
