body {
  font-family: "Montserrat";
  overflow-x: hidden;
  background-color: #1a1a1a;
  color: #ffffff;
}
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

header {
  margin-bottom: 64px;
}

/*Header*/

.top-bar {
  margin: 10px 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cryptocoin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cryptocoin img {
  width: 30px;
  height: 30px;
}

.coin {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;

  white-space: nowrap;
}

.procent {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #5dd662;

  white-space: nowrap;
}

.procent-down {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #caff33;

  white-space: nowrap;
}

.procent svg {
  width: 12px;
  height: 12px;
}

/*Menu*/

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 100px;

  margin: 45px 160px 0;
  padding: 10px 60px;
}

.main-nav .logo img {
  width: 140px;
  height: auto;
}

.menu {
  font-family: "lexend";
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.menu li a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  padding: 12px 24px;
  transition: all 0.3s;
}
.menu li a:hover {
  background-color: #caff33;
  padding: 12px 24px;
  border-radius: 82px;
  color: #000000;
}

.menu li a:focus {
  background-color: #262626;
  padding: 12px 24px;
  border-radius: 82px;
  color: #ffffff;
}

.menu-buttons {
  display: flex;
  gap: 12px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.38) 0%, rgba(140, 140, 140, 0.38) 100%);
  box-shadow: -31px 22px 18.299999237060547px rgba(0, 0, 0, 0.21);
  border-radius: 20px;
  backdrop-filter: blur(4.5px);
  border: 1px solid #262626;
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #caff33;
  color: #000000;
  margin: 0 8px;
  border-radius: 15px;
}

