:root {
  --light_green: #c1ff74;
  --green: #121c0d;
  --emerald: #0ac6af;
  --white: #ffffff;
  --white_text: #d0d2cf;
  --black: #222222;
  --image-height: 256px;
  --grayish: #555e50;
}

.policies_inner {
  padding: 56px 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.required-indicator {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 10;
  display: none;
}
.form_block_input:required + .required-indicator {
  display: block;
}
.input_wrong {
  border: 1px solid #ff6662 !important;
}
.contur {
  color: #ff6662 !important;
}
html {
  scroll-behavior: smooth;
}
/* Обнуление стилей */
* {
  box-sizing: border-box;
}
/* Удаление отступов и полей */
body,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
dl,
dd,
ol,
ul,
pre,
fieldset,
form,
legend,
button,
input,
textarea,
select,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}
.wrap-collabsible {
  margin-bottom: 1.2rem 0;
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
}

input[type="checkbox"] {
  display: none;
}
.sticky_header {
  display: none;
}
.sticky_header > ul {
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 100%;
  background-color: transparent;
}
.policy_text {
  padding-top: 82px;
  margin-top: -82px;
}
.sticky_header > ul > li {
  font-size: 1.0625rem;
  line-height: 1.2;
  padding: 1rem 0;
  color: #222222;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: ease-out 0.3s;
}

.sticky_header > ul > li:hover {
  color: var(--emerald);
}

.wrap-collabsible > .borders:first-of-type {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.wrap-collabsible > .lbl-toggles:last-of-type {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.content-inner ~ a {
  color: #0ac6af;
  cursor: pointer;
  text-decoration: none;
}
.policy_text ~ a {
  color: #0ac6af !important;
  cursor: pointer;
  text-decoration: none;
}
.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.collapsible-content .content-inner {
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.policy_text > p {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #555e50;
}
.policy_text > ol > li {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #555e50;
}
.policy_text > ol {
  list-style-position: inside;
  list-style: decimal;
  margin-bottom: 1.25frem;
}
.policy_text > p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.policy_text > p:last-child {
  margin-bottom: 2rem;
}
.collapse_head > h3 {
  font-family: inherit;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}
.policy_text > h4 {
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 1.2;
  font-weight: 500;
  color: #222;
}
.policy_text > h5 {
  font-family: inherit;
  font-size: 1.0625rem;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 500;
  color: #222;
}

.collapse_head {
  margin-bottom: 1rem;
}
policy_text > small {
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 300;
  color: #3f3f46;
  margin-bottom: 32px;
}
.policy_text a {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #0ac6af;
  margin-bottom: 1rem;
}

.building_img_dekstop {
  display: none;
}
/* Установка базового шрифта и цвета */
body {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  color: #555e50;
}

/* Удаление стилей для ссылок */
a {
  text-decoration: none;
  color: inherit;
}

/* Обнуление стилей для списков */
ul,
ol {
  list-style: none;
}
.header_buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.container {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: ease-out all 0.3s;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green);
  padding: 12px 16px;
}

.header_inner > a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_menu_nav {
  display: none;
}
.header_logo {
  width: 120px;
  height: auto;
}

.button_link_header {
  max-width: 220px;
  text-decoration: none;
  border: 1px solid var(--light_green);
  color: var(--light_green);
  font-weight: 500;
  padding: 10px 24px;
  background: transparent;
  font-size: 0.875rem;
  border-radius: 100px;
  line-height: 20px;
  font-family: inherit;
  text-align: center;
  transition: background 0.6s ease, color 0.6s ease;
}

.button_link_header:hover {
  background: rgba(193, 255, 116, 0.6);
  color: var(--white);
}
.button_link_header:active {
  background: rgba(193, 255, 116, 0.6);
  color: var(--white);
}
.button_menu {
  background: none;
  border: none;
  color: var(--white);
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: calc((20px / 14px) * 1em);
}
.menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--green);
}

.menu_element {
  font-family: inherit;
  font-weight: 300;
  color: var(--white);
  font-size: 1.125rem;
  line-height: calc((28px / 18px) * 1em);
}

.hero {
  position: relative;
  background: var(--green);
}
.hero_inner {
  position: relative;
  background: var(--green);
  padding: 122px 16px;
  text-align: center;
}
.space {
  display: none !important;
}

.hero_title {
  color: var(--white);
  font-size: 2.875rem;
  text-align: left;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 8px;
}
.hero_title > span {
  color: var(--light_green);
}
.hero_text {
  text-align: left;
  font-size: 1.0625rem;
  line-height: 25px;
  font-weight: 300;
  color: var(--white_text);
}
.link_button {
  max-width: 100%;
  text-decoration: none;
  display: block;
  background: var(--light_green);
  font-family: inherit;
  width: 100%;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--black);
  padding: 14px 0;
  border-radius: 100px;
  border: none;
  margin: 40px auto 0px;
  transition: background 0.6s ease, color 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link_button:hover {
  background: rgba(193, 255, 116, 0.6);
  color: #fff;
}
.link_button:active {
  background: rgba(193, 255, 116, 0.6);
  color: #fff;
}
.hero_img {
  margin-top: -20vh;
  position: relative;
  aspect-ratio: 343/256;
  object-fit: cover;
  flex: 1;
  transform: translateY(25vh);
  width: 100%;
  border-radius: 20px;
}

