@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Plus+Jakarta+Sans:wght@800&display=swap");

:root {
  --background-color: #120d0d;
  --text-color: #9b9b9b;
  --heading-color: #d9d9d9;
  --accent-color: #f0b406;
  --border-color: rgb(130, 130, 130);
}

body {
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card {
  background-color: #232323;
  margin: 20px;
  padding-right: 10px;
  border-radius: 10px;
}

.space-medium-width {
  width: 2vw;
}
.space-big-width {
  width: 4vh;
}
.space-medium-height {
  height: 3vh;
}
.space-small-height {
  height: 1.5vh;
}
.space-big-height {
  height: 8vh;
}
.main {
  display: flex;
  flex-direction: row;
  padding: 1em 0em 1em 0em;
  justify-content: center;
  align-items: center;
  border-bottom: 0.05em solid var(--border-color);
  width: 100%;
}

.head-logo {
  width: 10em;
}

.header {
  width: 100%;
}

.header p {
  font-family: "Inter";
  font-size: 1.5em;
  color: var(--accent-color);
  padding-left: 1em;
  height: 0px;
}
.body {
  padding: 0em 1em 0em 2em;
  text-align: justify;
}
.body p a {
  text-decoration: none;
  color: var(--text-color);
}

.terms-text {
  font-family: "Inter";
  color: var(--text-color);
  font-size: 0.6em;
  line-height: 1.8em;
}

.sub-heading {
  text-align: left;
  font-family: "Inter";
  font-size: 1em;
  color: var(--heading-color);
  height: 0px;
}

.white {
  color: var(--heading-color);
}

.contents {
  padding-left: 15px;
  font-family: "Inter";
  color: var(--text-color);
  font-size: 0.6em;
  line-height: 3.5em;
  text-align: left;
}

ol > li::marker {
  font-weight: bold;
  color: var(--heading-color);
}

ol li a {
  text-decoration: none;
  color: var(--text-color);
}

.content-heading {
  font-family: "Inter";
  font-size: 0.7em;
  color: var(--heading-color);
  text-align: left;
  line-height: 2em;
}

.divider {
  height: 0.5px;
  width: 100%;
  background-color: white;
  opacity: 0.5;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #1c3628;
  padding-top: 1em;
  padding-bottom: 1em;
}

.footer-logo {
  width: 6em;
}
.footer-text {
  font-family: "Inter", sans-serif;
  font-size: 2.8vw;
  color: #d9d9d9;
}
.footer-header {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #d9d9d9;
}
.footer-bullets {
  color: #d9d9d9;
  font-family: "Inter", sans-serif;
  font-size: 2vw;
  width: 80%;
}

.footer-bullets ul {
  text-align: center;
}
.footer-divider {
  height: 0.7px;
  width: 90%;
  background-color: rgb(181, 181, 181);
  opacity: 0.5;
  margin-top: 1em;
  margin-bottom: 1em;
}

.footer a {
  width: 100%;
  color: #d9d9d9;
}
.footer button {
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.icons-cont {
  display: flex;
  align-items: center;
}
.center {
  text-align: center;
}
.bold {
  font-weight: bold;
}
.flex {
  display: flex;
  align-items: center;
}
.footer-svg {
  height: 1em;
}

.policies {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 80%;
}
.dropdown {
  width: 90%;
}

.dropdown-toggle {
  width: 100%;
  padding: 10px;
  text-align: left;
  outline: none;
  cursor: pointer;
}

.dropdown-toggle:focus {
  outline: none;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  padding: 10px;
  display: none;
  overflow: hidden;
}

.toggle-icon {
  float: right;
}
.footer-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .terms-text {
    font-size: 0.8em;
  }
  .contents {
    font-size: 0.8em;
  }
  .content-heading {
    font-size: 0.8em;
  }
  .space-small-width {
    width: 0.8vw;
  }
  .space-small-height {
    height: 1.5vh;
  }
  .space-medium-height {
    height: 10vh;
  }
  .space-big-height {
    height: 14vh;
  }

  .footer {
    display: none;
  }

  .footer-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #1c3628;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .footer-top {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
  }
  .footer-sub-cont {
    display: flex;
    flex-direction: column;
  }

  .footer-sub-cont-row {
    display: flex;
    width: 65%;
    align-items: center;
    justify-content: space-between;
  }
  .footer-desktop a {
    color: #d9d9d9;
    text-decoration: none;
  }
  .footer-desktop a :hover {
    color: #f0b406;
  }

  .footer-logo {
    width: 6em;
  }
  .footer-img {
    width: 1.5em;
  }
  .footer-text {
    font-size: 1vw;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .terms-text {
    font-size: 0.8em;
  }
  .contents {
    font-size: 0.8em;
  }
  .content-heading {
    font-size: 0.8em;
  }
  .space-small-width {
    width: 0.8vw;
  }
  .space-small-height {
    height: 1.5vh;
  }
  .space-medium-height {
    height: 10vh;
  }
  .space-big-height {
    height: 14vh;
  }

  .footer {
    display: none;
  }

  .footer-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #1c3628;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .footer-top {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
  }
  .footer-sub-cont {
    display: flex;
    flex-direction: column;
  }

  .footer-sub-cont-row {
    display: flex;
    width: 65%;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    width: 6em;
  }
  .footer-img {
    width: 1.5em;
  }
  .footer-text {
    font-size: 1.3vw;
  }
}
