@charset "UTF-8";
/* Reset and base styles  */
@import url(https://fonts.googleapis.com/css?family=Barlow:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Roboto+Flex:regular);
@import url(https://fonts.googleapis.com/css?family=Roboto+Mono:100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic);
@import url(https://fonts.googleapis.com/css?family=Rajdhani:300,regular,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Lexend:100,200,300,regular,500,600,700,800,900);
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type="file"] {
  max-width: 100%;
}

:root {
  --font-family: "Barlow", sans-serif;
  --second-family: "Roboto Flex", sans-serif;
  --third-family: "Roboto Mono", sans-serif;
  --font3: "Rajdhani", sans-serif;
  --font4: "Lexend", sans-serif;
}

.nav {
  padding: 0 5px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-ul {
  display: flex;
  gap: 22px;
}

.nav-ul-li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: yellow;
  transition: 0.6s all ease-in;
}

.nav-ul-li:hover {
  color: #0a84ff;
  transform: scale(1.1);
}

.btn-blue10 {
  border-radius: 10px;
  padding: 14px 36px;
  background: #0a84ff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #fff;
}

/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .nav-ul {
    gap: 10px;
  }
  .nav-ul-li {
    font-weight: 500;
    font-size: 16px;
  }
  .btn-blue10 {
    padding: 10px 26px;
    font-weight: 700;
    font-size: 12px;
  }
}
/*-------------@media  600 px--------------*/
@media (max-width: 600px) {
  .nav-logo-img {
    width: 100px;
  }
  .nav-ul {
    gap: 10px;
  }
  .nav-ul-li {
    font-weight: 500;
    font-size: 12px;
  }
  .btn-blue10 {
    padding: 10px 16px;
    font-weight: 700;
    font-size: 10px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .nav-logo-img {
    width: 80px;
  }
  .nav-ul {
    gap: 8px;
  }
  .nav-ul-li {
    font-weight: 500;
    font-size: 10px;
  }
  .btn-blue10 {
    padding: 8px 10px;
    font-weight: 600;
    font-size: 9px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .nav-content {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo-img {
    width: 80px;
  }
  .nav-ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  .btn-blue10 {
    padding: 10px;
    font-weight: 500;
    font-size: 9px;
  }
}
/*-------------@media  350 px--------------*/
@media (max-width: 350px) {
  .nav-ul {
    width: 160px;
  }
}
.header {
  position: relative;
  overflow: hidden;
  padding: 0 5px;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%; /* Только левая половина */
  height: 100%;
  background-image: url("../img/svg/headerbg.svg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.header-content {
  position: relative;
  z-index: 1; /* Поднимаем контент над фоном */
  display: flex;
  align-items: center;
}

.header-content-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-content-left-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 72px;
  color: #fff;
  margin-bottom: 33px;
}

.bluetext {
  border-radius: 20px;
  padding: 0 20px;
  background: #0a84ff;
}

.header-content-left-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #ffd700;
  margin-bottom: 33px;
}

.header-content-left-btn {
  margin-bottom: 33px;
}

.header-content-left-fotos {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.number {
  font-weight: 600;
}

.header-content-right {
  width: 50%;
}

.sponsors {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-bottom: 65px;
}

.sponsor {
  height: 40px;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .header-content-left-title {
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 30px;
  }
  .header-content-left-text {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 30px;
  }
  .sponsors {
    gap: 8px;
    padding: 8px 0;
    margin-bottom: 60px;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .header-content-left-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 20px;
  }
  .header-content-left-text {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 20px;
  }
  .sponsors {
    gap: 8px;
    padding: 8px 0;
    margin-bottom: 50px;
  }
  .sponsor {
    height: 30px;
  }
  .bluetext {
    padding: 0 16px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .header-background {
    width: 100%;
  }
  .header-content-left-title {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 16px;
  }
  .header-content-left-text {
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 16px;
  }
  .sponsors {
    gap: 7px;
    padding: 7px 0;
    margin-bottom: 30px;
  }
  .header-content-left-fotos {
    gap: 8px;
    font-size: 12px;
  }
  .number {
    font-weight: 500;
  }
  .sponsor {
    height: 20px;
  }
  .bluetext {
    padding: 0 12px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .header-content-left-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 25px;
  }
  .header-content-left-text {
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 12px;
  }
  .sponsors {
    gap: 5px;
    padding: 15px 0;
    margin-bottom: 16px;
  }
  .header-content-left-fotos {
    gap: 5px;
    font-size: 10px;
  }
  .number {
    font-weight: 400;
  }
  .sponsor {
    height: 16px;
  }
  .bluetext {
    padding: 0 10px;
  }
}
.ultimate {
  padding-bottom: 125px;
  position: relative;
  overflow: hidden;
}

.psevdo-points1 {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/svg/psevdo-points.svg");
  background-repeat: no-repeat;
  width: 270px;
  height: 270px;
}

.psevdo-points2 {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../img/svg/psevdo-points.svg");
  background-repeat: no-repeat;
  width: 270px;
  height: 270px;
}

.ultimate-content {
  padding: 0 10px;
  position: relative;
  z-index: 1; /* Поднимаем контент над фоном */
}

.ultimate-title {
  margin: 0 auto;
  width: 50%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 156%;
  text-align: center;
  color: #fff;
  margin-bottom: 71px;
}

.ultimate-cards {
  display: flex;
  gap: 48px;
  justify-content: space-evenly;
}

.ultimate-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  padding: 42px 0px;
  width: 377px;
  max-height: 480px;
  background: #141414;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.ultimate-card-title {
  width: 70%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.ultimate-card-text {
  width: 70%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .ultimate {
    padding-bottom: 100px;
  }
  .psevdo-points1 {
    width: 200px;
    height: 200px;
  }
  .psevdo-points2 {
    width: 200px;
    height: 200px;
  }
  .ultimate-title {
    font-size: 28px;
    line-height: 136%;
    margin-bottom: 40px;
  }
  .ultimate-cards {
    gap: 28px;
  }
  .ultimate-card {
    gap: 32px;
    padding: 32px 0px;
    max-width: 377px;
  }
  .ultimate-card-title {
    font-size: 18px;
  }
  .ultimate-card-text {
    font-size: 14px;
    line-height: 130%;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .ultimate {
    padding-bottom: 80px;
  }
  .psevdo-points1 {
    width: 150px;
    height: 150px;
  }
  .psevdo-points2 {
    width: 150px;
    height: 150px;
  }
  .ultimate-title {
    font-size: 22px;
    line-height: 116%;
    margin-bottom: 30px;
  }
  .ultimate-cards {
    gap: 20px;
  }
  .ultimate-card {
    padding: 22px 0px;
    height: 100%;
  }
  .ultimate-card-img {
    max-width: 90%;
  }
  .ultimate-card-title {
    font-size: 16px;
  }
  .ultimate-card-text {
    width: 80%;
    font-size: 14px;
    line-height: 110%;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .ultimate {
    padding-bottom: 60px;
  }
  .psevdo-points1 {
    width: 100px;
    height: 100px;
  }
  .psevdo-points2 {
    width: 100px;
    height: 100px;
  }
  .ultimate-title {
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 20px;
  }
  .ultimate-cards {
    gap: 10px;
  }
  .ultimate-card {
    padding: 12px 0px;
  }
  .ultimate-card-img {
    max-width: 80%;
  }
  .ultimate-card-title {
    font-size: 14px;
  }
  .ultimate-card-text {
    width: 80%;
    font-size: 12px;
    line-height: 100%;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .ultimate {
    padding-bottom: 40px;
  }
  .psevdo-points1 {
    width: 80px;
    height: 80px;
  }
  .psevdo-points2 {
    width: 80px;
    height: 80px;
  }
  .ultimate-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .ultimate-cards {
    gap: 5px;
  }
  .ultimate-card {
    padding: 5px 0px;
    border-radius: 10px;
  }
  .ultimate-card-img {
    max-width: 80%;
  }
  .ultimate-card-title {
    font-size: 12px;
  }
  .ultimate-card-text {
    font-size: 10px;
  }
}
.whychooseus {
  margin-bottom: 100px;
  padding: 0 10px;
}

.whychooseus-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 156%;
  text-align: center;
  color: #fff;
  margin-bottom: 75px;
}

.whychooseus-rings {
  display: flex;
  justify-content: center;
  position: relative;
}

.whychooseus-ring {
  position: relative;
  margin-right: -4%; /* Перекрытие 5% */
  z-index: 1;
  transition: z-index 0.3s ease; /* Плавное изменение при наведении */
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 10px solid #000;
  border-radius: 1000px;
  padding: 0px 42px;
  width: 280px;
  height: 280px;
  background: #141414;
}

/* Убираем отрицательный margin у последнего элемента */
.whychooseus-ring:last-child {
  margin-right: 0;
}

/* Поднимаем элемент при наведении */
.whychooseus-ring:hover {
  z-index: 2;
  transform: scale(1.05); /* Легкое увеличение при наведении */
}

.whychooseus-ring-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.whychooseus-ring-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .whychooseus {
    margin-bottom: 80px;
  }
  .whychooseus-title {
    font-size: 30px;
    line-height: 136%;
    margin-bottom: 55px;
  }
  .whychooseus-ring {
    padding: 0px 38px;
    width: 250px;
    height: 250px;
  }
  .whychooseus-ring-title {
    font-weight: 500;
    font-size: 16px;
  }
  .whychooseus-ring-text {
    font-weight: 400;
    font-size: 12px;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .whychooseus {
    margin-bottom: 60px;
  }
  .whychooseus-title {
    font-size: 26px;
    line-height: 106%;
    margin-bottom: 35px;
  }
  .whychooseus-ring {
    gap: 10px;
    padding: 0px 30px;
    width: 200px;
    height: 200px;
  }
  .whychooseus-ring-title {
    font-weight: 500;
    font-size: 14px;
  }
  .whychooseus-ring-text {
    font-weight: 400;
    font-size: 10px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .whychooseus {
    margin-bottom: 40px;
  }
  .whychooseus-title {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 15px;
  }
  .whychooseus-rings {
    flex-wrap: wrap;
    gap: 10px;
  }
  .whychooseus-ring {
    margin-right: 0%; /* Перекрытие 5% */
    gap: 5px;
    padding: 0px 30px;
    width: 150px;
    height: 150px;
  }
  .whychooseus-ring-title {
    font-weight: 400;
    font-size: 12px;
  }
  .whychooseus-ring-text {
    font-weight: 300;
    font-size: 8px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .whychooseus {
    margin-bottom: 20px;
  }
  .whychooseus-rings {
    gap: 5px;
  }
  .whychooseus-ring-img {
    width: 20px;
    height: 20px;
  }
  .whychooseus-ring {
    margin-right: 0%; /* Перекрытие 5% */
    gap: 5px;
    padding: 0px 20px;
    width: 140px;
    height: 140px;
  }
}
.whywestarted {
  margin-bottom: 100px;
  padding: 0 10px;
}

.whywestarted-content {
  text-align: center;
}

.whywestarted-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 156%;
  text-align: center;
  color: #fff;
  margin-bottom: 75px;
}

.slider-imgs {
  display: flex;
  align-items: center;
  gap: 5px;
}

.img-line {
  border: 1px solid #616161;
  width: 124px;
  height: 0px;
}

.slider-p {
  font-family: var(--font4);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.slider-h3 {
  font-family: var(--font4);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #0a84ff;
}

/*-----------------------------slider-------------------------*/
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  margin-bottom: 51px;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 15px;
  padding: 10px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.slide {
  flex: 0 0 calc(33.333% - 14px); /* 3 карточки с учетом gap */
  min-width: 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Активная карточка (посередине) */
.slide.active .card {
  border: 1px solid #007bff;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
}

/* Неактивные карточки */
.slide:not(.active) .card {
  opacity: 0.6;
  transform: scale(0.95);
}

/* Кнопки стрелок */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(127, 120, 120, 0.7607843137);
  box-shadow: 0 4px 15px rgba(104, 236, 38, 0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #ffd700;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .whywestarted {
    margin-bottom: 80px;
  }
  .whywestarted-title {
    font-size: 30px;
    line-height: 136%;
    margin-bottom: 55px;
  }
  .img-line {
    width: 100px;
  }
  .slider-p {
    font-size: 14px;
    line-height: 130%;
  }
  .slider-h3 {
    font-size: 14px;
    line-height: 130%;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .whywestarted {
    margin-bottom: 60px;
  }
  .whywestarted-title {
    font-size: 26px;
    line-height: 106%;
    margin-bottom: 35px;
  }
  .img-line {
    width: 80px;
  }
  .slider-p {
    font-size: 13px;
    line-height: 100%;
  }
  .slider-h3 {
    font-size: 13px;
    line-height: 100%;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .whywestarted {
    margin-bottom: 30px;
  }
  .whywestarted-title {
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 15px;
  }
  .slider-container {
    max-width: 1200px;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  .slider-wrapper {
    border-radius: 10px;
    padding: 5px;
  }
  .slider-track {
    gap: 10px;
  }
  .card {
    gap: 10px;
    border-radius: 10px;
    padding: 5px;
  }
  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .twoline {
    width: 30px;
    height: 30px;
  }
  .img-line {
    width: 40px;
  }
  .slider-p {
    font-size: 10px;
  }
  .slider-h3 {
    font-size: 10px;
  }
}
/*-------------@media  400 px--------------*/
.questions {
  padding: 0 10px;
  margin-bottom: 100px;
}

.questions-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 156%;
  text-align: center;
  color: #fff;
  margin-bottom: 72px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-section {
  padding: 10px 20px;
  background: #141414;
  border-radius: 36px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.accordion-section.active {
  background: #141414;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  gap: 15px;
}

.accordion-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
  border: 1px solid #ffd700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  color: #0a84ff;
}

.accordion-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  color: #fff;
}

.accordion-toggle {
  width: 30px;
  height: 30px;
  border: 2px solid #ffd700;
  background: transparent;
  border-radius: 50%;
  color: #007bff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-section.active .accordion-toggle {
  background: #007bff;
  color: white;
  transform: rotate(45deg);
}

.accordion-content {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-section.active .accordion-content {
  max-height: 500px;
  padding: 0 20px 20px 75px; /* Отступ слева для выравнивания с заголовком */
}

.accordion-content p {
  margin: 0;
  color: #ffd700;
  line-height: 1.6;
}

/* Дополнительные стили для hover эффектов */
.accordion-header:hover .accordion-number {
  background: #0056b3;
}

.accordion-header:hover .accordion-toggle {
  background: #007bff;
  color: white;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .questions {
    margin-bottom: 80px;
  }
  .questions-title {
    font-size: 30px;
    line-height: 136%;
    margin-bottom: 52px;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .questions {
    margin-bottom: 80px;
  }
  .questions-title {
    font-size: 26px;
    line-height: 106%;
    margin-bottom: 32px;
  }
  .accordion-section {
    padding: 10px;
    border-radius: 30px;
    margin-bottom: 10px;
  }
  .accordion-header {
    padding: 10px;
    gap: 5px;
  }
  .accordion-number {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 130%;
  }
  .accordion-title {
    font-size: 18px;
    line-height: 130%;
  }
  .accordion-toggle {
    font-size: 14px;
  }
  .accordion-content {
    font-size: 18px;
    line-height: 130%;
    padding: 0 10px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .questions {
    margin-bottom: 40px;
  }
  .questions-title {
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 12px;
  }
  .accordion-section {
    padding: 5px;
    border-radius: 20px;
    margin-bottom: 5px;
  }
  .accordion-header {
    padding: 5px;
  }
  .accordion-number {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 100%;
  }
  .accordion-title {
    font-size: 14px;
    line-height: 100%;
  }
  .accordion-toggle {
    font-size: 12px;
  }
  .accordion-content {
    font-size: 14px;
    line-height: 100%;
    padding: 0 5px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .questions {
    margin-bottom: 20px;
  }
  .accordion-section {
    border-radius: 10px;
  }
  .accordion-content {
    font-size: 12px;
  }
}
.footer {
  padding: 50px 10px 0 10px;
  border-top: 1px solid #fdd700;
}

.footer-rows {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}

.long-text {
  display: flex;
  gap: 5px;
}

.footer-ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-ul-li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: yellow;
  transition: 0.6s all ease-in;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #007bff;
  border-radius: 12px;
  padding: 14px 14px 14px 24px;
  width: 258px;
  height: 92px;
}

.footer-social-icons > a {
  border-radius: 8px;
  padding: 20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #4f4e4e 0%, rgba(36, 36, 36, 0) 100%);
}

.footer-row2-ul {
  display: flex;
  justify-content: space-between;
}

.footer-row3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #98989a;
  margin-bottom: 50px;
}

/*-------------@media  1150 px--------------*/
@media (max-width: 1150px) {
  .footer-row2-ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .footer {
    padding: 30px 10px 0 10px;
  }
  .footer-rows {
    gap: 30px;
  }
  .footer-row3 {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 30px;
  }
  .footer-social-icons {
    border-radius: 10px;
    padding: 10px;
    width: 208px;
    height: 82px;
  }
  .footer-social-icons > a {
    border-radius: 8px;
    padding: 10px;
    width: 44px;
    height: 44px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .footer {
    padding: 10px 10px 0 10px;
  }
  .footer-rows {
    gap: 10px;
  }
  .footer-logo-rotate {
    transform: rotate(-90deg);
    width: 100px;
    height: 40px;
  }
  .footer-row3 {
    font-size: 13px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  .footer-row1 {
    justify-content: space-evenly;
  }
  .footer-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
  }
  .footer-social-icons {
    flex-direction: column;
    border-radius: 10px;
    padding: 10px;
    width: 82px;
    height: 200px;
  }
  .footer-social-icons > a {
    border-radius: 8px;
    padding: 10px;
    width: 44px;
    height: 44px;
  }
}
.gear {
  padding: 60px 5px;
}

.gear-content {
  position: relative;
  border-radius: 48px;
  background-image: url("../img/images/gearleftbg.png");
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden; /* ← это не даст фону выйти за пределы */
}

.gear-psevdo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/svg/psevdo-points.svg");
  opacity: 0.2; /* Прозрачность только для фона */
}

.gear-content-left {
  width: 60%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.gear-content-left-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 40px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
}

.gear-digital {
  font-weight: 900;
  color: #0a84ff;
}

.gear-content-left-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
}

.gear-content-right {
  display: flex;
  width: 40%;
  z-index: 3;
}

.gear-rotate {
  transition: 2s all ease-in;
}

.gear-rotate:hover {
  transform: rotate(-180deg);
}

/*-------------@media  1100 px--------------*/
@media (max-width: 1100px) {
  .gear-content-left {
    padding: 10px 40px;
    gap: 20px;
  }
  .gear-content-left-title {
    font-size: 40px;
    line-height: 130%;
  }
  .gear-content-left-text {
    font-size: 18px;
    line-height: 130%;
  }
}
/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .gear {
    padding: 40px 10px;
  }
  .gear-content-left {
    padding: 10px 30px;
    gap: 20px;
  }
  .gear-content-left-title {
    font-size: 40px;
    line-height: 100%;
  }
  .gear-content-left-text {
    font-size: 18px;
    line-height: 100%;
  }
}
/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .gear {
    padding: 20px 10px;
  }
  .gear-content-left {
    padding: 10px 20px;
    gap: 25px;
  }
  .gear-content-left-title {
    font-size: 32px;
  }
  .gear-content-left-text {
    font-size: 16px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .gear {
    padding: 5px;
  }
  .gear-content {
    border-radius: 18px;
    gap: 5px;
  }
  .gear-content-left {
    padding: 10px;
    gap: 10px;
  }
  .gear-content-left-title {
    font-size: 20px;
  }
  .gear-content-left-text {
    font-size: 12px;
  }
  /*--------scroll from deepseek------------------*/
  .gear-content-left-text {
    max-height: 5.5em; /* Примерно 5 строк (1.5em × 5) */
    overflow-y: auto; /* Вертикальный скролл */
    line-height: 1.5em; /* Высота строки */
    /* Дополнительные стили для красоты */
    padding-right: 8px; /* Место для скролла */
    scrollbar-width: thin; /* Тонкий скроллбар для Firefox */
    scrollbar-color: #ccc transparent; /* Цвет скроллбара */
  }
  /* Стилизация скроллбара для Webkit браузеров (Chrome, Safari) */
  .gear-content-left-text::-webkit-scrollbar {
    width: 6px;
  }
  .gear-content-left-text::-webkit-scrollbar-track {
    background: transparent;
  }
  .gear-content-left-text::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .gear-content-left-text::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .gear-content-left {
    gap: 5px;
  }
}
.ourservices {
  padding: 60px 0;
}

.ourservices-head {
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.ourservices-head-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 12px;
}

.ourservices-head-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  text-align: center;
  color: green;
  margin-bottom: 60px;
}

.ourservices-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
}

.ourservices-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 36px;
  padding: 20px;
  max-width: 350px;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
  background: #141414;
}

.ourservices-card-img {
  width: 80%;
}

.ourservices-card-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #ffd700;
}

.ourservices-card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #ffd700;
}

.ourservices-card-ul {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: start;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 171%;
  text-align: center;
  color: #fff;
}

.toggle-switch {
  display: inline-block;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch:hover {
  border-color: #007bff;
}

.toggle-track {
  position: relative;
  display: flex;
  align-items: center;
  width: 160px;
  height: 40px;
  padding: 10px 26px;
}

.toggle-button {
  position: absolute;
  left: 5px;
  border-radius: 135px;
  padding: 6px 14px;
  width: 52px;
  height: 36px;
  border: none;
  background: #007bff;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.toggle-button .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.toggle-text {
  position: absolute;
  right: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Состояние когда кнопка справа */
.toggle-switch.active .toggle-button {
  left: calc(100% - 45px); /* 100% - width - left position */
  background: #28a745; /* Можно поменять цвет */
}

.toggle-switch.active .toggle-button .arrow {
  transform: rotate(180deg); /* Стрелка поворачивается */
}

.toggle-switch.active .toggle-text {
  right: auto;
  left: 15px;
  color: #28a745; /* Цвет текста меняется */
}

/*-------------@media  750 px--------------*/
@media (max-width: 750px) {
  .ourservices {
    padding: 40px 0;
  }
  .ourservices-head-title {
    font-size: 30px;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .ourservices-head-text {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 30px;
  }
  .ourservices-cards {
    gap: 10px;
  }
  .ourservices-card {
    gap: 22px;
    border-radius: 26px;
    padding: 10px;
    max-width: 240px;
  }
  .ourservices-card-title {
    font-size: 18px;
  }
  .ourservices-card-text {
    font-size: 14px;
    line-height: 130%;
  }
  .ourservices-card-ul {
    width: 80%;
    gap: 5px;
    font-size: 10px;
    line-height: 111%;
  }
  .toggle-track {
    width: 130px;
    height: 25px;
    padding: 5px 10px;
  }
  .toggle-button {
    padding: 4px 10px;
    width: 42px;
    height: 26px;
  }
  .toggle-button .arrow {
    font-size: 16px;
  }
  .toggle-text {
    right: 10px;
    font-size: 10px;
    line-height: 110%;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .ourservices {
    padding: 20px 0;
  }
  .ourservices-head-title {
    font-size: 22px;
    line-height: 100%;
    margin-bottom: 5px;
  }
  .ourservices-head-text {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  .ourservices-cards {
    gap: 5px;
  }
  .ourservices-card {
    gap: 12px;
    border-radius: 16px;
    padding: 5px;
    max-width: 180px;
  }
  .ourservices-card-title {
    font-size: 14px;
  }
  .ourservices-card-text {
    font-size: 10px;
    line-height: 100%;
  }
  .ourservices-card-ul {
    width: 95%;
    line-height: 100%;
  }
  .toggle-track {
    width: 120px;
    height: 20px;
    padding: 5px 10px;
  }
  .toggle-button {
    padding: 4px 10px;
    width: 32px;
    height: 20px;
  }
  .toggle-button .arrow {
    font-size: 14px;
  }
  .toggle-switch {
    padding: 5px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .ourservices {
    padding: 10px 0;
  }
  .ourservices-head-title {
    font-size: 18px;
  }
  .ourservices-card {
    gap: 5px;
    border-radius: 10px;
    max-width: 150px;
  }
  .ourservices-card-title {
    font-size: 12px;
  }
  .ourservices-card-text {
    margin-bottom: 10px;
  }
  .toggle-track {
    width: 100px;
    height: 20px;
    padding: 5px 5px;
  }
}
.ourcase {
  position: relative;
  max-height: 450px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.psevdo-points11 {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/svg/psevdo-points11.svg");
  background-repeat: no-repeat;
  width: 370px;
  height: 470px;
}

.ourcase-content {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
}

.ourcase-header {
  margin: 0 auto;
}

.ourcase-header-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-top: -20px;
  margin-bottom: 12px;
}

.ourcase-header-text {
  max-width: 670px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 60px;
}

.border {
  border: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 1440px;
  height: 0px;
}

.ourcase-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.ourcase-search-clear {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 0px 15px;
  width: 145px;
  height: 56px;
  background: #0a84ff;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.search-container {
  position: relative;
  max-width: 300px;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 10px 15px;
  background: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 25px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.3);
  outline: none;
  transition: all 0.3s ease;
}

.search-input::-moz-placeholder {
  color: #a0aec0;
}

.search-input::placeholder {
  color: #a0aec0;
}

.search-input:focus {
  border-color: #4299e1;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.search-button {
  position: absolute;
  right: 4px;
  width: 36px;
  height: 36px;
  background: #4299e1;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: #3182ce;
  transform: scale(1.05);
}

.search-button:active {
  transform: scale(0.95);
}

.search-icon {
  transition: transform 0.2s ease;
}

.search-button:hover .search-icon {
  transform: scale(1.1);
}

.custom-select {
  position: relative;
  max-width: 210px;
}

.select-element {
  width: 100%;
  padding: 10px 15px;
  background: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.select-element:focus {
  border-color: #4299e1;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #a0aec0;
  pointer-events: none;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .ourcase {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .psevdo-points11 {
    width: 270px;
    height: 270px;
  }
  .ourcase-header-title {
    font-size: 30px;
    line-height: 130%;
    margin-top: -15px;
    margin-bottom: 10px;
  }
  .ourcase-header-text {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 20px;
  }
  .ourcase-search {
    margin-bottom: 30px;
  }
  .ourcase-search-clear {
    padding: 0px 10px;
    width: 125px;
    height: 40px;
    font-size: 14px;
  }
  .search-input {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 120%;
  }
  .search-button {
    width: 30px;
    height: 30px;
  }
  .select-element {
    padding: 10px 15px;
    font-size: 14px;
  }
}
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .ourcase {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .psevdo-points11 {
    width: 200px;
    height: 200px;
  }
  .ourcase-header-title {
    font-size: 24px;
    line-height: 100%;
    margin-top: -5px;
    margin-bottom: 5px;
  }
  .ourcase-header-text {
    margin: 0 auto;
    width: 90%;
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  .ourcase-search {
    margin-bottom: 20px;
  }
  .ourcase-search-clear {
    padding: 0px 5px;
    width: 100px;
    height: 30px;
    font-size: 12px;
  }
  .search-input {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 10px;
    line-height: 100%;
  }
  .search-icon {
    width: 10px;
    height: 10px;
  }
  .search-button {
    width: 20px;
    height: 20px;
  }
  .select-element {
    padding: 5px 10px;
    font-size: 12px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .ourcase-search {
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
  }
}
/*-------------@media  400 px--------------*/
.portfolio {
  margin-bottom: 60px;
}

.portfolio-context {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  margin-bottom: 60px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 36px;
  padding: 20px;
  max-width: 450px;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
  background: #141414;
}

.portfolio-card-img {
  width: 90%;
  border-radius: 32px;
}

.portfolio-card-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #ffd700;
}

.portfolio-card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #ffd700;
}

.portfolio-card-ul {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: start;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 171%;
  text-align: center;
  color: #fff;
}

.portfolio-card-title-button {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.button-ring {
  border-radius: 135px;
  padding: 14px;
  width: 42px;
  height: 42px;
  background: #459cf3;
}

.loading {
  display: flex;
  gap: 10px;
}

.loading-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .portfolio {
    margin-bottom: 40px;
  }
  .portfolio-cards {
    gap: 20px;
    margin-bottom: 40px;
  }
  .portfolio-card {
    gap: 22px;
    border-radius: 26px;
    padding: 15px;
    max-width: 400px;
  }
  .portfolio-card-img {
    border-radius: 22px;
  }
  .portfolio-card-title {
    font-size: 18px;
  }
  .portfolio-card-text {
    font-size: 14px;
    line-height: 130%;
  }
  .portfolio-card-ul {
    width: 95%;
    gap: 10px;
    font-size: 12px;
    line-height: 131%;
  }
  .portfolio-card-title-button {
    width: 95%;
  }
  .button-ring {
    padding: 10px;
    width: 32px;
    height: 32px;
  }
}
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .portfolio {
    margin-bottom: 30px;
  }
  .portfolio-cards {
    gap: 10px;
    margin-bottom: 30px;
  }
  .portfolio-card {
    gap: 15px;
    border-radius: 20px;
    padding: 10px;
    max-width: 300px;
  }
  .portfolio-card-img {
    border-radius: 15px;
  }
  .portfolio-card-title {
    font-size: 16px;
  }
  .portfolio-card-text {
    font-size: 12px;
    line-height: 100%;
  }
  .portfolio-card-ul {
    gap: 5px;
    font-size: 12px;
    line-height: 100%;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .portfolio {
    margin-bottom: 10px;
  }
  .portfolio-cards {
    gap: 5px;
    margin-bottom: 10px;
  }
  .portfolio-card {
    gap: 5px;
    border-radius: 10px;
    padding: 5px;
    max-width: 200px;
  }
  .portfolio-card-img {
    border-radius: 10px;
  }
  .portfolio-card-title {
    font-size: 12px;
  }
  .portfolio-card-text {
    font-size: 10px;
  }
  .portfolio-card-ul {
    width: 90%;
    font-size: 10px;
  }
  .button-ring {
    padding: 5px;
    width: 25px;
    height: 25px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .portfolio-card {
    max-width: 150px;
  }
  .portfolio-card-title-button {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.subcontainer {
  padding: 50px 0;
}

.subcontainer-content {
  padding: 0 5px;
}

.sub-container-cards {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
}

.subcontainer-card {
  border-radius: 12px;
  padding: 32px 16px;
  width: 243px;
  height: 125px;
  background: #1a1a1a;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.subcontainer-card-title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #b3b3b2;
}

.subcontainer-card-number {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #c8c8c8;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .subcontainer {
    padding: 40px 0;
  }
  .sub-container-cards {
    gap: 5px;
  }
  .subcontainer-card {
    padding: 20px;
    width: 220px;
    height: 100px;
  }
  .subcontainer-card-title {
    font-size: 12px;
    line-height: 130%;
  }
  .subcontainer-card-number {
    font-size: 26px;
    line-height: 130%;
  }
}
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .subcontainer {
    padding: 20px 0;
  }
  .sub-container-cards {
    gap: 5px;
  }
  .subcontainer-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 220px;
    height: 100px;
  }
  .subcontainer-card-title {
    font-size: 10px;
    line-height: 100%;
  }
  .subcontainer-card-number {
    font-size: 20px;
    line-height: 100%;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .subcontainer {
    padding: 10px 0;
  }
  .sub-container-cards {
    flex-wrap: wrap;
  }
  .subcontainer-card {
    width: 150px;
    height: 80px;
  }
  .subcontainer-card-number {
    font-size: 16px;
  }
}
/*-------------@media  400 px--------------*/
.ourstory {
  max-height: 800px;
  margin-bottom: 60px;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}

.ourstory-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/svg/headerbg.svg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.ourstory-content {
  position: relative;
  z-index: 1; /* Поднимаем контент над фоном */
  display: flex;
  gap: 20px;
}

.our-story-left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.ourstory-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.ourstory-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 100px;
}

.our-story-img {
  border-radius: 24px;
  max-width: 484px;
  max-height: 299px;
  margin-bottom: 100px;
}

.our-story-right {
  width: 50%;
  display: flex;
  flex-direction: column-reverse;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .ourstory {
    margin-bottom: 40px;
  }
  .ourstory-content {
    gap: 10px;
  }
  .ourstory-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ourstory-text {
    font-size: 14px;
    margin-bottom: 60px;
  }
  .our-story-img {
    margin-bottom: 60px;
  }
}
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .ourstory {
    margin-bottom: 20px;
  }
  .ourstory-content {
    gap: 5px;
  }
  .ourstory-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ourstory-text {
    font-size: 12px;
    margin-bottom: 60px;
  }
  .our-story-img {
    margin-bottom: 30px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .ourstory {
    margin-bottom: 10px;
  }
  .ourstory-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .ourstory-text {
    margin-bottom: 20px;
  }
  .our-story-img {
    margin-bottom: 10px;
  }
  /*----------scroll from deepseek-----------------*/
  .ourstory-text {
    max-height: 7.5em; /* Примерно 5 строк (1.5em × 5) */
    overflow-y: auto; /* Вертикальный скролл */
    line-height: 1.5em; /* Высота строки */
    padding-right: 8px; /* Место для скролла */
    /* Стилизация скроллбара */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }
  /* Убираем отступы между параграфами в мобильной версии */
  .ourstory-text br {
    display: none;
  }
  .ourstory-text p {
    margin-bottom: 0.5em; /* Добавляем отступ снизу вместо <br> */
  }
  .ourstory-text p:last-child {
    margin-bottom: 0;
  }
  /* Стилизация скроллбара для Webkit браузеров */
  .ourstory-text::-webkit-scrollbar {
    width: 4px;
  }
  .ourstory-text::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
  }
  .ourstory-text::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
  }
  .ourstory-text::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}
/*-------------@media  400 px--------------*/
.core {
  margin-bottom: 60px;
}

.core-header {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  color: #f9efec;
  margin-bottom: 10px;
}

.core-cards {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}

.core-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  max-width: 306px;
  padding: 20px 10px;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
  background: #1a1a1a;
}

.core-card-title {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #81807e;
}

.core-card-img {
  text-align: center;
  border-top: 2px solid #262626;
  padding: 30px 24px;
  width: 100%;
  background: #1f1f1f;
}

.core-card-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #b3b3b2;
  padding: 10px;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .core {
    margin-bottom: 40px;
  }
  .core-header {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .core-cards {
    gap: 10px;
  }
  .core-card {
    max-width: 306px;
    padding: 10px;
  }
  .core-card-title {
    font-size: 14px;
    line-height: 130%;
  }
  .core-card-img {
    padding: 20px;
  }
  .core-card-text {
    font-size: 14px;
    line-height: 130%;
    padding: 10px;
  }
}
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .core {
    margin-bottom: 30px;
  }
  .core-header {
    font-size: 24px;
  }
  .core-cards {
    gap: 5px;
  }
  .core-card {
    max-width: 250px;
    padding: 10px;
  }
  .core-card-title {
    font-size: 14px;
    line-height: 100%;
  }
  .core-card-img {
    padding: 10px;
  }
  .core-card-text {
    font-size: 12px;
    line-height: 100%;
    padding: 10px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .core {
    margin-bottom: 10px;
  }
  .core-header {
    font-size: 18px;
  }
  .core-card {
    max-width: 200px;
    padding: 10px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .core-card {
    max-width: 145px;
  }
}
.ourtrack {
  margin-bottom: 60px;
}

.ourtrack-content {
  margin-bottom: 60px;
}

.ourtrack-header {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 156%;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}

.ourtrack-cards {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}

.ourtrack-card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius: 36px;
  padding: 42px 0px;
  max-width: 293px;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
  background: #141414;
}

.ourtrack-card-number {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 64px;
  line-height: 125%;
  text-align: center;
  color: #fff;
  text-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.71);
  margin-bottom: 32px;
}

.ourtrack-card-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.ourtrack-card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .ourtrack {
    margin-bottom: 40px;
  }
  .ourtrack-content {
    margin-bottom: 40px;
  }
  .ourtrack-header {
    font-size: 28px;
    line-height: 136%;
    margin-bottom: 30px;
  }
  .ourtrack-cards {
    gap: 10px;
  }
  .ourtrack-card {
    border-radius: 26px;
    padding: 32px 0px;
    max-width: 250px;
  }
  .ourtrack-card-number {
    font-size: 44px;
    line-height: 100%;
    margin-bottom: 20px;
  }
  .ourtrack-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .ourtrack-card-text {
    font-size: 14px;
    padding: 10px;
  }
}
/*-------------@media  700 px--------------*/
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .ourtrack {
    margin-bottom: 20px;
  }
  .ourtrack-content {
    margin-bottom: 20px;
  }
  .ourtrack-header {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 20px;
  }
  .ourtrack-cards {
    gap: 5px;
  }
  .ourtrack-card {
    border-radius: 16px;
    padding: 22px 0px;
    max-width: 200px;
  }
  .ourtrack-card-number {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .ourtrack-card-title {
    font-size: 14px;
    padding: 5px;
    margin-bottom: 5px;
  }
  .ourtrack-card-text {
    font-size: 12px;
    padding: 5px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .ourtrack {
    margin-bottom: 10px;
  }
  .ourtrack-content {
    margin-bottom: 10px;
  }
  .ourtrack-header {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .ourtrack-card {
    border-radius: 16px;
    padding: 22px 0px;
    max-width: 145px;
  }
  .ourtrack-card-number {
    font-size: 24px;
  }
}
.discuss {
  padding: 0 5px;
  margin-bottom: 60px;
}

.discuss-content {
  margin: 0 auto;
  border-radius: 64px;
  padding: 48px 0px;
  max-width: 1097px;
  box-shadow: 2px 4px 8px 0 rgba(255, 255, 255, 0.25);
  background-image: url("../img/images/discussBg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.discuss-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 156%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.discuss-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 280%;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}

.blue {
  font-weight: 800;
  color: #0a84ff;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .discuss {
    margin-bottom: 40px;
  }
  .discuss-content {
    border-radius: 44px;
    padding: 38px 0px;
    padding: 60px 0;
    gap: 10px;
  }
  .discuss-title {
    font-size: 30px;
    line-height: 136%;
  }
  .discuss-text {
    font-size: 18px;
    line-height: 200%;
  }
}
/*-------------@media  700 px--------------*/
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .discuss {
    margin-bottom: 20px;
  }
  .discuss-content {
    border-radius: 34px;
    padding: 28px 0px;
    padding: 30px 0;
    gap: 10px;
  }
  .discuss-title {
    font-size: 20px;
    line-height: 100%;
  }
  .discuss-text {
    font-size: 14px;
    line-height: 150%;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .discuss {
    margin-bottom: 10px;
  }
  .discuss-content {
    border-radius: 24px;
    padding: 28px 0px;
    padding: 20px 0;
  }
  .discuss-title {
    font-size: 18px;
  }
  .discuss-text {
    font-size: 14px;
    line-height: 120%;
  }
}
.career-search {
  border-radius: 16px;
  padding: 50px 10px;
  background: #0b0b0b;
  margin: 70px 0;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.career-search_blocks {
  display: flex;
  gap: 16px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .career-search {
    border-radius: 14px;
    padding: 40px 10px;
    margin: 50px 0;
  }
  .career-search_blocks {
    gap: 10px;
  }
}
/*-------------@media  700 px--------------*/
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .career-search {
    border-radius: 12px;
    padding: 20px 10px;
    margin: 30px 0;
  }
  .career-search_blocks {
    gap: 5px;
  }
}
/*-------------@media  400 px--------------*/
.openpos {
  padding-bottom: 100px;
}

.openpos-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  color: #f9efec;
  margin-bottom: 50px;
}

.openpos-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.openpos-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-evenly;
  border-radius: 14px;
  padding: 50px;
  max-width: 550px;
  background: #1a1a1a;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.openpos-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.openpos-card__header-img {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  width: 74px;
  height: 74px;
  background: #1f1f1f;
}

.openpos-card__header-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 150%;
  text-transform: uppercase;
  color: #ffd700;
}

.openpos-card__descblock {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.openpos-card__desc-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border-radius: 45px;
  padding: 10px 16px;
  background: #1f1f1f;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #e6e6e6;
}

.openpos-card__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #f9efec;
}

.openpos-card__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #b3b3b2;
}

.btn-blueOpenPos {
  border-radius: 12px;
  padding: 18px 24px;
  width: 95%;
  height: 63px;
  background: #0a84ff;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}

/*-------------@media  1100 px--------------*/
@media (max-width: 1100px) {
  .openpos-card {
    max-width: 450px;
  }
}
/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .openpos {
    padding-bottom: 60px;
  }
  .openpos-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .openpos-cards {
    gap: 10px;
  }
  .openpos-card {
    gap: 30px;
    border-radius: 10px;
    padding: 30px;
    max-width: 350px;
  }
  .openpos-card__header {
    gap: 10px;
  }
  .openpos-card__header-img {
    padding: 10px;
    width: 54px;
    height: 54px;
  }
  .openpos-card__header-title {
    font-size: 20px;
    line-height: 130%;
  }
  .openpos-card__descblock {
    gap: 10px;
  }
  .openpos-card__desc-item {
    gap: 5px;
    border-radius: 35px;
    padding: 10px;
    font-size: 16px;
    line-height: 130%;
  }
  .openpos-card__title {
    font-size: 20px;
    line-height: 130%;
  }
  .openpos-card__text {
    font-size: 16px;
    line-height: 130%;
  }
  .btn-blueOpenPos {
    border-radius: 10px;
    padding: 18px;
    width: 95%;
    height: 53px;
    font-size: 16px;
    line-height: 100%;
  }
}
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .openpos {
    padding-bottom: 40px;
  }
  .openpos-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .openpos-cards {
    gap: 5px;
  }
  .openpos-card {
    gap: 20px;
    padding: 20px;
    max-width: 250px;
  }
  .openpos-card__header-title {
    font-size: 18px;
    line-height: 100%;
  }
  .openpos-card__desc-item {
    border-radius: 25px;
    padding: 5px;
    font-size: 14px;
    line-height: 100%;
  }
  .openpos-card__title {
    font-size: 18px;
    line-height: 100%;
  }
  .openpos-card__text {
    font-size: 14px;
    line-height: 100%;
  }
  .btn-blueOpenPos {
    padding: 10px;
    width: 95%;
    height: 43px;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .openpos {
    padding-bottom: 20px;
  }
  .openpos-title {
    margin-bottom: 10px;
  }
  .openpos-card {
    gap: 10px;
    padding: 10px;
    max-width: 195px;
  }
  .btn-blueOpenPos {
    height: 33px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .openpos-card {
    max-width: 145px;
  }
  .openpos-card__header {
    justify-content: center;
    flex-wrap: wrap;
  }
  .openpos-card__text {
    font-size: 10px;
  }
}
.webdesigner {
  background: linear-gradient(rgba(0, 0, 0, 0.382), rgba(0, 0, 0, 0.382)),
    url(../img/images/designerBg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.webdesigner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.webdesigner-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 64px;
  line-height: 150%;
  text-transform: uppercase;
  color: #f9efec;
}

.webdesigner-button {
  width: 335px;
}

/*-------------@media  1100 px--------------*/
/*-------------@media  900 px--------------*/
/*-------------@media  700 px--------------*/
@media (max-width: 700px) {
  .webdesigner {
    height: 250px;
    margin-bottom: 25px;
  }
  .webdesigner-title {
    font-size: 44px;
    line-height: 130%;
  }
  .webdesigner-button {
    width: 235px;
  }
}
/*-------------@media  500 px--------------*/
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .webdesigner {
    height: 150px;
    margin-bottom: 15px;
  }
  .webdesigner-title {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  .webdesigner-button {
    width: 135px;
  }
}
.aboutposition {
  margin-bottom: 60px;
}

.aboutposition-content {
  padding: 0 5px;
  display: flex;
  gap: 5px;
}

.aboutposition-left {
  width: 60%;
}

.aboutposition-left__top {
  border-radius: 12px;
  padding: 32px;
  width: 95%;
  background: #1a1a1a;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
  margin-bottom: 30px;
}

.aboutposition-left__top-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #f9efec;
  margin-bottom: 12px;
}

.aboutposition-left__top-text {
  margin-bottom: 24px;
}

.aboutposition-p {
  display: flex;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #b3b3b2;
}

.aboutposition-left__bottom {
  border-radius: 12px;
  padding: 32px 40px;
  width: 95%;
  background: #141414;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.aboutposition-left__bottom-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.aboutposition-right {
  width: 40%;
}

/*--------------------form from deepseek--------------------*/
.application-form1 {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
}

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

.form-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group1 {
  display: flex;
  flex-direction: column;
}

.form-label1 {
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffd700;
}

.form-input1 {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-input1:focus {
  outline: none;
  border-color: #007bff;
}

.form-section1 {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.section-title1 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffd700;
}

.file-upload1 {
  margin-top: 10px;
}

.upload-area1 {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: border-color 0.3s;
  cursor: pointer;
}

.upload-area1:hover {
  border-color: #007bff;
}

.upload-area1.dragover1 {
  border-color: #007bff;
  background-color: #f8f9fa;
}

.upload-icon1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.upload-text1 {
  margin-bottom: 15px;
  color: #ffd700;
}

.browse-btn1 {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.browse-btn1:hover {
  background: #0056b3;
}

.submit-btn1 {
  background: #0a84ff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.submit-btn1:hover {
  background: #218838;
}

/* Адаптивность */
@media (max-width: 768px) {
  .form-row1 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .application-form1 {
    padding: 20px;
  }
}
/*-------------@media  1100 px--------------*/
/*-------------@media  900 px--------------*/
@media (max-width: 900px) {
  .aboutposition {
    margin-bottom: 40px;
  }
  .aboutposition-left__top {
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 20px;
  }
  .aboutposition-left__top-title {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .aboutposition-left__top-text {
    margin-bottom: 20px;
  }
  .aboutposition-p {
    gap: 5px;
    font-size: 14px;
    line-height: 130%;
  }
  .aboutposition-left__bottom {
    border-radius: 10px;
    padding: 30px;
    width: 95%;
  }
  .aboutposition-left__bottom-title {
    font-size: 18px;
  }
  .application-form1 {
    max-width: 400px;
    padding: 20px;
  }
  .form1 {
    gap: 10px;
  }
  .form-row1 {
    gap: 10px;
  }
  .form-input1 {
    padding: 10px;
    font-size: 12px;
  }
  .form-section1 {
    padding-top: 10px;
  }
  .section-title1 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .file-upload1 {
    margin-top: 5px;
  }
  .upload-area1 {
    padding: 20px;
  }
  .upload-icon1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .upload-text1 {
    margin-bottom: 10px;
  }
  .browse-btn1 {
    padding: 10px;
  }
  .submit-btn1 {
    padding: 15px;
    font-size: 14px;
    margin-top: 10px;
  }
}
/*-------------@media  700 px--------------*/
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .aboutposition {
    margin-bottom: 20px;
  }
  .aboutposition-left__top {
    padding: 12px;
    margin-bottom: 10px;
  }
  .aboutposition-left__top-title {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 5px;
  }
  .aboutposition-left__top-text {
    margin-bottom: 10px;
  }
  .aboutposition-p {
    font-size: 10px;
    line-height: 100%;
  }
  .aboutposition-left__bottom {
    padding: 10px;
  }
  .aboutposition-left__bottom-title {
    font-size: 14px;
  }
  .application-form1 {
    max-width: 300px;
    padding: 10px;
  }
  .form-input1 {
    padding: 5px;
    font-size: 10px;
  }
  .form-section1 {
    padding-top: 5px;
  }
  .section-title1 {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .upload-area1 {
    padding: 10px;
  }
  .upload-icon1 {
    font-size: 20px;
  }
  .upload-text1 {
    margin-bottom: 5px;
  }
  .browse-btn1 {
    padding: 5px;
  }
  .submit-btn1 {
    padding: 5px;
    font-size: 10px;
    margin-top: 10px;
  }
}
/*-------------@media  400 px--------------*/
@media (max-width: 400px) {
  .aboutposition-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .aboutposition-left {
    width: 95%;
  }
  .aboutposition-right {
    width: 95%;
  }
  .openpos-card-wide {
    max-width: 280px !important;
  }
}
.last {
  padding: 70px 5px;
}

.last-content {
  display: flex;
  gap: 10px;
  align-items: center;
}

.last-left {
  border-radius: 24px;
  padding: 35px 10px;
  width: 50%;
  background: #141414;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.last-left__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

/*-----------------form deepseek----------------------*/
.contact-form2 {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
}

.form2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group2 {
  display: flex;
  flex-direction: column;
}

.form-input2,
.form-textarea2 {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.form-input2:focus,
.form-textarea2:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.form-textarea2 {
  resize: vertical;
  min-height: 100px;
}

.form-input2::-moz-placeholder,
.form-textarea2::-moz-placeholder {
  color: #ffd700;
}

.form-input2::placeholder,
.form-textarea2::placeholder {
  color: #ffd700;
}

.submit-btn2 {
  background: #007bff;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  font-weight: 500;
  position: relative;
}

.submit-btn2:hover {
  background: #0056b3;
}

.submit-btn2:active {
  transform: translateY(1px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .form-row2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-form2 {
    padding: 20px 15px;
  }
  .form-input2,
  .form-textarea2 {
    padding: 10px 14px;
  }
}
@media (max-width: 480px) {
  .contact-form2 {
    padding: 15px 10px;
  }
  .submit-btn2 {
    padding: 12px 25px;
    font-size: 15px;
  }
}
/*-----------------------------------*/
.last-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.last-right__block1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  padding: 32px 40px;
  width: 100%;
  background: #141414;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.last-right__block2-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.last-right__block1-contact {
  display: flex;
  gap: 10px;
}

.last-right__block1-contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.span-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 87%;
  color: #fff;
}

.span-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.last-right__block2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  padding: 32px 40px;
  width: 100%;
  background: #141414;
  border: 1px solid blueviolet;
  box-shadow: 8px 13px 29px 0px rgba(176, 220, 78, 0.2);
}

.last-right__block2-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: rgba(255, 255, 255, 0.8);
}

/*-------------@media  1100 px--------------*/
@media (max-width: 1100px) {
  .last {
    padding: 50px 5px;
  }
  .last-left {
    border-radius: 20px;
    padding: 25px 10px;
  }
  .last-left__title {
    font-size: 18px;
  }
  .contact-form2 {
    max-width: 450px;
    padding: 20px;
  }
  .form2 {
    gap: 10px;
  }
  .form-row2 {
    gap: 10px;
  }
  .form-input2,
  .form-textarea2 {
    padding: 12px;
    font-size: 12px;
  }
  .form-textarea2 {
    min-height: 90px;
  }
  .submit-btn2 {
    padding: 14px 20px;
    font-size: 14px;
    margin-top: 8px;
  }
  .last-right {
    gap: 5px;
  }
  .last-right__block1 {
    gap: 10px;
    border-radius: 14px;
    padding: 22px 30px;
  }
  .last-right__block2-title {
    font-size: 18px;
  }
  .last-right__block1-contact {
    gap: 5px;
  }
  .span-title {
    font-size: 14px;
  }
  .span-text {
    font-size: 12px;
  }
  .last-right__block2 {
    gap: 10px;
    border-radius: 14px;
    padding: 22px 30px;
  }
  .last-right__block2-text {
    font-size: 12px;
    line-height: 123%;
  }
}
/*-------------@media  500 px--------------*/
@media (max-width: 500px) {
  .last {
    padding: 10px 5px;
  }
  .last-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .last-left {
    width: 95%;
  }
  .last-right {
    width: 95%;
  }
}
/*---------------------------------*/
html,
body {
  background-color: #1e1e1e;
}

.none {
  display: none;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
} /*# sourceMappingURL=main.css.map */