.partner {
}
.partner_inner {
  padding: 24px 16px;
  justify-content: center;
  align-items: center;
  margin-top: 12vh;
  overflow: hidden;
}
.slide_button {
  width: 40px;
  height: 40px;
}

.testimonials_prev > .slide_button > rect {
  transition: all ease 0.3s;
}
.testimonials_next > .slide_button > rect {
  transition: all ease 0.3s;
}
.testimonials_prev > .slide_button > path {
  transition: all ease 0.3s;
}
.testimonials_next > .slide_button > path {
  transition: all ease 0.3s;
}
.testimonials_prev:hover > .slide_button > rect {
  fill: var(--white);
}
.testimonials_prev:hover > .slide_button > path {
  stroke: var(--green);
}
.testimonials_next:hover > .slide_button > rect {
  fill: var(--white);
}
.testimonials_next:hover > .slide_button > path {
  stroke: var(--green);
}
.partner_img {
  position: relative;
  flex: 1;
  margin-top: -50%;
  max-width: 100%;
  width: auto;
  border-radius: 20px;
}
.partner_data {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.partner_title {
  font-weight: 500;
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 21px;
  color: var(--black);
  text-align: center;
}
.partner_list {
  display: flex;
  flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
  gap: 40px;
  align-items: center;
  justify-content: space-around;
  width: 343px; /* Use a percentage value for responsiveness */
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Hide vertical scrollbar */
  list-style: none;
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.partner_list li:first-child {
  margin-left: 20px;
}
.partner_list li:last-child {
  margin-right: 20px;
}
.recruitment_block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.recruitment_img_block {
  display: flex;
  align-items: stretch;
  flex: 4;
}
.recruitment_img_block > img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.partner_item {
  max-height: 40px;
}

.description {
}

.description_inner {
  padding: 56px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.description_data {
  display: flex;
  flex-direction: column;
  flex: 5;
  gap: 8px;
  text-align: left;
}
.wrap-collabsible {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* border-radius: 20px; */
  /* gap: 8px; */
  text-align: left;
}
.description_title {
  font-weight: 500;
  font-size: 2rem;
  font-family: inherit;
  line-height: 36px;
  color: var(--black);
}
.description_collapsible_text {
  position: relative;
  font-weight: 300;
  /* max-width: 668px; */
  font-family: inherit;
  font-size: 1rem;
  max-height: 260px;
  line-height: 1.5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: max-height ease 1s;
}

.description_collapsible_text_gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 1)
  );
}

.description_collapsible_text > p {
  margin-bottom: 18px;
}
.description_collapsible_text > h5 {
  font-size: 1rem;
  font-weight: 500;
}
.collapse_button {
  font-family: inherit;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  color: var(--black);
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  transition: all ease 0.3s;
}

.collapse_button:hover {
  cursor: pointer;
  color: var(--emerald);
}

.collapse_button > svg > path {
  transition: all ease 0.3s;
}

.description_collapsible_text + .collapse_button:hover > .svg-original {
  animation: 0.3s changeArrow ease forwards;
}

.description_collapsible_text.expanded + .collapse_button:hover .svg-original {
  animation: reverseChangeArrow 0.3s ease forwards; /* Adjust duration and easing as needed */
}
.description_collapsible_text.expanded
  > .description_collapsible_text_gradient {
  display: none;
}
.description_collapsible_text.expanded + .collapse_button .svg-original {
  transform: scaleY(-1);
}
.description_collapsible_text.expanded
  + .collapse_button:hover
  .svg-original
  > path {
  stroke: var(--emerald);
}

.collapse_button:hover > .svg-original > path {
  stroke: var(--emerald);
}

.collapse_button_icon {
  width: 10px;
  height: 10px;
}
.description_img_wrap {
  flex: 4;
}
.description_img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.quote {
}
.quote_inner {
  margin: 0 16px;
}

.quote_element {
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex;
  aspect-ratio: 343/300;
  border-radius: 20px;
  padding: 56px 24px;
}

.quote_block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.quote_text {
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 28px;
  font-weight: 400;
  color: var(--white);
}
.quote_author {
  font-family: inherit;
  color: var(--white_text);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 20px;
}
.advantages {
}

