/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
.header_logo{
    width: 140px;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
@charset "UTF-8";
/* @import 'variables.css'; */
:root {
    --brand-blue: #d7b697;
    /*#d7b697*/
    --brand-red: #e93820;

    --default-dark-grey: #131313;
    --default-medium-grey: #b8b8b8;
    --default-light-grey: #e0e0e0;

    --vacancies-text: #404040;
}

.get-touch__button {
    display: flex;
    align-items: center;
}
.get-touch__button .label {
    font-weight: 600;
    margin-right: 20px;
    display: inline-block;
    /*color: #4d4635;*/
}
.get-touch__button .button {
    min-width: 32px;
    height: 32px;
    background-color: var(--brand-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.get-touch__button .button:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 4px;
    height: 14px;
    display: block;
}
.get-touch__button .button:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 4px;
    display: block;
}
.get-touch__button_black-cross span {
    color: var(--default-light-grey);
}
.get-touch__button_black-cross span:before,
.get-touch__button_black-cross span:after {
    background-color: var(--default-dark-grey);
}
.get-touch__button_black-cross:hover .button {
    background-color: var(--default-light-grey);
}
.get-touch__button_black-cross.active .button {
    background-color: var(--default-light-grey);
    transform: scale(1.2);
}
.get-touch__button_white-cross span {
    color: var(--default-dark-grey);
}
.get-touch__button_white-cross span:before,
.get-touch__button_white-cross span:after {
    background-color: #eeeeee;
}
.get-touch__button_white-cross:hover .button {
    background-color: var(--default-dark-grey);
}
.get-touch__button_white-cross.active .button {
    background-color: var(--default-dark-grey);
    transform: scale(1.2);
}

.marquee {
    width: 100vw;
    max-width: 100%;
    display: flex;
    pointer-events: none;
}
.marquee span {
    display: inline-block;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-direction: reverse;
}
.marquee span img {
    width: auto;
}
.marquee_with-text {
    position: absolute;
    bottom: 20px;
    left: 0;
}
.marquee_with-text span {
    animation: none;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.marquee.reversed span {
    animation-duration: 35s;
    animation-direction: reverse;
}

.form-input__wrapper {
    display: flex;
    flex-direction: column-reverse;
}
.form-input__wrapper label {
    transition: all 0.3s;
    pointer-events: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--default-dark-grey);
    transform: translateY(20px) scale(1);
    transform-origin: left;
}
.form-input__wrapper .form__input.filled + label,
.form-input__wrapper .form__input:focus + label {
    transform: translateY(0) scale(0.8);
    opacity: 1;
    color: var(--default-medium-grey);
}
.form-input__wrapper.with-file {
    position: relative;
}

.form__input {
    background-color: transparent;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--default-dark-grey);
    padding: 5px 0 15px 0;
    width: 100%;
    color: var(--default-dark-grey);
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.3s;
    border-radius: 0;
}
.form__input::-webkit-outer-spin-button,
.form__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form__input[type="number"] {
    -moz-appearance: textfield;
}
.form__input.select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("/select_arrow.7740ba5b.svg") right 10px center no-repeat;
    padding-bottom: 18px;
}
.form__input.textarea {
    line-height: 20px;
    min-height: 40px;
    padding-right: 40px;
    resize: none;
}
.form__input:hover {
    border-color: rgba(19, 19, 19, 0.16);
}

.file__wrapper input[type="file"],
.file__wrapper input[type="file"]::-webkit-file-upload-button {
    /* chromes and blink button */
    cursor: pointer;
}
.file__wrapper .file__input {
    opacity: 0;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    bottom: 9px;
}
.file__wrapper .file__input:hover + .file__trigger svg circle,
.file__wrapper .file__input:hover + .file__trigger svg path {
    stroke: var(--brand-blue);
}
.file__wrapper .file__input:active + .file__trigger svg circle,
.file__wrapper .file__input:active + .file__trigger svg path {
    stroke: var(--default-medium-grey);
}
.file__wrapper .file__trigger {
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    bottom: 29px;
    display: block;
    transition: all 0.3s;
}
.file__wrapper .file__trigger svg circle,
.file__wrapper .file__trigger svg path {
    transition: all 0.3s;
}
.file__wrapper .file__output {
    position: absolute;
    left: 0;
    top: -15px;
}

.checkbox__wrapper .checkbox__label {
    position: relative;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
    line-height: 20px;
    color: var(--default-dark-grey);
    display: flex;
    align-items: center;
}
.checkbox__wrapper .checkbox__label:before {
    content: "";
    min-width: 16px;
    height: 16px;
    display: inline-block;
    border: 1px solid var(--default-dark-grey);
    margin-right: 15px;
    vertical-align: text-top;
    transition: all 0.3s;
}
.checkbox__wrapper .checkbox__label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: -4px;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 5px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: var(--default-dark-grey);
    opacity: 0;
    transform: rotateZ(135deg) scale(0);
    transition: all 0.2s ease-in-out;
    display: block;
}
.checkbox__wrapper .checkbox__input {
    position: absolute;
    opacity: 0;
}
.checkbox__wrapper .checkbox__input:checked + .checkbox__label:before {
    border-color: rgba(19, 19, 19, 0.16);
}
.checkbox__wrapper .checkbox__input:checked + .checkbox__label:after {
    opacity: 1;
    transform: rotate(135deg) scale(1);
}
.checkbox__wrapper .checkbox__input:hover + .checkbox__label {
    color: var(--default-medium-grey);
}
.checkbox__wrapper .checkbox__input:hover + .checkbox__label:before {
    border-color: var(--brand-blue);
}