.sign-up {
  outline: none;
  border: 0;
  background: transparent;
  padding: 14px 30px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.sign-up:hover {
  background-color: #caff33;
  color: #000000;
  border-radius: 80px;
}

.sign-up:active {
  background-color: #262626;
  color: #ffffff;
  border-radius: 80px;
}

.login {
  background-color: #caff33;
  border: 0;
  padding: 14px 30px;
  border-radius: 80px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  background: none;
  cursor: pointer;
  background: #caff33;
  border-radius: 82px;
  padding: 6px 14px;
}

.menu-toggle img {
  width: 28px;
  height: 28px;
}

.burger-menu {
  position: fixed;
  right: 0;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.burger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #262626, #8c8c8c);
  opacity: 0.65; /* Прозрачность градиента */
  z-index: -1;
}

.burger-menu.active {
  transform: translateX(0);
}

.hidden {
  display: none;
}

@media (max-width: 1440px) {
  header {
    margin-bottom: 16px;
  }
  .top-bar {
    margin: 10px 36px 0;
  }

  .cryptocoin {
    gap: 7px;
  }

  .cryptocoin img {
    width: 22px;
    height: 22px;
  }

  .coin,
  .procent,
  .procent-down {
    font-size: 12px;
  }

  .procent svg {
    width: 9px;
    height: 9px;
  }

  /*Menu*/

  .main-nav {
    border-radius: 75px;
    margin: 32px 120px 0;
  }

  .main-nav .logo img {
    width: 105px;
    height: auto;
  }

  .menu li a {
    font-size: 12px;
  }

  .menu-buttons {
    gap: 22px;
  }

  .sign-up,
  .login {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  header {
    margin-bottom: 40px;
  }

  .top-bar {
    display: none;
  }

  .main-nav {
    width: 100%;
    padding: 14px 24px;
    margin: 0 auto;
    gap: 0;
  }

  .main-nav .menu,
  .main-nav .menu-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hidden {
    display: block;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999; /* ниже чем .burger-menu (1000) */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .burger-menu {
    padding: 60px 40px;
  }

  .burger-menu .logo img {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
  }

  .burger-menu .menu {
    display: block;
  }

  .burger-menu ul {
    margin: 0;
    padding: 0;
  }

  .burger-menu .menu li a {
    font-size: 20px;
    display: block; /* чтобы весь li реагировал */
    padding: 0 0 15px;
    margin: 0;
  }

  .burger-menu .menu li a:hover {
    background-color: #caff33;
    color: #000000;
    margin: 15px;
    padding: 12px 24px;
    text-align: center;
  }

  .burger-menu .menu li a:active {
    background-color: #caff33;
    color: #000000;
    margin-left: 15px;
    margin: 15px;
    padding: 12px 24px;
    text-align: center;
  }

  .menu-contact {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .menu-contact .phone,
  .menu-contact .email,
  .menu-contact .location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
  }

  .menu-contact p {
    font-family: "Lexend";
    font-size: 16px;
    font-weight: 400;
  }

  .sign-up,
  .login {
    font-size: 18px;
  }

  /* Dropdown в burger-menu */
  .burger-menu .dropdown {
    position: relative;
  }

  .burger-menu .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding: 0;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .burger-menu .dropdown-menu.show {
    max-height: 200px;
    padding: 10px 0;
  }

  .burger-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .burger-menu .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .burger-menu .dropdown-toggle::after {
    content: "▼";
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .burger-menu .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/*Hero Section*/
.hero__section {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 80px 160px 0;
}

.hero__section-image {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__section-image img {
  width: 640px;
}
.hero__section-text {
  display: flex;
  flex-direction: column;
}

.hero__section-text h1 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
  text-align: right;
}

.hero__section-text span {
  color: #caff33;
}

.hero__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
  text-align: right;
}

button {
  background-color: #caff33;
  border: 0;
  padding: 18px 30px;
  border-radius: 80px;
  align-self: flex-end;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1440px) {
  .hero__section {
    gap: 80px;
    margin: 100px 120px 0;
  }

  .hero__section-image img {
    width: 527px;
  }

  .hero__section-text h2 {
    font-size: 32px;
  }

  .hero__section-text {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .hero__section {
    display: block;
    margin: 40px 16px 0;
  }

  .hero__section-image {
    position: relative;
    display: block;
    margin: 0 auto;
  }

  .hero__section-image img {
    width: 100%;
  }

  .hero__section-text {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    width: 100%;
  }

  .hero__section-text h1 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
  }

  .hero__section-text span {
    color: #caff33;
  }

  .hero__section-text p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
    margin: 10px 0 30px;
    text-align: center;
  }

  .hero__section-text button {
    background-color: #caff33;
    border: 0;
    padding: 14px 22px;
    border-radius: 60px;
    align-self: center;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
  }
}

/*Second Section*/
.stack__section-background .abstract {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 30%;
  z-index: -1;
  transform: rotate(90deg);
}

.stack__section-background .abstract img {
  width: 224px;
}

.stack__section-background {
  position: relative;
  z-index: -2;
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 50px;
  margin: 80px 160px 0;
}

.stack__section-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stack__section-descriptions {
  background-color: #1a1a1a;
  border-color: 1px solid #262626;
  border-radius: 16px;
  padding: 30px 102px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stack__section-descriptions h3 {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin: 20px 0;
}

.stack__section-descriptions h3 span {
  color: #caff33;
}

.stack__section-descriptions p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

@media (max-width: 1440px) {
  .second__section {
    gap: 80px;
    margin: 100px 120px 0;
  }

  .stack__section-background .abstract img {
    width: 190px;
  }

  .stack__section-background {
    padding: 40px;
    margin: 60px 120px 0;
  }

  .stack__section-columns {
    gap: 16px;
  }

  .stack__section-descriptions {
    border-radius: 16px;
    padding: 30px 80px;
  }

  .stack__section-descriptions h3 {
    font-family: "Lexend";
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .stack__section-background {
    margin: 40px 16px 0;
    background-color: transparent;
    padding: 0;
  }

  .stack__section-background .abstract {
    display: none;
  }

  .stack__section-descriptions {
    border: 1px solid #262626;
    padding: 30px 30px 60px;
  }

  .stack__section-columns {
    flex-direction: column;
    gap: 30px;
  }

  .stack__section-descriptions img {
    width: 68px;
  }
}

/*Map Section*/
.map__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin: 80px 160px 0 0;
}

.map__section-image img {
  width: 600px;
}

.map__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 30px;
}

.advantages {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.advantages__block {
  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 30px;
  flex: 1;
}

.advantages__title svg {
  width: 30px;
  height: 30px;
}

.advantages__text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .map__section {
    margin: 60px 120px 0 0;
  }

  .map__section-image img {
    width: 500px !important;
  }

  .advantages__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .map__section {
    margin: 40px 0 0;
    background-color: transparent;
    flex-direction: column;
    gap: 16px;
  }

  .map__section-text {
    margin: 0px 16px;
  }

  .map__section-text button {
    margin: 0 auto;
  }

  .map__section-image img {
    width: 100% !important;
    box-sizing: border-box;
  }

  .advantages {
    flex-direction: column;
    gap: 26px;
    margin: 0;
  }

  .advantages__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

/*Offer Section*/
.offer__section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 100px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px;
  z-index: 1;
}

.offer__section .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  z-index: -1;
  width: 298px;
}

.offer__section-text {
  width: 700px;
}

.title-2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
}

.title-2 span {
  color: #caff33;
}

.offer__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 14px;
}

