/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}



p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    outline: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
    background: #E5E4DB;
    color: #3A4235;
    font-family: "Manrope", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid #FFFFFF1A;
    transition: all 0.3s;
}

.header.fixed {
    background: #3A4235;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header_logo {
    display: flex;
}

.header_number {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s;
}

.header_number:hover {
    color: #8D8C5F;
}

.menu {
    display: flex;
    gap: 68px;
}

.menu a {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
    transition: all 0.3s;
}

.menu a:hover {
    color: #8D8C5F;
}

.header_messages {
    display: flex;
    gap: 10px;
}

.header_message {
    display: flex;
    transition: all 0.3s;
}

.header_message:hover {
    opacity: 0.8;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8D8C5F;
    border-radius: 300px;
    font-weight: 700;
    cursor: pointer;
    font-size: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    width: fit-content;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #5C5B3D 0%, #8D8C5F 55.29%, #5C5B3D 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.main {
    padding: 266px 0 100px;
    min-height: 850px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.main_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}

.main_bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: #312F2EBA;
}

.main_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header_btn {
    width: 233px;
    height: 45px;
    font-size: 14px;
}

.main_title {
    font-weight: 700;
    font-size: 64px;
    line-height: 130%;
    margin-bottom: 30px;
}

.main_text {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 150%;
}

.main_subtitle {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 60px;
}

.main_btn {
    width: 680px;
    height: 70px;
}

section {
    margin-bottom: 100px;
    scroll-margin-top: 120px;
}

.subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #8D8C5F;
}

.title {
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 20px;
}

.vacancies_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
}

.vacancies_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vacancies_item {
    width: calc(33.333% - 13.333px);
    background: #FFFFF6;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.vacancies_item-row {
    width: calc(33.333% - 13.333px);

}

.vacancies_item-row .vacancies_item {
    width: 100%;
    margin-bottom: 20px;
}



.vacancies_item-row .vacancies_item:last-child {
    margin-bottom: 0;
}

.vacancies_item-row .vacancies_item-title {
    margin-bottom: 150px;
}

.vacancies_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 230px;
}

.vacancies_item-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.vacancies_item-links {
    margin-bottom: 20px;
}

.vacancies_item-links:last-child {
    margin-bottom: 0;
}

.vacancies_item-link {
    background: #E5E4DB;
    border-radius: 10px;
    padding: 15px;
    flex: auto;
    width: calc(50% - 5px);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #3A4235;
    transition: all 0.3s;
}

.vacancies_item-link:hover {
    background: #3A4235;
    color: #fff;
}

.vacancies_item-link span {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
    display: block;
    color: #8D8C5F;
}

.vacancies_item-img {
    position: absolute;
    z-index: -1;
    right: 50%;
    transform: translateX(50%);
}

.vacancies_item:nth-child(2) .vacancies_item-img {
    top: 80px;
}

.vacancies_item:nth-child(3) .vacancies_item-img {
    top: 84px;
}

.vacancies_item:nth-child(4) .vacancies_item-img {
    top: 0;
    right: 0;
    left: auto;
    transform: none;
}

.vacancies_item:nth-child(4) .vacancies_item-title {
    margin-bottom: 250px;

}

.vacancies_item-subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #8D8C5F;
}

.vacancies_item-links .vacancies_item-subtitle {
    width: calc(50% - 5px);
}


.vacancies_inner {
    width: calc(33.333% - 13.333px);
    border-radius: 20px;
    padding: 30px;
    background-image: url(../img/vacancies_inner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

.vacancies_inner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.vacancies_inner-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 15px;
}

.vacancies_inner-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFFE5;
}

.vacancies_inner-subtitle {
    margin-top: auto;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 20px;
}

.vacancies_inner-wrapper {
    background: #8D8C5F;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
}

.vacancies_inner-wrapper:last-child {
    margin-bottom: 0;
}

.vacancies_inner-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vacancies_inner-number {
    color: #fff;
    display: block;
    margin-right: auto;
    font-weight: 700;
    font-size: 24px;
}

.vacancies_inner-desc {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 15px;
}

.vacancies_inner-btn {
    background: #3A4235;
    width: 251px;
    height: 50px;
    font-size: 16px;
}

.advantages_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
}

.advantages_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.advantages_item {
    width: calc(25% - 15px);
    background: #FFFFF6;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.advantages_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
}

.advantages_item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-top: auto;
}

.advantages_item-icon {
    display: flex;
    margin-bottom: 30px;
}

.advantages_bot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.advantages_messages {
    display: flex;
    gap: 10px;
}

.advantages_message {
    display: flex;
    transition: all 0.3s;
}

.advantages_message:hover {
    opacity: 0.8;
    ;
}

.advantages_desc {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
}