.form__button_submit {
    max-width: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--brand-red);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 14px 4px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    transition: all 0.3s;
}
.form__button_submit:hover {
    background-color: var(--default-dark-grey);
}
.form__button_submit:active {
    background-color: rgba(19, 19, 19, 0.8);
}

.forward-back__link {
    display: inline-flex;
    align-items: center;
}
.forward-back__link_text-right .forward-back__text {
    margin-right: 0 !important;
    margin-left: 20px;
}
.forward-back__link_text-right:hover .forward-back__text {
    transform: translateX(-10px) !important;
}
.forward-back__link:hover .forward-back__text {
    transform: translateX(10px);
}
.forward-back__link .forward-back__text {
    line-height: 20px;
    font-weight: 600;
    margin-right: 20px;
    display: inline-block;
    transform: translateX(0);
    transition: all 0.3s;
}
.forward-back__link .forward-back__text_blue {
    color: var(--brand-blue);
}
.forward-back__link .forward-back__text_black {
    color: var(--default-dark-grey);
}
.forward-back__link .forward-back__text_white {
    color: var(--default-dark-grey);
}
.forward-back__link .forward-back__button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /*border: 1px solid var(--brand-blue);*/
    border: 1px solid var(--default-dark-grey);
    transition: all 0.3s;
    position: relative;
}
.forward-back__link .forward-back__button span {
    display: block;
    width: 8px;
    height: 8px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    /*border-color: var(--brand-blue);*/
    color: var(--default-dark-grey);
    transition: all 0.3s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.forward-back__link .forward-back__button span:first-child {
    transform: translateX(-2px) rotateZ(45deg);
}
.forward-back__link .forward-back__button span:last-child {
    transform: translateX(-2px) rotateZ(45deg);
    opacity: 0;
}
.forward-back__link .forward-back__button.forward__button span:first-child {
    transform: translateX(-2px) rotateZ(45deg);
}
.forward-back__link .forward-back__button.forward__button span:last-child {
    transform: translateX(-2px) rotateZ(45deg);
    opacity: 0;
}
.forward-back__link .forward-back__button.back__button {
    border-color: var(--default-dark-grey);
}
.forward-back__link .forward-back__button.back__button span {
    border-color: var(--default-dark-grey);
}
.forward-back__link .forward-back__button.back__button span:first-child {
    transform: translateX(2px) rotateZ(225deg);
}
.forward-back__link .forward-back__button.back__button span:last-child {
    transform: translateX(2px) rotateZ(225deg);
    opacity: 0;
}
.forward-back__link.hovered .forward__button span:first-child {
    transform: translateX(-4px) rotateZ(45deg);
}
.forward-back__link.hovered .forward__button span:last-child {
    transform: translateX(1px) rotateZ(45deg);
    opacity: 1;
}
.forward-back__link.hovered .back__button span:first-child {
    transform: translateX(4px) rotateZ(225deg);
}
.forward-back__link.hovered .back__button span:last-child {
    transform: translateX(-2px) rotateZ(225deg);
    opacity: 1;
}
.forward-back__link.scroll-down__button {
    transform: rotateZ(90deg);
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 82vh;
    animation: scroll-down-pulse 0.8s ease-in-out alternate infinite;
}
.forward-back__link.scroll-down__button .forward-back__text_white {
    margin-right: 20px;
}
.forward-back__link.scroll-down__button .forward-back__button {
    width: 33px;
    /*border-color: var(--default-light-grey);*/
    color: var(--default-dark-grey);
}
.forward-back__link.scroll-down__button .forward-back__button span {
    /*border-color: var(--default-light-grey);*/
    color: var(--default-dark-grey);
}
@keyframes scroll-down-pulse {
    0% {
        transform: translateY(0) rotateZ(90deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(3px) rotateZ(90deg);
        opacity: 1;
    }
}
@media (max-width: 1023px) {
    .forward-back__link.scroll-down__button {
        right: 15px;
        top: calc(100vh - 90px);
    }
    .forward-back__link.scroll-down__button .forward-back__text_white {
        display: none;
    }
}

.socials__link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s;
}
.socials__link svg {
    transition: all 0.3s;
}
.socials__link.tg__link {
    background-color: #61a8de;
}
.socials__link.tg__link svg {
    transform: translateX(-2px);
}
.socials__link.tg__link svg rect {
    transition: all 0.3s;
}
.socials__link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

#langSelector {
    background: transparent;
    color: var(--default-light-grey);
    border: none;
}
#langSelector:focus {
    outline: none;
}

.burger__button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 16px;
    padding: 10px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.burger__button span {
    transition: all 0.3s;
    width: inherit;
    display: block;
    height: 1px;
    /*background-color: var(--default-light-grey);*/
    /*background-color: #4d4635 !important;*/
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    transform-origin: left;
}
.burger__button span:first-child {
    transform: scaleX(1);
}
.burger__button span:nth-child(2) {
    transform: scaleX(0.8);
    margin: 4px 0;
}
.burger__button span:nth-child(3) {
    transform: scaleX(0.6);
}
.burger__button.active span {
    transform: scaleX(1);
    background-color: var(--default-dark-grey);
}

