/*=============== GOOGLE FONTS ===============*/

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(22, 72%, 50%);
  --first-color-alt: hsl(22, 72%, 46%);
  --white-color: #fff;
  --text-color: hsl(22, 4%, 75%);
  --text-color-light: hsl(22, 4%, 55%);

  --body-color: #111827;
  --violet: #d946ef;
  --blue: #2563eb;
  --container-color: hsl(22, 8%, 7%);

  --main-blue: #300fd2;
  --main-bluelight: #6b57d1;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Anonymous Pro', monospace;

  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--main-blue);
  color: var(--white-color);
}

/* section {
  width: 400px;
} */

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  padding-left: 20px;
  padding-right: 20px;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: background 0.3s, box-shadow 0.3s;
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%; /* Занимает всю ширину */
  max-width: 1244px;
}

.nav__logo,
.nav__toggle,
.nav__close {
  display: inline-flex;
  color: var(--white-color);
  font-size: 24px;
}
.nav__logo {
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-medium);
  transition: color 0.3s;
}
.nav__logo img {
  width: 20px;
}
.nav__logo:hover {
  color: var(--violet);
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

.icon-container-nav {
  display: inline-block;
  transition: transform 0.8s ease;
}

.icon-container-nav:hover {
  transform: translateY(-10px);
}

.icon-container-nav i {
  background: #d5d6ff;
  border-radius: 50%;
  color: #2702db;
  padding: 6px;
  font-size: 20px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 80%; /* или нужная вам ширина */
    height: 100%;
    background-color: #2702db;
    box-shadow: 0 4px 8px hsla(22, 10%, 2%, 0.5);
    padding: 79px 30px;
    border-radius: 0 0 2rem 2rem;
    transition: transform 0.4s;
  }

  .nav__list li a {
    font-size: 30px;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: left;
  row-gap: 1.5rem;
}
.nav__link {
  color: #d5d6ff;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.6s ease-out;
}
.nav__link:hover {
  color: var(--blue);
  /* transition: all 0.3s ease-out; */
  transform: translateY(-10px) !important;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav__img {
  width: 180px;
  position: absolute;
  top: 40%;
  left: -3rem;
}

/* Show menu */
.show-menu {
  transform: translateX(0);
}

/* Полупрозрачный фон */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(
    --z-tooltip
  ); /* убедитесь, что это значение ниже, чем у .nav__menu */
  display: none; /* скрыть по умолчанию */
}

/* Показать фон при открытии меню */
.show-backdrop {
  display: block;
}

/* Change background header */
.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 8px hsla(22, 10%, 2%, 0.4);
}

/* Active link */
.active-link {
  color: var(--blue);
}

main {
  width: 100%;
  margin: 0 auto;
}

/*=============== HOME ===============*/

.elipse {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 417px;
  height: 283.982px;
  flex-shrink: 0;
  border-radius: 340px;
  background: #ffffff59;
  filter: blur(120px);
  z-index: 1;
  animation: moveRightToLeft 20s linear infinite;
}
@keyframes moveRightToLeft {
  0%,
  100% {
    transform: translateX(0vw); /* Начальная и конечная точки справа */
  }
  50% {
    transform: translateX(-100vw); /* Перемещение влево на всю ширину экрана */
  }
}

.elipse-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 417px;
  height: 283.982px;
  flex-shrink: 0;
  border-radius: 340px;
  background: #0f0080;
  filter: blur(120px);
  z-index: 1;
  /* animation: moveDarkToLeftAndBack 12s linear infinite; */
}
@keyframes moveDarkToLeftAndBack {
  0%,
  100% {
    transform: translateX(0); /* Возвращение в исходное положение */
  }
  50% {
    transform: translateX(-100vw); /* Движение влево на всю ширину экрана */
  }
}

.elipse-dark-move {
  position: absolute;
  top: 6px;
  right: 114px;
  width: 417px;
  height: 283.982px;
  flex-shrink: 0;
  border-radius: 340px;
  background: #0f0080;
  filter: blur(120px);
  z-index: 1;
  animation: moveDarkToLeftAndBack 16s linear infinite;
}

