:root {
  --color-primary: #aaaacc;
  --light-color: #f9f7fb;
  --secondary-color: #e3e5f4;
  --dark-color: #454556;
  --black-color: #000;
  --white-color: #fff;
  --text-color: #7a7a7a;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-color);
}

a {
  text-decoration: none !important;
  color: var(--text-color);
}

h1 {
  font-size: 112px;
  text-transform: uppercase;
  font-weight: 300;
  color: #54595f;
}

.main h1 {
  font-size: 160px;
}

h2 {
  font-size: 32px;
  font-weight: 300;
}

h3 {
  font-size: 25px;
  font-weight: 300;
}
h4 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.1;
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}


.pink_bg {
  background-color: var(--light-color);
}

.dark_bg {
  background-color: var(--dark-color);
}

.red {
  color: red;
}

.error {
  color: #ff5757;
  margin-top: 5px;
  font-size: 14px;
}

.success {
  color: var(--color-primary);
  margin-top: 20px;
}

.text {
  color: var(--text-color);
}

.white_text {
  color: var(--white-color);
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}
.min_container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.button {
  font-weight: 300;
  border-radius: 50px;
  padding: 17px 25px;
  transition: all 500ms ease-in-out;
  border: none;
  font-size: 16px;
  margin: 0;
}

.button:hover {
  transform: scale(0.96);
}

.neumorphic-inset {
  background-color: var(--color-primary);
  box-shadow: inset 5px 5px 10px #7b7b99, inset -5px -5px 10px #d8d8fa,
    5px 5px 10px #8a8aa4, -5px -5px 10px #fafaff;
}

.neumorphic-inset:hover {
  box-shadow: inset 5px 5px 10px #7b7b99, inset -5px -5px 10px #d8d8fa,
    5px 5px 10px #9b9bb5, -5px -5px 10px #fafaff;
}

.neumorphic_shadow {
  background: #f8f5fb;
  box-shadow: inset 5px 5px 10px #b8b8cd, inset -5px -5px 10px #ffffff,
    5px 5px 10px #8686af, -5px -5px 10px #fafaff;
}

.neumorphic-dark {
  box-shadow: inset 4px 4px 8px #2f2f36, inset -4px -4px 8px #686878;
}

.neumorphic-inset_purpul {
  background: #e3e5f4;
  box-shadow: inset 5px 5px 10px #c2c4d3, inset -5px -5px 10px #ffffff,
    5px 5px 10px #8686af, -5px -5px 10px #fafaff;
}

.blur_box {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.2);
}

