@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none;
  color: rgb(144, 162, 175);
}

ul {
  list-style-type: none;
}

body {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  background-color: rgb(7, 12, 20);
  color: rgb(255, 255, 255);
  overflow-x: hidden;
}

body.open {
  overflow: hidden;
}

.join-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgb(42, 127, 255);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  background: linear-gradient(90deg, #166cee 0%, #0758d1 100%);
}

.center-content {
  color: rgb(130, 142, 157);
  padding: 80px 0;
  background: linear-gradient(105.72deg, #f8f9fe 21.6%, #c8d3e3 114.5%), linear-gradient(0deg, #ffffff, #ffffff);
  display: flex;
  gap: 80px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.center-content .subtitle {
  margin-bottom: 30px;
  color: rgb(8, 77, 179);
  background: rgb(222, 232, 246);
}
.center-content .title {
  color: rgb(33, 42, 64);
  font-size: 48px;
  line-height: 52px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .center-content {
    gap: 40px;
    padding: 40px 0;
  }
}
.options {
  width: 100%;
  color: rgb(255, 255, 255);
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.options .title {
  max-width: 1012px;
}
.options .text {
  text-align: center;
  color: rgb(130, 142, 157);
  padding: 20px 0 40px 0;
  max-width: 752px;
}
.options-bottom {
  width: 100%;
  border-radius: 32px;
  padding: 50px 90px 50px 40px;
  background-color: rgb(7, 12, 20);
  background-image: url("/assets/pocket-option-background.png");
  background-repeat: no-repeat;
  display: flex;
  gap: normal;
  align-items: normal;
  justify-content: space-between;
  flex-direction: row;
}
.options-bottom-left {
  max-width: 616px;
  display: flex;
  gap: normal;
  align-items: normal;
  justify-content: space-between;
  flex-direction: column;
}
.options-bottom-left-title {
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
}
.options-bottom-left-list {
  display: grid;
  grid-template-columns: 260px 260px;
  justify-content: space-between;
  gap: 40px;
  padding: 32px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.options-bottom-left-list .item {
  list-style-type: disc;
}
.options-bottom-left-list .item-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.options-bottom-left-list .item-text {
  color: rgb(234, 234, 234);
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .options {
    padding: 0 20px 0 20px;
  }
  .options-bottom {
    padding: 32px;
    justify-content: center;
  }
  .options-bottom-left {
    max-width: none;
    gap: 20px;
  }
  .options-bottom-img {
    display: none;
  }
}
@media (max-width: 768px) {
  .options .title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
  .options .text {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .options-bottom {
    padding: 32px;
    justify-content: center;
  }
  .options-bottom-left {
    gap: 20px;
  }
  .options-bottom-left-title {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
  }
  .options-bottom-left-list {
    grid-template-columns: 100%;
    justify-content: center;
  }
  .options-bottom-img {
    display: none;
  }
}
.open-list {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.open-list-item {
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
}
.open-list-item .item-top {
  padding: 12px 20px;
  color: rgb(33, 42, 64);
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.open-list-item .item-top .toggle {
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-image: url("/assets/open.svg");
  background-position: center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-out;
}
.open-list-item .item-bottom {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(130, 142, 157);
}
.open-list-item .item-bottom p {
  margin: 12px 0 20px 0;
}
.open-list-item.expanded .toggle {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .open-list-item .item-top {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
  .open-list-item .item-bottom {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
}
.trading {
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.trading-left {
  display: flex;
  gap: 24px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.trading-left-title {
  color: rgb(33, 42, 64);
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
}
.trading-left-text {
  color: rgb(130, 142, 157);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.trading .learn-img {
  width: 580px;
  height: 466px;
}
.trading .live-img {
  width: 534px;
  height: 447px;
}
.trading .binary-img {
  width: 500px;
  height: 417px;
}

.binary-list {
  width: 100%;
  display: grid;
  margin: 0 auto;
  max-width: 1170px;
  justify-content: space-between;
  grid-template-columns: 228px 228px 228px 228px 228px;
}
.binary-list-item {
  position: relative;
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  min-height: 144px;
  color: rgb(33, 42, 64);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 12px 20px;
  display: flex;
  gap: 20px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.binary-list-item .mark {
  top: 12px;
  right: 20px;
  position: absolute;
  cursor: pointer;
}
.binary-list-item .mark:hover + p.title {
  opacity: 1;
}
.binary-list-item .title {
  bottom: 150px;
  right: 30px;
  position: absolute;
  color: rgb(130, 142, 157);
  border-radius: 16px;
  max-width: 220px;
  padding: 15px 3px 15px 15px;
  background-color: rgb(64, 70, 77);
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  opacity: 0;
  transition: opacity ease 0.5s;
}

@media (max-width: 1200px) {
  .binary-list {
    padding: 0 20px;
    grid-template-columns: 228px 228px 228px;
    justify-content: space-around;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .binary-list {
    padding: 0 20px;
    grid-template-columns: 100%;
  }
  .binary-list-item {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
  }
}
@media (max-width: 1200px) {
  .trading {
    padding: 0 20px;
  }
  .trading .learn-img {
    width: 480px;
    height: 350px;
  }
  .trading .live-img {
    width: 434px;
    height: 347px;
  }
  .trading .binary-img {
    width: 400px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .trading {
    flex-direction: column;
    align-items: center;
  }
  .trading .live-img {
    order: 2;
  }
}
@media (max-width: 768px) {
  .trading-left {
    gap: 16px;
  }
  .trading-left-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
  }
  .trading-left-text {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .trading .learn-img {
    width: 335px;
    height: 250px;
  }
  .trading .live-img {
    width: 335px;
    height: 289px;
  }
  .trading .binary-img {
    width: 335px;
    height: 254px;
  }
}
.sets {
  background-color: rgb(7, 12, 20);
  margin: 0 auto;
  max-width: 1170px;
  border-radius: 32px;
  padding: 48px;
  color: rgb(255, 255, 255);
  display: flex;
  gap: 62px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background-image: url("/assets/sets-background.png");
}
.sets-left {
  width: 50%;
  display: flex;
  gap: 16px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.sets-left h2 {
  font-size: 44px;
  line-height: 52px;
  font-weight: 600;
}
.sets-left p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.sets-right {
  width: 50%;
  border: 1px solid rgb(255, 255, 255);
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.43);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(120px);
          backdrop-filter: blur(120px);
  display: flex;
  gap: 12px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.sets-right p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .sets {
    padding: 32px 28px;
  }
}
@media (max-width: 992px) {
  .sets-left h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
  .sets-left p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .sets-right p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .sets {
    gap: 32px;
    flex-direction: column;
  }
  .sets-left {
    width: 100%;
  }
  .sets-right {
    width: 100%;
  }
}
.comparison {
  padding-top: 80px;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.comparison .subtitle {
  color: rgb(8, 77, 179);
  background-color: rgb(255, 255, 255);
}
.comparison .text {
  text-align: center;
  padding: 20px 0 40px 0;
  max-width: 718px;
}
.comparison-list {
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.comparison-list-item {
  max-width: 376px;
  padding: 49px 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.comparison-list-item h2 {
  color: rgb(33, 42, 64);
  font-size: 26px;
  line-height: 31px;
  font-weight: 500;
}
.comparison-list-item p {
  text-align: center;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.comparison-banner {
  margin-top: 12px;
  border-radius: 24px;
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, #166cee 0%, #0758d1 100%);
  padding: 0 37px 0 15px;
  display: flex;
  gap: 31px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.comparison-banner p {
  padding: 26px 0;
}

@media (max-width: 1200px) {
  .comparison {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 768px) {
  .comparison .subtitle {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
  }
  .comparison .title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
  .comparison-list-item p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
  }
  .comparison-banner {
    padding: 28px;
    flex-direction: column;
    align-items: start;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .comparison-banner p {
    padding: 0;
  }
}
.footer {
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.footer-top {
  width: 100%;
  display: flex;
  gap: normal;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.footer-top-nav {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.footer-top-nav-list {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.footer-top-nav-list li {
  cursor: pointer;
  text-transform: uppercase;
}
.footer-bottom {
  width: 100%;
  padding: 16px 10px;
  color: rgb(130, 142, 157);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

@media (max-width: 1200px) {
  .footer {
    padding: 0 10px;
  }
  .footer-bottom p {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer-top {
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }
  .footer-top-nav {
    gap: 16px;
    flex-direction: column;
  }
  .footer-bottom {
    width: 100%;
    padding: 16px 0;
    color: rgb(130, 142, 157);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    gap: normal;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.subtitle {
  padding: 7px 12px;
  color: rgb(144, 162, 175);
  border-radius: 150px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgb(24, 30, 38);
}

.title {
  color: rgb(255, 255, 255);
  font-size: 68px;
  line-height: 82px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.text {
  color: rgb(130, 142, 157);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
  .subtitle {
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
  }
  .text {
    color: rgb(130, 142, 157);
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
}
.header {
  padding: 13px;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.header .logo {
  width: 182px;
  height: 58px;
}
.header .menu-btn {
  display: none;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/assets/open-menu.svg");
}
.header .menu-btn.open {
  background-image: url("/assets/close-menu.svg");
}

@media (max-width: 768px) {
  .header .logo {
    width: 132px;
    height: 44px;
  }
  .header .join-btn {
    display: none;
  }
  .header .menu-btn {
    display: block;
  }
}
.join-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-image: url("/assets/background.png");
  background-size: 945px 657px;
  background-repeat: no-repeat;
  background-position: top 0 right 0;
}

.join {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1170px;
}
.join-img {
  width: 100%;
  display: none;
}
.join-list-nav {
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border: 1px solid rgb(41, 45, 55);
  border-radius: 16px;
  background-color: rgb(25, 28, 37);
  color: rgb(144, 162, 175);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 30px 32px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.join-list-nav-join {
  display: none;
}
.join-list-nav.open {
  transform: translateX(0);
}
.join-list-nav li {
  cursor: pointer;
}
.join-list-features {
  display: grid;
  grid-template-columns: 270px 270px 270px 270px;
  gap: 30px;
}
.join-list-features-item {
  width: 100%;
  padding: 32px;
  min-height: 188px;
  border-radius: 20px;
  position: relative;
  background-color: rgb(25, 28, 37);
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.join-list-features-item .mark {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 32px;
  right: 32px;
}
.join-list-features-item .mark:hover + .title {
  opacity: 1;
}
.join-list-features-item .title {
  bottom: 174px;
  right: 7px;
  position: absolute;
  color: rgb(130, 142, 157);
  border-radius: 16px;
  max-width: 220px;
  padding: 15px 3px 15px 15px;
  background-color: rgb(64, 70, 77);
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  opacity: 0;
  transition: opacity ease 0.5s;
}
.join-content {
  padding: 100px 0 180px 0;
  max-width: 716px;
}
.join-content-text {
  padding-bottom: 40px;
}
.join-content .title {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .join-wrapper {
    background-image: none;
  }
  .join-img {
    display: block;
  }
  .join-list-features {
    grid-template-columns: 270px 270px;
    justify-content: center;
  }
  .join-content {
    padding: 80px 0 0 0;
    margin: 0 auto;
  }
  .join-content-text {
    text-align: center;
  }
  .join-content .subtitle {
    margin: 0 auto 24px auto;
  }
  .join-content .title {
    text-align: center;
  }
  .join-content .join-btn {
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .join-list-nav li a {
    display: flex;
    gap: normal;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .join-list-features {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .join-content {
    max-width: 100%;
    padding: 24px 20px 0 20px;
  }
  .join-list-nav {
    top: 0px;
    width: 100vw;
    height: 100vh;
    padding: 16px 20px 0 20px;
    position: absolute;
    flex-direction: column;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    gap: 32px;
    background-color: rgb(7, 12, 20);
    border: none;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
  }
  .join-list-nav-join {
    display: block;
  }
  .join-list-nav li a {
    gap: 5px;
    flex-direction: row;
  }
  .join-list-features {
    padding: 0 20px;
    grid-template-columns: 100%;
  }
  .join-list-features-item {
    padding: 20px 60px 20px 20px;
    min-height: 94px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
  }
}
.trade {
  padding-top: 120px;
  margin: 0 auto;
  max-width: 1170px;
}
.trade .subtitle {
  margin: 0 auto 24px auto;
}
.trade .title {
  margin: 0 auto;
  max-width: 716px;
  text-align: center;
}
.trade-content {
  padding: 60px 0 50px 0;
}
.trade-controls {
  padding: 6px;
  border-radius: 20px;
  background-color: rgb(25, 28, 37);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border: 1px solid rgb(41, 45, 55);
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  overflow-x: auto;
}
.trade-controls-item {
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  min-width: 200px;
}
.trade-controls-item.active {
  background-color: rgb(64, 70, 77);
}
.trade-list {
  margin: 16px 0 50px 0;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  overflow-x: auto;
}
.trade-list-item {
  min-width: 370px;
  min-height: 250px;
  border-radius: 20px;
  border: 1px solid rgb(41, 45, 55);
  background-color: rgb(25, 28, 37);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  overflow: hidden;
}
.trade-list-item-content iframe {
  width: 100%;
  border: none;
}
.trade-list-item-content img {
  width: 100%;
}
.trade-list-item-title {
  padding: 24px 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  .trade {
    padding: 80px 20px 0 20px;
  }
  .trade-content .join-btn {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .trade-controls {
    font-size: 14px;
    line-height: 19px;
    font-weight: 600;
  }
  .trade-list-item {
    min-width: 300px;
  }
  .trade-list-item-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
  }
}
.about {
  padding-top: 120px;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.about-left {
  width: 500px;
  height: 497px;
}
.about-right {
  max-width: 506px;
}
.about-right .title {
  font-size: 44px;
  line-height: 52px;
  font-weight: 600;
}
.about-right .text {
  text-align: start;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 16px 0 40px 0;
}

@media (max-width: 1200px) {
  .about {
    gap: 40px;
    padding: 80px 20px 0 20px;
  }
}
@media (max-width: 992px) {
  .about-left {
    width: 337px;
    height: 335px;
  }
  .about-right {
    max-width: none;
  }
  .about-right .title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
  .about-right .text {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }
  .about .title {
    text-align: center;
  }
  .about .text {
    text-align: center;
  }
  .about .subtitle {
    margin: 0 auto;
  }
  .about .join-btn {
    margin: 0 auto;
  }
  .about-left {
    order: 2;
  }
}
.who {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1170px;
}
.who-wrapper {
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(96.87deg, rgba(248, 249, 254, 0.1) 12.61%, rgba(200, 211, 227, 0.1) 77.34%);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.who-left {
  width: 50%;
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(133.02deg, #f8f9fe 29.15%, #c8d3e3 114.12%);
}
.who-left-header {
  color: rgb(33, 42, 64);
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 12px;
}
.who-left-text {
  color: rgb(130, 142, 157);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.who-right {
  width: 50%;
  border-radius: 16px;
  color: rgb(255, 255, 255);
  padding: 32px;
  background-image: url("/assets/who-background.png");
  background-size: cover;
}
.who-right-header {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 10px;
}
.who-right-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .who {
    padding: 52px 0;
  }
  .who-wrapper {
    padding: 12px;
  }
  .who-left-header {
    font-size: 24px;
    line-height: 33px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .who-left-text {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
  }
  .who-right-header {
    font-size: 24px;
    line-height: 33px;
    font-weight: 600;
  }
  .who-right-text {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .who-wrapper {
    flex-direction: column;
  }
  .who-left {
    width: 100%;
  }
  .who-right {
    width: 100%;
  }
}
.video {
  aspect-ratio: 16/9;
  margin: 0 auto;
  max-width: 1170px;
  border-radius: 32px;
  margin: 0 auto 120px auto;
  background-color: rgb(64, 70, 77);
  border: 32px solid rgb(64, 70, 77);
}
.video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 32px;
}
.video-img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background-image: url("/assets/secret.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .video {
    margin: 0 20px 80px 20px;
    border: 12px solid rgb(64, 70, 77);
  }
}
.options-wrapper {
  background: linear-gradient(121.42deg, #14161e 55.74%, #070c14 132.47%), linear-gradient(0deg, #ffffff, #ffffff);
}

.options-section {
  padding: 80px 0;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.options-section .title {
  text-align: center;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}
.options-section .text {
  margin: 20px 0 40px 0;
  max-width: 958px;
}
.options-section-list {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.options-section-list .block {
  width: 50%;
  padding: 32px;
  border-radius: 32px;
  min-height: 518px;
  background: linear-gradient(133.02deg, #f8f9fe 29.15%, #c8d3e3 114.12%);
}
.options-section-list .block .subtitle {
  color: rgb(8, 77, 179);
  background: rgb(222, 232, 246);
}
.options-section-list .block h2 {
  color: rgb(33, 42, 64);
  padding-bottom: 12px;
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
}
.options-section-list .block-list {
  color: rgb(130, 142, 157);
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  display: flex;
  gap: 8px;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
}
.options-section-list .block-list span {
  font-weight: 700;
}

@media (max-width: 1200px) {
  .options-section {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .options-section-list {
    flex-direction: column;
  }
  .options-section-list .block {
    width: 100%;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .options-section .title {
    font-size: 32px;
    line-height: 39px;
    font-weight: 600;
  }
  .options-section-list .block {
    padding: 20px;
  }
  .options-section-list .block h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
  }
  .options-section-list .block-list {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
}
.faq {
  padding: 170px 0;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.faq-left {
  max-width: 420px;
}
.faq-left .text {
  text-align: start;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.faq-left .title {
  margin-bottom: 16px;
}
.faq-left .subtitle {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.faq-right {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.faq-right .item-top {
  padding: 16px 20px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  font-size: 20px;
  line-height: 21px;
  font-weight: 700;
}
.faq-right .item-top .toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgb(25, 28, 37);
  border-radius: 8px;
  background-image: url("/assets/faq-toggle.svg");
  background-position: center;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-out;
}
.faq-right .item-bottom {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(130, 142, 157);
}
.faq-right .item-bottom p {
  margin: 4px 0 16px 0;
}
.faq-right .item.expanded {
  background-color: rgb(25, 28, 37);
  border-radius: 16px;
  border: 1px solid rgb(41, 45, 55);
}
.faq-right .item.expanded .toggle {
  transform: rotate(45deg);
}

@media (max-width: 1200px) {
  .faq {
    padding: 80px 20px;
  }
}
@media (max-width: 992px) {
  .faq {
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }
  .faq-left {
    max-width: auto;
  }
  .faq-left .subtitle {
    margin: 0 auto 8px auto;
  }
  .faq-left .text {
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .faq-left .title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
  .faq-right {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  .faq-right .item-top {
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
  }
  .faq-right .item-top .toggle {
    width: 22px;
    height: 22px;
    background-color: transparent;
  }
  .faq-right .item-bottom {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .faq-right .item-bottom p {
    margin: 12px 0 16px 0;
  }
}
.binary {
  margin: 0 auto;
  max-width: 1170px;
  background: linear-gradient(105.72deg, #f8f9fe 21.6%, #c8d3e3 114.5%);
  border-radius: 32px;
  margin-bottom: 120px;
  padding: 60px 0;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.binary .subtitle {
  margin-bottom: 24px;
  color: rgb(8, 77, 179);
  background: rgb(222, 232, 246);
}
.binary .title {
  text-align: center;
  max-width: 1012px;
  color: rgb(33, 42, 64);
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
}
.binary .text {
  text-align: center;
  max-width: 670px;
  padding: 20px 0 60px 0;
}

@media (max-width: 768px) {
  .binary {
    margin-bottom: 80px;
    padding: 32px 20px;
  }
  .binary .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
  }
  .binary .text {
    padding: 8px 0 20px 0;
  }
}/*# sourceMappingURL=style-n.css.map */