/* ==================== CSS Variables ==================== */
:root {
  --Purple: #9747ff;
  --Blue: #0085FF;
  --Black: #131313;
  --White: #FFFFFF;
  --Grey: rgba(255, 255, 255, 0.8);
  --Light-grey: rgba(255, 255, 255, 0.5);
  --button-border-color: rgba(0, 133, 255, 1);
  --background-color: #00192F;
  --mobile-background-color: #000F1C;
  --header-color: #000F1C;
}

/* ==================== Reset ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 26px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body, html {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background-color);
  color: var(--Grey);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { border-style: none; max-width: 100%; }
a { background-color: transparent; text-decoration: none; color: inherit; }

/* ==================== Container ==================== */
.container {
  width: 100%;
  max-width: 1260px;
  padding: 0 2.5rem;
  margin: 0 auto;
}

/* ==================== Buttons ==================== */
.btn {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  height: 2rem;
  min-height: 43px;
  padding: 5px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 15px;
  border: 2px solid transparent;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: inherit;
}

.btn__blue {
  background: var(--Blue);
  color: var(--White);
}

.btn__blue img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(97deg) brightness(103%) contrast(101%);
  width: 0.85rem;
  height: 0.85rem;
}

.btn__border {
  border-color: var(--button-border-color);
  background: transparent;
  color: var(--White);
}

.btn__purple {
  border-color: var(--Blue);
  background: var(--Blue);
  color: #fff;
}

.btn__gray {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}

.btn__gray:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.btn:disabled,
.btn__purple:disabled {
  opacity: 0.33;
  cursor: not-allowed;
}

/* ==================== Footer ==================== */
.footer {
  color: var(--Grey);
  background: var(--Black);
}

.footer__top {
  padding-top: 1.7rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  width: 100%;
  max-width: 7.1rem;
}

.footer .logo-footer {
  display: block;
  margin-bottom: 10px;
  margin-top: -0.5rem;
}

.footer .logo-footer img { width: 7.5rem; }

.footer__text {
  font-size: 11px;
  line-height: 18px;
}

.footer__title {
  font-weight: 700;
  font-size: 0.55rem;
  line-height: 0.675rem;
  margin-bottom: 0.75rem;
  color: var(--White);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  margin-right: 0.5rem;
  width: 100%;
  max-width: 9rem;
}

.footer__nav a {
  text-decoration: none;
  font-weight: 400;
  font-size: 0.55rem;
  line-height: 150%;
  color: var(--Grey);
  padding-bottom: 0.25rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  margin-right: 0.5rem;
  max-width: 7rem;
  width: 100%;
}

.footer__contact a {
  text-decoration: none;
  font-weight: 400;
  font-size: 0.55rem;
  line-height: 150%;
  padding-bottom: 0.25rem;
  color: var(--Grey);
}

.footer .mail {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  margin-top: 5px;
}

.footer .mail img { margin-right: 10px; }

.footer .mail span {
  font-weight: 500;
  font-size: 0.55rem;
  line-height: 0.55rem;
  color: var(--Grey);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer__logo,
  .footer__nav,
  .footer__contact {
    max-width: 100%;
    margin-right: 0;
  }
  .footer__title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .footer__nav a,
  .footer__contact a,
  .footer .mail span {
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .footer {
    display: none;
  }
}