.advantages_number {
    display: block;
    font-weight: 700;
    font-size: 32px;
    color: #3A4235;
    transition: all 0.3s;
}

.advantages_number:hover {
    color: #8D8C5F;
}

.financy {
    padding: 100px 0;
    background-image: url(../img/financy.jpg);
    background-size: cover;
}

.financy .title {
    color: #fff;
}

.financy_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
    color: #FFFFFFE5;
}

.financy_wrapper {
    display: grid;
    gap: 10px;
    grid-template-rows: 1fr 0.5fr;
    grid-template-columns: 1fr 1fr;
}

.financy_inner:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
}

.financy_inner:nth-child(2) {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
}

.financy_info:nth-child(3) {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
}

.financy_inner {
    background: #FFFFF6;
    border-radius: 15px;
    padding: 30px;
}

.financy_info {
    background: #8D8C5F;
    color: #fff;
    border-radius: 15px;
    padding: 30px;
}

.financy_inner-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
}

.financy_inner-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.financy_inner-top {
    margin-bottom: 30px;
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
}

.financy_inner-img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.financy_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.financy_item {
    width: calc(50% - 10px);
    background: #3A4235;
    padding: 25px;
    border-radius: 15px;
}

.financy_item-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 15px;
    color: #FFFC7B;
}

.financy_item-subtitle {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #fff;
}

.financy_item-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFFCC;
}

.financy_info-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
}

.financy_info-value {
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 20px;
}

.bonus_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
}

.bonus_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bonus_item {
    width: calc(33.333% - 13.333px);
    background: #FFFFF6;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.bonus_item-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
}

.bonus_item-title span {
    background: #8D8C5F;
    display: flex;
    min-width: 60px;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
}

.bonus_item-option {
    background: #E5E4DB;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
}

.bonus_item-option span {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #8D8C5F;
}

.bonus_item-option:last-child {
    margin-bottom: 0;
}

.bonus_item-inner {
    background: #3A4235;
    padding: 25px;
    border-radius: 15px;
}

.bonus_item-price {
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 80px;
    color: #fff;
}

.bonus_item-tegs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bonus_item-teg {
    background: #8D8C5F;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #fff;
}

.advantages_text:last-child {
    margin-bottom: 0;
}

.requirements .title {
    margin-bottom: 60px;
}

.accompaniment .title {
    margin-bottom: 60px;
}

.accompaniment_wrapper {
    display: flex;
    justify-content: space-between;
}

.accompaniment_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: calc(50% - 15px);
}

.accompaniment_item {
    width: calc(50% - 10px);
    height: 390px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.accompaniment_item-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
}

.accompaniment_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accompaniment_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #fff;
}

.accompaniment_right {
    width: calc(50% - 15px);
    padding: 30px;
    border-radius: 20px;
    background-image: url(../img/accompaniment_right.jpg);
    background-size: cover;
    background-position: center;
}

.accompaniment_right-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 30px;
    color: #fff;
}

.accompaniment_options {
    background: #FFFFF6;
    border-radius: 20px;
    padding: 30px;
}

.accompaniment_option {
    padding-left: 90px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E4DB;
    position: relative;
    margin-bottom: 30px;
}

.accompaniment_option-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 10px;
}

.accompaniment_option-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.accompaniment_option:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.accompaniment_option-img {
    position: absolute;
    left: 0;
    top: 0;
}

.bonus_item-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #434343;
    margin-top: auto;
}

.pay {
    padding: 100px 0;
    background-image: url(../img/pay.jpg);
    background-size: cover;
    background-position: center;
}

.pay .title {
    color: #FFFFFFE5;
}

.pay_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFFE5;
    margin-bottom: 60px;
}

.pay .advantages_item {
    display: block;
}

.social_wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social_item {
    width: calc(50% - 10px);
    border-radius: 20px;
    padding: 30px;
    height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    z-index: 1;
}

.social_item-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
}

.social_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social_item:hover .social_item-info {
    opacity: 1;
}

.social_item-info {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: #312F2EBA;
    opacity: 0;
    transition: all 0.3s;
}

.social {
    margin-bottom: 100px;
}

.social_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
}

.social_item-info .social_item-title {
    margin-bottom: 20px;
}

.social_item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-top: auto;
    color: #FFFFFFE5;
}

.social_item-text p:not(:last-child) {
    margin-bottom: 20px;
}

.steps .title {
    margin-bottom: 60px;
}

.steps_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.steps_left {
    width: 1100px;
}

.steps_tabs {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.steps_tab {
    background: #FFFFF6;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    position: relative;
    color: #8D8C5F;
}

.steps_tab.active {
    background: #8D8C5F;
    color: #fff;
}

.steps_tab::before {
    position: absolute;
    content: "";
    background-color: #8D8C5F;
    width: 140px;
    height: 1px;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
}

.steps_right {
    background-image: url(../img/steps_right.jpg);
    background-size: cover;
    background-position: center;
    width: 560px;
    border-radius: 20px;
    padding: 30px;
}

.steps_right-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 15px;
    color: #fff;
}

