@charset "UTF-8";

:root {
  --bg-color: #060e2a;
  --color-primary: #e45809;
  --border-radius: 999px;
}

body {
  background-color: var(--bg-color);
}

.btn_primary {
  color: #fff;
  background: var(--color-primary);
  position: relative;
  -webkit-box-shadow: 0 8px 50px var(--color-primary);
  box-shadow: 0 8px 50px var(--color-primary);
  text-transform: uppercase;
}

.btn_primary:hover {
  opacity: 0.8;
}

.btn_primary svg use {
  fill: #fff;
}

.btn_secondary {
  color: #fff;
  background: none;
  border: 1px solid #444a5f;
}

.btn_secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767.98px) {
  .logo__mob {
    display: flex;
    /* flex-direction: column-reverse; */
    width: 80px;
    justify-content: center;
    align-items: center;
  }
  .logo__mob .logo__image {
    width: 80px;
    height: auto;
    color: white;
  }
}

.firstScreen__bg:after {
  background: linear-gradient(0deg, transparent 0%, var(--bg-color) 120%);
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50vh;
  width: 100%;
  background: radial-gradient(
    ellipse at top center,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  z-index: -1;
}