.lines-img {
  width: 100%;
  position: absolute;
  top: -30%;
  opacity: 0.2;
  right: 0;
}
.lines-img img {
  width: 100%;
}
.home {
  display: flex;
  position: relative;
  background-image: url(../img/cases-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  background-color: rgb(0 31 255 / 50%);
  background-blend-mode: multiply;
}

.home-container {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: space-around;
  margin-top: 100px;
}

.left-home-container {
  z-index: 10;
}

/* .header-btn {
  width: 132px;
  padding: 12px 24px;
  font-size: 14px;
} */

.main-text-and-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.left-home-container p {
  margin-top: 29px;
  color: #d4d1ff;
  font-family: var(--body-font);
  font-size: 18px;
  margin-bottom: 30px;
  width: 40%;
  font-weight: 700;
}

.left-home-container h1 {
  font-family: 'Anonymous Pro', monospace;
  font-size: 84px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.16px;
  color: transparent;
  background-image: linear-gradient(
    0.43turn,
    rgba(25, 6, 108, 1) 0%,
    rgba(213, 214, 255, 1) 29%
  );
  -webkit-background-clip: text;
}

.logo-bottom {
  margin-top: 40px;
}
.logo-bottom img {
  width: 100%;
}

.main-btn-consult {
  display: flex;
  width: 198px;
  height: 53.99px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #1a27dc;
  box-shadow: 0px 0px 25px 0px #5957fa inset;
  border: none;
  color: #d5d6ff;
  font-size: 14px;
  transition: transform 0.8s;
}
.main-btn-consult i {
  background: #d5d6ff;
  color: #1a27dc;
  border-radius: 50%;
  padding: 4px;
  transition: transform 0.8s;
}

.main-btn-consult:hover i {
  transform: translateX(10px);
}

/*===============ABOUT COMPANY==============*/
.about-company {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}
.about-com-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-com-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 228px;
  height: 290px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #2702db;
  box-shadow: 0px 0px 80px 0px #5e3ef8 inset;
}

.about-com-card p {
  font-size: 52px;
  padding-top: 20px;
  padding-left: 20px;
}
.about-com-card p span {
  font-size: 24px;
}