.steps_right-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFFE5;
}

.steps_tab:last-child::before {
    display: none;
}

.steps_content {
    background: #FFFFF6;
    padding: 30px;
    border-radius: 15px;
    display: none;
}

.steps_content.active {
    display: block;
}

.steps_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 30px;
}

.steps_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
    color: #434343;
}

.advantages_bot-links {
    display: flex;
    align-items: center;
    gap: 60px;
}

.advantages_bot-btn {
    width: 327px;
    height: 50px;
    font-size: 16px;
}

.steps_desc {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #8D8C5F;
}

.security .title {
    margin-bottom: 60px;
}

.security_items {
    display: flex;
    gap: 20px;
}

.security_item {
    background: #FFFFF6;
    display: flex;
    border-radius: 15px;
    align-items: flex-end;
    overflow: hidden;
    min-width: 91px;
    width: 91px;
    transition: all 0.3s;
}

.security_item.active {
    width: 100%;
}

.security_item.active .security_item-prev {
    display: none;
}

.security_item-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 130%;
}

.security_item-title span {
    color: #8D8C5F;
    margin-right: 5px;
}

.security_item-img {
    display: flex;
}

.security_item-img img {
    width: 100%;
    height: auto;
}

.security_item-info {
    padding: 30px;
    display: none;
}

.security_item.active .security_item-info {
    display: block;
}

.security_item-prev {
    font-weight: 700;
    font-size: 24px;
    writing-mode: vertical-rl;
    width: 100%;
    transform: rotate(180deg);
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 510px;
    line-height: 130%;
}

.security_item-prev span {
    color: #8D8C5F;
    margin-right: 5px;
}

.advantages_item-btn {
    font-size: 16px;
    width: 216px;
    height: 50px;
    cursor: pointer;
    margin-top: auto;
}

.advantages_item-btn img {
    pointer-events: none;
    transition: all 0.3s;
}

.advantages_item-btn.active img {
    transform: rotate(180deg);
}

.chose .advantages_items {
    align-items: flex-start;
}

.chose .advantages_item {
    min-height: 343px;
}

.chose .advantages_item-title {
    margin-bottom: 40px;
}

.advantages_item-hide {
    margin-top: -20px;
    margin-bottom: 40px;
    font-weight: 500;
    display: none;
    font-size: 14px;
    line-height: 150%;
    color: #434343;
}

.advantages_item-hide p:not(:last-child) {
    margin-bottom: 15px;
}

.order_wrapper {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    padding: 40px;
    background-image: url(../img/order_wrapper.jpg);
    background-size: cover;
    background-position: center;
}

.order_form {
    width: 500px;
}

.order_info {
    display: flex;
    flex-direction: column;
    width: 940px;
}

.order_title {
    font-weight: 700;
    color: #fff;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
}