.advantages_inner {
  display: flex;
  flex-direction: column;
  padding: 56px 16px;
  gap: 32px;
}
.advantages_block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.advantages_text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.advantages_title {
  font-family: inherit;
  font-weight: 500;
  font-size: 2rem;
  line-height: 36px;
  color: var(--black);
}
.advantages_description {
  font-weight: 300;
  font-family: inherit;
  font-size: 1rem;
  line-height: 24px;
  color: #555e50;
}
.advantages_list {
  display: flex;
  list-style: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.advantages_list_element {
  width: 100%;
  border-radius: 20px;
  background-color: #f3f4f3;
  padding: 24px 16px;
}
.adv_list_block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}
.adv_list_data {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.adv_list_data_digits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.adv_list_data_number {
  font-family: inherit;
  font-size: 2.625rem;
  line-height: 48px;
  color: var(--emerald);
  font-weight: 500;
}
.adv_list_data_description {
  font-family: inherit;
  font-size: 1rem;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
}
.advantage_image {
  display: flex;
  max-width: 60px;
  height: 48px;
}
.advantage_text {
  padding-top: 10px;
  border-top: solid 1px #22222233;
  font-family: inherit;
  font-size: 1rem;
  line-height: 24px;
  color: var(--black);
  font-weight: 300;
}

.solutions {
  background-color: var(--green);
}
.solutions_inner {
  padding: 56px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.solutions_text {
  display: flex;
  gap: 8px;
  flex-direction: column;
  text-align: left;
}
.solutions_title {
  text-align: start;
  font-weight: 500;
  font-family: inherit;
  font-size: 2rem;
  line-height: 36px;
  color: var(--white);
}
.solutions_description {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  font-family: inherit;
  font-size: 1rem;
  line-height: 24px;
  color: #d0d2cf;
}

.solutions_description > p:not(:last-child) {
  margin-bottom: 8px;
}
.about_description {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  line-height: 24px;
  color: #d0d2cf;
}

.about_description > p:not(:last-child) {
  margin-bottom: 8px;
}
.solutions_button {
  margin: 40px auto 32px;
}
.solutions_list {
  display: flex;
  list-style: none;
  flex-direction: column;
}
.solutions_item:not(:last-child) {
  border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
}

.text_only {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solutions_item::after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.solutions_item_header {
  padding-top: 16px;
  padding-bottom: 8px;
  font-weight: 500;
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 21px;
  color: var(--white);
}
.solutions_item_text {
  font-family: inherit;
  font-size: 1rem;
  line-height: 46px;
  color: #d0d2cf;
  font-weight: 300;
  padding-bottom: 16px;
}
.solutions_item_text > p {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: #d0d2cf;
  font-weight: 300;
  margin-bottom: 1rem;
}

.experience {
  background-color: var(--white);
}
.experience_inner {
  display: flex;
  flex-direction: column;
  padding: 56px 16px;
  align-items: center;
}
.experience_title {
  text-align: center;
  font-family: inherit;
  font-size: 2rem;
  line-height: 36px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 32px;
}
.experience_list {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.experience_item {
  position: relative;
  background-color: #f3f4f3;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  gap: 8px;
}

.experience_item:last-of-type {
  position: relative;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.experience_item_big_img {
  position: absolute;
  object-fit: cover;
  object-position: right;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.experience_item_element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 100%;
  gap: 8px;
}

.experience_item_element > img {
  max-width: 48px;
  width: 100%;
}

.experience_item_title {
  text-align: center;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
}

.testimonials_inner {
  position: relative;
  border-radius: 20px;
  margin: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.testimonials_slide {
  position: relative;
  width: 100%;
  min-height: 628px;
  display: flex;
  height: auto;
  flex-direction: column;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials_slider_item_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  object-fit: cover;
  object-position: 70%;
  width: 100%;
  height: 100%;
}

.testimonials_slider_close_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    rgba(18, 28, 13, 0.9) 11.95%,
    rgba(18, 28, 13, 0) 160.64%
  );
}

.testimonials_slider_item {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonials_slider_block {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 48px 24px;
  margin-bottom: 68px;
}
.testimonials_slider_title {
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 36px;
  color: var(--white);
}
.testimonials_slider_quote {
  text-align: left;
  align-self: flex-start;
  font-family: inherit;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}
.testimonials_slider_author {
  margin-top: 16px;
  text-align: left;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--white_text);
}
.testimonials_btn_block {
  position: absolute;
  z-index: 10;
  bottom: 48px;
  margin-top: 68px;
  left: 32px;
  display: flex;
  justify-content: flex-start;
}
.testimonials_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.testimonials_prev {
  cursor: pointer;
  background: transparent;
  border: none;
  display: block;
  width: 40px;
  height: auto;
}

#arrow_prev {
  transform: scaleX(-1);
  opacity: 0.5;
}
.testimonials_next {
  cursor: pointer;
  background: transparent;
  border: none;
  display: block;
  width: 40px;
  height: auto;
}

.recruitment {
}
.recruitment_inner {
  display: flex;
  flex-direction: column;
  padding: 56px 16px;
  gap: 32px;
}

.recruitment_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.recruitment_element {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--grayish);
}

.recruitment_element:before {
  content: "•";
  color: var(--grayish);
  margin-right: 8px;
  font-size: 1rem;
}

.form_block {
  background-color: var(--green);
}

.form_block_group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.form_block_inner {
  display: flex;
  padding: 56px 16px;
  align-items: stretch;
  flex-direction: column;
}
.form_block_img {
  border-radius: 20px;
  width: 100%;
  display: block;
}
.form_block_title {
  font-family: inherit;
  font-weight: 500;
  font-size: 2rem;
  margin: 32px 0;
  line-height: 1.2;
  color: var(--white);
  text-align: left;
}
.form_block_title > span {
  color: var(--light_green);
}

.form_block_inner > form {
  display: flex;
  flex-direction: column;
  flex: 5;
  gap: 1rem;
}

.input_wrapper {
  position: relative;
  width: 100%;
}
.form_block_input {
  z-index: 2;
  background-color: var(--white);
  border-radius: 4px;
  width: 100%;
  border: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: #555e50;
  font-weight: 300;
  line-height: 1.5;
}

/* .form_block_input:invalid {
  border: 1px solid #ff6662;
} */

.input_wrapper label {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
  z-index: 3;
}

label + .text {
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  color: #555e50;
}

.form_block_input:focus:not(.form_block_input[value=""]) ~ label {
  color: #3f3f46;
  top: 0px;
  font-size: 10px;
}

.input_with_value {
  color: #3f3f46;
  top: 0px;
  font-size: 10px;
}

.form_block_textarea:focus + label {
  color: #3f3f46;
  top: -0px;
  font-size: 10px;
}

label.changed {
  color: #3f3f46;
  top: -0px;
  font-size: 10px;
}

.form_block_textarea {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 4px;
  border: none;
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: #555e50;
  font-weight: 300;
  line-height: 1.5;
}
.form_button {
  max-width: 100%;
}
.footer {
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contacts {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 24px;
}

.contacts_element {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  color: var(--white_text);
}
.contacts_element > span {
  font-family: inherit;
  font-size: 0.75rem;
  line-height: 1.25;
}
.contacts_element > p {
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
}
.contacts_element > a {
  text-decoration: none;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
}

.logo_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.logo_list_elem {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/linkedin.png");
  cursor: pointer;
}

.logo_list_elem:hover {
  background-image: url("../img/linkedin_white.svg");
}
.logo_list_elem:active {
  background-image: url("../img/linkedin_white.svg");
}

.footer_post_data {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer_documents {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 16px;
}
.footer_documents > li {
  display: inline-block;
}
.footer_documents_elem {
  display: block;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer_copyright {
  text-align: left;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer_logo {
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.footer_logo_letter {
  color: var(--light_green);
  font-size: 3rem;
  margin: 0 auto;
  padding: 0;
  line-height: 1.2;
  font-weight: 500;
  font-family: inherit;
  display: block;
}
a {
  transition: color 0.3s ease;
}

a:hover {
  color: #0ac6af;
}
a:active {
  color: #0ac6af;
}

.building_inner {
  border-radius: 20px;
  background-color: #f3f4f3;
  padding: 32px 24px;
  margin: 0px 16px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.building_title {
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 24px;
}

.building_img {
  margin-bottom: 16px;
}

.building_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}
.building_element {
  /* margin-left: 22px; */
  color: #555e50;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.building_list > li > span {
  content: "";
  display: inline-block;
  border-radius: 50%;
  left: 0;
  top: 0;
  width: 10px;
  flex-shrink: 0;
  height: 10px;
  margin-right: 12px;
}
.building_list > li:nth-child(1) > span {
  background-color: #c4ebe5 !important;
}
.building_list > li:nth-child(2) > span {
  background-color: #ade6df !important;
}
.building_list > li:nth-child(3) > span {
  background-color: #96e1d8 !important;
}
.building_list > li:nth-child(4) > span {
  background-color: #7eddd1 !important;
}
.building_list > li:nth-child(5) > span {
  background-color: #67d8ca !important;
}
.building_list > li:nth-child(6) > span {
  background-color: #50d4c3 !important;
}
.building_list > li:nth-child(7) > span {
  background-color: #21cab6 !important;
}
.building_list > li:nth-child(8) > span {
  background-color: #21cab6 !important;
}
.building_list > li:nth-child(9) > span {
  background-color: #0ac6af !important;
}

.about {
  background-color: var(--green);
}
.about_inner {
  display: flex;
  flex-direction: column;
  margin: 56px 16px;
}
.about_content {
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.about_margins {
  padding: 0px 0 40px;
}
.no_margin {
  margin-top: 0px;
}
.about_text {
}
.about_title {
}
.about_description {
}

.menu {
  transform: translateY(-140%);
  display: block;
  z-index: 4;
  background: var(--green);
  height: 100vh;
  width: 100%;
  position: fixed;
  bottom: 0;
}

.menu.appear {
  animation: appearMenu 1.5s;
  animation-timing-function: ease;
  /* opacity: 1; */
  transform: translateY(0%);
}
.menu.close {
  animation: goneMenu 1.5s;
  /* opacity: 0; */
  animation-timing-function: ease;
  transform: translateY(-140%);
}

@keyframes appearMenu {
  0% {
    /* opacity: 0; */
    transform: translateY(-140%);
  }
  100% {
    /* opacity: 1; */
    transform: translateY(0%);
  }
}
@keyframes reverseChangeArrow {
  0% {
    stroke: var(--emerald);
    transform: scaleY(-1);
  }
  10% {
    stroke: var(--emerald);
    transform: scaleY(-0.8);
  }
  20% {
    stroke: var(--emerald);
    transform: scaleY(-0.6);
  }
  30% {
    stroke: var(--emerald);
    transform: scaleY(-0.4);
  }
  40% {
    stroke: var(--emerald);
    transform: scaleY(-0.2);
  }
  50% {
    stroke: var(--emerald);
    transform: scaleY(0); /* Reach the initial state */
  }
  60% {
    stroke: var(--emerald);
    transform: scaleY(0.2);
  }
  70% {
    stroke: var(--emerald);
    transform: scaleY(0.4);
  }
  80% {
    stroke: var(--emerald);
    transform: scaleY(0.6);
  }
  90% {
    stroke: var(--emerald);
    transform: scaleY(0.8);
  }
  100% {
    stroke: var(--emerald);
    transform: scaleY(1); /* End at the original state */
  }
}

@keyframes changeArrow {
  0% {
    stroke: var(--emerald);
    transform: scaleY(1);
  }
  10% {
    stroke: var(--emerald);
    transform: scaleY(0.8);
  }
  20% {
    stroke: var(--emerald);
    transform: scaleY(0.6);
  }
  30% {
    stroke: var(--emerald);
    transform: scaleY(0.4);
  }
  40% {
    stroke: var(--emerald);
    transform: scaleY(0.2);
  }
  50% {
    stroke: var(--emerald);
    transform: scaleY(0);
  }
  60% {
    stroke: var(--emerald);
    transform: scaleY(-0.2);
  }
  70% {
    stroke: var(--emerald);
    transform: scaleY(-0.4);
  }
  80% {
    stroke: var(--emerald);
    transform: scaleY(-0.6);
  }
  90% {
    stroke: var(--emerald);
    transform: scaleY(-0.8);
  }
  100% {
    stroke: var(--emerald);
    transform: scaleY(-1);
  }
}

@keyframes goneMenu {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateY(-120%);
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu_nav {
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  padding-left: 16px;
  gap: 20px;
  text-align: left;
}
.menu_element {
  font-size: 1rem;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: #121c0d;
}
.popup_element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  padding: 40px 16px;
  border: 1px solid #fff;
  background: #121c0d;
  border-radius: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_content {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: var(--green);
}
.popup_title {
  font-family: inherit;
  font-weight: 500;
  font-size: 2rem;
  line-height: 112.5%;
  color: #fff;
}
.popup_text {
  font-family: inherit;
  font-weight: 300;
  font-size: 1rem;
  line-height: 24px;
  color: #fff;
  text-align: left;
}
.popup_button {
  margin-top: 40px;
}
.popup_close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  transform: rotate(45deg);
}

.footer_logo_letter {
  display: inline-block;
}

.footer_logo_animate {
  animation: down 0.65s backwards;
  animation-timing-function: ease-out;
}
.footer_logo > span:nth-child(2) {
  animation-delay: 0.05s;
}
.footer_logo > span:nth-child(3) {
  animation-delay: 0.1s;
}
.footer_logo > span:nth-child(4) {
  animation-delay: 0.15s;
}
.footer_logo > span:nth-child(5) {
  animation-delay: 0.2s;
}
.footer_logo > span:nth-child(6) {
  animation-delay: 0.25s;
}
.footer_logo > span:nth-child(7) {
  animation-delay: 0.3s;
}
.footer_logo > span:nth-child(8) {
  animation-delay: 0.35s; /* Fixed typo: Added "s" at the end */
}
.footer_logo > span:nth-child(9) {
  animation-delay: 0.4s;
}
.footer_logo > span:nth-child(10) {
  animation-delay: 0.45s;
}
.footer_logo > span:nth-child(11) {
  animation-delay: 0.5s;
}
.footer_logo > span:nth-child(12) {
  animation-delay: 0.55s;
}
.footer_logo > span:nth-child(13) {
  animation-delay: 0.6s;
}
.footer_logo > span:nth-child(14) {
  animation-delay: 0.65s;
}

.form_img_block {
  flex: 4;
}
.form_img_block > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 343/256;
  object-fit: cover;
}
@keyframes down {
  from {
    transform: translateY(-16vh);
  }
  to {
    transform: translateY(0);
  }
}
.bold_element {
  font-weight: 500;
}

.footer_inner {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero_404 {
  padding: 184px 40px;
}

.sticky_header_menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1.0625rem;
  cursor: pointer;
  font-weight: 500;
  color: #222222;
  border-radius: 20px;
  z-index: 10;

  background: #f3f4f3;
}
.stikcy_head {
  display: flex;
  width: 100%;
  font-weight: 500;
  flex-direction: row;
  font-size: 1.0625rem;
  color: #222222;
  align-items: center;
  justify-content: space-between;
}
.stikcy_head > img {
  width: 24px;
  height: 24px;
  transition: 0.6s ease-out;
}

.sticky_list {
  display: none;
  width: 100%;
  flex-direction: column;
  transition: 0.8s ease-out;
}
.sticky_list > li {
  padding: 1rem 0;
  font-size: 1.0625rem;
  color: #222222;
  transition: 0.3s ease-out;
}
.sticky_list > li:not(:last-child) {
  border-bottom: 1px solid #22222233;
}
.sticky_list > li:hover {
  color: var(--emerald);
}
.toogle_head_policy {
  display: flex;
}
.toggle_arrow_up {
  transform: rotate(-180deg) translateX(-3px);
}
.stikcy_head:hover > img {
  transform: rotate(-180deg) translateX(-3px);
}

@media (min-width: 768px) {
  .sticky_header_menu {
    display: none;
  }
  .footer_top_border {
    border-top: 1px solid #ffffff30;
  }
  .collapsible-contents .content-inner > p:not(:last-child) {
    margin-bottom: 2rem;
  }
  .collapse_head {
    margin-bottom: 2rem;
  }
  .collapse_head > h3 {
    font-size: 2.5rem;
  }
  .collapsible-contents .content-inner > h4 {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .collapsible-contents .content-inner > h5 {
    font-size: 1rem;
    text-transform: none;
    line-height: 1.5;
    margin-top: 24px;
  }
  .solutions_description {
    text-align: center;
  }
  .advantage_text {
    text-align: center;
  }
  .adv_list_block {
    align-items: center;
  }
  .quote_text {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .header_buttons {
    gap: 24px;
  }
  .quote_element {
    aspect-ratio: 1360/500;
  }
  .slide_button {
    width: 56px;
    height: 56px;
  }

  .solutions_description > p:not(:last-child) {
    margin-bottom: 1rem;
  }
  .about_description > p:not(:last-child) {
    margin-bottom: 1rem;
  }
  .advantages_list {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .advantages_list_element {
    flex-basis: calc(50%);
    max-width: calc(50% - 8px);
    margin-bottom: 16px;
  }
  .partner_item {
    max-height: 50px;
  }
  .new_elem {
    flex-direction: row;
  }

  .wrap-collabsible {
    /* gap: 16px; */
  }
  .description_title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .advantages_text {
    text-align: center;
  }

  .advantages_title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .partner_data {
    gap: 32px;
  }

  .partner_title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero_title {
    font-size: 5.25rem;
    line-height: 108%;
    text-align: center;
  }
  .hero_text {
    max-width: 1131px;
    text-align: center;
    font-size: 18px;
  }
  .experience_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .solutions {
  }

  .solutions_list {
    /* max-height: 100vh; */
    /* overflow-y: auto; */
    /* scroll-behavior: smooth; */
  }

  .solutions_list::-webkit-scrollbar {
    width: 6px;
  }

  .solutions_list::-webkit-scrollbar-thumb {
    background-color: transparent;
  }

  .solutions_list::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .solutions_title {
    text-align: center;
    font-weight: 500;
    font-family: inherit;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
  }

  .solutions_item {
    display: flex;
    gap: 30px;

    padding: 24px 0;
  }

  .solutions_item_header {
    padding: 0px;
    flex: 215px;
  }
  .solutions_item_text {
    padding-bottom: 0px;
    flex: 443px;
  }
  .solutions_item::after {
    display: none;
  }

  .experience_item_element > img {
    max-width: 56px;
    width: 100%;
  }
  .experience_item_title {
    font-size: 20px;
  }
  .testimonials_slider_item_img {
    object-position: top;
  }

  .testimonials_slider_title {
    font-size: 1.25rem;
  }
  .testimonials_slider_quote {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .recruitment_block {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
  }
  .recruitment_block > img {
    flex: 1;
    width: 630px;
  }

  .recruitment_text {
    flex: 5;
    text-align: left;
    width: 100%;
  }
  .recruitment_list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: flex-start;
  }

  .text_only {
    gap: 13px;
  }

  .about_img_block {
    flex: 1;
  }
  .about_img {
    width: 100%;
  }
  .about_text {
    flex: 1;
  }

  .solutions_text {
    gap: 16px;
  }
  .about_button {
    margin: 40px 0;
  }

  .form_block_title {
    margin-bottom: 40px;
  }

  .contacts {
    flex-direction: row;
    justify-content: center;
  }
  .logo_list {
    justify-content: center;
    padding: 32px 0;
  }
  .footer_post_data {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .footer_logo {
    margin-top: 24px;
    width: 100%;
    grid-template-columns: repeat(14, 1fr);
  }
  .space {
    display: block !important;
  }
  .recruitment_img_block > img {
    object-position: 20%;
  }
  .building_list {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 10% 0 15%;
  }

  .building_element {
    flex-basis: calc(50%);
    max-width: calc(50% - 8px);
  }
  .link_button {
    max-width: 220px;
  }
  .policies_inner {
    flex-direction: row;
    gap: 90px;
    padding: 48px 40px 120px 40px;
  }
  .sticky_header {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding: 24px;
    width: 100%;
    min-width: 278px;
    height: 160px;
    position: sticky;
    top: 110px;
    border-radius: 20px;
    z-index: 10;
    background-color: #f3f4f3;
  }

  .sticky_header > ul > li {
    font-size: 0.825rem;
    line-height: 1.2;
    padding: 1rem 0;
    font-family: inherit;
  }

  .sticky_header > ul > li:not(:last-child) {
    border-bottom: 1px solid #22222233;
  }
}

@media (min-width: 1024px) and (max-height: 850px) {
  .quote_block {
    max-width: 640px;
    justify-content: center;
  }
  .button_menu {
    display: none;
  }
  .footer_inner {
    gap: 16px;
  }
  .footer_logo_letter {
    font-size: 7rem;
  }
  .recruitment_text {
    flex: 6;
  }
  .hero_title {
    font-size: 4.5rem;
    line-height: 120%;
    text-align: center;
  }
  .recruitment_inner {
    padding: 80px 16px;
  }
  .about_inner {
    margin: 80px 16px;
  }
  .about_img_block {
    flex: 2;
  }
  .about_text {
    flex: 3;
  }
  .building_inner {
    padding: 32px 120px;
  }
  .building_list {
    display: none;
  }
  .building_img {
    display: none;
  }
  .building_img_dekstop {
    display: block;
    width: 100%;
  }
  .recruitment_block {
    gap: 18px;
  }
  .hero_text {
    font-size: 1rem;
  }
  .link_button {
    font-size: 1rem;
  }
  .description_collapsible_text {
    max-height: 220px;
  }
  .header_menu_nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex: 5;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;
  }
  .adv_list_data_number {
    font-size: 2.4rem;
  }
  .header_buttons {
    width: auto;
  }
  .form_block_inner {
    flex-direction: row;
    gap: 60px;
    padding: 64px 16px;
    border-bottom: #ffffff30 1px solid;
  }
  .form_block_group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .form_block_inner > form {
    gap: 16px;
  }

  .form_block_group > .input_wrapper {
    flex-basis: calc(50%);
    max-width: calc(50% - 8px);
  }

  .description_inner {
    align-items: center;
    gap: 90px;
    flex-direction: row;
    padding: 90px 16px;
  }

  .testimonials_slider_block {
    width: 720px;
  }
  .about_content {
    flex-direction: row;
    gap: 90px;
    align-items: center;
  }
  .advantages_list {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .adv_list_block {
    align-items: start;
  }
  .adv_list_data_description {
    font-size: 0.875rem;
  }
  .advantage_text {
    text-align: start;
    font-size: 0.875rem;
  }
  .recruitment_list {
    gap: 8px;
  }
  .text_only {
    gap: 8px;
  }
  .advantages_title {
    font-size: 2rem;
  }
  .solutions_title {
    text-align: left;
    font-size: 2.25rem;
  }
  .description_title {
    font-size: 2.25rem;
  }
  .hero_img {
    aspect-ratio: 320/120;
  }
  .solutions_description {
    text-align: left;
  }
  .form_img_block > img {
    aspect-ratio: 320/120;
  }
  .testimonials_slide {
    min-height: 420px;
  }
  .solutions_inner {
    flex-direction: row;
  }
  .about_img {
    width: 100%;
    object-fit: cover;
  }
  .header_inner {
    padding: 12px 20px;
  }

  .solutions_blocks {
    flex: 2.5;
  }
  .solutions_list {
    flex: 5;
  }
  .experience_list {
    grid-template-columns: repeat(4, 1fr);
  }
  .testimonials_slide {
    aspect-ratio: 1360/420;
  }
  .testimonials_slider_quote {
    font-size: 1.5rem;
  }
  .about_content {
    gap: 90px;
  }
  .form_button {
    margin-top: 20px;
  }
  .form_block_title {
    margin: 18px 0;
  }
  .solutions_button {
    margin: 32px 0 32px;
  }
  .solutions_item_header {
    flex: 1;
  }
  .solutions_item {
    gap: 60px;
  }
  .solutions_item_text {
    flex: 2;
  }

  .solutions_text {
    gap: 12px;
  }
  .solutions_inner {
    gap: 60px;
  }

  @keyframes down {
    from {
      transform: translateY(-20vh);
    }
    to {
      transform: translateY(0);
    }
  }
  .menu_element {
    font-size: 14px;
  }
  .head_font {
    font-size: 1.25rem;
  }
  .footer_post_data {
    flex-direction: column;
  }
}

@media (min-width: 1280px) and (min-height: 850px) {
  .recruitment_text {
    flex: 5;
  }
  .hero_title {
    font-size: 5.25rem;
    line-height: 108%;
  }
  .hero_text {
    font-size: 1.125rem;
  }
  .experience_title {
    font-size: 2.5rem;
  }
  .description_collapsible_text {
    max-height: 260px;
  }
  .testimonials_slider_quote {
    font-size: 1.75rem;
    line-height: 1.5;
  }

  .about_img_block {
    flex: 1;
  }
  .about_text {
    flex: 1;
  }

  .adv_list_data_description {
    font-size: 1rem;
  }

  .recruitment_list {
    gap: 12px;
  }
  .text_only {
    gap: 1rem;
  }
  .advantages_title {
    font-size: 2.5rem;
  }
  .description_title {
    font-size: 2.5rem;
  }
  .description_img {
    aspect-ratio: unset;
  }
  .menu_element {
    font-size: 1rem;
  }
  .sticky_header > ul > li {
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 1rem 0;
    font-family: inherit;
  }
  .sticky_header {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding: 24px;
    width: 100%;
    min-width: 328px;
    height: 240px;
    position: sticky;
    top: 120px;
    border-radius: 20px;
    z-index: 10;
    background-color: #f3f4f3;
  }
  .policies_inner {
    flex-direction: row;
    gap: 130px;
    padding: 64px 155px 120px 155px;
  }
  .solutions {
    overscroll-behavior: contain;
  }
  .solutions_description {
    text-align: start;
  }
  .solutions_title {
    font-weight: 500;
    font-family: inherit;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
  }
  .solutions_blocks {
    max-width: 441px;
  }
  .advantage_text {
    text-align: start;
    font-size: 0.825rem;
  }
  .adv_list_block {
    align-items: flex-start;
  }
  .quote_element {
    padding: 165px 64px;
  }

  .form_img_block > img {
    aspect-ratio: 559/756;
  }
  .form_button {
    max-width: 100% !important;
  }
  .header_buttons {
    display: block;
    width: auto;
  }
  .experience_list {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero_inner {
    padding: 214px 40px;
  }
  .hero_404 {
    padding: 184px 40px;
  }
  .solutions_inner {
    padding: 109px 40px 100px;
    flex-direction: row;
  }
  .solutions_button {
    margin: 48px 0px 96px;
  }
  .experience_item {
    padding: 24px 57px;
  }
  .partner_list {
    width: 1360px;
  }
  .about_content {
    gap: 130px;
  }

  .form_block_inner {
    gap: 130px;
    padding: 120px 40px;
  }
  .footer_documents {
    flex-direction: row;
    gap: 24px;
  }
  .description_inner {
    gap: 130px;
    padding: 120px 40px;
  }
  .quote_inner {
    margin: 0 40px;
  }
  .swiper1 {
    width: 1360px;
    height: 50px;
  }

  .hero_inner > .link_button {
    margin-top: 56px;
  }

  .hero_title {
    margin-bottom: 16px;
  }
  .solutions_inner {
    position: relative;
    gap: 130px;
  }

  .testimonials_slider_block {
    padding: 120px 0 100px 64px;
    display: flex;
    width: 820px;
    margin-bottom: 0px;
  }
  .testimonials_slide {
    position: relative;
    width: 100%;
    aspect-ratio: 1360/776;
    display: flex;
    max-height: 776px;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .testimonials_inner {
    margin: 0 40px;
  }
  .testimonials_btn_block {
    bottom: 120px;
    left: 78px;
  }
  .recruitment_block {
    gap: 130px;
  }
  .quote_text {
    font-size: 2rem;
    line-height: 1.5;
  }
  .partner_inner {
    padding: 56px 40px;
  }
  .about_inner {
    padding: 120px 40px;
  }

  .building_title {
    margin-bottom: 32px;
  }
  .building_inner {
    margin: 0 40px 120px;
    padding: 64px 120px;
  }
  .recruitment_inner {
    padding: 120px 40px 56px;
  }
  .experience_inner {
    padding: 120px 40px;
  }
  .advantages_inner {
    padding: 120px 40px;
  }
  .solutions_inner {
    padding: 100px 40px;
  }

  .testimonials_slider_item {
    max-height: 776px;
  }
  .header_inner {
    padding: 23px 40px;
  }
  .hero_img {
    aspect-ratio: 1356/600;
    transform: translateY(30vh);
  }
  .link_button {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .header {
    padding: 24px 40px;
  }
  .header_menu_nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;
  }

  .advantages_inner {
    padding: 120px 40px;
  }
  .adv_list_data {
    align-items: baseline;
  }
  .advantages_list {
    flex-direction: row;
  }

  .advantage_text {
    padding-top: 16px;
  }
  .advantages_list_element {
    padding: 32px 24px;
    flex-basis: calc(25% - 16px);
  }
  .adv_list_data_number {
    font-size: 3rem;
    line-height: 1.2;
  }

  .solutions {
    gap: 129px;
  }
  .solutions_item {
    display: flex;
    gap: 130px;
  }
  .footer_inner {
    padding: 60px 40px;
    gap: 32px;
  }
  .footer_logo_letter {
    font-size: 8rem;
  }
  .form_block_group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .form_block_inner > form {
    gap: 24px;
  }

  .form_block_group > .input_wrapper {
    flex-basis: calc(50%);
    max-width: calc(50% - 8px);
  }
}

.collapse_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lbl-toggle {
  cursor: pointer;
  display: block;
}

input[type="checkbox"] {
  display: none;
}
.lbl-toggle:hover {
  /* color: #ffffff; */
}

.lbl-toggle::before {
  content: " ";
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: 0.7rem;
  transform: translateY(-2px);
  transition: transform 0.2s ease-out;
}

.collapsible-content .content-inner {
  margin: 15px 0;
}
.content-inner > small {
  margin-bottom: 32px;
}
.collapsible-content {
  font-weight: 300;
  font-size: 1rem;
  line-height: 24px;

  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}

.expanded {
  max-height: 100vh;
}

.toggle:checked + .collapse_button::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .collapse_button {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.toggle:checked + .lbl-toggles + .collapsible-contents {
  max-height: 100vh;
}
