@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Commissioner", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.black-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.61);
  z-index: 999;
  display: none;
}

.menu-wrapper {
  position: fixed;
  top: 0;
  right: -1000px;
  background: #fff;
  height: 100%;
  width: 366px;
  z-index: 1000;
  padding: 50px 15px 15px 50px;
  transition: all 0.3s;
}
.menu-wrapper-active {
  right: 0;
  transition: all 0.3s;
}
.close-menu {
  cursor: pointer;
}
.menu-list {
  margin-top: 56px;
}
.menu-list a {
  display: block;
  margin-bottom: 26px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #292929;
  transition: all 0.3s;
  line-height: 26.4px;
}
.menu-list a:hover {
  transition: all 0.3s;
  color: #6743f7;
}

.terms-header {
  background-color: #ffffff; /* Задайте бажаний колір фону */
  padding: 30px 0; /* Задайте бажаний внутрішній відступ */
}
.terms-logo-container {
  display: flex;
  align-items: center;
}

.terms-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.terms-page-header {
  display: flex;
  align-items: center;
}
.terms-logo-container img {
  width: 14px;
  height: 27px;
}
.terms-logo-container p {
  font-size: 15px;
  font-weight: 600;
  margin-left: 10px;
  color: #6743f7;
}
.terms-menu-btn {
  cursor: pointer;
}

.terms-wrapper {
  background-color: #f9f9f9;
}

.tearms-body {
  border-radius: 16px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.tearms-body h1 {
  padding: 50px 0;
  font-size: 24px;
  font-weight: 700;
}
.tearms-body p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: Comissioner;
}

p span {
  font-weight: 600;
}