.order_links {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.order_number {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    margin-right: 30px;
    transition: all 0.3s;
}

.order_number:hover {
    color: #8D8C5F;
}

.inp {
    display: block;
    width: 100%;
    background: #FFFFF6;
    border-radius: 300px;
    height: 60px;
    padding-left: 30px;
    margin-bottom: 20px;
    border: none;
}

.order_form-btn {
    width: 100%;
    height: 70px;
    border: none;
    margin-bottom: 20px;
}

.form_ok {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFFCC;
}

.form_ok a {
    color: #fff;
    text-decoration: underline;
}

.order_messages {
    display: flex;
    gap: 10px;
}

.order_message {
    display: flex;
    transition: all 0.3s;
}

.order_message:hover {
    opacity: 0.8;
}


.faq .title {
    margin-bottom: 60px;
}

.faq_item {
    background: #FFFFF6;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq_item:last-child {
    margin-bottom: 0;
}

.faq_item-title {
    cursor: pointer;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    position: relative;
    padding: 30px 80px 30px 30px;
}

.faq_item-title.active::before {
    transform: translateY(-50%) rotate(180deg);
}

.faq_item-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/faq_arrow.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.faq_item-title span {
    color: #8D8C5F;
    margin-right: 5px;
}

.faq_item-content {
    padding: 0 30px 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    display: none;
    color: #434343;
}

.faq_item-content p {
    margin-bottom: 15px;
}

.faq_item-content p:last-child {
    margin-bottom: 0;
}

.faq_item-content ul {
    list-style: disc;
    margin-bottom: 15px;
    padding-left: 26px;
}

.order_desc {
    margin-right: auto;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFFE5;
    max-width: 480px;
}

.footer {
    background: #3A4235;
    padding: 100px 0 30px;
    color: #fff;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer_items {
    width: 1240px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.footer_item {
    width: calc(25% - 45px);
}

.footer_item:last-child {
    width: calc(75% - 45px);
}

.footer_item:last-child .footer_menu {
    columns: 3;
}

.footer_item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 25px;
}

.footer_menu a {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFFCC;
}

.footer_logo {
    display: flex;
    margin-bottom: 35px;
}

.footer_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

.footer_number {
    display: block;
    margin-right: auto;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    color: #fff;
}

.footer_btn {
    width: 100%;
    font-size: 16px;
    height: 50px;
}

.footer_inner {
    border-top: 1px solid #FFFFFF1A;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

.footer_inner-item {
    color: #FFFFFFCC;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.popup_body {
    background: #E5E4DB;
    border-radius: 20px;
    padding: 40px;
    overflow: visible;
    width: 600px;
}

.popup_body-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 30px;
}

.popup_body-btn {
    width: 100%;
    height: 70px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.popup_body .form_ok {
    color: #3A4235;
}

.popup_body .form_ok a {
    color: #3A4235;
}

.popup_body .fancybox-close-small {
    top: -10px;
    right: -10px;
    background-image: url(../img/close.svg);
    background-size: cover;
    opacity: 1;
}

.popup_body .fancybox-close-small svg {
    display: none;
}

.popup_body-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 30px;
}

.vacancies_btn {
    position: fixed;
    top: 130px;
    left: 0;
    z-index: 9;
    background: #8D8C5F;
    cursor: pointer;
    border-radius: 0 15px 15px 0;
    padding: 25px 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #fff;
}

.vacancies_btn span {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
}

.popup_vacancies {
    width: 1720px;
    background: #E5E4DB;
    border-radius: 20px;
    padding: 30px;
    zoom: 0.6;

}

.footer a {
    transition: all 0.3s;
}

.footer a:not(.btn):hover {
    color: #8D8C5F;
}

.menu_burger {
    display: none;
}

.main_advantages {
    margin-top: -292px;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}

.main_advantages-title {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 30px;
}

.main_advantages-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-top: 40px;
}

.financy_card .title {
    margin-bottom: 60px;
}

.financy_card .financy_inner:nth-child(1) .financy_item {
    width: 100%;
}

.financy_inner-text {
    font-weight: 500;
    line-height: 150%;
    margin: 30px 0;
}

.financy_inner-text:last-child {
    margin-bottom: 0;
}

.financy_card .financy_inner:nth-child(2) .financy_item:nth-child(1) {
    width: 100%;
}

.financy_info-subtitle {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    margin: 26px 0 15px;
}

.financy_info .financy_items {
    gap: 10px;
}

.financy_info .financy_item {
    width: calc(33.333% - 6.666px);
    padding: 20px;
}

.financy_info .financy_item.big {
    width: 100%;
}

.financy_info .financy_item.big:not(.big) .financy_item-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.financy_card .financy_wrapper {
    grid-template-rows: 0.5fr 1fr;
}

.financy_info .financy_item.big:not(.big) .financy_item-subtitle {
    font-size: 16px;
}

.advantages_item-price {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    margin-top: 30px;
    color: #8D8C5F;
}

.advantages_item-desc {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-top: 10px;
}

.advantages .title {
    margin-bottom: 60px;
}

.calculation_item {
    display: flex;
}

.calculation_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
}

.calculation_item {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.calculation_item-value {
    width: 450px;
    background: #FFFFF6;
    padding: 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
}

.calculation_item-value:nth-child(2) {
    flex: auto;
    font-weight: 500;
}

.calculation_item-value:nth-child(3) {
    color: #8D8C5F;
    font-size: 24px;
}

.calculation_item:nth-child(1) .calculation_item-value {
    background: #3A4235;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.calculation_item:last-child .calculation_item-value {
    flex: auto;
    background: #8D8C5F;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculation_item:last-child .calculation_item-value span {
    font-size: 32px;
}

.advantages_item {
    position: relative;
}

.advantages_item-link {
    position: absolute;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-decoration: underline;
    color: #3A4235;
    width: 220px;
    top: 49px;
    right: 30px;
}

#popup_more {
    width: 1134px;
}

.popup_more-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 30px;
}

.popup_more-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
}

.popup_more-text p:not(:last-child) {
    margin-bottom: 20px;
}

.order_wrapper .advantages_items {
    width: 805px;
    flex-wrap: wrap;
}

.order_wrapper .advantages_item {
    width: calc(50% - 10px);
}

.order_left {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

.order_left .financy_inner-subtitle,
.order_left .financy_inner-title {
    color: #fff;
}

.order_links-btn {
    width: 285px;
    height: 70px;
    font-size: 16px;
    margin-right: auto;
}

.order_left-inner {
    margin-top: auto;
    background: #8D8C5F;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
}

.order_left-subtitle {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
}

.order_left-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 15px;
}