.appear-from-left__line {
    display: block;
    max-width: calc(100% - 120px);
    width: 100%;
    height: 8px;
    background-color: var(--default-dark-grey);
    position: absolute;
    left: 0;
    /*bottom: 10px;*/
}
.appear-from-left__line.black {
    background-color: var(--default-dark-grey);
}
.appear-from-left__line.gradient {
    background: linear-gradient(270deg, #e0e0e0 0%, rgba(224, 224, 224, 0) 95%)
    transparent;
}

.anim__line-wrapper {
    overflow: hidden;
    font: inherit;
    display: block;
}

.anim__line {
    font: inherit;
    transition: transform 1.5s ease, opacity 1s ease !important;
    transform: translateY(110%) skewY(5deg);
    opacity: 0;
    display: block;
}
.anim__line.in-view {
    transform: translateY(2%) skewY(0deg);
    opacity: 1;
}

.fade-in__trigger {
    opacity: 0;
    transform: translateY(10%);
    transition: all 1s ease-in-out !important;
}
.fade-in__trigger.in-view {
    opacity: 1;
    transform: translateY(0);
}

.scaleX-left__trigger {
    transform: scaleX(0);
    transition: all 0.8s cubic-bezier(0.72, 0.22, 0.37, 0.97);
    opacity: 0;
    transform-origin: left;
}
.scaleX-left__trigger.in-view {
    transform: scaleX(1);
    opacity: 1;
}

.scaleX-right__trigger {
    transform: scaleX(0);
    transition: all 0.8s cubic-bezier(0.72, 0.22, 0.37, 0.97);
    opacity: 0;
    transform-origin: right;
}
.scaleX-right__trigger.in-view {
    transform: scaleX(1);
    opacity: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(29, 29, 29, 0.9);
    transition: all 0.4s;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px 2px rgba(29, 29, 29, 0.3);
    z-index: 2;
}
.header .nav__link_anchor {
    color: var(--default-light-grey) !important;
}
.header.header--on-top .nav__link_anchor {
    color: #4d4635 !important;
}
.header .get-touch__button .label {
    color: var(--default-light-grey) !important;
}
.header.header--on-top .get-touch__button .label {
    color: #4d4635 !important;
}
.header.header--on-top .burger__button span {
    background-color: #4d4635 !important;
}
.header .burger__button span {
    background-color: var(--default-light-grey);
}

.header--on-top {
    height: 100px;
    background-color: transparent;
    box-shadow: 0 0 5px 2px rgba(29, 29, 29, 0);
}
.header .header__inner {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .nav__list {
    display: flex;
    align-items: center;
}
.nav__item a{
    font-size: 16px;
}
.header .nav__item:not(:last-child) {
    margin-right: 75px;
}
.header .nav__link,
.header .nav__link_anchor {
    /*color: var(--default-dark-grey);*/
    /*color: #d7b697;*/
    /*opacity: 0.48;*/
    opacity: 0.6;
    transition: all 0.3s;
    font-weight: 600;
    cursor: pointer;
}
.header .nav__link:hover,
.header .nav__link.active,
.header .nav__link_anchor:hover,
.header .nav__link_anchor.active {
    opacity: 1;
}

.vacancies__header {
    background-color: rgba(233, 233, 233, 0.8);
}
.vacancies__header.header--on-top {
    background-color: transparent;
}
.vacancies__header .nav__link,
.vacancies__header .nav__link_anchor {
    color: var(--default-dark-grey);
}
.vacancies__header .burger__button span {
    background-color: var(--default-dark-grey);
}
.vacancies__header .get-touch__button {
    visibility: hidden;
}

@media (min-width: 1024px) {
    .header .burger__button,
    .header .nav__list_mobile {
        display: none;
    }
}
@media (max-width: 1024px) {
    .vacancies__header .get-touch__button {
        visibility: visible;
    }
}
@media (max-width: 1023px) {
    .header {
        height: 60px;
    }
    .header .header__inner {
        padding: 0 15px;
        justify-content: flex-start;
    }
    .header .nav__list {
        display: none;
    }
    .header .burger__button {
        display: flex;
        margin-left: 35px;
    }
    .header.header--on-top {
        height: 70px;
    }
    .header .get-touch__button {
        margin-left: auto;
    }

    .nav__list_mobile {
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        width: 100%;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        transition: all 0.4s;
        transform: translateX(-50px);
        padding: 120px 16px;
        display: flex;
        flex-direction: column;
        background: url("../media/paper_texture.fc816719.jpg") left top no-repeat
        rgba(255, 255, 255, 0.5);
        box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.4);
        background-size: cover;
        background-blend-mode: overlay;
    }
    .nav__list_mobile.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list_mobile .nav__item .nav__link_anchor {
        font-weight: 600;
        font-size: 44px;
        line-height: 80px;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        transition: all 0.3s;
        color: var(--default-medium-grey);
    }
    .nav__list_mobile .nav__item .nav__link_anchor.active {
        color: var(--default-dark-grey);
    }
}
.main {
    width: 100vw;
}

.box {
    display: block;
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: red;
    opacity: 0;
    transform: translateX(10px);
    transition: all 1s ease-in;
}
.box.visible {
    transform: translateX(-10px);
    opacity: 1;
    background-color: #61a8de;
}

.banner__section {
    padding-top: 80px;
    /*background-color: #131313;*/
    background-color: rgb(255, 255, 255);
    background-color: #e0e0e0;
}
.banner__section .container {
    max-width: 1320px;
}
.banner__section .banner__top-content {
    height: calc(100vh - 100px);
    position: relative;
    margin-bottom: 145px;
}
.banner__section .banner__top-content .banner__title {
    position: absolute;
    pointer-events: none;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 25px;
}
.banner__section .banner__top-content .banner__title h1 {
    padding: 30px;
    display: block;
    /*color: var(--default-light-grey);*/
    color: #4d4635;
    font-size: 64px;
    font-weight: 600;
    max-width: 675px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 80px;
}
.banner__section .banner__top-content .banner__title h1 span {
    color: var(--brand-blue);
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 80px;
}
.banner__section .banner__top-content canvas {
    touch-action: none;
    -ms-touch-action: none;
    -webkit-touch-callout: none;
}
@media (max-width: 1024px) {
    .banner__section .banner__top-content canvas {
        pointer-events: none;
    }
}
.banner__section .banner__bot-content {
    display: flex;
    flex-direction: column;
}
.banner__section .banner__bot-content .desc__line-wrapper {
    position: relative;
    background-color: #131313;
    padding-top: 100px;
}
.banner__section .banner__bot-content .desc__text-wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px 150px 20px;
    min-height: 294px;
}
.banner__section .banner__bot-content .desc__text-wrapper .main__desc {
    color: var(--default-light-grey);
    font-size: 24px;
    max-width: 500px;
    margin-right: 120px;
    line-height: 36px;
}
.banner__section .banner__bot-content .desc__text-wrapper .secondary__desc {
    max-width: 400px;
    padding-top: 10px;
}
.banner__section .banner__bot-content .desc__text-wrapper .secondary__desc p {
    color: var(--default-medium-grey);
    font-size: 13px;
    line-height: 22px;
    opacity: 0.5;
}
.banner__section
.banner__bot-content
.desc__text-wrapper
.secondary__desc
p:not(:last-child) {
    margin-bottom: 30px;
}
.banner__section .slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 20px;
}
.banner__section .slide {
    object-fit: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s linear;
}
.banner__section .slider-wrapper > .slide:first-child {
    opacity: 1;
}
.banner__section .slider__wrapper {
    margin-top: -20px;
    width: 100%;
    height: 320px;
}
.banner__section .slider__wrapper .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 3s linear;
    object-fit: cover;
}