@media (max-width: 1440px) {
  .offer__section {
    gap: 60px;
    margin: 140px 120px 0;
    padding: 60px;
  }

  .offer__section .abstract {
    width: 221px;
  }

  .offer__section-text {
    width: auto;
  }

  .title-2 {
    font-size: 32px;
  }

  .offer__section-button button {
    padding: 14px 20px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .offer__section {
    margin: 90px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 20px;
    padding: 30px 25px;
  }

  .offer__section .abstract {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 30%;
    z-index: -1;
    width: 214px;
  }

  .offer__section-text {
    width: auto;
  }

  .offer__section-text h2 {
    text-align: center;
  }

  .offer__section-text p {
    text-align: center;
  }
}

/*Streamline Section*/
.streamline__section {
  margin: 80px 160px;
  text-align: center;
}

.description {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 80px;
}

.streamline__section .advantages {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.advantages__block {
  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 50px;
  flex: 1;
}

.advantages__title svg {
  width: 30px;
  height: 30px;
}

.advantages__block p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .streamline__section {
    margin: 60px 120px 0 0;
  }
  .streamline__section .advantages {
    margin: 0px 120px;
  }

  .advantages__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .streamline__section {
    margin: 40px 16px 0;
    background-color: transparent;
    flex-direction: column;
    gap: 16px;
  }

  .streamline__section .advantages {
    flex-direction: column;
    gap: 26px;
    margin: 0;
  }

  .advantages__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

/*Compliant Section*/
.compliant__section {
  margin: 80px 160px;
  display: flex;
  gap: 60px;
}

.compliant__section-image img {
  width: 400px;
  float: left;
}

.compliant__section-text h2,
.compliant__section-text .description {
  text-align: right;
}

.compliant .lines {
  margin: -130px 160px;
  width: 1200px;
}

@media (max-width: 1440px) {
  .compliant__section {
    margin: 60px 120px;
  }

  .compliant__section-image img {
    width: 346px;
    float: left;
  }

  .compliant__section-text .advantages {
    margin: 0;
  }

  .compliant .lines {
    margin: -140px 80px;
    width: 1140px;
  }
}

@media (max-width: 768px) {
  .compliant {
    position: relative;
    margin: 0 auto;
  }

  .compliant__section {
    margin: 60px 16px;
    flex-direction: column;
    gap: 50px;
  }

  .compliant__section-image img {
    width: 100%;
    float: left;
  }

  .compliant__section-text h2,
  .compliant__section-text .description {
    text-align: center;
  }

  .compliant__section-text .description {
    margin-bottom: 60px;
  }

  .compliant__section-text .advantages {
    margin: 0;
  }

  .compliant .lines {
    position: absolute;
    top: 24%;
    width: 390px;
    margin: 0;
    padding: 0;
  }
}

/*Start Section*/
.start__section-background {
  position: relative;
  z-index: -2;
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 70px 120px;
  margin: 80px 160px 0;
  text-align: center;
}

.start__section-background .abstract {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 30%;
  z-index: -1;
  transform: rotate(90deg);
}

.start {
  display: flex;
  gap: 0;
  margin-top: 60px;
}

.start-block {
  flex: 1;
}

.start-block img {
  width: 100%;
}

.start-block h3 {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.start-block p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 30px 0;
}

@media (max-width: 1440px) {
  .start__section-background {
    margin: 60px 120px;
    padding: 40px;
  }

  .stack__section-background .abstract img {
    width: 190px;
  }
}

@media (max-width: 768px) {
  .start__section-background {
    margin: 60px 16px;
    padding: 0px;
  }

  .start__section-background .abstract {
    display: none;
  }

  .start {
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
  }

  .start-block img {
    width: 160px;
    margin: 0 auto;
    padding-bottom: 16px;
  }
}

/*5th Section*/
.advantages__section {
  position: relative;
  z-index: -2;
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 100px 75px;
  margin: 80px 160px 0;
}

.advantages__section .abstract {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 30%;
  z-index: -1;
  transform: rotate(90deg);
}

.advantages__section-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advantages__section-descriptions {
  background-color: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 50px;

  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.advantages__title-1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.advantages__section-descriptions img {
  max-width: 100%;
  height: auto;
}

.advantages__section-descriptions svg {
  width: 30px;
  height: 30px;
}

.Payments {
  width: 204px;
}

.Payouts {
  width: 270px;
}

.b-payouts {
  width: 144px;
}

.advantages__section-descriptions h3 {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  width: 80%;
}

.advantages__section-descriptions h3 span {
  color: #caff33;
}

.advantages__section-descriptions p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

@media (max-width: 1440px) {
  .advantages__section {
    padding: 80px 60px;
    margin: 80px 120px 0;
  }

  .advantages__section .abstract {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 30%;
    z-index: -1;
    transform: rotate(90deg);
  }

  .advantages__section-descriptions {
    border-radius: 10px;
    padding: 40px;
  }

  .Payments {
    width: 159.55px;
  }

  .Payouts {
    width: 234.36px;
  }

  .b-payouts {
    width: 130.21px;
  }

  .advantages__section-descriptions h3 {
    font-family: "Lexend";
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    width: 80%;
  }

  .advantages__section-descriptions p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
  }
}

@media (max-width: 768px) {
  .advantages__section {
    margin: 40px 16px 0;
    padding: 0;
  }

  .advantages__section .abstract {
    display: none;
  }

  .advantages__section-column {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*Single integration*/
.stack__section {
  margin: 80px 160px 0;
}

.title-2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
}

.title-2 span {
  color: #caff33;
}

.stack__section-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top: 14px;
}

.stack__section-description p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
}

.stack__section-tabs {
  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 80px;
  padding: 14px;
}

.stack__section-descriptions-2 {
  background-color: #1c1c1c;
  border-color: 1px solid #262626;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.stack__section-descriptions-2 {
  width: 800px;
}

input[type="radio"] {
  display: none;
}

.tab-content {
  display: none;
}

#tab-btn-1:checked ~ .content-1,
#tab-btn-2:checked ~ .content-2,
#tab-btn-3:checked ~ .content-3 {
  display: block;
}

