/* Определение переменных цветов */
:root {
  --BG-color: #0a0a0a;
  --BG-blur: #191919;
  --White: #ffffff;
  --Gray-100: #e7e7e7;
  --Gray-700: #545454;
  --Accent-1: #cbfd00;
  --Accent-2: #8cb500;
}

html,
body {
  overflow-x: hidden;
}

/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {
  background-color: var(--BG-color);

  
  width: 100%; /* Устанавливает ширину в 100%, чтобы предотвратить переполнение */
}


/* Меню */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
  background-color: var(--BG-blur);
  position: fixed;
  margin: 0 0 0;
  z-index: 10000;
  width: 100%;
}

/* Скрываем крестик на ПК */
.close-button {
  display: none;
}

/* Скрываем мобильное меню на ПК */
.mobile-menu {
  display: none;
}

/* Логотип */
.menu .logo {
  position: relative;
  margin-left: 80px;
  font-size: 26px;
  font-weight: 550;
  line-height: normal;
}

.logo .fin {
  color: var(--White);
}

.logo .hub {
  color: var(--Accent-1);
}

/* Стили для списка меню */
.menu-panel {
  position: relative;
  list-style: none;
  display: flex;
  gap: 160px;
  
  margin-left: 0px;
}

/* Ссылки меню */
.menu-item {
  text-decoration: none;
  color: var(--White);
  font-size: 16px;
  position: relative;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

/* Подчеркивание при наведении */
.menu-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--White);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

.menu-item:hover::after {
  width: 100%;
}


/* Кнопка "Get a Demo" */
.btn-demo {
  position: absolute;
  top: 14.5px;
  right: 16.5px; /* Зафиксируем положение справа */
  padding: 12px 20px; /* Обеспечивает равномерную обводку */
  border: 2px solid var(--White);
  border-radius: 15px;
  font-size: 16px;
  color: var(--White);
  background-color: transparent;
  box-sizing: border-box; /* Включает border в размеры */
  text-decoration: none;
}

/* First Frame */
.first-frame {
}

.main-text {
  font-size: 13vw; /* Шрифт будет масштабироваться в зависимости от ширины экрана */
  margin: 80px 70px; /* Отступы сверху и снизу 10% от высоты окна, слева и справа 5% */
  color: #cbfd00;
  font-family: "DM Sans";
  font-weight: 500;
  line-height: normal;
}

.description {
  position: relative;
  color: var(--White);
  position: relative;
  margin: -70px 91px;
  font-size: 20px;
  width: 600px;
}

.start-btn {
  position: relative;
  margin: 150px 90px;
  font-size: 32px;
  display: inline-block;
  color: var(--White);
  z-index: 1;
}
.arrow {
  color: #cbfd00;
  margin-left: 10px;
}
/* Фоновое изображение */
.bg-image {
  position: absolute;
    width: 100%;
    height: 1000px;
    right: 0;

  flex-shrink: 0;
}
/* Прокручиваемый текст */
.scrolling-content {
  color: var(--White);
  display: flex;

  justify-content: flex-start;
  margin-top: 200px;
  z-index: 10;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--Gray-700); /* Белая линия сверху */
  border-bottom: 1px solid var(--Gray-700); /* Белая линия снизу */
  padding: 15px 0; /* Отступы сверху и снизу */
  width: 100%;
  max-height: 19px;
}

.repeating-text {
  display: flex;
  flex-direction: row;
  width: max-content; /* Ширина по содержимому */
  animation: scrollLeft 20s linear infinite; /* Анимация прокрутки */
}

/* Дублируем элементы для создания бесконечной ленты */
.repeating-text::after {
  content: attr(
    data-content
  ); /* Контент из атрибута data-content будет продублирован */
  display: flex;
}

.scroll-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Центрируем текст и точку */
  white-space: nowrap; /* Запрещаем перенос текста на новую строку */
  padding: 0; /* Убираем все лишние отступы */
  min-width: max-content; /* Не позволяем элементам сжиматься */
}

.green-dot {
  color: var(--Accent-1);
  font-size: 70px; /* Размер точки */
  margin: 0px 10px 0px 10px;
  display: inline-block; /* Гарантируем, что точка будет выровнена как элемент строки */
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Прокрутка на половину контента */
  }
}
/* Second Frame */
.second-container {
}