.think-create__section {
    background-color: #e0e0e0;
    padding-top: 80px;
    padding-bottom: 120px;
}
.think-create__section .think-create__wrapper {
    padding-top: 165px;
    position: relative;
}
.think-create__section .think-create__wrapper .marquee {
    top: 0;
    bottom: unset;
    display: none;
}
.think-create__section .perks__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    grid-gap: 165px;
    margin-bottom: 160px;
    min-height: 220px;
}
.think-create__section .perks__item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.think-create__section .perks__item .perks__img {
    display: flex;
    align-items: center;
    transition: max-width 0.4s ease-in-out;
}
.think-create__section .perks__item .perks__img .circle {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    border: 1px solid var(--default-dark-grey);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    margin-right: -16px;
    z-index: 1;
}
.think-create__section .perks__item .perks__img .circle_filled {
    background-color: var(--default-dark-grey);
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 1):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.125;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 2):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.25;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 3):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.375;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 4):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.5;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 5):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.625;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 6):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.75;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 7):not(.circle_filled) {
    margin-right: -22px;
    opacity: 0.875;
}
.think-create__section
.perks__item
.perks__img.create
.circle:nth-child(n + 8):not(.circle_filled) {
    margin-right: -22px;
    opacity: 1;
}
.think-create__section .perks__item .perks__img.accelerate {
    max-width: 98px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.think-create__section .perks__item .perks__img.accelerate:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 32px;
    display: block;
    background: linear-gradient(
            270deg,
            rgba(195, 152, 67, 0.38) 0%,
            rgba(17, 125, 204, 0) 100%
    );
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}
.think-create__section .perks__item .perks__img.accelerate:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 32px;
    display: block;
    background: linear-gradient(
            270deg,
            rgba(19, 19, 19, 0.6) 0%,
            rgba(19, 19, 19, 0) 100%
    );
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}
.think-create__section .perks__item .perks__title {
    margin: 20px 0 15px;
    color: var(--default-dark-grey);
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s;
}
.think-create__section .perks__item .perks__subtitle {
    color: var(--default-medium-grey);
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 25px;
}
.think-create__section .perks__item .perks__text {
    line-height: 20px;
    max-width: 230px;
    letter-spacing: -0.02em;
    color: var(--default-dark-grey);
}
.think-create__section .perks__item:hover .perks__img .circle,
.think-create__section .perks__item:focus .perks__img .circle {
    border-color: var(--brand-blue);
}
.think-create__section .perks__item:hover .perks__img .circle_filled,
.think-create__section .perks__item:focus .perks__img .circle_filled {
    background-color: var(--brand-blue);
}
.think-create__section
.perks__item:hover
.perks__img.think
.circle:not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.think
.circle:not(.circle_filled) {
    margin-right: -12px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 1):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 1):not(.circle_filled) {
    opacity: 0.125;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 2):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 2):not(.circle_filled) {
    opacity: 0.25;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 3):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 3):not(.circle_filled) {
    opacity: 0.375;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 4):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 4):not(.circle_filled) {
    opacity: 0.5;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 5):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 5):not(.circle_filled) {
    opacity: 0.625;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 6):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 6):not(.circle_filled) {
    opacity: 0.75;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 7):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 7):not(.circle_filled) {
    opacity: 0.875;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section
.perks__item:hover
.perks__img.create
.circle:nth-child(n + 8):not(.circle_filled),
.think-create__section
.perks__item:focus
.perks__img.create
.circle:nth-child(n + 8):not(.circle_filled) {
    opacity: 1;
    border-color: #d7b697;
    margin-right: -20px;
}
.think-create__section .perks__item:hover .perks__img.accelerate,
.think-create__section .perks__item:focus .perks__img.accelerate {
    max-width: 104px;
}
.think-create__section .perks__item:hover .perks__img.accelerate:before,
.think-create__section .perks__item:focus .perks__img.accelerate:before {
    opacity: 1;
}
.think-create__section .perks__item:hover .perks__img.accelerate:after,
.think-create__section .perks__item:focus .perks__img.accelerate:after {
    opacity: 0;
}
.think-create__section .perks__item:hover .perks__title,
.think-create__section .perks__item:focus .perks__title {
    color: var(--brand-blue);
}
.think-create__section .perks__item:hover .perks__subtitle,
.think-create__section .perks__item:focus .perks__subtitle {
    color: var(--default-dark-grey);
}
.think-create__section .expertise__container {
    display: flex;
    flex-direction: column;
    min-height: 627px;
}
.think-create__section .expertise__container .top__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px;
}
.think-create__section .expertise__container .top__row h2 {
    font-size: 64px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    width: 100%;
}
.think-create__section .expertise__container .top__row p {
    margin-top: 30px;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.02em;
    max-width: 280px;
}
.think-create__section .expertise-tabs__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.think-create__section .expertise-tabs__list {
    display: flex;
    flex-direction: column;
    max-width: 410px;
    width: 100%;
}
.think-create__section .expertise-tabs__list .expertise-tabs__item {
    cursor: pointer;
    position: relative;
}
.think-create__section
.expertise-tabs__list
.expertise-tabs__item:not(:last-child) {
    margin-bottom: 50px;
}
.think-create__section .expertise-tabs__list .expertise-tabs__item span {
    font-size: 32px;
    vertical-align: top;
    padding-left: 40px;
    color: var(--default-medium-grey);
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: block;
}
.think-create__section .expertise-tabs__list .expertise-tabs__item sup {
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
    transition: all 0.3s;
    font-weight: 600;
}
.think-create__section .expertise-tabs__list .expertise-tabs__item.active span,
.think-create__section .expertise-tabs__list .expertise-tabs__item:hover span {
    color: var(--brand-blue);
}
.think-create__section .expertise-tabs__list .expertise-tabs__item.active sup,
.think-create__section .expertise-tabs__list .expertise-tabs__item:hover sup {
    color: var(--default-dark-grey);
}
.think-create__section .expertise-tabs__list .expertise-tabs__item:active span {
    color: var(--default-dark-grey);
}
.think-create__section .expertise-tabs__content {
    display: flex;
    align-items: center;
    position: absolute;
    right: 80px;
    top: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}