input#tab-btn-1:checked ~ label[for="tab-btn-1"],
input#tab-btn-2:checked ~ label[for="tab-btn-2"],
input#tab-btn-3:checked ~ label[for="tab-btn-3"] {
  background: #caff33;
  color: #000;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.stack__section-tabs label {
  padding: 14px 24px;
  border-radius: 80px;
  background: transparent;
  color: #fff;
  cursor: pointer;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.stack__section-tabs {
  display: flex;
  padding: 14px;
  background: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 80px;
}

.stack__section-background-2 {
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 35px 270px;
  margin-top: 60px;
}

.code {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}

@media (max-width: 1440px) {
  .stack__section {
    margin: 100px 120px 0;
  }

  .title-2 {
    font-size: 32px;
  }

  .stack__section-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;
    margin-top: 14px;
  }

  .stack__section-description p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
    margin: 10px 0 0;
  }

  .stack__section-descriptions-2 {
    width: 760px;
  }
}

@media (max-width: 768px) {
  .stack__section {
    margin: 40px 16px 0;
    text-align: center;
  }

  .hidden-mob {
    display: none;
  }

  .hidden {
    display: block;
  }

  .title-2 {
    font-size: 36px;
  }

  .stack__section-description {
    flex-direction: column;
    gap: 32px;
  }

  .stack__section-tabs {
    border-radius: 60px;
    padding: 8px;
    gap: 0;
    width: 100%;
  }

  .stack__section-tabs label {
    font-size: 10px;
    padding: 8px 14px;
  }

  input#tab-btn-1:checked ~ label[for="tab-btn-1"],
  input#tab-btn-2:checked ~ label[for="tab-btn-2"],
  input#tab-btn-3:checked ~ label[for="tab-btn-3"] {
    font-size: 10px;
  }

  .stack__section-background-2 {
    background-color: transparent;
    padding: 0;
    margin-top: 40px;
  }

  .stack__section-descriptions-2 {
    width: 100%;
    margin: 0 auto;
  }

  .code {
    width: 100%;
    margin-bottom: 60px;
  }

  .stack__section-develop {
    margin-top: 0px;
  }

  .stack__section-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stack__section-develop img {
    width: 60px;
  }
}