.about-com-card img {
  width: 100%;
}
.about-card-text-s {
  font-size: 24px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.avatar-img {
  width: 180px;
  margin: 0 auto;
}

.about-com-card1 {
  width: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-com-card1 h3 {
  font-size: 36px;
}
.about-com-card1 p {
  font-size: 18px;
}

.about-com-card2 img {
  opacity: 0.6;
}
.about-com-card4 img {
  opacity: 0.6;
}

/*=================Cases======================*/

/*-------------------*/

.cases {
  margin-top: 100px;
  margin-bottom: 100px;
}
.cases-wrapper {
  padding: 60px 0;
}

.cases-cards {
  width: 84%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  grid-auto-rows: minmax(260px, auto);
}

.cases-card {
  border-radius: 12px;
  border: 1px solid #fff;
  background-image: url(data:image/png;base64,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);
}

.cases-card-text h3 {
  color: #d5d6ff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cases-card-text p {
  color: #b2adf6;
  font-size: 16px;
}

/*Card 1*/
.cases-bg {
  background-image: url(../img/cases-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 26px;
}

.cases-title-img {
  text-align: center;
}
.cases-title-img img {
  width: 100%;
}
.cases-card-1 {
  grid-column: 1 / 4;
  grid-row: 1;
  display: flex;
  flex-direction: row;
}
.cases-card-1 .cases-card-text {
  width: 50%;
  padding: 20px;
}
.card-img-1 {
  width: 175px;
  height: 230px;
  margin-top: 20px;
}
.card-img-1-1 {
  position: absolute;
  bottom: 0;
  left: -65px;
  width: 84px;
}
.card-img-1-2 {
  position: absolute;
  top: 17%;
  right: -10%;
  width: 56px;
}

/*Card 2*/
.cases-card-2 {
  grid-column: 4 / 8;
  padding: 20px;
}

.cases-mini-icons {
  position: relative;
  text-align: center;
}

.card-main-figure {
  margin: 0 auto;
}
.icon_1 {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 25px;
}
.icon_2 {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 25px;
}
.icon_3 {
  width: 25px;
  position: absolute;
  top: 90%;
  left: 30%;
}
.icon_4 {
  position: absolute;
  top: 20%;
  right: 30%;
  width: 25px;
}
.icon_5 {
  position: absolute;
  width: 25px;
  top: 50%;
  right: 20%;
}
.icon_6 {
  position: absolute;
  width: 25px;
  top: 90%;
  right: 30%;
}

/*Card 3*/
.cases-card-3 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card3-img img {
  width: 100%;
}

/*Card 4*/
.cases-card-4 {
  grid-column: 3 / 5;
  grid-row: 2;
  padding: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-card4-img {
  position: relative;
}
.card4-main {
  width: 110px;
}
.card4-1 {
  position: absolute;
  width: 110px;
}
.card4-2 {
  position: absolute;
  width: 110px;
  bottom: 40%;
}

/*Card 5*/
.cases-card-5 {
  grid-column: 5 / 8;
  grid-row: 2;
  padding: 20px;
  position: relative;
}

.case-card5-1 {
  position: absolute;
}
.case-card5-2 {
  position: absolute;
  bottom: -10%;
  right: 10%;
}

/*Card 6*/
.cases-card-6 {
  grid-column: 3 / 8;
  grid-row: 3 / 4;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.case-card6-img {
  width: 100%;
}

.case-card6-img img {
  width: 100%;
}

.triangle {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0;
  background-image: linear-gradient(to right, lightgreen, darkgreen);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: blur(5px);
  transform: rotate(30deg);
}
.triangle1 {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 50%;
  top: 30%;
  background-image: linear-gradient(to right, lightgreen, darkgreen);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: blur(5px);
  transform: rotate(55deg);
}

.cases-card-img {
  position: relative;
  margin: 0 auto;
}
.table {
  width: 100%;
}

.btn-cases-wparrer {
  margin-top: 18px;
}
.btn-cases {
  background-color: #d5d6ff;
  font-size: 14px;
  width: 84%;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  color: #2c0bce;
  letter-spacing: 1px;
}

.btn-cases:hover i {
  /* Сдвиг иконки вправо на 10 пикселей при наведении */
  transform: translateX(10px);
}
.btn-cases i {
  background: #2c0bce;
  border-radius: 50%;
  color: #d5d6ff;
  padding: 10px;
  transition: transform 0.8s;
}

/*------------------*/

/*=============== OUR SERVISE ===============*/

.slider1 {
  margin-bottom: 35px;
  position: relative;
}
.slider2 {
  position: relative;
  margin-bottom: 100px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--violet) !important;
}
.swiper-button-prev {
  left: -10px !important;
}
.swiper-button-next {
  right: -10px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 15px !important;
}

/*=============== INFORMATION ===============*/
.information {
  margin-top: 100px;
  position: relative;
}

.information-wrapper {
  padding: 0 60px;
}
.elipse-inf-dark {
  position: absolute;
  top: 0;
  overflow: hidden;
  right: 50%;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 340px;
  background: #0f0080;
  filter: blur(46px);
  z-index: 1;
}

.information h3 {
  color: #d5d6ff;
  line-height: 0.7;
  font-size: 62px;
  text-align: center;
  margin-bottom: 60px;
}

.inf-image {
  order: 2;
}

.inf-text {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.inf-image .information {
  margin-top: 50px;
  position: relative;
}
.elipse-inf1 {
  top: 350px;
  left: 0px;
}
.elipse-inf2 {
  top: 1100px;
  right: 0px;
}

.left-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.inf-item img {
  border-radius: 15px;
  width: 100%;
}

.inf-item h3 {
  color: #d5d6ff;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
}
.inf-item p {
  font-weight: 700;
  color: #b2adf6;
  font-size: 20px;
  width: 70%;
  line-height: 1.3;
}

.right-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/*=============== WHAT WE CAN ===============*/

.cards-wwc-container-mobile {
  display: none;
}

.wwc-cards-main-wrapper {
  display: flex;
  justify-content: center;
}
.wwc-cards-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 30px;
}

.my-card-wwc {
  width: 228px;
  height: 325px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background: rgba(39, 2, 219, 0.4);
  box-shadow: 0px 0px 40px 0px #5e3ef8 inset;
}

.my-card-text p {
  font-weight: 700;
  font-size: 28px;
  color: #d5d6ff;
  margin-bottom: 20px;
}

.my-card-text ul li {
  color: #b2adf6;
  font-size: 16px;
  line-height: 1.3;
}
.my-card-header h3 {
  font-size: 52px;
}
.my-card-header {
  display: flex;
  justify-content: center;
}
.my-card-icon-3 img {
  width: 80px;
}
.my-card-icon-2 img {
  width: 56px;
}
.my-card-icon-1 img {
  width: 35px;
}
.my-card-icon {
  width: 100%;
}

/*================EDUCATION=============*/

.education {
  background-image: url(../img/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 26px;
  height: 480px;
  margin-top: 100px;
}

.education-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;

  width: 100%;
  height: 100%;
}
.education-right h3 {
  font-size: 45px;
  color: #fff;
}

.education-right {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  gap: 80px;
}

.education-left {
  position: relative;
}

.education-img1 {
  width: 160px;
}
.education-img2 {
  position: absolute;
  width: 85px;
  bottom: 10%;
  left: 100%;
}
.education-img3 {
  width: 195px;
  position: absolute;
  bottom: 1%;
  right: 10%;
}

.education-btn {
  background-color: #d5d6ff;
  font-size: 14px;
  width: max-content;
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  color: #2c0bce;
  letter-spacing: 1.4px;
}
.education-btn:hover i {
  /* Сдвиг иконки вправо на 10 пикселей при наведении */
  transform: translateX(10px);
}
.education-btn i {
  background: #2c0bce;
  border-radius: 50%;
  color: #d5d6ff;
  padding: 10px;
  transition: transform 0.8s;
}

/*================ARTICLES=================*/
.articles {
  padding: 60px;
}
.article-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.article-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.article-box {
  border-radius: 16px;
  border: 1px solid #4a2ae9;
  background: rgba(39, 2, 219, 0.4);
  box-shadow: 0px 0px 40px 1px #5e3ef8 inset;
  padding: 20px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
  height: 130px;
}
.article-box p {
  font-size: 32px;
  font-weight: 700;
  color: #d5d6ff;
}

.article-box i {
  font-size: 24px;
  transform: rotate(-45deg);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.8s;
  background: #d5d6ff;
  color: #2c0bce;
}

.article-box:hover i {
  transform: rotate(0deg);
  transition: transform 0.8s ease;
}

.article-left {
  position: relative;
}
.article-left h3 {
  color: #d5d6ff;
  line-height: 0.7;
  font-size: 62px;
}
.article-left img {
  bottom: 60%;
  right: 0%;
  position: absolute;
  width: 87px;
}

/*=============== CONTACT US FORM ===============*/

.contact-us {
  background-image: url(../img/cases-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 26px;
  padding: 60px;
}

.contacu-us-form {
  z-index: 3;
}

.contacu-us-left {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.contact-us-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.contacu-us-left h3 {
  font-size: 62px;
  color: #d5d6ff;
  z-index: 3;
  line-height: 0.7;
}

.icon-container {
  display: inline-block;
  transition: transform 0.8s ease;
}

.icon-container:hover {
  transform: translateY(-10px);
}

.icon-container i {
  background: #d5d6ff;
  border-radius: 50%;
  color: #2702db;
  padding: 6px;
  font-size: 22px;
  margin-right: 8px;
}

form input,
form textarea {
  color: rgb(213, 214, 255);
  border: 1px solid rgb(137, 130, 246);
  background-color: rgb(105, 91, 244);
  border-radius: 6px;
  width: 100%;
  padding: 25px 20px;
  margin-bottom: 15px;
}

input::placeholder,
textarea::placeholder {
  font-size: 18px;
  color: #999;
  font-weight: 500;
}

input:focus,
textarea:focus {
  outline: none; /* Убирает контур */
  font-size: 14px;
}

.form-text-data {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 30px;
}

.form-text-data button {
  background-color: #d5d6ff;
  font-size: 14px;
  width: max-content;
  padding: 14px 40px;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  color: #2c0bce;
  letter-spacing: 1.4px;
  text-align: left;
}

.text-data {
  width: 50%;
  color: #7275f4;
  font-size: 12px;
  line-height: 1.4;
}
.text-data span a {
  font-size: 12px;
  color: #fff;
}

.elipse-serv {
  position: absolute;
  right: 114px;
  width: 417px;
  height: 283.982px;
  flex-shrink: 0;
  border-radius: 340px;
  background: #0f0080;
  filter: blur(120px);
  z-index: 1;
  animation: moveDarkToLeftAndBack1 16s linear infinite;
}

@keyframes moveDarkToLeftAndBack1 {
  0%,
  100% {
    transform: translateX(0); /* Возвращение в исходное положение */
  }
  50% {
    transform: translateX(-100vw); /* Движение влево на всю ширину экрана */
  }
}

.elipse-serv1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 417px;
  height: 283.982px;
  flex-shrink: 0;
  border-radius: 340px;
  background: #ffffff59;
  filter: blur(120px);
  z-index: 1;
  animation: moveRightToLeft1 20s linear infinite;
}
@keyframes moveRightToLeft1 {
  0%,
  100% {
    transform: translateX(0vw); /* Начальная и конечная точки справа */
  }
  50% {
    transform: translateX(-100vw); /* Перемещение влево на всю ширину экрана */
  }
}

/*=============== FOOTER ===============*/
.footer {
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: #fff;
  font-weight: var(--font-medium);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}

.icon-footer {
  color: #7275f4;
  font-size: 18px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.footer-line1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.copyright-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.copyright-right a {
  color: #7275f4;
  font-size: 14px;
  transition: all 0.8s ease;
}
.eli:hover {
  text-decoration: underline;
}
.eli {
  color: #61ff90;
  cursor: pointer;
  line-height: 2;
  filter: blur(0.4px);
}

/*----------------------------------------------------------------*/

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(22, 8%, 10%);
}
::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: hsl(22, 8%, 15%);
}
::-webkit-scrollbar-thumb {
  background-color: hsl(22, 8%, 20%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  color: #d5d6ff;
  font-size: 1.1rem;
  background-color: #1118278a;
  box-shadow: 0 4px 8px hsla(22, 10%, 2%, 0.6);
  padding: 0.45rem;
  border-radius: 0.35rem;
  display: inline-flex;
  z-index: var(--z-tooltip);
  transition: bottom 0.3s, transform 0.3s;
}
.scrollup:hover {
  transform: translateY(-0.25rem);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*================== POPUP ======================*/

/* Popup Styles */

@keyframes fadeIn {
  from {
    opacity: 0;
    /* transform: scale(0.9); */
  }
  to {
    opacity: 1;
    /* transform: scale(1); */
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    /* transform: scale(1); */
  }
  to {
    opacity: 0;
    /* transform: scale(0.9); */
  }
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: #2702db;
  border-radius: 5px;
  text-align: center;
  position: relative;
  width: 460px;
  padding: 40px 45px;
}

.popup-content form {
  margin-top: 30px;
  margin-bottom: 30px;
}

.popup-content form input {
  margin-bottom: 30px;
}

.popup-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.popup-text h2 {
  color: #d5d6ff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 11px;
  text-align: left;
}
.popup-content p {
  text-align: left;
  color: #d5d6ff;
  font-size: 16px;
  font-weight: 700;
}

.popup-content input[type='text'] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}
.popup-content input[type='text'] {
  width: 100%;
  padding: 16px;
  margin-bottom: 25px;
  background: transparent;
  border: 1px solid #4a2ae9;
  font-size: 8px;
}

.popup-btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  color: #2702db;
  border: 1px solid #d5d6ff;
  background-color: #d5d6ff;
  margin-bottom: 20px;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
}

.popup.open {
  animation: fadeIn 0.5s forwards;
}

.popup.close {
  animation: fadeOut 0.5s forwards;
}

.data-processing {
  color: rgb(255, 255, 255); /* Or your preferred color */
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */

/* For medium devices */

@media screen and (max-width: 767px) {
  .platform-img img {
    width: 400px;
    border-radius: 0;
    /* height: 0; */
  }

  #crypto-rates {
    width: 90%;
  }
  .result-text p {
    font-size: 1.2rem;
  }

  .result-text p span {
    font-size: 1.8rem;
  }
  .result p {
    font-size: 1.6rem;
    padding: 15px 10px;
  }

  .exchange-form {
    flex-direction: column; /* Элементы теперь расположены вертикально */
    align-items: stretch; /* Элементы растягиваются на всю доступную ширину */
  }

  .exchange-form .form-group {
    width: 100%; /* Установить ширину каждого блока формы на 100% */
  }

  button#calculate {
    width: 100%; /* Кнопка теперь занимает всю ширину контейнера */
    margin-top: 10px; /* Добавить небольшой отступ сверху для визуального разделения */
  }
  #crypto-calculator {
    max-width: 800px;
    width: 90%;
  }
}

/* For large devices */

@media screen and (min-width: 767px) {
  .footer__tree-1,
  .footer__tree-2 {
    display: none;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__toggle,
  .nav__close,
  .nav__img {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  /*Services*/

  /*Information*/

  /* News*/
}

@media screen and (max-width: 1432px) {
  .card-slider .swiper-slide {
    width: 25%; /* 4 в ряд */
  }
}
@media screen and (max-width: 1250px) {
}
@media screen and (max-width: 1024px) {
  .icon-container-nav i {
    font-size: 16px;
  }
  .servise-cards-bodys {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-company {
    flex-direction: column;
    grid-template-columns: repeat(3, 1fr);
  }
  .about-com-card1 {
    width: 400px;
  }

  .wwc-cards-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .wwc1 {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  .wwc2 {
    grid-column: 2 / 3;
    grid-row: 1;
  }
  .wwc3 {
    grid-column: 3 / 4;
    grid-row: 1;
  }
  .wwc4 {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .wwc5 {
    grid-column: 2 / 3;
    grid-row: 2;
  }
  .wwc6 {
    grid-column: 1 / 2;
    grid-row: 3;
  }
  .wwc7 {
    grid-column: 2 / 3;
    grid-row: 3;
  }
  .wwc8 {
    grid-column: 3 / 4;
    grid-row: 3;
  }

  .education-img3 {
    width: 140px;
  }

  .card-slider .swiper-slide {
    width: 33.333%; /* 3 в ряд, включая пустое место */
  }
}
@media screen and (max-width: 768px) {
  .main-text-and-btn {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    flex-direction: column;
  }
  .education-right h3 {
    font-size: 32px;
  }

  .my-card-wwc {
    width: 220px;
  }
  .my-card-text p {
    font-size: 20px;
  }
  .my-card-header h3 {
    font-size: 42px;
  }

  .about-com-card {
    width: 190px;
  }

  .cases-cards {
    grid-auto-rows: minmax(206px, auto);
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }

  .cases-card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .cases-card-2 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  .cases-card-3 {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
  }
  .cases-card-4 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .cases-card-5 {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }
  .cases-card-6 {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }

  .contact-us-icons {
    margin-top: 30px;
  }

  .articles {
    padding: 25px;
    margin-top: 80px;
  }
  .article-wrapper {
    margin-top: 50px;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 50px;
  }
  .inf-item p {
    font-size: 16px;
    width: 100%;
  }

  .information-wrapper {
    padding: 0 25px;
  }

  .education-img1 {
    margin-top: 20px;
  }
  .left-content {
    grid-template-columns: 1fr;
  }
  .right-content {
    grid-template-columns: 1fr;
  }

  .contact-us {
    padding: 25px;
  }

  .contact-us-wrapper {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .contacu-us-form {
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .elipse {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 100;
    animation: moveRightToLeft 10s linear infinite;
  }
  .elipse-dark-move {
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    z-index: 100;
    animation: moveDarkToLeftAndBack 8s linear infinite;
  }
  .elipse-dark {
    top: 0;
    left: 0;
    width: 12px;
    height: 120px;
    z-index: 100;
  }
  .lines-img img {
    width: auto;
  }
  .lines-img {
    width: 100%;
    top: 0;
  }
  .left-home-container h1 {
    font-size: 74px;
    letter-spacing: -4px;
  }
  .left-home-container p {
    width: 80%;
    margin-bottom: 65px;
    line-height: 1.4;
  }
  .home-btns {
    order: 1;
  }

  .about-com-card {
    height: 250px;
  }

  .article-box p {
    font-size: 20px;
    line-height: 1.6;
  }
  .article-left h3 {
    font-size: 52px;
  }
  .contacu-us-left h3 {
    font-size: 52px;
    line-height: 0.8;
  }
  .contacu-us-left {
    gap: 30px;
  }

  .education-img2 {
    bottom: 50%;
    left: 40%;
  }

  .about-com-cards {
    grid-template-columns: 1fr;
  }
  .about-com-card {
    width: 100%;
  }

  .about-com-card1 h3 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .about-com-card1 p {
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
  }

  .about-com-card p {
    order: 1;
  }
  .about-com-card1 {
    width: 100%;
  }
  .about-com-card2 img {
    order: 3;
    position: absolute;
    bottom: 0;
  }
  .about-card-text-s {
    order: 2;
  }
  .about-com-card4 {
    position: relative;
    display: flex;
    justify-content: flex-start;
  }
  .about-com-card2 {
    display: flex;
    justify-content: flex-start;
    position: relative;
  }

  .about-line {
    position: absolute;
    bottom: 0;
  }
  .avatar-img {
    width: 240px;
    order: 2;
  }

  .cases-card-3 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: flex;
    flex-direction: row;
  }
  .cases-card-4 {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
  .cases-card-5 {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }
  .cases-card-6 {
    grid-column: 1 / 3;
    grid-row: 6 / 7;
  }

  .wwc-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwc1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .wwc2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .wwc3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .wwc4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .wwc5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .wwc6 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .wwc7 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .wwc8 {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }

  .inf-text {
    order: 2;
  }

  .information h3 {
    margin-bottom: 50px;
  }
  .contacu-us-form {
    margin-top: 50px;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 435px) {
  .cards-wwc-container {
    display: none;
  }
  .cards-wwc-container-mobile {
    display: block;
    margin-left: 20px;
  }

  /*===== MOBILE SLIDER =======*/

  .my-card-mobile {
    display: flex;
    flex-direction: column;
    height: 325px !important;
    padding: 30px;
    justify-content: space-between;
    border-radius: 20px;
    background: rgba(39, 2, 219, 0.4);
    box-shadow: 0px 0px 40px 0px #5e3ef8 inset;
  }

  .mobile-slider-head {
    position: relative;
  }
  .mobile-slider-head img {
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.4;
  }
  .cards-wwc-container-mobile h3 {
    font-size: 52px;
    color: #d5d6ff;
    margin-bottom: 40px;
    font-weight: 700;
  }
  .mobile-card-text p {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .mobile-card-text ul li {
    font-size: 16px;
    line-height: 25px;
  }

  .mob-3 {
    width: 75px;
  }
  .mob-3 img {
    width: 100%;
  }

  .mob-2 {
    width: 55px;
  }
  .mob-2 img {
    width: 100%;
  }

  .mob-1 {
    width: 35px;
  }
  .mob-1 img {
    width: 100%;
  }

  /*--------------------------------*/

  .article-box {
    gap: 23px;
  }
  .article-box p {
    font-size: 22px;
    line-height: 1.3;
  }

  .form-text-data button {
    padding: 10px 20px;
  }
  form input {
    padding: 20px 14px;
    font-size: 8px;
  }
}
