@font-face {
    font-family: 'a dripping marker';
    src: url('/wp-content/themes/mmt/assets/fonts/adrip1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

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;
}
* {
    box-sizing: border-box;
}
.container {
    max-width: 1210px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}
ul, ol {
    list-style: none;
}
body {
    font-family: "Manrope", sans-serif;
    background-color: #030514;
}
.header {
    position: fixed;
    top: 17px;
    left: 0;
    z-index: 99999;
    right: 0;
}
.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 29px;
    background: #7676761A;
    backdrop-filter: blur(27px);
    border-radius: 105px;
}
.header__col {
    display: flex;
    align-items: center;
}
.header_menu {
    margin-left: 40px;
}
.header__logo a, .header__logo img {
    display: block;
}
.header_menu ul {
    display: flex;
    gap: 35px;
    align-items: center;
}
.header_menu ul li a {
    font-family: Manrope;
    text-decoration: none;
    transition: all .3s linear;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    opacity: .7;
    line-height: 100%;
}
.header_menu ul li a:hover {
    opacity: 1;
}
.btn {
    font-family: Unbounded;
    font-weight: 400;
    border-radius: 20px;
    font-size: 13px;
    color: #ffffff;
    display: flex;
    padding: 0 25px;
    cursor: pointer;
    height: 42px;
    align-items: center;
    text-decoration: none;
    line-height: 100%;
    text-transform: uppercase;
}
.btn_v1 {
    background: #2D2F3C;
    position: relative;
    border-radius: 99px;
    overflow: hidden;
    transition: all .3s linear;
}
.hero_block {
    padding-top: 160px;
    position: relative;
}
.hero_block_item h1 {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 53px;
    line-height: 120%;
    text-transform: uppercase;
    color: #ffffff;
}
.hero_block_item:last-child > img {
    position: absolute;
    top: 35px;
    max-width: 640px;
}
.hero_block_item h1 > b {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    text-transform: initial;
    width: 330px;
    display: inline-block;
    margin-left: 10px;
    line-height: 130%;
    color: #B3B3B3;
}
.hero_block_item h1 span {
    font-family: a dripping marker;
    font-weight: 400;
    font-size: 122px;
    line-height: 50%;
    color: #32FF95
}
@keyframes floatGlass {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-10px) rotate(1deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }
.hero_c1 {
    position: absolute;
    animation: floatGlass 3s ease-in-out infinite;
    max-width: 150px;
    top: -84px;
    left: -73px;
    z-index: -1;
}
.hero_c1 img {
    display: block;
    width: 100%;
}
.hero_block_item:first-child {
    position: relative;
}
.hero_block_wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}
.hero_tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    max-width: 480px;
}
.hero_tags span {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #FFFFFF;
    padding: 7px 13px;
    opacity: .7;
    display: flex;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 99px;
}
.btn_v2 {
    border: 2px solid #32FF95;
    font-family: Unbounded;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    display: flex;
    align-items: center;
    border-radius: 99px;
    transition: all .3s linear;
    height: 48px;
    justify-content: center;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    color: #32FF95;
    z-index: 1;
    overflow: hidden;
}
.btn > span {
    position: relative;
    z-index: 2;
}
.btn_v1:before {
    content: '';
    transition: all .3s linear;
    left: 0;
    position: absolute;
    right: 0;
    background: #32FF95;
    border-radius: 99px;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 0%;
    pointer-events: none;
}
.btn_v2:before {
    content: '';
    transition: all .3s linear;
    left: 0;
    position: absolute;
    right: 0;
    background: #32FF95;
    border-radius: 99px;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 0%;
    pointer-events: none;
}
.btn_v1:hover:before {
    width: 100%;
}
.btn_v1:hover {
    color: #000000;
}
.btn_v2:hover {
    color: #000000;
}
.wrap_b {
    display: flex;
    cursor: pointer;
    align-items: center;
}
.wrap_b svg {
    transition: all .3s linear;
}
.btn_v2:hover:before {
    width: 100%;
}
.wrap_b:hover .btn_v2:before {
    width: 100%;
}
.wrap_b:hover .btn_v2 {
    color: #000000;
}
.wrap_b:hover svg {
    transform: rotate(45deg);
}
.hero_wrap_b {
    margin-top: 24px;
    max-width: 480px;
}
.wrap_b svg {
    flex: none;
}
.slider_line {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-top: 50px;
    background: #303AA2;
    transform: rotate(-2.3deg);
    transform-origin: top right;
}
.slider_line .splide__slide {
    width: auto !important;
    display: flex;
    align-items: center;
}
.text_block {
    margin-top: 130px;
}
.title {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 53px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 25px;
}
.content p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.text_block_bottom {
    display: flex;
    align-items: center;
}
.text_block_bottom > span:not(.wrap_b) {
    font-family: Unbounded;
    opacity: .5;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
    margin-left: 24px;
    margin-right: 12px;
    color: #ffffff;
}
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.socials svg rect {
    transition: all .3s linear;
}
.text_block_col .socials a:hover svg rect {
    stroke: #32FF95;
}
.socials a {
    display: flex;
}
.text_block .container {
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1.1fr;
}
@keyframes floatGlassReverse {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(10px) rotate(-1deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
}
@keyframes floatGlassHorizontal {
    0% {
      transform: translateX(0px) rotate(0deg);
    }
    50% {
      transform: translateX(10px) rotate(1deg);
    }
    100% {
      transform: translateX(0px) rotate(0deg);
    }
}
@keyframes floatGlassHorizontalReverse {
    0% {
      transform: translateX(0px) rotate(0deg);
    }
    50% {
      transform: translateX(-10px) rotate(-1deg);
    }
    100% {
      transform: translateX(0px) rotate(0deg);
    }
}
.text_block_col_im1 {
    max-width: 560px;
    position: absolute;
    right: 0;
    animation: floatGlassReverse 3s ease-in-out infinite;
    top: -60px;
}
.text_block_col_im3 {
    max-width: 270px;
    top: 150px;
    right: 0;
    position: absolute;
     animation: floatGlassHorizontalReverse 3s ease-in-out infinite;
}
.text_block_col_im2 {
    max-width: 260px;
    position: absolute;
    top: 165px;
    left: 111px;
    animation: floatGlassHorizontal 3s ease-in-out infinite;
}
.text_block_col:last-child {
    position: relative;
}
.text_block_col:last-child > span {
    font-family: a dripping marker;
    font-weight: 400;
    font-size: 221.76px;
    line-height: 100%;
    top: 82%;
    left: 63px;
    position: absolute;
    color: #32FF95;
}
.object_2 {
    position: absolute;
    top: -48px;
    z-index: 9999;
    animation: floatGlass 3s ease-in-out infinite;
    max-width: 170px;
    left: 47px;
}
.block_slider_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
.block_slider {
    margin-top: 160px;
    background: #303AA2;
    padding-top: 140px;
    position: relative;
    padding-bottom: 140px;
}
.title_back {
    font-family: a dripping marker;
    font-weight: 400;
    font-size: 291.76px;
    line-height: 100%;
    animation: floatGlass 3s ease-in-out infinite;
    top: 57px;
    left: 0;
    position: absolute;
    color: #030514;
}
.block_slider .title {
    position: relative;
    line-height: 130%;
    z-index: 99;
    font-size: 73px;
}
.object_3 {
    position: absolute;
    max-width: 170px;
    animation: floatGlassHorizontal 3s ease-in-out infinite;
    top: 2%;
    left: 34%;
}
.block_slider_item p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #ffffff;
}
.block_slider_s {
    padding: 0 60px;
    margin-top: 30px;
}
.block_slider_s .splide__slide {
    display: flex;
    align-items: center;
    border-radius: 24px;
    justify-content: center;
    height: 140px;
    border: 2px solid #00000033;
    flex-direction: column;
}
.block_slider_s .splide__slide span {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #ffffff;
    margin-top: 5px;
}
.splide__arrows svg {
    display: none;
}
html body .splide__arrow {
    width: 50px;
    transition: all .3s linear;
    min-width: 50px;
    background: url('../images/arrow.svg') no-repeat center;
    height: 50px;
    min-height: 50px;
}
html body .splide__arrow--next {
    transform: rotate(180deg);
    top: calc(50% - 25px);
    right: 0;
}
html body .splide__arrow--prev {
    left: 0;
}
html body .splide__arrow:hover {
    background: url('../images/arrow-active.svg') no-repeat center;
}
.block_content_image .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 33px;
    align-items: center;
}
.block_content_image .container img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}
.block_content_image_col h2 {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
}
.block_content_image.even img {
    order: -1;
}
.block_content_image_col p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #ffffff;
    margin: 24px 0;
}
.block_content_image {
    padding: 30px 0;
}
.vacancies {
    padding: 90px 0;
    background: #141523;
}
.subtitle {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #ffffff;
    margin-bottom: 30px;
}
.vacancies .title {
    position: relative;
    font-size: 100px;
}
.vacancies .title > img {
    display: block;
    position: absolute;
    left: 59%;
    top: -47px;
    max-width: 129px;
    animation: floatGlass 3s ease-in-out infinite;
}
.vacancies_available {
    width: fit-content;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    opacity: .5;
    margin-bottom: 16px;
}
.vacancies_item {
    border: 1px solid #254535;
    border-radius: 24px;
    padding: 24px;
    transition: all .3s linear;
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-gap: 24px;
    display: none;
}
.vacancies_item.visible {
    display: grid;
}
.vacancies_title {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}
.vacancies_description {
    width: fit-content;
    font-family: Manrope;
    font-weight: 600;
    opacity: .5;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 6px;
}
.vacancies_col p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #ffffff;
    margin: 6px 0;
}
.vacancies_col ul {
    margin: 6px 0;
}
.vacancies_col ul li {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #ffffff;
}
.vacancies_info {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    flex-wrap: wrap;
}
.vacancies_info span {
    padding: 7px 12px;
    border-radius: 99px;
    border: 1px solid #254535;
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 170%;
    color: #ffffff;
}
.vacancies_info span svg {
    margin-right: 8px;
}
.vacancies_item:hover {
    border-color: #32FF95;
}
.vacancies_item:not(:last-child) {
    margin-bottom: 12px;
}
.wrapper_button {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.wrapper_button .btn {
    max-width: 180px;
}
.form_block {
    padding: 70px 0;
}
.form_block .container {
    max-width: 620px;
}
.form_block .title {
    font-size: 48px;
}
.form_item {
    display: grid;
    grid-template-columns: 1fr;
}
.form_item_col_2 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}
.form_i_i input, .form_i_i select {
    font-family: Manrope;
    font-weight: 400;
    padding: 10px 16px;
    border: 1px solid #254535;
    border-radius: 24px;
    background: transparent;
    width: 100%;
    display: block;
    font-size: 15px;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    line-height: 170%;
    color: #ffffff;
}
.form_i_i select {
    background: url('../images/select_arrow.svg') no-repeat 93%;
}
.form_i_i input:focus {
    border-color: #32FF95;
}
.wpcf7-form-control.btn {
    background: #32FF95;
    color: #030514;
    cursor: pointer;
    transition: all .3s linear;
    font-family: Unbounded;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}