.think-create__section .expertise-tabs__content img {
    max-width: 380px;
    transform: scale(0);
    transition: all 0.4s;
    opacity: 0;
}
.think-create__section .expertise-tabs__content .text {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    max-width: 200px;
    margin-left: 120px;
}
.think-create__section .expertise-tabs__content .text p {
    font-size: 16px;
    line-height: 24px;
}
.think-create__section .expertise-tabs__content .text p:not(:last-child) {
    margin-bottom: 20px;
}
.think-create__section .expertise-tabs__content.active {
    opacity: 1;
    transform: translateY(0);
}
.think-create__section .expertise-tabs__content.active img {
    transform: scale(1);
    opacity: 1;
}
.think-create__section .expertise-tabs__content_mobile {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.technology__section {
    display: flex;
    flex-direction: column;
    background-color: #131313;
    padding-bottom: 115px;
    /*display: none;          !*                      TO REMOVE   *!*/
}
.technology__section .title__wrapper {
    margin-top: 130px;
    margin-bottom: 105px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.technology__section .title__wrapper h2 {
    color: var(--default-light-grey);
    font-weight: 600;
    font-size: 64px;
    line-height: 80px;
    text-transform: uppercase;
}
.technology__section .title__wrapper .appear-from-left__line--thick {
    width: calc(35vw - 80px);
    height: 47px;
    position: absolute;
    left: 0;
    top: 15px;
    display: block;
    background: linear-gradient(270deg, #e0e0e0 0%, rgba(224, 224, 224, 0) 95%)
    transparent;
}
.technology__section .title__wrapper .appear-from-right__line--thick {
    content: "";
    width: calc(35vw - 80px);
    height: 47px;
    position: absolute;
    right: 0;
    bottom: 15px;
    display: block;
    background: linear-gradient(90deg, #e0e0e0 0%, rgba(224, 224, 224, 0) 95%)
    transparent;
}
.technology__section .technology__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 190px);
    justify-content: center;
}
.technology__section .technology__grid .technology__item {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.global_network{
}
.global_network .image{
}
.global_network .image img{
    max-width: 90%;
}
.global_network .text{
    font-size: 20px;
    margin-top: 50px;
    color: grey;
    text-align: center;
}

@media (min-width: 1180px) {
    .technology__section
    .technology__grid
    .technology__item:nth-child(6n + 1):before {
        border-width: 0 1px 0 0;
    }
    .technology__section
    .technology__grid
    .technology__item:nth-child(6n + 6):before {
        border-width: 0 0 0 1px;
    }
}
@media (min-width: 998px) and (max-width: 1179px) {
    .technology__section
    .technology__grid
    .technology__item:nth-child(5n + 1):before {
        border-width: 0 1px 0 0;
    }
    .technology__section
    .technology__grid
    .technology__item:nth-child(5n + 5):before {
        border-width: 0 0 0 1px;
    }
}
@media (min-width: 805px) and (max-width: 998px) {
    .technology__section
    .technology__grid
    .technology__item:nth-child(4n + 1):before {
        border-width: 0 1px 0 0;
    }
    .technology__section
    .technology__grid
    .technology__item:nth-child(4n + 4):before {
        border-width: 0 0 0 1px;
    }
}
@media (max-width: 805px) {
    .technology__section
    .technology__grid
    .technology__item:nth-child(3n + 1):before {
        border-width: 0 1px 0 0;
    }
    .technology__section
    .technology__grid
    .technology__item:nth-child(3n + 3):before {
        border-width: 0 0 0 1px;
    }
}
.technology__section .technology__grid .technology__item:before {
    content: "";
    height: calc(100% - 10px);
    width: 100%;
    margin: auto;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 0 1px 0 1px;
    border-style: solid;
    border-color: var(--default-light-grey);
    opacity: 0.16;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
.technology__section .technology__grid .technology__item:after {
    content: "";
    height: 100%;
    width: calc(100% - 10px);
    margin: auto;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: var(--default-light-grey);
    opacity: 0.16;
    pointer-events: none;
    transition: border-color 0.3s, opacity 0.6s;
}
.technology__section .technology__grid .technology__item .technology__img {
    width: auto;
    opacity: 0.7;
    transition: all 0.3s;
    transform: scale(1);
}
.technology__section .technology__grid .technology__item:hover:before,
.technology__section .technology__grid .technology__item:hover:after {
    border-color: var(--brand-blue);
    opacity: 1;
}
.technology__section
.technology__grid
.technology__item:hover
.technology__img {
    opacity: 1;
    transform: scale(1.1);
}

.contact-us__section {
    background-color: #131313;
    padding: 0;
}
.contact-us__section .contact-us__wrapper {
    padding-top: 25px;
    position: relative;
}
.contact-us__section .contact-us__wrapper .marquee {
    top: 0;
    bottom: unset;
    left: -200vw;
}
.contact-us__section .contact-us__wrapper .marquee span img {
    filter: brightness(10);
}
.contact-us__section h3 {
    font-size: 24px;
    line-height: 36px;
    max-width: 280px;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}
.contact-us__section .form__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-us__section .form__wrapper form {
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact-us__section .form__wrapper form .form-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-column-gap: 120px;
    grid-row-gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}
.contact-us__section .form__wrapper form .form-grid__col {
    display: flex;
    flex-direction: column;
}
.contact-us__section .form__wrapper form .form-input__wrapper:not(:last-child) {
    margin-bottom: 30px;
}
.contact-us__section
.form__wrapper
form
.form-input__wrapper:not(.contact-us__section
    .form__wrapper
    form
    .form-input__wrapper.textarea__wrapper) {
    margin-bottom: 30px;
}
.contact-us__section
.form__wrapper
form
.form-input__wrapper.textarea__wrapper {
    position: relative;
    margin-bottom: 50px;
}
.contact-us__section
.form__wrapper
form
.form-input__wrapper
.file-requirements {
    position: absolute;
    right: 0;
    bottom: -15px;
    font-size: 10px;
    color: var(--default-medium-grey);
}
.contact-us__section .form__wrapper form p {
    letter-spacing: -0.02em;
    color: var(--default-dark-grey);
    opacity: 0.5;
    line-height: 20px;
    margin-bottom: 40px;
}
.contact-us__section .form__wrapper form .checkbox__wrapper:not(:last-child) {
    margin-bottom: 12px;
}
.contact-us__section .form__wrapper form .form__button_submit {
    margin-top: 25px;
}

.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 170px;
    padding-bottom: 100px;
}
@media (max-width: 1023px) {
    .footer {
        margin-top: 90px;
    }
}
.footer h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--default-light-grey);
}
.footer .anim__line-wrapper:first-child {
    margin-bottom: 32px;
}
.footer .anim__line-wrapper:nth-child(2) {
    margin-bottom: 50px;
}
.footer p {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.02em;
    color: var(--default-medium-grey);
    opacity: 0.5;
}
.footer .check-vacancies__link {
    margin-bottom: 20px;
}
.footer address {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
}
.footer address .appear-from-left__line {
    top: 0;
    max-width: unset;
}
.footer address .email__link {
    line-height: 36px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    color: var(--brand-blue);
}
.footer address .email__link:hover {
    color: var(--default-light-grey);
}

@media (max-width: 1024px) {
    .think-create__section .perks__container {
        grid-gap: 70px;
    }
    .think-create__section .expertise__container .top__row h2::after {
        max-width: calc(100% - 80px);
    }
    .think-create__section .expertise-tabs__content img {
        max-width: 300px;
    }
    .think-create__section .expertise-tabs__content .text {
        margin-left: 80px;
    }

    .contact-us__section .form__wrapper form {
        max-width: 600px;
    }
}
@media (max-width: 1023px) {
    .container {
        padding: 0 15px !important;
    }

    .marquee span img {
        height: 120px;
    }

    .banner__section {
        padding-top: 70px;
    }
    .banner__section .banner__top-content {
        margin-bottom: 115px;
        height: calc(100vh - 150px);
    }
    .banner__section .banner__top-content .banner__title {
        left: 35px;
    }
    .banner__section .banner__top-content .banner__title h1,
    .banner__section .banner__top-content .banner__title h1 > span {
        font-size: 48px;
        line-height: 56px;
        padding: 0;
    }
    .banner__section .banner__top-content .banner__title h1 {
        max-width: 70%;
    }
    .banner__section .banner__bot-content .desc__text-wrapper {
        flex-direction: column;
        padding: 0 17px 50px;
    }
    .banner__section .banner__bot-content .desc__text-wrapper .main__desc {
        margin-right: 0;
        margin-left: auto;
        font-size: 20px;
        line-height: 32px;
    }
    .banner__section .banner__bot-content .desc__text-wrapper .secondary__desc {
        padding-top: 0;
        margin-top: 28px;
        max-width: unset;
    }
    .banner__section .banner__bot-content .desc__text-wrapper .secondary__desc p {
        opacity: 0.48;
    }
    .banner__section
    .banner__bot-content
    .desc__text-wrapper
    .secondary__desc
    p:not(:last-child) {
        margin-bottom: 20px;
    }
    .banner__section .banner__bot-content .marquee {
        bottom: 50%;
    }
    .banner__section .banner__bot-content .marquee span img {
        height: 120px;
    }
    .banner__section .slider__wrapper {
        height: 180px;
    }

    .think-create__section {
        padding-top: 35px;
        padding-bottom: 65px;
    }
    .think-create__section .think-create__wrapper {
        padding-top: 136px;
    }
    .think-create__section .perks__container {
        padding-left: 40px;
        margin-bottom: 80px;
    }
    .think-create__section .expertise__container .top__row {
        flex-direction: column;
        margin-bottom: 45px;
    }
    .think-create__section .expertise__container .top__row h2 {
        font-size: 38px;
        line-height: 56px;
        padding-bottom: 32px;
    }
    .think-create__section .expertise__container .top__row h2:after {
        bottom: 0;
        max-width: unset;
    }
    .think-create__section .expertise__container .top__row P {
        max-width: 205px;
        margin-top: 45px;
        margin-left: auto;
        display: block;
        font-size: 20px;
        line-height: 32px;
    }
    .think-create__section .expertise-tabs__list {
        max-width: unset;
    }
    .think-create__section .expertise-tabs__item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .think-create__section
    .expertise-tabs__item.active
    .expertise-tabs__content_mobile {
        max-height: 600px;
    }
    .think-create__section .expertise-tabs__content {
        display: none;
    }
    .think-create__section .expertise-tabs__content_mobile {
        display: flex;
        flex-direction: column;
        position: static;
        width: 100%;
        max-height: 0;
        transition: max-height 0.4s;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    .think-create__section .expertise-tabs__content_mobile img {
        max-width: 250px;
        margin: 40px auto 50px;
    }
    .think-create__section .expertise-tabs__content_mobile .text {
        margin-left: 40px;
        max-width: unset;
    }
    .think-create__section .expertise-tabs__content_mobile .text p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.02em;
    }

    .technology__section .title__wrapper {
        margin: 50px 0;
        flex-direction: column;
        align-items: stretch;
        position: static;
        justify-content: space-between;
    }
    .technology__section .title__wrapper .appear-from-left__line--thick,
    .technology__section .title__wrapper .appear-from-right__line--thick {
        position: static;
        width: calc(100vw - 16px);
        height: 35px;
    }
    .technology__section .title__wrapper:before,
    .technology__section .title__wrapper:after {
        position: static;
        width: calc(100vw - 16px);
        height: 35px;
    }
    .technology__section .title__wrapper:after {
        margin-left: auto;
    }
    .technology__section .title__wrapper h2 {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -0.02em;
        margin: 16px auto;
        display: block;
    }

    .contact-us__section .form__wrapper form {
        max-width: 400px;
    }
}
@media (max-width: 640px) {
    .banner__section .banner__top-content .banner__title {
        left: 25px;
    }
    .banner__section .banner__top-content .banner__title h1,
    .banner__section .banner__top-content .banner__title h1 > span {
        font-size: 33px;
    }

    .technology__section {
        padding-bottom: 65px;
    }
    .technology__section .technology__grid {
        grid-template-columns: repeat(auto-fill, 30vw);
    }
    .technology__section .technology__grid .technology__item {
        padding: 30px 18px;
    }
    .technology__section .technology__grid .technology__item .technology__img {
        width: 100%;
    }

    .contact-us__section {
        padding-top: 0;
    }
    .contact-us__section h3 {
        margin-bottom: 50px;
    }
    .contact-us__section .form__wrapper {
        flex-direction: column;
        justify-content: flex-start;
    }
    .contact-us__section .form__wrapper form {
        margin-bottom: 50px;
    }
    .contact-us__section .form__wrapper form .form__button_submit {
        max-width: unset;
    }

    .footer {
        max-width: unset;
    }
    .footer p {
        max-width: 280px;
    }
}
@media (max-width: 375px) {
    .banner__section .banner__top-content .banner__title h1,
    .banner__section .banner__top-content .banner__title h1 > span {
        font-size: 29px;
        line-height: 1.6;
    }
}
.vacancies__page {
    background-color: #e0e0e0;
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: 100vh;
}
.vacancies__page .careers__section {
    padding-top: 25px;
}
.vacancies__page .careers__section .container {
    display: flex;
}
.vacancies__page .careers__wrapper {
    max-width: 780px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 125px;
    position: relative;
}
.vacancies__page .careers__wrapper h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 80px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--default-dark-grey);
    margin-bottom: 50px;
}
.vacancies__page .careers__wrapper .appear-from-left__line {
    position: static;
}
.vacancies__page .careers__wrapper .careers__list {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 35px 0 50px;
}
.vacancies__page .careers__wrapper .careers__item {
    display: flex;
    flex-direction: column;
}
.vacancies__page .careers__wrapper .careers__item:not(:last-child) {
    margin-bottom: 32px;
}
.vacancies__page .careers__wrapper .careers__item.active .item__title {
    color: var(--brand-blue);
}
.vacancies__page .careers__wrapper .careers__item.active .item__trigger {
    transform: rotateZ(-90deg);
}
.vacancies__page
.careers__wrapper
.careers__item.active
.item__trigger
svg
path {
    fill: var(--brand-blue);
}
.vacancies__page .careers__wrapper .careers__item.active .item__body {
    max-height: unset;
    padding: 24px 100px;
}
.vacancies__page .careers__wrapper .item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.vacancies__page .careers__wrapper .item__header:hover .item__title {
    color: var(--brand-blue);
}
.vacancies__page .careers__wrapper .item__title,
.vacancies__page .careers__wrapper .item__title > span {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--default-dark-grey);
    transition: all 0.3s;
    pointer-events: none;
}
.vacancies__page .careers__wrapper .item__title span,
.vacancies__page .careers__wrapper .item__title > span span {
    color: var(--default-medium-grey);
}
.vacancies__page .careers__wrapper .item__trigger {
    transform: rotateZ(0);
    transition: all 0.3s ease-in-out;
}
.vacancies__page .careers__wrapper .item__trigger svg path {
    transition: all 0.3s ease-in-out;
    fill: var(--default-dark-grey);
}
.vacancies__page .careers__wrapper .item__body {
    max-height: 0;
    overflow-y: hidden;
    padding: 0 100px;
}
.vacancies__page .careers__wrapper .item__body h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--default-dark-grey);
    margin-bottom: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
}
.vacancies__page .careers__wrapper .item__body p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--vacancies-text);
    margin-bottom: 20px;
}
.vacancies__page .careers__wrapper .item__body ul {
    list-style: none;
    margin-bottom: 30px;
}
.vacancies__page .careers__wrapper .item__body ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    line-height: 32px;
    color: var(--vacancies-text);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.vacancies__page .careers__wrapper .item__body ul li span {
    color: var(--default-medium-grey);
    margin-left: 4px;
    display: inline-block;
}
.vacancies__page .careers__wrapper .item__body ul li:before {
    content: "в—‡";
    margin-right: 10px;
    display: inline-block;
    font-size: 12px;
    color: var(--vacancies-text);
}
.vacancies__page .right__block {
    display: flex;
    flex-direction: column;
    margin-left: 120px;
    margin-top: 40px;
    max-width: 280px;
    position: fixed;
    left: calc(53.5% + 120px);
}
.vacancies__page .discover__text {
    color: var(--default-dark-grey);
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}
.vacancies__page .contact-us__section {
    background: none;
    box-shadow: none;
}
.vacancies__page .vacancies__footer {
    max-width: 280px;
    margin-top: 0;
}
.vacancies__page .vacancies__footer h4 {
    color: var(--default-dark-grey);
}
.vacancies__page .vacancies__footer p {
    opacity: 0.8;
    margin-bottom: 30px;
}
.vacancies__page .vacancies__footer address {
    padding-top: 0;
}
.vacancies__page .vacancies__footer address:before {
    display: none;
}
.vacancies__page .vacancies__footer address .email__link {
    color: var(--brand-blue);
}