.dark_gray {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.align_center {
  align-items: center;
}

.three_grid_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.four_grid_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.border_padding {
  border: 1px solid var(--black-color);
  padding: 50px 30px;
  border-radius: 30px;
}

.text_center {
  text-align: center;
}

.pt_120 {
  padding-top: 120px;
}

.pb_120 {
  padding-bottom: 120px;
}

.pt_60 {
  padding-top: 60px;
}

.pb_60 {
  padding-bottom: 60px;
}
.pt_30 {
  padding-top: 30px;
}

.pb_30 {
  padding-bottom: 30px;
}

.m_0 {
  margin: 0 !important;
}

/* HEADER */

.header_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.left_col {
  flex: 0 1 25%;
}

.logo_img {
  background-image: url(../images/thumb-01.png);
  width: 160px;
  height: 53px;
  display: block;
}

.right_col {
  flex: 1 1 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  position: static;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  background: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0 20px 2px;
}

.main-nav a:hover,
.main-nav a:active {
  border-bottom: 3px solid var(--color-primary);
  padding: 0 20px 2px;
}

.burger {
  display: none;
  position: absolute;
  right: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.burger span {
  display: block;
  height: 3px;
  background-color: var(--dark-color) !important;
  border-radius: 2px;
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: #fff;
  display: none;
  z-index: 5;
}

.main-nav.active {
  display: flex;
}

/* FOOTER */

.footer_menu a {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  padding: 15px 0;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contacts a,
.contacts button {
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 5px 5px 10px #1f1f31, -5px -5px 10px #454545;
}

.contacts i {
  margin: 0 10px;
  font-size: 18px;
}

.contacts .telegram {
  background-color: var(--light-color);
  color: #000;
}
.contacts .email {
  background-color: var(--secondary-color);
  color: #000;
}
.contacts .phone {
  background-color: var(--color-primary);
}
.contacts .address {
  background-color: #6e6e93;
}

.contacts .button {
  justify-content: center;
}

.contacts a:hover,
.contacts button:hover {
  opacity: 0.85;
  box-shadow: none;
}
.social-buttons {
  margin-top: 30px;
}

.social-buttons a {
  border-radius: 30px;
  box-shadow: -4px -4px 8px rgba(255, 255, 255, 0.05),
    4px 4px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  color: #aaaacc;
  font-size: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 35px 0;
}

.social-buttons a:hover {
  box-shadow: inset -4px -4px 8px rgba(255, 255, 255, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.linkedin_footer {
  color: var(--white-color) !important;
  background-image: url(../images/purpl_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* MAIN PAGE */

.hero {
  background-image: url(../images/grid-09-gray2.png);
  padding: 160px 0 40px;
  margin-top: -90px;
}

.hero_top {
  margin-bottom: -50px;
}

.hero_top p {
  font-size: 24px;
  line-height: 1.2;
}

.hero_email {
  text-decoration: underline !important;
}

.hero_right_col {
  width: 45%;
}

.hero_bottom {
  margin-top: -30px;
}

.hero_right_col p {
  margin-top: 60px;
}
.hero_left_col p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero_title img {
  margin-left: 70px;
}

.images_grid {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}

.images_grid img {
  border-radius: 50px;
  border: 5px solid var(--white-color);
  width: 50px;
  height: 50px;
  margin-right: -20px;
}

.about_us {
  margin-top: 55px;
}

.counter {
  text-align: center;
  width: 20%;
  padding: 30px;
  border-radius: 30px;
}
.number {
  font-size: 64px;
  font-weight: 400;
  font-style: italic;
  color: #54595f;
}
.counter_text {
  font-size: 20px;
}
.counter_text span {
  font-size: 15px;
}

.about_us_right {
  width: 80%;
}

.card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 60%;
  padding: 30px;
  border-radius: 30px;
}

.card img {
  width: 155px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}

.card-content .subtitle {
  font-size: 15px;
  text-transform: uppercase;
  color: #aac;
  margin-bottom: 5px;
}

.card-content .card_title {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-content .card_text {
  font-size: 15px;
}

.about_block {
  width: 40%;
  padding: 30px;
  border-radius: 30px;
}
.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.tag {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid #ccc;
  cursor: default;
}
.tag-primary {
  background: #e6eefc;
  border: none;
  color: #333;
}
.tag-outline {
  background: white;
  border: 1px solid #999;
}

.vacancies-wrapper {
  text-align: center;
  margin: 120px 0;
}
.vacancies-label {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #54595f;
  border-radius: 30px;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  margin: 60px 0 20px;
}
.vacancy-item {
  position: relative;
  min-height: 300px;
  border-radius: 40px;
  border: 4px solid #333333;
  text-align: left;
  background: white;
  transition: transform 0.3s ease;
  box-shadow: 0px 0px 8px 6px #ba9ec8;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.vacancy-image {
  min-height: 250px;
  border-radius: 40px;
  transition: transform 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
}

.hot {
  box-shadow: 0px 0px 8px 6px #ff0000 !important;
}
.vacancy-item:hover {
  transform: translateY(-5px);
}

.manager {
  background-image: url(../images/manager.png);
}
.office {
  background-image: url(../images/office.jpg);
}
.administrator {
  background-image: url(../images/administrator-reczepczii.jpg);
}
.backg {
  background-image: url(../images/backg.png);
}
.kopirajter {
  background-image: url(../images/kopirajter.jpg);
}
.hr {
  background-image: url(../images/hr.jpg);
}
.assistent {
  background-image: url(../images/assistent-hr.jpg);
}
.translator {
  background-image: url(../images/Translator.png);
}
.smm {
  background-image: url(../images/smm-menedzher.jpg);
}
.mediabajer {
  background-image: url(../images/mediabajer.jpg);
}
.farmer {
  background-image: url(../images/farmer.png);
}

.vacancy-item img {
  width: 100%;
  display: block;
  height: auto;
}
.vacancy-salary {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 75%;
  text-align: center;
  transform: translateX(-50%);
  background-image: url(../images/purpl_bg.png);
  color: white;
  padding: 6px 12px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}
.vacancy-hot {
  position: absolute;
  top: -35px;
  left: 50%;
  width: 80%;
  text-align: center;
  transform: translateX(-50%);
  background-image: url(../images/red_bg_hot.png);
  color: white;
  padding: 5px 15px;
  border-radius: 5px 5px 0 0;
  font-weight: 500;
  font-size: 15px;
  z-index: 2;
}
.vacancy-title {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/purpl_bg.jpg);
  background-position: center;
  text-shadow: 2px 2px 3px #2f2f36;
  min-height: 75px;
  width: 75%;
  padding: 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 4px 4px 6px 0px
    rgba(139.6762603759766, 139.6762603759766, 139.6762603759766, 0.5) inset;
  border-radius: 20px;
  z-index: 2;
  margin-bottom: -24px;
}
.vacancy-title span {
  font-size: 18px;
  font-weight: bold;
  margin-left: auto;
}

.vacancy-desc {
  display: none;
  background-color: var(--white-color);
  padding: 14px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  transition: all 400ms ease;
  position: absolute;
  bottom: -40px;
  z-index: 3;
}
.vacancy-item.show-desc .vacancy-desc {
  display: block;
}

.job-container {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}

.job-left {
  flex: 1 1 49%;
  text-align: right;
  padding-right: 70px;
}

.job-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--light-color);
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--white-color);
  text-transform: uppercase;
}

.job-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2px;
}

.job-right {
  flex: 0 0 49%;
  border-left: 1px solid rgba(26, 26, 26, 0.3);
  padding-left: 70px;
}

.job-text {
  font-size: 16px;
  line-height: 1.5;
}

.job-right a,
.job-left a {
  box-shadow: 5px 5px 10px #1f1f31, -5px -5px 10px #454545;
  margin-top: 30px;
  display: inline-block;
}

.job-right a:hover,
.job-left a:hover {
  opacity: 0.85;
  box-shadow: none;
}

.career_container {
  display: flex;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.left-column {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  flex: 0 1 50%;
  border: 1px solid var(--dark-color);
}

.career_title {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.left-column h2 {
  margin-bottom: 10px;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.item-icon {
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.item-content {
  flex: 1;
}

.item-content strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
  color: var(--text-color);
}

.item-content span {
  font-size: 16px;
  color: var(--text-color);
}

.item:last-child .item-icon {
  background: var(--light-color);
  color: var(--color-primary);
}

.item:last-child .item-content strong,
.item:last-child .item-content span {
  color: var(--white-color);
}

.right-column {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-block {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 60px 40px;
}

.video-block video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.video_steps {
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 30px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.2);
  width: 70%;
}

.video-overlay h3 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  color: var(--black-color);
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: 20px;
}

.video_steps .step {
  background: var(--white-color);
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.small-block {
  flex: 0 0 50%;
  background: var(--dark-color);
  color: #fff;
  border-radius: 30px;
  padding: 20px;
  font-size: 15px;
}

.small-block img {
  max-height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  margin-top: 20px;
}

.image-block {
  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 50%;
}

.image-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image_bg {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/descent-scaled.webp);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white-color);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.info-box {
  border-radius: 20px;
  text-align: left;
  padding: 30px;
  border: 1px solid #6b6b6b;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
}

.info-box_title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-box i {
  font-size: 21px;
  color: var(--color-primary);
  margin-bottom: 10px;
  background-color: #54595f;
  border-radius: 50%;
  padding: 0.5em;
}

.info-box h3 {
  font-size: 32px;
  margin: 0 0 10px;
}

.info-box p {
  font-size: 16px;
  margin: 12px 0 20px;
}

.info-box ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  border-radius: 30px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.info-box ul li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.info-box ul li:last-child {
  border-bottom: none;
}

.info_list_1 {
  background-color: var(--light-color);
  color: var(--text-color);
}

.info_list_2 {
  background-color: #aaaacc82;
  color: var(--white-color);
}
.info_list_3 {
  background-color: #454556bf;
  color: var(--white-color);
}
.info_list_4 {
  background-color: #f9f7fba8;
  color: var(--black-color);
}

.info-box ul li::before {
  content: "•";
  color: var(--color-primary);
  margin-right: 8px;
}

/* PAGES */

h1 span {
  color: var(--color-primary);
}

h2.job-title {
  font-size: 32px;
  font-weight: 300;
}

.vacancy-body {
  background-color: var(--light-color);
  box-shadow: 4px 4px 8px 0px rgb(199 197 197);
}

.vacancy-body .info_list {
  background-color: var(--white-color);
  color: var(--text-color);
  box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 10%);
}

.vacancy-body i {
  background-color: var(--secondary-color);
  color: var(--color-primary);
  margin-bottom: 0;
}

.benefits {
  padding: 35px 30px;
  border-radius: 30px;
  border: 1px solid var(--black-color);
  position: relative;
}

.benefits::before {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 150px;
  height: 130px;
  content: "";
  background-color: var(--dark-color);

  -webkit-mask-image: url(..//images/accent_clip.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain; /* для начала попробуй contain */
  -webkit-mask-position: center;

  mask-image: url(..//images/accent_clip.png);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  z-index: 1;
}

.arrow_wrapper {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 33px;
  z-index: 2;
  transform: rotate(45deg);
  padding: 13px 0px 0px 18px;
}

.benefit_1 {
  background-color: var(--light-color);
  box-shadow: inset 5px 5px 10px #b5b5c4, inset -5px -5px 10px #ffffff;
}
.benefit_2 {
  background-color: var(--secondary-color);
  box-shadow: inset 5px 5px 10px #b5b5c4, inset -5px -5px 10px #ffffff;
}
.benefit_3 {
  background-color: var(--color-primary);
  box-shadow: inset 4px 4px 8px #8888aa, inset -4px -4px 8px #ccccff;
  color: var(--white-color);
}
.benefit_4 {
  background-color: #4e4e61;
  box-shadow: inset 4px 4px 8px #2f2f36, inset -4px -4px 8px #686878;
  color: var(--white-color);
}

.benefits_body i {
  font-size: 33px;
  color: var(--color-primary);
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 0.5em;
}

.benefit_title {
  margin: 20px 0;
}

.success h2 {
  font-size: 51px;
  width: 80%;
  line-height: 1.1;
  color: var(--dark-color);
}

.success_text {
  width: 52%;
  margin: 20px 0 60px;
}
.testimonial {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.testimonial-img {
  flex: 0 1 380px;
  border-radius: 30px;
  background-image: url(../images/image2.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-content {
  flex: 1;
  min-width: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../images/purpl_bg.jpg);
  border-radius: 30px;
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-content p {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  font-size: 16px;
  color: #fff;
  margin-top: -5px;
}

.testimonial-author span {
  font-size: 14px;
  color: #ddd;
}

.about {
  background: var(--light-color);
  border: 1px solid #000000;
  border-radius: 80px;
  overflow: hidden;
  padding-bottom: 150px;
}

.about_container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about__top {
  position: relative;
}

.about__img {
  width: 100%;
  height: 160px;
  display: block;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
}

.about__counter {
  background: var(--dark-color);
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  padding: 37px 50px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  margin: -40px 175px 0 0px;
  z-index: 10;
  position: relative;
  right: 0;
}

.about__counter-num {
  font-style: italic;
  font-size: 69px;
  font-weight: 300;
  margin-right: 30px;
}

.about__features {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature__icon {
  font-size: 33px;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 0.5em;
  background-color: var(--secondary-color);
  color: var(--color-primary);
}

.feature__title {
  font-size: 20px;
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--text-color);
}

.feature__text {
  margin-top: 20px;
  line-height: 1.5;
}

.mission {
  margin: 70px 0;
}

.mission_img {
  background-image: url(../images/testi4.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 70px;
  flex: 0 1 50%;
  border-radius: 30px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
  height: 500px;
}

.mission_info {
  padding-left: 70px;
  border-left: 1px solid var(--black-color);
  flex: 0 1 50%;
}
.mission_info a {
  margin-top: 40px;
  display: inline-block;
}

.mission_info h2 {
  color: var(--dark-color);
  line-height: 1.1;
  margin-bottom: 20px;
}

.work_wrapper h2 {
  text-transform: uppercase;
  color: var(--dark-color);
  line-height: 1.1;
  font-size: 29px;
  margin: 10px 0 20px;
}

.work-card {
  border: 1px solid var(--dark-color);
  border-radius: 30px;
  padding: 30px 20px;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.work-card:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../images/purpl_bg.jpg);
  color: var(--black-color);
}

.work-card_info {
  display: flex;
  justify-content: space-between;
}

.work-icon {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0.5em 0.6em;
}

.work-number {
  font-size: 28px;
  color: var(--color-primary);
}

.work-number:nth-child(2) {
  color: var(--black-color);
}

.work-card h3 {
  font-size: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-color);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.work-card p {
  line-height: 1.5;
}

.thanks_container {
}

/* POPUP*/

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px 4px rgba(2, 2, 2, 0.5);
  overflow: auto; 
}

.modal-content {
  background: var(--dark-color);
  padding: 20px;
  border-radius: 15px;
  width: 80%;
  max-height: 95vh;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: center;
  overflow-y: auto; 
}

.modal-content h2 {
  font-size: 2.8vw;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  padding: 0px 10px;
  cursor: pointer;
  color: #fff;
  border: 1px solid var(--white-color);
  border-radius: 50%;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 850px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
}

input,
.choices__inner,
.iti input {
  padding: 15px;
  border-radius: 10px !important;
  border: none !important;
  outline: none;
  width: 100% !important;
}

.choices__item {
  color: var(--dark-color);
}

.choices__list--multiple .choices__item {
  background-color: var(--dark-color) !important;
}

.submit-btn {
  background-color: var(--color-primary);
  box-shadow: inset 5px 5px 10px #7b7b99, inset -5px -5px 10px #d8d8fa,
    5px 5px 10px #000000, -5px -5px 10px #3c3c3c;
  margin-top: 30px;
  width: 300px;
  color: var(--white-color);
  font-size: 16px;
}

img,
video,
canvas {
  overflow: hidden;
}

.iti {
  width: 100%;
  color: var(--dark-color) !important;
}

.iti__selected-flag {
  height: 45px !important;
}

.thanks_container {
  height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thanks_body {
  padding: 130px 100px;
  border-radius: 30px;
  box-shadow: 2px 3px 8px #8b8b8b;
}

.thanks_body h2 {
  margin-bottom: 20px;
}

.thanks_body a {
  margin-top: 80px;
  display: inline-block;
}

.contact_container {
  background-image: url(../images/contact_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 30px;
  margin-bottom: 60px;
}

.contact_left {
  background-color: var(--white-color);
  border-radius: 30px;
  width: 50%;
  padding: 30px;
  text-align: center;
}

.contact_left button {
  margin-top: 40px;
  width: 100%;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 500;
}

.contact_right .contacts a {
  box-shadow: none;
}

.contacts .address_new {
  background-color: var(--dark-color);
}

.page_container {
  padding: 50px 0 100px;
}

.page_container h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.page_container h2 {
  margin: 10px 0 5px;
  font-weight: 500;
}

.page_container ul {
  list-style-position: inside;
  margin: 5px 0;
}

/* MEDIA */

@media (max-width: 1200px) {
  .modal-content {
    width: 95%;
  }
  .left_col {
  flex: 0 1 22%;
}
}

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-color);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 20px;
  }

  .main-nav li a {
    font-size: 24px;
    padding: 15px 0;
    width: 100%;
    color: #fff;
  }
  .main-nav a:hover,
  .main-nav a:active {
    border-bottom: none;
    padding-bottom: 0px;
    color: var(--color-primary);
  }

  .logo_img {
    z-index: 101;
    position: relative;
  }
  .burger {
    display: flex;
  }
  .close-btn {
    display: block;
  }
  .right_col {
    flex: 1 1 70%;
    justify-content: flex-end;
  }

  .right_col .button {
    margin-right: 60px;
  }
  .main h1 {
    font-size: 120px;
  }
  .hero_top {
    margin-bottom: 0px;
  }
  .hero_bottom {
    margin-top: 15px;
  }
  .about_us {
    flex-direction: column;
  }
  .counter,
  .about_us_right {
    width: 100%;
  }
  .vacancies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  .job-left {
    padding-right: 20px;
  }
  .job-right {
    padding-left: 20px;
  }
  .job-title {
    font-size: 40px;
  }
  .video-overlay {
    flex-direction: column;
    align-items: center;
  }
  .video_steps {
    width: 100%;
  }
  .border_padding {
    padding: 20px;
  }
  .info-box h3 {
    font-size: 24px;
  }
  .image-block {
    display: none;
  }
  .small-block {
    flex: 1 1 100%;
  }
  .vacancies-wrapper {
    text-align: center;
    margin: 80px 0;
  }
  .pb_120 {
    padding-bottom: 80px;
  }

  .pt_120 {
    padding-top: 80px;
  }
  h1 {
    font-size: 85px;
  }
  .hero {
    padding: 100px 0 40px;
  }
  .four_grid_container {
    grid-template-columns: repeat(2, 1fr);
  }
  .left-column {
    padding: 20px;
  }
  .success h2 {
    font-size: 40px;
    width: 100%;
  }
  .success_text {
    width: 100%;
    margin: 20px 0 60px;
  }
  .about__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .mission_img {
    margin-right: 20px;
  }
  .mission_info {
    padding-left: 20px;
  }
  .mission {
    margin: 70px 0 0;
  }
  .pb_60 {
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pb_120 {
    padding-bottom: 50px;
  }

  .pt_120 {
    padding-top: 50px;
  }
  .contact_container,
  .job-container,
  .career_container,
  .testimonial,
  .row,
  .card {
    flex-direction: column;
  }
  .contact_left {
    width: 100%;
  }
  .contact_left button {
    margin-top: 30px;
  }
  .three_grid_container {
    grid-template-columns: repeat(1, 1fr);
  }
  h1 {
    font-size: 50px;
  }
  .job-left {
    flex: 1 1 100%;
    text-align: center;
  }
  .four_grid_container {
    grid-template-columns: repeat(1, 1fr);
  }
  .about__counter {
    padding: 20px;
    margin: -40px 0px 0 0px;
    font-size: 20px;
  }
  .about_container {
    align-items: center;
  }
  .about__counter-num {
    font-size: 60px;
  }
  .about__features {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .mission_img,
  .mission_info {
    flex: 0 1 100%;
    border: none;
    padding: 0;
  }
  .hero_top p {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }
  .hero_image {
    display: none;
  }
  .hero_title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
  }
  .hero_right_col,
  .hero_left_col,
  .card,
  .about_block {
    width: 100%;
    text-align: center;
  }
  .main h1 {
    font-size: 70px;
  }
  .images_grid {
    justify-content: center;
  }
  .card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 20px;
    flex-shrink: 0;
  }
  .tags {
    justify-content: center;
  }
  .vacancies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .job-right,
  .job-left {
    text-align: center;
    padding: 0px;
  }
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer_info {
    text-align: center;
  }
  .thanks_body {
    padding: 80px 30px;
    margin: 0 10px;
}
}

@media (max-width: 500px) {
  .right_col .button {
    margin-right: 50px;
    padding: 10px 14px;
    font-size: 14px;
  }
  .logo_img {
    width: 150px;
    height: 50px;
  }
  .success h2 {
    font-size: 29px;
  }
  .modal-content h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .form-row {
    flex-direction: column;
    gap: 6px;
  }
  .close-modal {
        top: 15px;
        right: 15px;
        font-size: 18px;
        padding: 0px 7px 0px;
  }
  .vacancies-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
  .vacancy-item {
    min-height: 350px;
  }
  .job-title {
    font-size: 32px;
  }
  .modal-content {
    width: 100%;
max-height: 98vh;
overflow: auto;
 padding:  20px;
  }
  .page_container h1 {
    font-size: 36px;
  }
  .submit-btn {
   margin-top: 0px;

}
input,
.choices__inner,
.iti input {
  padding: 10px 15px;
}
.iti__selected-flag {
    margin-top: -6px;
}
}