.second-text {
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 559px;
} /* Контейнер карточек */
.card-container {
  position: relative;
  width: 100%; /* Ширина контейнера */
  height: 100vh; /* Высота контейнера */
}

/* Карточки */
.card {
  position: absolute; /* Каждая карточка будет позиционироваться независимо */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  width: 370px;
  height: 120px;
  background-color: #191919;
  border-radius: 20px;
  border: 1px solid var(--Gray-700);
  transition: all 0.3s ease;
}

/* Hover эффекты для карточек */
.card:hover {
  background-color: white;
  border-color: #cbfd00;
}

/* Текстовое содержимое карточек */
.card-number {
  font-size: 36px;
  font-weight: bold;
  color: black;
  -webkit-text-stroke: 2px var(--Gray-700);
  margin-bottom: 10px;
}

.card-text {
  font-size: 24px;
  color: white;
}

/* Специальные координаты для каждой карточки */
#card1 {
  top: 747px;
  left: 500px;
}

#card2 {
  top: 50px;
  left: 500px;
}

#card3 {
  top: 200px;
  left: 100px;
}

#card4 {
  top: 200px;
  left: 500px;
}

#card5 {
  top: 350px;
  left: 100px;
}

#card6 {
  top: 350px;
  left: 500px;
}

#card7 {
  top: 500px;
  left: 200px;
}
/*CRM */
.content-crm {
  position: relative;
  margin-top: 200px;
  padding: 50px;
}

.crm {
  position: relative;
  color: var(--Accent-1, var(--Color-5, #cbfd00));
  font-family: "DM Sans";
  font-size: 48px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}
.crm::after {
  content: "";
  display: block;
  position: absolute; /* Абсолютное позиционирование для псевдоэлемента */
  left: -5vw; /* Линия начинается с самого левого края */
  width: 105vw; /* Линия занимает всю ширину экрана */
  height: 2px; /* Толщина линии */
  background-color: var(--Gray-700); /* Цвет линии */
  margin-top: 40px; /* Отступ от текста до линии */
}

.list {
  position: absolute;
  margin-top: 100px;
  padding: 20px;
}

.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--Gray-100, #e7e7e7);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  gap: 20px;
}

.line-crm {
  width: 24px;
  height: 2px;
  background-color: var(--Gray-700);
  margin-right: 10px;
}

.demo-button {
  margin-top: 40px;
}

.get-demo {
  font-family: "DM Sans";
  font-size: 16px;
  color: var(--Gray-100);
  text-decoration: none;
}
.img-carousel {
  position: relative;
  margin-top: -60px;
  margin-left: 0px;
  max-width: 100%;
  height: auto;
}

.img-1 {
  position: relative;
  margin-top: 185px;
  margin-left: -20px;
  max-width: 100%;
  height: auto;
}

.img-2 {
  position: relative;
  top: -180px;
  left: -1699px;
  max-width: 100%;
  height: auto;
}

/*Trading platform */
.content-trading {
  position: relative;
  padding: 50px;
  margin-top: 80px;
}

.trading::before {
  content: "";
  display: block;
  position: absolute; /* Абсолютное позиционирование для псевдоэлемента */
  left: -5vw; /* Линия начинается с самого левого края */
  width: 105vw; /* Линия занимает всю ширину экрана */
  height: 2px; /* Толщина линии */
  background-color: var(--Gray-700); /* Цвет линии */
  margin-top: -40px; /* Отступ от текста до линии */
}

.trading {
  color: var(--White);
  font-family: "DM Sans";
  font-size: 48px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}
.trading::after {
  content: "";
  display: block;
  position: absolute; /* Абсолютное позиционирование для псевдоэлемента */
  left: -5vw; /* Линия начинается с самого левого края */
  width: 105vw; /* Линия занимает всю ширину экрана */
  height: 2px; /* Толщина линии */
  background-color: var(--Gray-700); /* Цвет линии */
  margin-top: 40px; /* Отступ от текста до линии */
}

.list {
  position: relative;
  margin-top: 80px;
}

.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--Gray-100, #e7e7e7);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  gap: 20px;
}