@media (max-width: 1024px) {
    .vacancies__page .careers__section .container {
        flex-direction: column;
    }
    .vacancies__page .careers__section .careers__wrapper {
        margin-bottom: 0;
    }
    .vacancies__page .careers__section .right__block {
        position: static;
        margin-left: 0;
        max-width: unset;
    }
    .vacancies__page .careers__section .right__block .footer {
        max-width: unset;
    }
    .vacancies__page .careers__section .right__block address {
        max-width: 780px;
    }
    .vacancies__page .careers__section .right__block .discover__text {
        display: none;
    }
}
@media (max-width: 1023px) {
    .vacancies__page .contact-us__section {
        padding-top: 80px;
    }
    .vacancies__page .contact-us__section .contact-us__wrapper {
        padding-top: 0;
    }
}
@media (max-width: 640px) {
    .vacancies__page .careers__wrapper h1 {
        font-size: 48px;
        margin-bottom: 32px;
    }
    .vacancies__page .careers__wrapper .careers__item {
        margin-bottom: 25px;
    }
    .vacancies__page .careers__wrapper .careers__item .item__body {
        padding: 0 25px 0 50px;
    }
    .vacancies__page .careers__wrapper .careers__item.active {
        margin-bottom: 0;
    }
    .vacancies__page .careers__wrapper .careers__item.active .item__body {
        padding: 15px 25px 0 50px;
    }
    .vacancies__page .careers__wrapper .item__header {
        align-items: flex-start;
    }
    .vacancies__page .careers__wrapper .item__trigger {
        margin-top: 16px;
    }
    .vacancies__page .careers__wrapper .item__title {
        font-size: 24px;
        line-height: 1.5;
        max-width: 90%;
    }
    .vacancies__page .vacancies__footer {
        padding-bottom: 0;
    }
}
html,
body {
    scrollbar-width: thin;
    scrollbar-color: var(--default-medium-grey) var(--default-dark-grey);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    opacity: 0;
    animation: b 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes b {
    0% {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        opacity: 0;
    }
    100% {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        opacity: 1;
    }
}
html.overflow-hidden {
    overflow-y: hidden;
}

body * {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    display: inline-block;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background-color: var(--default-dark-grey);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 2px;
}

.c-scrollbar {
    z-index: 2;
}
.c-scrollbar .c-scrollbar_thumb {
    background-color: var(--brand-blue);
    width: 5px;
}

a {
    text-decoration: none;
}

button {
    background-color: transparent;
    border: none;
    padding: 0;
}

.container {
    max-width: 1240px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}




/*# sourceMappingURL=/styles.b99cbda3.css.map */