/*Form*/

.meeting-form {
  position: relative;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px;
}

.meeting-form .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  width: 298px;
}

.meeting-form h2 {
  text-align: center;
}

.form-container {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  margin-bottom: 60px;
}
.form-left {
  width: 100%;
}
.calendar {
  background-color: #1a1a1a;
  padding: 50px 70px;
  user-select: none;
  margin-bottom: 26px;
  border-radius: 30px;
}
.calendar-header {
  display: none;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-day {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  padding: 20px;
  text-align: center;
}
.calendar-date {
  text-align: center;
  padding: 20px 16px;
  cursor: pointer;
  border-radius: 50%;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}
.calendar-date:hover {
  background-color: #caff33;
}
.calendar-date.selected {
  background-color: #caff33;
}

#time {
  width: 100%;
  padding: 24px;
  margin-top: 12px;
  border-radius: 88px;
  background: #1a1a1a;
  color: white;
  border: 1px solid #262626;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.form-rigth {
  width: 100%;
}

.input-section {
  flex: 1;
  min-width: 300px;
}

.input-icon {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 88px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #262626;
}

.input-icon input {
  background: none;
  border: none;
  flex-grow: 1;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.input-icon span {
  color: #caff33;
}

.privacy-text {
  font-family: "Lexend";
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 24px;
}

.submit-button {
  background: #caff33;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 500;
  cursor: pointer;

  display: block;
  margin: 0 auto;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.users h2 {
  margin: 80px 160px 30px;
  text-align: center;
}

.slider-container1 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.slider-wrapper1 {
  overflow: hidden;
  padding: 0 40px;
}

.slider-track1 {
  display: flex;
}

.slide1 {
  min-width: calc(100% / 7);
  margin: 0 14px;
  display: block;
  text-align: center;
}

.slider-arrow1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  transition: 0.3s;
}

.slider-arrow1.left1 {
  left: 0;
}

.slider-arrow1.right1 {
  right: 0;
}

@media (max-width: 1440px) {
  .meeting-form {
    margin: 100px 120px 0;
    padding: 20px;
  }

  .meeting-form .abstract {
    width: 214px;
  }

  .form-container {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .calendar {
    padding: 40px;
  }

  .calendar-day {
    font-size: 12px;
    padding: 16px;
  }

  .calendar-date {
    padding: 18px 12px;
    font-size: 12px;
  }

  label {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
  }

  #time {
    padding: 20px;
    margin-top: 10px;
    border-radius: 60px;
  }

  .input-section {
    min-width: 100%;
  }

  .input-icon {
    border-radius: 60px;
    margin-bottom: 10px;
    padding: 20px;
  }

  .privacy-text {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .meeting-form {
    margin: 40px 16px 0;
    padding: 25px;
  }

  .meeting-form .abstract {
    width: 298px;
  }

  .form-container {
    flex-direction: column;
    gap: 30px;
    margin-top: 26px;
    margin-bottom: 40px;
  }

  .calendar {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px 20px 60px;
  }

  .calendar-day {
    font-size: 8px;
    padding: 8px;
  }

  .calendar-date {
    font-size: 8px;
    padding: 11px 8px;
  }

  label {
    font-size: 14px;
  }

  #time {
    padding: 24px;
  }
}

/* Footer*/

footer {
  overflow: hidden;
  margin: 100px 160px;
  padding: 100px 0 50px;
}

.footer__section img {
  width: 155px;
  display: block;
  margin: 0 auto;
}

.footer__section .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.footer__section .menu li a {
  font-size: 14px;
  font-weight: 400;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-contact .email,
.footer-contact .phone,
.footer-contact .location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.footer-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social {
  display: flex;
  gap: 14px;
}

.footer-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  text-align: center;
}

.policy {
  display: flex;
  align-items: center;

  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.policy a {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  footer {
    overflow: hidden;
    margin: 60px 16px 0;
    padding: 50px 0 30px;
  }

  .footer__section img {
    width: 142px;
    margin-bottom: 24px;
  }

  .menu-mob {
    display: none;
  }

  ul.menu {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
  }

  .menu li a {
    font-size: 14px;
  }

  .footer-contact {
    flex-wrap: wrap;
  }

  .footer-block {
    flex-direction: column;
    gap: 20px;
  }

  .social img {
    width: 44px;
  }

  .PayOut2025 {
    margin-top: 10px;
  }
}