.wpcf7-form-control.btn:hover {
    opacity: .5;
}
.wrapper_form br {
    display: none;
}
.wrapper_form label {
    font-family: Manrope;
    font-weight: 600;
    display: block;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
}
.wpcf7-form-control-wrap {
    margin-top: 8px;
    display: block;
}
.form_item:not(:last-child) {
    margin-bottom: 24px;
}
.form_bottom {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
    color: #ffffff;
    opacity: .5;
}
.wpcf7-spinner, .wpcf7-response-output {
    display: none !important;
}
.wpcf7-not-valid-tip {
    font-size: 13px !important;
    margin-top: 5px !important;
}
.footer {
    padding-top: 100px;
    padding-bottom: 24px;
    background-color: #303AA2;
    background-image: url('../images/footer-image.png');
    background-repeat: no-repeat;
    background-position: right;
}
.footer__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}
.footer_text {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #ffffff;
    margin-top: 16px;
    margin-bottom: 16px;
}
.footer_text_2 {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
    color: #ffffff;
    opacity: .5;
}
.footer_title {
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    opacity: .7;
    color: #ffffff;
    margin-bottom: 13px;
}
.footer_item ul li a {
    font-family: Manrope;
    font-weight: 400;
    font-size: 15px;
    line-height: 170%;
    text-decoration: none;
    color: #ffffff;
    transition: all .3s linear;
}
.footer_item ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer_item ul li a:hover {
    color: #32FF95;
}
.footer_line_title {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    opacity: .5;
    color: #ffffff;
    margin-bottom: 4px;
}
.footer_line {
    margin-top: 13px;
}
.footer_line > a {
    font-family: Manrope;
    font-weight: 400;
    transition: all .3s linear;
    text-decoration: none;
    font-size: 15px;
    line-height: 170%;
    color: #ffffff;
}
.footer_line > a:hover {
    color: #32FF95;
}
.footer_copy {
    margin-top: 70px;
    text-align: center;
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
    color: #ffffff;
    opacity: .5;
}
.block_cta {
    display: flex;
    align-items: center;
    position: absolute;
    left: 88%;
    z-index: 99;
    top: -29px;
}
.block_cta a {
    display: block;
    cursor: pointer;
    left: -54px;
    transition: all .3s linear;
    position: relative;
    height: 125px;
    width: 125px;
    animation: rotateGlass 6s linear infinite;
}
.block_cta a:hover {
    opacity: .8;
}
.block_cta a img {
    width: 100%;
    height: 100%;
}
.block_cta svg {
    display: block;
}
@keyframes rotateGlass {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
.fire {
    text-align: center;
    position: relative;
    left: -10px;
    top: -3px;
    z-index: 5;
    animation: eyeBlink 5s infinite;
    transition: 0.3s ease-in-out;
}
@keyframes eyeBlink {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 0;
    }
    41% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    81% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
.footer_line .socials svg rect {
    transition: all .3s linear;
}
.footer_line .socials svg:hover rect {
    stroke: #32FF95;
}
.main {
    padding-top: 90px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
}
.breadcrumbs > span > a {
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
}
.breadcrumbs > span > span {
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: .7;
}
.breadcrumbs {
    margin-bottom: 32px;
}
.dot {
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    margin: 0 15px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.text_style h1 {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #ffffff;
}
.text_style h2 {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #ffffff;
}
.text_style p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 15px;
    line-height: 170%;
    color: #ffffff;
    margin: 24px 0;
}
.burger {
    display: none;
}
.mobile_menu {
    display: none;
}
@media(max-width: 991px) {
    .header_menu {
        display: none;
    }
    .mobile_menu ul {
        margin-top: 60px;
    }
    .mobile_menu ul li a:after {
        content: '';
        width: 17px;
        margin-left: 16px;
        min-width: 17px;
        height: 17px;
        display: block;
        background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxOSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTguNUwxOCAxLjVNMTggMS41SDFNMTggMS41VjE4LjUiIHN0cm9rZT0iIzI1NDUzNSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .mobile_menu ul {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }
    .mobile_menu ul li a {
        font-family: Unbounded;
        width: fit-content;
        font-weight: 700;
        font-size: 24px;
        display: flex;
        align-items: center;
        text-decoration: none;
        line-height: 100%;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    .mobile_menu {
        display: flex;
        transform: translateY(-1000px);
        flex-direction: column;
        position: fixed;
        top: 0;
        transition: all 1s linear;
        z-index: 99999;
        background: #030514;
        padding: 23px 16px;
        width: 100%;
        height: 100%;
    }
    body.menu_active .mobile_menu {
        transform: translateY(0);
    }
    body.menu_active {
        overflow: hidden;
    }
    .burger {
        display: block;
        position: absolute;
        left: 20px;
    }
    .header__col .btn {
        display: none;
    }
    .header__col:last-child {
        display: none;
    }
    .header__logo {
        width: fit-content;
    }
    .header_wrapper {
        justify-content: center;
    }
    .hero_block_wrapper {
        grid-template-columns: 1fr;
    }
    .hero_block_item:last-child > img {
        position: relative;
        top: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 445px;
        display: block;
    }
    .block_slider_s {
        padding: 0;
    }
    .hero_wrap_b {
        width: 100%;
        max-width: 100%;
    }
    .hero_block {
        padding-top: 140px;
    }
    .text_block_col_im2 {
        max-width: 200px;
    }
    .text_block_col_im3 {
        max-width: 190px;
        top: 119px;
        right: 109px;
    }
    .text_block_col_im1 {
        max-width: 450px;
        left: auto;
        right: auto;
    }
    .text_block_col:last-child > span {
        font-size: 120px;
    }
    .object_2 {
        max-width: 140px;
    }
    .block_content_image_col h2 {
        font-size: 24px;
    }
    .form_item_col_2, .footer__wrapper {
        grid-template-columns: 1fr;
    }
    .form_block .title {
        font-size: 32px;
        line-height: 120%;
        text-align: center;
    }
    .vacancies_item {
        grid-template-columns: 1fr;
    }
    .footer_line .socials svg rect {
        stroke: #32FF95;
    }
    .form_block{
        padding: 60px 0;
    }
    .footer {
        padding-top: 60px;
        background-position: bottom;
        background-size: contain;
        padding-bottom: 371px;
    }
    .footer_copy {
        margin-top: 30px;
    }
    .vacancies .title {
        font-size: 32px;
    }
    .vacancies .title > img {
        display: none;
    }
    .text_block_bottom {
        flex-wrap: wrap;
    }
    .block_slider_wrapper, .block_content_image .container {
        grid-template-columns: 1fr;
    }
    .title_back {
        font-size: 200px;
    }
    .block_slider .title {
        font-size: 32px;
    }
    .block_slider {
        margin-top: 60px;
    }
    .text_block_bottom .wrap_b {
        margin-bottom: 24px;
    }
    .wrap_b {
        width: 100%;
    }
    .title {
        font-size: 32px;
    }
    .slider_line {
        margin-top: -30px;
    }
    .text_block_col:first-child {
        padding-top: 450px;
    }
    .text_block_col:last-child {
        order: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .text_block .container {
        grid-template-columns: 1fr;
    }
    .block_cta, .hero_c1 {
        display: none;
    }
    .hero_block_item h1 > b {
        display: none;
    }
    .fire {
        left: 104px;
        position: absolute;
        z-index: 999;
        top: 68px;
        max-width: 102px;
    }
    .hero_block_item:last-child {
        max-width: 370px;
        margin: 0 auto;
    }
    .fire img {
        width: 100%;
    }
    .hero_block_item {
        position: relative;
    }
    .hero_block_item h1 span {
        font-size: 70px;
    }
    .hero_block_item h1 {
        font-size: 32px;
    }
    .text_block_col:first-child {
        padding-top: 350px;
    }
    .splide__pagination {
        position: relative !important;
        bottom: 0 !important;
        margin-top: 15px !important;
    }
    .vacancies_info {
        justify-content: flex-start;
    }
    .vacancies {
        padding: 60px 0;
    }
    .block_content_image .container {
        grid-gap: 10px;
    }
    .block_content_image .container img {
        order: -1;
    }
    .block_slider {
        padding-bottom: 60px;
    }
}
@media(max-width: 450px) {
    .text_block_col_im1 {
        max-width: 360px;
    }
    .text_block_col:last-child > span {
        top: 200px;
        left: 0;
    }
    .object_2 {
        max-width: 66px;
    }
    .text_block_col_im2 {
        max-width: 140px;
        top: 110px;
        left: 180px;
    }
    .text_block_col_im3 {
        max-width: 135px;
        left: 60px;
        top: 78px;
    }
}