.line {
  width: 24px;
  height: 2px;
  background-color: var(--Gray-700);
  margin-right: 10px;
}

.demo-button {
  margin-top: 40px;
}

.get-demo {
  font-family: "DM Sans";
  font-size: 16px;
  color: var(--Gray-100);
  text-decoration: none;
}
.img-carousel {
  position: absolute;
  top: 80px;
  left: 870px;
}

.img-1 {
}

.img-2 {
  position: relative;

  left: 699px;
  overflow: hidden;
}

/*Mobile*/
.content-mobile {
  position: relative;
  padding: 50px;
  margin-top: 420px;
  width: 1780px;
}

.mobile::before {
  content: "";
  display: block;
  position: absolute; /* Абсолютное позиционирование для псевдоэлемента */
  left: -5vw; /* Линия начинается с самого левого края */
  width: 105vw; /* Линия занимает всю ширину экрана */
  height: 2px; /* Толщина линии */
  background-color: var(--Gray-700); /* Цвет линии */
  margin-top: -40px; /* Отступ от текста до линии */
}

.mobile {
  color: var(--White);
  font-family: "DM Sans";
  font-size: 48px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}
.mobile::after {
  content: "";
  display: block;
  position: absolute; /* Абсолютное позиционирование для псевдоэлемента */
  left: -5vw; /* Линия начинается с самого левого края */
  width: 105vw; /* Линия занимает всю ширину экрана */
  height: 2px; /* Толщина линии */
  background-color: var(--Gray-700); /* Цвет линии */
  margin-top: 40px; /* Отступ от текста до линии */
}

.list {
  position: relative;
  margin-top: 80px;
  width: 600px;
}

.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--Gray-100, #e7e7e7);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  gap: 20px;
}

.line {
  width: 24px;
  height: 2px;
  background-color: var(--Gray-700);
  margin-right: 10px;
}

.demo-button {
  margin-top: 40px;
}

.get-demo {
  font-family: "DM Sans";
  font-size: 16px;
  color: var(--Gray-100);
  text-decoration: none;
}
.img-carousel-mobile {
  display: flex; /* Enables horizontal alignment */
  justify-content: center; /* Centers images */
  align-items: center;
  margin-top: -150px;
  margin-left: 570px;
  height: 243px;
  gap: 0px; /* Space between images */
}

.img-1-mob,
.img-2-mob,
.img-3-mob,
.img-4-mob {
  margin: 0; /* Remove individual margins */
  position: relative;
}

.img-1-mob {
  z-index: 4;
}

.img-2-mob {
  z-index: 3;
}

.img-3-mob {
  z-index: 2;
}

.img-4-mob {
  z-index: 1;
}

/* General Styles for the Section */
.content-infrastructure {
  position: relative;
  color: #e7e7e7;
  font-family: "Poppins", sans-serif;
  max-width: 600px;
  margin-top: 200px;
  margin-left: 900px;
}
.loualt {
  position: relative;
  margin-top: 380px;
  margin-left: 200px;
}

.infrastructure-title {
  position: relative;
  color: #cbfd00;
  font-size: 48px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
  margin-top: -800px;
}

.description-inst {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  margin-bottom: 40px;
}