.order_left-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.order_left-inner+.order_links {
    margin-top: 0;
}

.accompaniment .faq_item {
    margin: 60px 0;
}

.faq_item-inner {
    display: flex;
    justify-content: space-between;
}

.faq_item-row {
    width: calc(50% - 15px);
}

.faq_item-row img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}

.faq_item-row img:last-child {
    margin-bottom: 0;
}

.faq_item-content ol {
    padding-left: 26px;
}

.card_paket .advantages_item {
    width: calc(33.333% - 13.333px);
}

.job_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
}

.job_wrapper {
    display: flex;
    justify-content: space-between;
}

.job_img {
    width: calc(50% - 10px);
    border-radius: 20px;
    overflow: hidden;
}

.job_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job_info {
    width: calc(50% - 10px);
    border-radius: 20px;
    padding: 30px;
    background: #FFFFF6;
}

.job_info-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
}

.job_info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 15px;
}

.job_info ul {
    list-style: disc;
    line-height: 150%;
    padding-left: 26px;
}

.job_info ol {
    line-height: 150%;
    padding-left: 26px;
}

.job_info li {
    margin-bottom: 10px;
}

.security:has(.security_text) .title {
    margin-bottom: 20px;
}

.security_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 60px;
}

.security_desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-top: 30px;
}

.social_card .social_item {
    width: calc(33.333% - 13.333px);
    height: 600px;
}

.social_card .social_item-title {
    margin-top: auto;
}

.social_card .social_item-text {
    margin-top: 15px;
}

.header_catalog {
    display: none;
}





@media (max-width: 1760px) {
    .container {
        max-width: 1180px;
    }

    .menu {
        gap: 20px;
    }

    .header_number {
        font-size: 18px;
    }

    .header_btn {
        width: 210px;
    }

    .menu a {
        font-size: 14px;
    }

    .vacancies_inner-img {
        right: 50%;
        transform: translateX(50%);
    }

    .advantages_item-icon {
        width: 60px;
        margin-bottom: 20px;
    }

    .advantages_item-icon img {
        width: 100%;
        height: auto;
    }

    .advantages_item-title {
        font-size: 20px;
    }

    .financy_item-title {
        font-size: 28px;
    }

    .advantages_desc {
        font-size: 20px;
        width: 600px;
    }

    .bonus_item-title {
        font-size: 20px;
        gap: 12px;
    }

    .bonus_item-option {
        gap: 15px;
        text-align: right;
    }

    .bonus_item-option span {
        white-space: nowrap;
    }

    .accompaniment_right-title {
        font-size: 24px;
    }

    .accompaniment_option {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .accompaniment_option-title {
        font-size: 20px;
    }

    .accompaniment_item-title {
        font-size: 20px;
    }

    .bonus_item-text {
        font-size: 16px;
    }

    .social_item-text {
        font-size: 14px;
    }

    .social_item {
        height: 600px;
    }

    .steps_right {
        width: 400px;
    }

    .steps_left {
        width: 720px;
    }

    .steps_tab::before {
        width: 50px;
    }

    .steps_right-title {
        font-size: 26px;
    }

    .advantages_number {
        font-size: 24px;
    }

    .security_item-title {
        font-size: 20px;
    }

    .order_info {
        width: 620px;
    }

    .order_title {
        font-size: 24px;
    }

    .title {
        font-size: 36px;
    }

    .order_form {
        width: 420px;
    }

    .order_links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer_right {
        width: 320px;
    }

    .footer_items {
        width: 820px;
        gap: 30px;
    }

    .footer_item {
        width: calc(25% - 22.5px);
    }

    .footer_item-title {
        font-size: 18px;
    }

    .footer_item:last-child {
        width: calc(75% - 11.5px);
    }

    .footer_number {
        font-size: 22px;
    }

    .footer_logo {
        width: 100%;
    }

    .footer_logo img {
        width: 100%;
        height: auto;
    }

    .advantages_item-price {
        font-size: 26px;
    }

    .calculation_item-value {
        padding: 20px;
    }

    .advantages_item-link {
        position: relative;
        inset: auto;
        margin-bottom: 20px;
    }

    .order_wrapper .advantages_items {
        width: calc(50% - 15px);
        margin-bottom: 0;
    }

    .social_card .social_item {
        height: 540px;
    }

    .vacancies .vacancies_item-row .vacancies_item {
        height: calc(50% - 10px);
    }

    .vacancies_item-row .vacancies_item:nth-child(1) .vacancies_item-img {
        bottom: 0;
    }

    .security_item-prev {
        height: 340px;
        font-size: 20px;
        height: 270px;
        font-size: 16px;
    }

    .security_item {
        min-width: 72px;
        width: 72px;
    }

    .security_items {
        gap: 10px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 950px;
    }

    .header_btn,
    .header_number {
        display: none;
    }

    .menu a {
        font-size: 18px;
    }

    .main {
        min-height: 740px;
        padding: 180px 0 60px;
    }

    .main_title {
        font-size: 52px;
    }

    .main_text {
        font-size: 20px;
    }

    .main_subtitle {
        font-size: 28px;
    }

    .financy_text,
    .vacancies_text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .vacancies .vacancies_inner,
    .vacancies .vacancies_item-row,
    .vacancies .vacancies_item {
        width: calc(50% - 10px);
        flex: auto;
    }

    .vacancies .vacancies_item-row .vacancies_item {
        width: 100%;
        height: auto;
    }

    .vacancies .vacancies_item:nth-child(4) {
        width: 100%;
    }

    .advantages_item {
        width: calc(50% - 10px);
    }

    .advantages_desc {
        width: 520px;
    }

    .financy_wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .financy_inner {
        width: 100%;
    }

    .bonus_item {
        width: calc(50% - 10px);
        flex: auto;
    }

    .accompaniment_wrapper {
        gap: 30px;
        flex-wrap: wrap;
    }

    .accompaniment_right {
        width: 100%;
    }

    .accompaniment_items {
        width: 100%;
    }

    .social_item-info {
        display: none;
    }

    .social_item {
        height: 460px;
    }

    .steps_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .steps_left {
        width: 100%;
    }

    .steps_right {
        width: 100%;
    }

    .steps_tab::before {
        width: 100px;
    }


    .chose .advantages_item {
        min-height: 1px;
    }

    .chose .advantages_items {
        align-items: stretch;
    }

    .order_info {
        width: 460px;
    }

    .order_form {
        width: 360px;
    }

    .footer_wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer_right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        order: -1;
    }

    .footer_btn {
        width: 320px;
    }

    .footer_links {
        margin-bottom: 0;
    }

    .footer_logo {
        width: 240px;
        margin: 0;
    }

    .footer_items {
        width: 100%;
    }

    .footer {
        padding-top: 40px;
    }

    .main_advantages-text {
        font-size: 16px;
    }

    .calculation_item-value:nth-child(3) {
        font-size: 20px;
    }

    .order_wrapper {
        flex-wrap: wrap;
    }

    .order_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .order_wrapper .advantages_items {
        width: 100%;
    }

    .social_card .social_item {
        height: 420px;
        padding: 20px;
    }

    .popup_vacancies {
        width: 1600px;
    }
}