.list-inst {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-item-inst {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item-inst .line {
  width: 100%;
  height: 1px;
  background-color: #8cb500;
}

.list-item-inst h5 {
  color: #e7e7e7;
  font-size: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  margin-bottom: 10px;
}

.list-item-inst p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

/* Pen-Testing Section */
.content-pen-testing {
  position: relative;
  padding: 50px;
  color: #e7e7e7;
  font-family: "Poppins", sans-serif;
  margin-top: 140px;
}

.pen-testing-title {
  position: relative;
  color: #cbfd00;
  font-size: 56px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}

.pen-testing-description {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.6px;
  margin-bottom: 40px;
  max-width: 600px;
  height: 78px;
  margin-left: 860px;
}

.pen-testing-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Pen-Test Card */
.pen-card {
  position: relative;
  width: 496px;
  height: 496px;
  padding: 60px 40px 60px 40px; /* Updated padding */
  border-radius: 20px;
  border: 1px solid #545454;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: left;
  box-sizing: border-box; /* Ensures padding is included in the total size */
}

.card-icon-1,
.card-icon-2,
.card-icon-3 {
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 20px; /* Adding spacing between image and content */
}

.card-content h4 {
  font-size: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  margin-bottom: 10px;
  /* max-width: 416px; */
}

.card-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.6px;
  max-width: 416px;
  height: 130px;
}

/* Payment Solutions Section */
.content-payment-solutions {
  position: relative;
  margin-top: -600px;
  padding: 50px;
  color: #e7e7e7;
  font-family: "Poppins", sans-serif;
}

.payment-solutions-title {
  position: relative;
  color: #cbfd00;
  font-size: 52px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}

.payment-solutions-list {
  position: relative;
  margin-top: 80px;
  width: 386px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 28px; /* Gap between list items */
}

.world-img {
  position: relative;
  top: 240px;
  margin-left: 350px;
  width: 1000px;
  height: 660px;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px; /* Gap between line and text */
}

.line {
  width: 24px;
  height: 0px;
  border: 2px solid #545454;
}

.list-item p {
  color: #e7e7e7;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 25.6px;
  margin: 0;
  word-wrap: break-word;
}

/*Affiliate Networking*/

.content-net {
  position: relative;
  margin-top: 0px;
  padding: 50px;
  color: #e7e7e7;
  font-family: "Poppins", sans-serif;
  margin-top: -600px;
  gap: 80px;
  height: 800px;
}

.title-net {
  position: relative;
  color: #cbfd00;
  font-size: 52px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
  margin-left: 860px;
}

.description-net {
  font-size: 18px;
  position: relative;
  margin-top: 80px;
  margin-left: 860px;
  width: 600px;
  height: 78px;
}

.atom-img {
  position: relative;
  margin-top: 400px;
  margin-left: 150px;
}

/* Web Design Section */
.web-design-container {
  position: relative;
  padding: 50px;
  color: #e7e7e7;
  font-family: "Poppins", sans-serif;
  margin-top: 0px;
}

.web-design-heading {
  color: #cbfd00;
  font-size: 48px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}

.web-design-text {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.6px;
  margin-top: -20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: 860px;
}

.web-design-card-group {
  display: flex;
  justify-content: space-between;
  gap: 40px; /* Spacing between the cards */
  margin-bottom: 40px;
  margin-top: 124px;
}

/* Web Design Card */
.web-design-card-item {
  width: 432px;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #545454;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.web-card-number {
  font-size: 52px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  line-height: 72.8px;
  color: #e7e7e7;
}

.web-card-content .web-card-title {
  color: #8cb500;
  font-size: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  margin-bottom: 10px;
}

.web-card-content .web-card-description {
  color: #e7e7e7;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 25.6px;
}

/* Footer container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  background-color: #111;
  color: #7e7e7e;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  position: relative;
}

/* Footer Logo */
.footer-logo {
  color: #cbfd00;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  position: absolute;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
}

/* Footer Columns */
.footer-column h4 {
  position: relative;
  color: #e7e7e7;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-column li {
  margin-bottom: 10px;
  text-align: left;
  color: #7e7e7e;
  text-decoration: none;
  transition: color 0.3s;
  text-align: left !important;
}

.footer-column li :hover {
  color: #cbfd00;
}

/* Footer bottom */
.footer-bottom {
  position: absolute;
  bottom: 10px;
  left: 40px;
  display: flex;
  gap: 20px;
}
.footer-column h4{
  position: relative;
  margin-top: 80px;
}

.footer-bottom p {
  margin-right: 40px;
  position: relative;
}
.footer-column a{
  position: relative;
  text-align: left ;
  color: var(--White);
  text-decoration: none;
}

.footer-bottom {
  color: #7e7e7e;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom :hover {
  color: #cbfd00;
}

/* Scroll Up Button */
.scroll-up-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-color: transparent;
  cursor: pointer;
  top: 48px;
}

.scroll-up-btn svg {
  fill: #7e7e7e;
  transition: fill 0.3s;
}

.scroll-up-btn:hover svg {
  fill: #cbfd00;
}