@media (max-width: 991.98px) {
    .container {
        max-width: 730px;
    }

    .security_items {
        flex-direction: column;
    }

    .security_item {
        width: 100%;
    }

    .security_item-prev {
        display: none;
    }

    .security_item-info {
        display: block;
    }



    .header_inner {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
        background: #3A4235;
        transition: all 0.6s;
        top: 0;
        right: 0;
        padding-bottom: 60px;
        padding-top: 120px;
        overflow: auto;
    }

    .menu {
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
    }

    .header_messages,
    .header_logo {
        z-index: 1;
        position: relative;
    }

    .header_catalog {
        display: block;
        max-width: 730px;
        padding: 0 15px;
        margin: 0 auto 20px;
    }

    .header_catalog-trigger {
        font-size: 18px;
        color: #fff;
    }

    .header_catalog .vacancies_items {
        margin-top: 20px;
        display: none;
    }

    .header_catalog .vacancies_item {
        width: 100% !important;
        padding: 20px;
        margin-bottom: 10px;
    }

    .header_catalog .vacancies_item-title {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .vacancies_item:nth-child(4) .vacancies_item-title {
        margin-bottom: 20px;
    }

    .vacancies_item-row {
        width: 100%;
    }

    .header_inner.active {
        opacity: 1;
        visibility: visible;
    }

    .vacancies_btn {
        padding: 16px 10px;
        font-size: 14px;
    }

    .main_title {
        font-size: 34px;
    }

    .main_text {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .main_subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .main {
        min-height: 1px;
    }

    .btn {
        font-size: 16px;
    }

    .main_btn {
        width: 520px;
        height: 60px;
    }

    section {
        margin-bottom: 60px;
    }

    .subtitle {
        font-size: 18px;
    }

    .pay_text,
    .advantages_text,
    .bonus_text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .vacancies .vacancies_item-row .vacancies_item:nth-child(2) .vacancies_item-img {
        bottom: 0;
        top: auto;
    }

    .vacancies .vacancies_inner,
    .vacancies .vacancies_item-row,
    .vacancies .vacancies_item {
        width: 100%;
    }

    .vacancies .vacancies_item:nth-child(4) .vacancies_item-img {
        right: 0;
        transform: none;
        left: auto;
    }

    .vacancies_inner-img {
        width: 400px;
    }

    .vacancies_inner-img img {
        width: 100%;
        height: auto;
    }

    .advantages_desc {
        width: 100%;
        font-size: 18px;
    }

    .pay,
    .financy {
        padding: 60px 0;
    }

    .financy_info-value {
        font-size: 32px;
    }

    .bonus_item {
        width: 100%;
    }

    .accompaniment_item {
        height: 300px;
    }

    .accompaniment_option-title {
        font-size: 18px;
    }

    .social_item {
        width: 100%;
        padding: 20px;
    }

    .steps_tab::before {
        width: 44px;
    }

    .advantages_bot {
        gap: 20px;
    }

    .order_wrapper {
        padding: 30px;
        flex-direction: column;
        gap: 30px;
    }

    .order_info,
    .order_form {
        width: 100%;
    }

    .footer_item {
        width: calc(50% - 15px);
    }

    .footer_item:last-child {
        width: 100%;
    }

    .faq_item-title {
        font-size: 20px;
    }

    .header_logo {
        width: 70px;
    }

    .header_logo img {
        width: 100%;
        height: auto;
    }

    .header_wrapper {
        padding: 10px 0;
    }

    .menu_burger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        top: 0;
        right: 0;
        background: #8D8C5F;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 0;
        right: 0;
        background: #8D8C5F;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        top: 9px;
        right: 0;
        background: #8D8C5F;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .menu_burger.active span {
        transform: scale(0);
    }

    .header_messages {
        margin-left: auto;
        margin-right: 30px;
    }

    .main_advantages {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .main_advantages-title {
        color: #3A4235;
    }



    .card_paket .advantages_item {
        width: calc(50% - 10px);
        flex: auto;
    }

    .job_text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .job_wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .job_img {
        width: 100%;
        height: 320px;
    }

    .job_info {
        width: 100%;
        padding: 20px;
    }

    .social_card .social_item {
        width: 100%;
    }

    .security_desc {
        font-size: 16px;
    }

    .social {
        margin-bottom: 60px;
    }

    .faq_item-inner {
        flex-direction: column;
        gap: 20px;
    }

    .faq_item-row {
        width: 100%;
    }

    .popup_vacancies .vacancies_item {
        width: calc(50% - 10px);
    }

    .popup_vacancies .vacancies_inner {
        width: 100%;
    }

    .popup_vacancies .vacancies_item-row {
        display: flex;
        justify-content: space-between;
    }

    .calculation_item-value {
        font-size: 18px;
    }

    .calculation_item:last-child .calculation_item-value span {
        font-size: 24px;
    }

    .advantages_bot-links {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .calculation_items {
        overflow: auto;
        width: calc(100% + ((100vw + 700px) / 2));
        padding-right: calc(((100vw + 700px) / 2));
    }

    .calculation_item {
        min-width: 900px;
    }

    .calculation_items::-webkit-scrollbar {
        display: none;
    }

    .calculation_item:last-child .calculation_item-value span {
        font-size: 24px;
    }

    .vacancies_btn {
        display: none;
    }

    .main_btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 14px;
    }

    .main_btn img {
        display: none;
    }

    .main {
        padding-top: 120px;
    }

    .main_title {
        font-size: 26px;
    }

    .main_title br {
        display: none;
    }

    .subtitle {
        font-size: 16px;
    }

    .title {
        font-size: 24px;
    }

    .vacancies .vacancies_item {
        padding: 20px;
    }

    .vacancies .vacancies_items {
        gap: 10px;
    }

    .vacancies .vacancies_item-title {
        font-size: 20px;
        margin-bottom: 120px;
    }

    .vacancies .vacancies_item-links {
        gap: 10px;
    }


    .vacancies .vacancies_item:nth-child(1) .vacancies_item-img {
        top: 0;
    }

    .vacancies .vacancies_item:nth-child(3) .vacancies_item-img {
        top: 20px;
    }

    .vacancies .vacancies_item:nth-child(4) .vacancies_item-title {
        margin-bottom: 160px;
    }

    .vacancies .vacancies_item:nth-child(4) .vacancies_item-img {
        top: -100px;
    }

    .vacancies .vacancies_item-link {
        width: 100%;
    }

    .vacancies .vacancies_item-row .vacancies_item:nth-child(1) .vacancies_item-img {
        right: 65%;
    }

    .vacancies .vacancies_item-row .vacancies_item:nth-child(2) .vacancies_item-img {
        top: 60px;
        bottom: auto;
    }

    .vacancies_inner {
        padding: 20px;
    }

    .vacancies_inner-title {
        font-size: 24px;
    }

    .vacancies_inner-text {
        margin-bottom: 20px;
    }

    .vacancies_inner-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .vacancies_inner-desc {
        font-size: 16px;
    }

    .vacancies_inner-links {
        flex-wrap: wrap;
    }

    .vacancies_inner-wrapper {
        padding: 15px;
    }

    .vacancies_inner-number {
        font-size: 20px;
    }

    .advantages_items {
        gap: 10px;
    }

    .advantages_item {
        width: 100%;
        padding: 20px;
    }

    .financy_item {
        width: 100%;
        padding: 14px;
    }

    .financy_items {
        gap: 10px;
    }

    .financy_inner-top {
        padding-left: 0;
        padding-top: 80px;
    }

    .financy_inner {
        padding: 20px;
    }

    .bonus_item,
    .financy_info {
        padding: 20px;
    }

    .bonus_item-price {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .bonus_item-option {
        padding: 14px;
        flex-wrap: wrap;
        gap: 10px;
        text-align: left;
    }

    .bonus_item-title {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .accompaniment .title,
    .requirements .title {
        margin-bottom: 20px;
    }

    .accompaniment_items {
        gap: 10px;
    }

    .accompaniment_item {
        width: 100%;
        padding: 20px;
        height: 240px;
    }

    .accompaniment_item-title {
        font-size: 18px;
    }

    .accompaniment_right {
        padding: 20px;
    }

    .accompaniment_right-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .accompaniment_options {
        padding: 20px;
    }

    .accompaniment_option {
        padding-left: 0;
        padding-top: 60px;
    }

    .bonus_items {
        gap: 10px;
    }

    .advantages_item-icon {
        width: 40px;
    }

    .advantages_items:last-child {
        margin-bottom: 0;
    }

    .accompaniment_option-img {
        width: 40px;
    }

    .accompaniment_option-img img {
        width: 100%;
        height: auto;
    }

    .social_item-title {
        font-size: 20px;
    }

    .social_item {
        height: 320px;
    }

    .social_wrapper {
        gap: 10px;
    }

    .social {
        margin-bottom: 60px;
    }

    .steps .title {
        margin-bottom: 30px;
    }

    .steps_right {
        padding: 20px;
    }

    .steps_right-title {
        font-size: 22px;
    }

    .advantages_bot-links {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .security .title {
        margin-bottom: 30px;
    }

    .security_item {
        padding: 20px;
    }

    .security_items {
        gap: 10px;
    }

    .security_item-title {
        font-size: 18px;
    }

    .chose .advantages_item-title {
        margin-bottom: 20px;
    }

    .advantages_item-hide {
        margin-top: 0;
    }

    .order_wrapper {
        padding: 20px;
    }

    .order_title {
        font-size: 20px;
    }

    .order_number {
        font-size: 20px;
    }

    .faq .title {
        margin-bottom: 30px;
    }

    .faq_item {
        margin-bottom: 10px;
    }

    .faq_item-title {
        font-size: 18px;
        padding: 20px 70px 20px 20px;
    }

    .faq_item-content {
        padding: 0 20px 20px;
    }

    .footer_logo {
        width: 220px;
        margin: 0 auto 10px;
    }

    .footer_links {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer_item-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer_item {
        width: 100%;
    }

    .footer_items {
        gap: 20px;
    }

    .footer_menu a {
        font-size: 14px;
    }

    .footer_item:last-child .footer_menu {
        columns: unset;
    }

    .footer_wrapper {
        margin-bottom: 30px;
    }

    .footer_inner {
        flex-direction: column;
        gap: 14px;
    }

    .menu {
        padding: 0 15px;
    }

    .popup_body {
        padding: 40px 20px 20px;
    }

    .popup_body-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .inp {
        margin-bottom: 10px;
    }

    .popup_body .fancybox-close-small {
        right: 0;
    }

    .main_advantages-title {
        font-size: 24px;
    }

    .financy_card .title {
        margin-bottom: 20px;
    }

    .financy_card .title br {
        display: none;
    }

    .financy_item-subtitle {
        font-size: 16px;
    }

    .financy_info .financy_item {
        width: 100%;
    }

    .advantages .title {
        margin-bottom: 30px;
    }

    .advantages_item-price {
        font-size: 22px;
        margin-top: 20px;
    }

    .calculation_text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .order_left-inner {
        padding: 20px;
    }

    .order_left-subtitle {
        font-size: 20px;
    }

    .order_left-title {
        font-size: 28px;
    }

    .card_paket .advantages_item,
    .order_wrapper .advantages_item {
        width: 100%;
    }

    .steps_tab {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .steps_tab::before {
        display: none;
    }

    .header_catalog .vacancies_item-link {
        width: 100%;
    }

    .vacancies_inner-number {
        margin-right: 0;
    }

    .vacancies_inner-message {
        width: 38px;
    }

    .vacancies_inner-number {
        font-size: 18px;
    }

    .vacancies_inner-message img {
        width: 100%;
        height: auto;
    }
}