@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Black.woff2') format("woff2");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-ExtraLight.woff2') format("woff2");
    font-weight: 200;
    font-style: normal;
}


@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Light.woff2') format("woff2");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Medium.woff2') format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Book.woff') format("woff2");
    font-weight: 450;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Black.otf') format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Bold.otf') format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Medium.otf') format("opentype");
    font-weight: 500;
    font-style: normal;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

p {
    margin-bottom: 1rem;
}

p strong {
    font-weight: 500;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}
br.mobile-only{
    display:none;
}


/* Form */

input,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}


button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

ul,
li {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
:root {
    --black: #000;
    --white: #FFFFFF;
    --red: #CE171C;
    --dark: #2B2E34;
    --blue: #EEF6F8;
}

body {
    font-family: 'Gotham';
}

section {
    padding: 90px 0;
}

section.contact-details-block {
    padding: 0 0 90px 0;
}

.container-small {
    max-width: 980px;
}

.container {
    max-width: 1200px;
}

.container,
.container-small {
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
h1 {
    font-weight: 500;
    font-size: 63px;
    line-height: 105%;
    letter-spacing: 3px;
}

h2 {
    font-size: 21px;
    line-height: 180%;
    letter-spacing: 2.46px;
    font-weight: 400;
}

h3 {
    font-weight: 800;
    font-size: 23px;
    line-height: 27px;
}

p,
li {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.button,
.navigation_btns a {
    text-decoration: none;
    background-color: var(--red);
    padding: 29px 35px;
    font-size: 14px;
    text-transform: uppercase;
    min-width: 286px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.7px;
    text-align: center;
    width: max-content;
    color: var(--black);
    cursor: pointer;
    transition: all .3s ease-out;
    position: relative;
    font-weight: 700;
}

.button p {
    position: relative;
    font-size: 14px;
    padding-right: 20px;
    letter-spacing: 0.7px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.button p::after {
    content: ">";
    position: absolute;
    right: 0;
    font-weight: 450;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
}

a {
    color: var(--black);
    text-decoration: none;
}

/******************************************************/
/***********************BLOCKS*************************/
/******************************************************/

/***************************************************************************************************************/
/************************************************** HEADER *****************************************************/

header {
    transition: background-color 1s, transform 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 18px 0;
    background-color: var(--white);
}

header.sticky_head {
    transform: translateY(-105%);
}

header.white_bg {
    background-color: #fff;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .header_nav {
    display: flex;
    gap: 82px;
}

.header .header_nav .header_nav_links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_nav_link:first-child {
    position: relative;
    padding-right: 10px;
}

.header_nav_link:first-child::after {
    content: '';
    width: 1px;
    height: 100%;
    display: inline-block;
    background-color: var(--red);
    position: absolute;
    right: 0;
    top: 0;
}

.header .header_nav .header_nav_link span {
    color: var(--red);
    font-size: 12px;
    font-weight: 500;
}

.header .header_nav .header_nav_links a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.header .header_nav .header_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.header_menu_burger {
    padding: 0;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
}

.header_menu_burger>span {
    display: inline-block;
    width: 30px;
    height: 1.5px;
    background-color: var(--red);
    transition: 0.4s;
    margin: 2px 0;
}

.header_menu_burger span:nth-child(2) {
    background-color: var(--black);
}

.header .header_brand .logo-sm,
.navigation .header_brand .logo-sm {
    display: none;
}

.header .header_brand,
.navigation .header_brand {
    width: 46px;
    height: auto;
}

.modal-open {
    overflow: hidden;
}


/***************************************************************************************************************/
/********************************************Navigation*********************************************************/
.navigation_btns a span {
    color: var(--white);
}

.navigation_btns li:last-child a span,
.navigation_btns li:last-child a .button_arrow {
    color: var(--red);
}

.navigation_btns li:last-child a {
    background-color: var(--white);
}


.navigation {
    display: none;
}

.navigation .header_menu_burger {
    cursor: pointer;
    margin-right: 70px;
    padding-top: 5px;
}

.header_menu-menu {
    font-size: 14px;
    letter-spacing: 1.4px;
    color: var(--dark);
}

.navigation .header_menu_burger>span {
    width: 20px;
    height: 1px;
    margin: 3px 0;
}

.navigation .header_menu_burger>span:first-child {
    transform: translateY(4px) rotate(45deg);
    background-color: var(--red);
}

.navigation .header_menu_burger>span:last-child {
    transform: translateY(-3px) rotate(-45deg);
    background-color: var(--red);
}

.navigation_header {
    transition: transform 1s;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 18px 0;
}

.active .navigation_header {
    background-color: var(--blue);
}

.navigation_header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation.active {
    display: flex;
    flex-direction: column;
    background-color: var(--blue);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
}

.navigation-body {
    height: 100%;
}

.navigation-title {
    margin-bottom: 30px;
    font-weight: 800;
    text-decoration: underline;
    letter-spacing: 3.86px;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-size: 2.5rem;
    text-transform: uppercase;
    hyphens: none;
    text-wrap: wrap;
}

.navigation-body .navigation_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
}

.navigation_content h2 {
    line-height: 100%;
}

.sub-menu li a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 450;
    letter-spacing: 0.9px;
    line-height: 15px;
    color: var(--dark);
}

.sub-menu li {
    position: relative;
    padding-left: 20px;
    line-height: 15px;
}

.sub-menu li::before {
    content: ">";
    color: var(--red);
    font-size: 12px;
    font-weight: 450;
    position: absolute;
    left: 0;
    top: 2px;
}

.navigation-body h4 {
    margin: 0;
    margin-bottom: 16px;
}

.navigation-body h4 a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.05px;
    text-transform: uppercase;
    color: var(--black);
}

.navigation-body ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
}

.navigation_items_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.navigation_items_row .red {
    color: var(--red);
}

.navlink-arrow h4 a,
.navlink-arrow>a {
    display: inline-block;
    position: relative;
    padding-right: 26px;
}

.navlink-arrow h4 a::after,
.navlink-arrow>a::after {
    content: '';
    background-image: url('../img/nav_arrow.svg');
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-55%);
}



.navigation_item h4,
.navigation_item .last {
    margin: 2.5rem 0 23px 0 !important;
}

.navigation_items_row .navigation_item a {
    transition: .3s all linear;
}

.navigation_btns {
    display: flex;
    flex-wrap: wrap;
    gap: 75px;
    margin-top: 90px;
}

.arrow_element-li.menu-item,
.arrow_element-li.menu-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 450;
    color: var(--dark);
    letter-spacing: 0.9px;
}

.arrow_element-li {
    position: relative;
}

.button_arrow {
    display: block;
    font-size: 16px;
    color: var(--white);
    font-weight: 300;
    margin-left: 10px;
}

.navigation_btns li {
    position: relative;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.arrow-wrapper {
    display: none;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
.statistics-counter {
    display: flex;
    gap: 49px;
    justify-content: center;
    align-items: stretch;
}

.custom-counter {
    display: flex;
    flex-direction: column;
    font-size: 69px;
    font-weight: 700;
    position: relative;
    min-width: 5.5ch;
    gap: 20px;
    color: var(--black);
}

.custom-counter-number-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.custom-counter-number {
    color: var(--black);
    font-size: 52px;
    letter-spacing: 1.3px;
    font-weight: 900;
}

.custom-counter-number-prefix {
    font-size: 28px;
}

.custom-counter-number-prefix svg {
    width: 22px;
    font-family: 'DIN', sans-serif;
    height: 18px;
}

.custom-counter-number-suffix {
    color: var(--red);
    font-size: 55px;
    font-family: 'DIN', sans-serif;
}

.custom-counter-title {
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-size: 17px;
    letter-spacing: 1.27px;
    font-weight: 900;
}

.custom-counter:nth-child(2)::before {
    left: -38%;
}

.custom-counter:nth-child(2)::after {
    right: -38%;
}

.custom-counter:nth-child(2)::after,
.custom-counter:nth-child(2)::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 115%;
    top: 0;
    background-color: var(--red);
}

.counter-line {
    width: 1px;
    transform: scaleY(1.30);
    background-color: var(--red);
}

/**********************************/
/***********************************/
.back-link-block .link p {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1.6px;
    color: #2B2E34;
}

.back-link-block .link {
    padding-left: 23px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.back-link-block .link::before {
    content: '';
    background-image: url('../img/back-link-arr.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 11px;
    height: 9px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    left: 0;
    position: absolute;
}


.back-link-block {
    padding-bottom: 0;
    padding-top: 78px;
}


/*************************************/
.definitions-block {
    background-color: var(--blue);
}

.definitions-block-inner {
    background-color: var(--white);
    border-top: 5px solid var(--red);
    border-bottom: 5px solid var(--dark);
    padding-left: 150px;
    padding-right: 85px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.definitions-block-header h2 .text-big{
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
}
.definitions-block-header h2{
    margin-bottom:1.2rem;
}
.definitions-block-item {
    border-bottom: 1px solid gray;
    padding-bottom: 37px;
    margin-bottom: 37px;
}

.definitions-block-item .def-arrow {
    color: var(--red);
    font-size: 14px;
    font-weight: 450;
    margin-right: 13px;
}

.definitions-block-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1.2px;
    line-height: 19px;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.definitions-block-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.definitions-block-text {
    font-weight: 300;
    letter-spacing: 0.4px;
    color: var(--black);
}


/*************************/
section.text-block:first-of-type {
  padding-top: 120px;
}

.text-block-inner-title {
    margin-bottom: 41px;
}

.keep-together {
    white-space: nowrap;
}

.text-block-inner-title p,
.text-block-inner-title h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 35px;
    color: var(--dark);
    letter-spacing: 1px;
    position: relative;
    text-indent: 30px;
}

.hero-title-inner-title h1,
.image-block-top-text h2,
.image-block-top-text p,
.materials-content p,
.materials-content h2,
.slider-bottom-title h2,
.slider-bottom-title p {
    position: relative;
    text-indent: 30px;
}


.text-block-inner-title h2::before,
.text-block-inner-title p::before,
.hero-title-inner-title h1::before,
.image-block-top-text h2::before,
.image-block-top-text p::before,
.materials-content p::before,
.materials-content h2::before,
.slider-bottom-title h2::before,
.slider-bottom-title p::before {
    background-color: var(--red);
    width: 21px;
    height: 1px;
    display: inline-block;
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
}

.text-block-inner-title p strong {
    font-weight: 900;
}

.text-line {
    background-color: var(--red);
    width: 21px;
    height: 1px;
    margin-left: 10px;
    display: inline-block;
}

.text-block-inner-subtitle {
    margin-bottom: 15px;
}

.text-block-inner-subtitle p {
    font-size: 19px;
    letter-spacing: 0.95px;
    line-height: 23px;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
}

.text-block-inner-subtitle p strong {
    font-weight: 900;
}

.text-block-inner .button {
    margin: 0 auto;
}

.text-block-inner .button {
    margin-top: 80px;
}

.text-block-inner-title h2 .text-big,
.text-block-inner-title p .text-big,
.image-block-top-text h2 .text-big {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 900;
}

.text-block-inner-title h2 .text-small,
.text-block-inner-title p .text-small {
    font-size: 23px;
}

/*******************************/
.slider-inner {
    overflow: hidden;
}

.slider-list-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-pagination {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 28px;
    font-weight: 300;
    letter-spacing: 0.2px;
    font-size: 13px;
    align-items: center;
    color: var(--dark);
}

.custom-pagination .divider {
    color: var(--gray);
    width: 60px;
    height: 1px;
    background-color: var(--dark);
}

.images-slider {
    position: relative;
}

.images-slider .slick-prev,
.images-slider .slick-next,
.images-slider-hero .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 0;
    transform: translateY(-50%);
    z-index: 1111;
    width: 25px;
    height: 15px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.images-slider .slick-prev,
.images-slider-hero .slick-prev {
    left: 44px;
    transform: translateY(-50%) rotate(180deg);
    background: url('../img/svg/references-right.svg');
}

.images-slider .slick-next,
.images-slider-hero .slick-next {
    right: 44px;
    background: url('../img/svg/references-right.svg');
}


.images-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.images-slider .slick-dots li {
    list-style: none;
    margin: 0 10px;
}

.images-slider .slick-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background-color: #0B7138;
    border-radius: 50%;
}

.slider-bottom-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    padding-top: 2rem;
    border-top: 1px solid var(--red);
    margin-top: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--dark);
}

.slider-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.slider-right-content-title {
    display: inline-block;
    font-size: 16px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.35px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.slider-right-content-text {
    letter-spacing: 0.35px;
    color: var(--dark);
    font-weight: 300;
}

.slider-bottom-title h2,
.slider-bottom-title p {
    font-size: 22px;
    letter-spacing: 0.55px;
    margin-top: -29px;
    font-weight: 700;
    color: var(--dark);
}

.slider-right-content-left {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.6px;
    line-height: 15px;
    text-transform: uppercase;
    color: var(--dark);
}

.slider-right-content-right {
    font-size: 13px;
    letter-spacing: 0.2px;
    line-height: 22px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding-left: 30px;
}

.slider-right-content-right .red {
    color: var(--red);
}

.slider-right-content-right::before {
    content: ">";
    color: var(--red);
    font-size: 14px;
    font-weight: 300;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-block-with-text .slider-right-content {
    padding: 2rem 0;
    border-bottom: 1px solid var(--dark);
    margin-top: 2rem;
    border-top: 1px solid var(--red);
}


/*************************************************************/
/*************************************************************/
.hero-slider-block {
    position: relative;
    width: 100%;
    overflow-x: clip;
}

/* .hero-slider-block .custom-pagination {
    position: absolute;
    z-index: 4444;
    bottom: -30px;
    gap: 21px;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
} */
.hero-slider-block .custom-pagination {
    display: none;
    position: absolute;
    z-index: 4444;
    bottom: -30px;
    gap: 21px;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider-block .slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 9999;
    padding: 0 40px;
}


.hero-slider-block .slider-numbers {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-slider-block .slider-numbers span {
    font-size: 13px;
    color: #2B2E34;
    font-weight: 300;
}


.hero-slider-block img {
    border: none;
}

.hero-slider-block .hero_background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #a3c8f0, var(--blue));
    background-repeat: no-repeat;
    background-size: 100% 9px;
    background-position: bottom;
    pointer-events: none;
    z-index: 2;
}

.hero-slider-block .slider-numbers .divider {
    width: 40px;
    background: var(--blue);
    height: 0.5px;
}

.hero-slider-block .next-arrow {
    background-position: center;
    background-image: url(../img/white-arrow-right.svg);
    background-size: 27%;
    background-color: var(--blue);
    border-radius: 50%;
    background-repeat: no-repeat;
    width: 84px;
    height: 84px;
}

.hero-slider-block .prev-arrow {
    background-position: center;
    background-image: url(../img/white-arrow-right.svg);
    background-size: contain;
    background-size: 27%;
    background-color: var(--blue);
    background-repeat: no-repeat;
    border-radius: 50%;
    width: 84px;
    height: 84px;
    transform: rotate(180deg);

}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero-slider .slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero_background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-block .container {
    z-index: 9998;
    position: relative;
}

.hero-block-container {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin-top: 98px;
}

.hero-block-container.not-full-hero {
    aspect-ratio: auto;
    height: calc(100vh - 150px);
    min-height: 700px;
}

.hero_background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}


.hero-block {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    /* margin-top: 3rem; */
}

.hero-block .container {
    height: 100%;
}

.hero-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 18%;
    position: relative;
    height: 100%;
}

.hero-block-container.transparent {
    margin-top: 0;
}

.hero-inner {
    position: relative;
    height: 100%;
}

.hero-inner .link {
    position: absolute;
    right: 0;
    background-color: var(--white);
    left: 73%;
    white-space: nowrap;
    bottom: 40px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    pointer-events: none;
    align-items: flex-start;
    gap: 5px;
    padding-top: 110px;
    padding-bottom: 120px;
    position: absolute;
    top: 50px;
    right: 70px;
    z-index: 555;
}

.hero-block-container.not-full-hero .hero-title {
    top: auto;
    bottom: -55px;
    left: 50%;
    right: auto;
    height: auto;
    transform: translateX(-50%);
    padding: 0;
}

.hero-block-image .hero-title {
    top: 0;
    left: 80px;
}

.hero_background_mobile {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/13.5;
}

.hero-block--video .hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video.desktop-video {
    display: block;
}

.hero-video.mobile-video {
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.hero-title-inner {
    background-color: var(--white);
    padding: 43px 0;
    border-top: 10px solid var(--red);
    border-bottom: 10px solid var(--black);
    padding-left: 20px;
    padding-right: 45px;
}

.hero-title-wrapper {
    position: absolute;
    bottom: -250px;
    min-width: 335px;
    left: 0;
    overflow: hidden;
    height: 0;
    transition: height 0.9s ease;
}

.hero-title-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 366px;
    gap: 15px;
}

.hero-title-inner-bottom-title p {
    margin-bottom: 0;
}

.hero-title-inner-bottom-title p {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.4;
    letter-spacing: 0.35px;
}

.hero-title-inner-bottom-title p strong {
    font-weight: 900;
}

.hero-title-inner-title h1 .text-big {
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
}

.hero-title-inner-title h1 {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.55px;
    line-height: 39px;
}

/********************/
.partners-block .container-small{
    max-width: 740px;
}
.partners-inner {
    display: grid;
    row-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
}

.partners-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1.2px;
    line-height: 19px;
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
}

.partners-title::before {
    content: '>';
    font-size: 14px;
    color: var(--red);
    position: absolute;
    left: 0;
    top: -1px;

}

/******************/
.image-block-wrapper {
    aspect-ratio: 16/10.8;
}

.image-block-wrapper-slider {
    aspect-ratio: 16/10.8;
    padding-bottom: 6px;
    border-bottom: 10px solid var(--dark);
    position: relative;
}

.image-block-wrapper img,
.image-block-wrapper-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-block-inner {
    position: relative;
}

.image-block-content {
    position: absolute;
    top: 94px;
    left: 116px;
    background-color: var(--white);
    padding: 44px 28px 34px 28px;
    border-top: 10px solid var(--red);
    border-bottom: 10px solid var(--dark);
}

.image-block-top-text h2,
.image-block-top-text p {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.55px;
    line-height: 26px;
    line-height: 39px;
    color: var(--black);
}

.image-block-top-text h2 strong,
.image-block-top-text p strong {
    font-weight: 900;
}

.image-block-bottom-text {
    margin-top: 45px;
}

.image-block-bottom-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0.35px;
}

.image-block-bottom-text p strong {
    font-weight: 900;
}




/*********************/
.cards-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 42px;
}

.cards-item-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 20px;
}

.cards-item-header-title {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 19px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 700;
}

.cards-item-span {
    font-size: 13px;
    color: var(--dark);
    font-weight: 450;
    letter-spacing: 0.33px;
    line-height: 15px;
}

.cards-item-span .red {
    color: var(--red);
}

.cards-block-item {
    padding-bottom: 4px;
    border-bottom: 10px solid var(--dark);
}

/*******************************************************************************************************/
/***************************************** Accordion Block *********************************************/
.accordion-block {
    padding-bottom: 150px;
    background-color: var(--blue);
}

.accordion-block-inner {
    background-color: var(--white);
    border-bottom: 5px solid var(--dark);
    border-top: 5px solid var(--red);
    padding: 62px 90px 62px 148px;
}

.accordion {
    width: 100%;
    outline: none;
    transition: 0.4s;
    cursor: unset;
    gap: 1.5rem;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1.2px;
    color: var(--dark);
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
    margin-bottom: 9px;
}

.accordion-block-body-item {
    border-bottom: 1px solid var(--dark);
    padding-bottom: 25px;
    margin-bottom: 5px;
    padding-top: 34px;
    margin-top: 5px;
    cursor: pointer;
}

.accordion-block-body-item:first-child {
    margin-top: 0;
}

.accordion-block-body-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.accordion-block-body-item p {
    letter-spacing: 0.59px;
    line-height: 28px;
}

.accordion-block-body-item .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--dark);
}

.accordion-block-body-item .red {
    margin-right: 13px;
    color: var(--red);
}

.accordion-block-body-item .panel p {
    margin-top: 2rem;
}


/*******************************************************************************************************/
/***************************************** Form block **************************************************/
form {
    text-transform: uppercase;
}

.form-block {
    background-color: #E3EDF2;
    padding-bottom: 120px;
}

.form-head-two {
    margin-bottom: 57px;
    padding-top: 0 !important;
    row-gap: 0 !important;
}

.form-header-inner {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
}



.form-space-border {
    border-right: 1px solid #00000033;
}

.w-icon-wrapper {
    position: relative;
    padding: 0 2rem;
}

.w-icon-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: -16px;
    height: 77px;
    width: 1px;
    background-color: #00000033;
}

.form-header-title {
    color: var(--blue);
    font-size: 20px;
    padding-left: 2rem;
    letter-spacing: 1px;
}

.form-header-title strong {
    font-weight: 700;
}

.form-header-title strong span {
    color: var(--black);
}

.form-bottom-hr {
    height: 8px;
    background-color: var(--blue);
    margin: 0;
}

form>p {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

form .title-form {
    font-size: 21px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.wpcf7-form-control-wrap {
    z-index: 1;
}

.form-inputs-wrapper {
    background-color: var(--white);
    padding: 105px 116px 114px 150px;
    border-top: 5px solid var(--red);
    border-bottom: 5px solid var(--dark);
}

.form-block-inner {
    padding-top: 55px;
}

.form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
    row-gap: 30px;
    text-transform: uppercase;
    padding-top: 50px;
    padding-bottom: 4rem;
}

.form-block-btm {
    padding-top: 20px;
}

.form-block-btm .list-checbox {
    margin-bottom: 40px;
}

.form-inputs-sec {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 0;
}

.form-list-red>p {
    margin-bottom: 34px;
    letter-spacing: 0.7px;
    color: var(--black);
    font-size: 14px;
    font-weight: 450;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.input-block1 {
    grid-area: 1 / 6 / 1 / 1;
}

.input-block1-form2 {
    grid-area: 1 / 1 / 1 / 3;
}

.input-block2 {
    grid-area: 2 / 1 / 2 / 2;
}

.input-block2-form2 {
    grid-area: 2 / 1 / 2 / 3;
}

.input-block3 {
    grid-area: 2 / 2 / 2 / 6;
    margin-left: -60px;
}

.input-block3-form2 {
    grid-area: 2 / 3 / 2 / 6;
    margin-left: 0;
}

.input-block4 {
    grid-area: 3 / 1 / 3 / 3;
}

.input-block4-form2 {
    grid-area: 3 / 1 / 3 / 6;
}

.input-block5 {
    grid-area: 3 / 3 / 3 / 6;
}

.input-block5-form2 {
    grid-area: 4 / 1 / 4 / 4;
}

.input-block6 {
    grid-area: 4 / 1 / 4 / 3;
}

.input-block6-form2 {
    grid-area: 4 / 4 / 4 / 6;
}

.input-block7 {
    grid-area: 4 / 3 / 4 / 6;
}

.input-block7-form2 {
    grid-area: 5 / 1 / 5 / 2;
}

.input-block8 {
    grid-area: 5 / 1 / 5 / 6;
}

.input-block8-form2 {
    grid-area: 5 / 2 / 5 / 3;
}

.input-block9 {
    grid-area: 6 / 1 / 7 / 6;
}

.input-block9-form2 {
    grid-area: 5 / 3 / 5 / 6;
}

.input-block10-form2 {
    grid-area: 6 / 1 / 6 / 6;
}

.input-block11-form2 {
    grid-area: 7 / 3 / 7 / 6;
}

.input-block12-form2 {
    grid-area: 7 / 1 / 7 / 3;
}

.input-block13-form2 {
    grid-area: 8 / 1 / 8 / 6;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}

.form-inputs label {
    font-weight: 450;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 16px;
}

.form-inputs .input-block {
    display: flex;
    flex-direction: column;
}

.form-inputs-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    align-items: end;
    text-transform: uppercase;

}


.form-inputs .input-block p {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-inputs .input-block input,
.form-inputs-top .input-block input {
    width: 100%;
    border: 0.5px solid;
    padding: 16px 20px 14px 20px;
    border-radius: 0;
    border-color: #94AFBB;
    font-weight: 300;
    color: var(--dark);
    height: 48px;
}

.form-inputs .input-block textarea {
    width: 100%;
    border: 0.5px solid;
    padding: 16px 20px 16px 20px;
    border-radius: 0;
    border-color: #94AFBB;
    resize: none;
    color: var(--dark);
}

.form-inputs .wpcf7-not-valid-tip,
.list-checbox .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 0.5rem;
}

form:has(.kontakt-bewerbungs) .permission {
    margin-top: 2rem;
}

.form-list-title {
    font-style: oblique;
    position: relative;
    padding-right: 20px;
    font-size: 18px;
    cursor: pointer;
}

.form-list-title::after {
    content: '';
    background-image: url(./assets/img/bold-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 10px;
    height: 10px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 8px;
    transform: rotate(180deg);
    cursor: pointer;
    transition: all 0.3s;
}

.form-list-title.open::after {
    transform: rotate(0deg);
}

.form-list {
    display: none;

}

.kontakt-checkbox .wpcf7-form-control.wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr;
    column-gap: 40px;
    row-gap: 28px;
}


.kontakt-checkbox .wpcf7-form-control.wpcf7-checkbox span {
    color: var(--dark);
}

.form-btn {
    padding: 0;
    border: none;
    position: relative;
    font-weight: 900;
    letter-spacing: 0.7px;
    color: var(--red);
    text-transform: uppercase;
}

.form-btn:hover,
.form-btn:focus {
    background: transparent;
}

form .button-wrapper {
    padding: 16px 30px;
    border-color: #87AFBE;
    background-color: #C9D7DD;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    display: flex;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    height: 48px;
    max-width: 430px;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s ease-out;
}

form .button-wrapper::after {
    content: '>';
    font-size: 18px;
    position: relative;
    display: block;
    background-repeat: no-repeat;
    left: 12px;
    top: 0;
    font-weight: 500;
    color: var(--red);
    background-position: center;
    background-size: contain;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 0;
}

.sticker span {
    color: red;
}

.list-checbox input[type="checkbox"] {
    width: auto;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label,
.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.7px;
    font-weight: 450;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    color: var(--black);
}

.list-checbox.permission input[type="checkbox"]:checked+.wpcf7-list-item-label,
.list-checbox.permission input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label {
    font-weight: 500;
    color: #94AFBB;
    line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: none;

}

.permission input[type="checkbox"]:checked+.wpcf7-list-item-label,
.permission input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label {
    align-items: flex-start;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label::before,
.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label::before {
    content: "";
    width: 20px;
    aspect-ratio: 1/1;
    border: 1px solid #000;
    margin-bottom: 3px;
    flex: 0 0 20px;
}

form br {
    display: none;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label::after,
.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: #000;
    left: 0px;
    top: 0px;
    width: 20px;
    aspect-ratio: 1 / 1;
}

.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label::after {
    opacity: 0;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

.wpcf7-list-item {
    margin: 0;
    display: block;
}

.input-block .select2-container--default .select2-selection--single {
    border-radius: 0;
    border-color: #94AFBB;
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 18px;
    transform: rotate(90deg);
    transform-origin: center;
    height: fit-content;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #08447E !important;
    opacity: 0.5;
    text-transform: none;
    font-weight: 300;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    overflow: hidden;
    text-overflow: ellipsis;
}

textarea::placeholder {
    color: #08447E;
    font-size: 15px;
    opacity: 0.5;
}

.input-block .red {
    color: var(--red);
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: -30px;
    top: 13px;
    transform: rotate(90deg);
    transform-origin: center;
    height: fit-content;
}



.input-block .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(-90deg);
    top: 6px;
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.input-block2 .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    color: var(--red) !important;
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: '>';
    border-color: transparent;
    border-style: none;
    color: var(--red);
    font-size: 16px;
    font-weight: 700;
}

.list-checbox.permission .wpcf7-list-item .wpcf7-list-item-label {
    color: var(--black);
}

.input-block .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(0deg);
}

.input-block .select2-container .select2-selection--single {
    height: 100%;
}

.input-block .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    height: 46px;
    display: flex;
    font-weight: 700;
    align-items: center;
    line-height: 0.9;
    font-size: 14px;
    justify-content: center;
    text-transform: none;
}

.select2-results__option {
    padding-left: 20px;
}

.permission p {
    display: flex;
    flex-direction: column;
}

.permission small {
    padding-left: 33px;
    font-size: 16px;
    text-transform: none;
    font-weight: 450;
    margin-top: 10px;
    line-height: 1.6;
    letter-spacing: 0.21px;
}

.input-block8 {
    margin-bottom: 20px;
}

.input-block8 p {
    position: relative;
    pointer-events: all;
}

/***********************/
.materials-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.materials-item {
    position: relative;
}

.materials-item .two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    height: 100%;
}

.materials-content {
    background-color: var(--white);
    padding: 0 23px;
    display: flex;
    align-items: center;
    border-top: 5px solid var(--red);
    border-bottom: 5px solid var(--dark);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 115px;
    min-width: 257px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.materials-content p,
.materials-content h2 {
    font-size: 17px;
    color: var(--dark);
    letter-spacing: 0.42px;
    text-indent: 0;
    padding-left: 30px;
    font-weight: 700;
}

.materials-content p .title-big,
.materials-content h2 .title-big {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    display: block;
    color: var(--red);
}

.materials-content p::before,
.materials-content h2::before {
    top: 24px;
}


.materials-item:hover .materials-content {
    opacity: 1;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
.testimonials-block {
    background-color: #EEF6F8;
    margin: 90px 0;
}

.slick-track {
    display: flex;
    align-items: flex-start;
}

.slider-block-row {
    position: relative;
    padding: 87px 230px 90px 230px;
    overflow: hidden;
}

.slider-block-row .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 0;
    z-index: 10;
    transform: translateY(-50%);
    width: 22px;
    height: 21px;
}

.slider-block-row .slick-arrow.slick-prev {
    left: 0;
    background: url('../img/svg/arrow-btn-left.svg') 0 0 / 100% no-repeat;
    transform: translateY(-50%);
}

.slider-block-row .slick-arrow.slick-next {
    right: 0;
    background: url('../img/svg/arrow-btn-right.svg.svg') 0 0 / 100% no-repeat;
}

.slide-text {
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--black);
}

.slide-author {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.97px;
    color: var(--red);
    text-transform: uppercase;
    margin-top: 1rem;
}

.slider-block-row .slide {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.testimonial-line-before::before {
    content: "";
    width: 92%;
    height: 1px;
    background-color: var(--red);
    display: inline-block;
    top: 16px;
    position: absolute;
    right: 0;
}

.testimonial-line-after::after {
    content: "";
    width: 92%;
    height: 1px;
    background-color: var(--dark);
    display: inline-block;
    bottom: 16px;
    position: absolute;
    left: 0;
}

.slider-block-row .slide::before {
    content: "”";
    color: var(--red);
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-block-row .slide::after {
    content: "“";
    color: var(--dark);
    font-size: 40px;
    position: absolute;
    bottom: 0;
    height: 32px;
    right: 0;
}

/*******************************************************************************************************/
/***************************************** FOOTER ******************************************************/


.footer-wrapper {
    background-color: var(--white);
    padding-top: 110px;
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--black);
    padding-bottom: 136px;
    margin: 90px 0;
}

.footer-item-wr {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    column-gap: 25px;
    row-gap: 25px;
}

.footer_item_list-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.97px;
}

.footer-arrow {
    font-size: 11px;
    color: var(--red);
}

.footer {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    column-gap: 25px;
    row-gap: 25px;

}

.footer_item>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_item p {
    line-height: 27px;
}

.footer p,
.footer a {
    color: var(--dark);
    font-size: 13px;
    font-weight: 450;
}

.footer .red {
    color: var(--red);
}

.footer #menu-linkes-menu-footer li a {
    color: #9A9B9F;
    font-weight: 500;
    letter-spacing: 2px;
}

.footer_item_logo img {
    max-width: 123px;
    width: 100%;
    height: auto;
}

.footer_item_logo>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_item_list {
    display: flex;
    gap: 33px;
    flex-direction: column;
}

.footer-icon {
    margin-top: 47px;
    display: inline-block;
    font-weight: 300 !important;
}

.footer-linkedin {
    width: 15px;
    height: 15px;
}

.footer_item_list>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

#menu-footer-menu li a {
    color: var(--red);
    letter-spacing: 0.2px;
}

.footer_item_wrapper-big,
.footer_item_wrapper-big span {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 1.04px;
    line-height: 23px;
}

.footer_item_wrapper-big-wrapper {
    margin-bottom: 23px;
}

.footer-item-list-big,
.footer-item-list-big a {
    font-size: 13px;
    letter-spacing: 0.97px;
    font-weight: 900;
    line-height: 1.5;
}

.footer-item-list-big span {
    font-weight: 400;
}

.footer-item-bottom-list span,
.footer-adress-list a {
    font-weight: 300;
}

.footer-social-list-title {
    display: flex;
    font-size: 13px;
    letter-spacing: 0.33px;
    line-height: 15px;
    gap: 9px;
    align-items: baseline;
}

.footer-social-list-title .red {
    font-size: 11px;
    font-weight: 300;
}

.footer-social-list-title>span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.33px;
}

.footer-social-list {
    display: flex;
    margin-top: 25px;
    align-items: center;
    gap: 15px;
}

.text-block:has(+ .jobs-block) {
    padding-bottom: 30px;
}
.text-block:has(+ .slider-block-with-text) {
    padding-bottom: 0;
}
.text-block:has(+ .slider-block-with-text) .text-block-inner-title,.text-block:has(+ .slider-block-with-text) .text-block-inner-title p {
    margin-bottom: 0; 
}

.footer-social-list>p {
    margin-bottom: 0;
}

.footer_item_icons img {
    width: 20px;
    height: 18px;
    object-fit: contain;
}

.footer_item_icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

section[id],
div[id] {
    scroll-margin-top: 200px;
}
section.slider-block[id]{
    scroll-margin-top: 10px;
}
/********************/
.contact-details-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 43px;
}

.contact-details-item {
    padding: 27px 0;
    border-bottom: 8px solid var(--black);
    border-top: 8px solid var(--red);
}

.contact-left-name p {
    font-size: 22px;
    line-height: 26px;
    margin: 0;
    letter-spacing: 0.55px;
    color: var(--black);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-details-item {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: baseline;
}

.contact-right {
    text-align: right;
}

.contact-right .red {
    font-size: 16px;
    color: var(--red);
    font-weight: 700;
}

.contact-right a {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: 300;
    letter-spacing: 0.4px;
    color: var(--dark);
}

.contact-left-position {
    font-size: 16px;
    color: var(--dark);
    position: relative;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding-left: 20px;
}

.contact-left-position::before {
    content: '>';
    color: var(--red);
    position: absolute;
    top: 0;
    font-size: 16px;
    left: 0;
}

.contact-left-bottom_text {
    font-size: 14px;
    color: var(--red);
    padding-left: 20px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/*******************/
.jobs-block {
    background-color: var(--blue);
}

.jobs-block .text-block-inner-title {
    margin-bottom: 90px;
}

.job-title-wrapper {
    padding: 26px 40px 34px 63px;
    display: inline-block;
}

.job-title-wrapper h2 {
    font-size: 14px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.jobs-title-span {
    font-size: 14px;
    color: var(--dark);
    letter-spacing: 1.05px;
    text-transform: none;
    font-weight: 900;
}

.jobs-block-inner {
    background-color: var(--white);
    border-bottom: 10px solid var(--dark);
    padding: 88px 84px 88px 150px;
}

.jobs-block-bottom-text_email {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.7px;
    margin-top: 40px;
    color: var(--dark);
}

.jobs-block-bottom-text_email a {
    font-size: 14px;
    font-weight: 450;
    color: var(--dark);
}

.jobs-block-bottom-tel {
    font-size: 14px;
    font-weight: 450;
    color: var(--red);
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.jobs-block-tel .red {
    font-weight: 500;
    color: var(--red);
}

.jobs-block-bottom-tel .jobs-block-name {
    color: var(--dark);
    font-weight: 900;
}

.jobs-block-bottom-tel .jobs-block-name .red {
    color: var(--red);
}

.jobs-block-email,
.jobs-block-name {
    position: relative;
    padding-left: 20px;
}

.jobs-block-email::before,
.jobs-block-name::before {
    content: ">";
    color: var(--red);
    font-size: 12px;
    font-weight: 450;
    position: absolute;
    top: -1px;
    left: 5px;
}

@media (max-width: 1270px) {
    .statistics-counter {
        gap: 30px;
    }

    .form-inputs-wrapper {
        padding: 40px;
    }

    .slider-block-row {
        padding: 80px;
    }
}

@media (max-width: 1024px) {

    .navigation_items_row {
        grid-template-columns: repeat(2, 1fr);
    }

    .header .header_brand .logo-sm,
    .navigation .header_brand .logo-sm {
        display: block;
    }

    .header .header_brand .logo-lg,
    .navigation .header_brand .logo-lg {
        display: none;
    }

    .statistics-counter {
        gap: 25px;
    }

    .definitions-block-inner {
        padding-left: 80px;
        padding-right: 80px;
    }

    .hero-title {
        padding-top: 50px;
    }

    .accordion-block-inner {
        padding: 70px 50px;
    }

    .slider-bottom-inner {
        gap: 45px;
    }

    .jobs-block-inner {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .slider-block-row {
        padding: 0 80px;
    }

    .hero-title {
        padding-top: 25px;
    }

    .hero-title-inner {
        padding: 20px 0;
        padding-left: 20px;
        padding-right: 45px;
    }

    .hero-title-inner-title {
        margin-bottom: 40px;
    }

    .statistics-counter {
        flex-direction: column;
        gap: 2rem;
    }

    .navigation .header_menu_burger {
        margin-right: 5px;
    }

    .navigation_btns a {
        width: 50%;
    }


    .navigation-links-block-inner {
        flex-direction: column;
    }

    .footer {
        grid-template-columns: 100%;
    }

    .image-block-content {
        top: 50px;
        left: 50px;
    }

    .cards-block-inner {
        gap: 40px 20px;
    }

    .contact-right {
        text-align: left;
    }

    .contact-details-item {
        grid-template-columns: 100%;
    }

    .contact-details-inner {
        gap: 20px;
    }

}

@media (max-width: 768px) {
    .contact-details-item {
        grid-template-columns: 1fr 1fr;
    }

    .contact-details-inner {
        grid-template-columns: 100%;
    }

    .hero-title-inner {
        min-height: auto;
    }

    .cards-block-inner {
        grid-template-columns: 100%;
    }

    .image-block-content {
        padding: 20px;
        position: unset;
        margin-top: 2rem;
    }

    .image-block-top-text br {
        display: none;
    }

    .arrow_element-li.menu-item {
        margin-top: 1rem;
    }

    .footer-item-wr {
        grid-template-columns: 100%;
    }

    .header .header_nav .header_nav_links {
        display: none;
    }

    .navigation_item h4,
    .navigation_item .last {
        margin: 1rem 0 0.7rem 0 !important;
    }

    .navigation-body {
        height: auto;
        min-height: calc(100vh - 68px);
    }

    .navigation_btns {
        margin-top: 50px;
        gap: 20px;
    }

    .navigation_btns li {
        width: 100%;
    }

    .navigation_items_row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .navigation_btns a {
        width: 100%;
    }

    .navlink-arrow h4 a::after,
    .navlink-arrow>a::after {
        content: none;
    }

    .navigation_btns a {
        justify-content: center;
    }

    .main-menu-toggle {
        position: relative;
    }

    .main-menu-toggle::after {
        content: '+';
        color: var(--black);
        font-size: 2rem;
        font-weight: 100;
        background-image: none;
        display: block;
        position: absolute;
        top: -23px;
        right: 0px;
        transform: translateY(-55%);
    }

    .main-menu-toggle.active::after {
        content: '-';
        color: var(--black);
        font-size: 3rem;
        font-weight: 500;
        background-image: none;
        display: block;
        position: absolute;
        top: -23px;
        right: 0px;
        transform: translateY(-55%);
    }

    .text-block-inner-title p .text-big,
    .text-block-inner-title h2 .text-big {
        font-size: 23px;
    }

    .text-block-inner-title p::before {
        top: 25px;
    }

    .hero_background {
        position: unset;
    }

    .hero-block-container {
        aspect-ratio: 1/1;
        height: auto;
        margin-top: 87px;
    }

    .hero-block {
        height: auto;
    }

    .header .header_brand,
    .navigation .header_brand {
        width: 55px;
    }

    .hero-block .container {
        height: auto;
    }

    .hero-inner {
        position: unset;
    }

    .hero-title {
        position: unset;
        padding-bottom: 0;
        padding-top: 30px;
    }

    .hero_background img {
        position: unset;
        aspect-ratio: 1/1;
    }

    .image-block-wrapper {
        aspect-ratio: 1/1;
    }

    .image-block-top-text strong span {
        font-size: 23px !important;
    }

    section {
        padding: 45px 0;
    }

    section.contact-details-block {
        padding: 0 0 45px 0;
    }

    .testimonials-block {
        margin: 45px 0;
    }

    .hero-title-wrapper {
        position: unset;
        min-width: auto;
        height: auto;
    }

    .hero-title-inner-title h1 br {
        display: none;
    }

    .kontakt-checkbox .wpcf7-form-control.wpcf7-checkbox {
        grid-template-columns: 100%;
    }

    .form-inputs-sec {
        display: flex;
        flex-direction: column;
    }

    .footer-wrapper {
        padding: 50px 0;
        margin: 45px 0;
    }

    .slider-bottom-title h2,
    .slider-bottom-title p {
        margin-top: 20px;
    }

    .slider-bottom-inner {
        grid-template-columns: 100%;
        gap: 35px;
    }

    .materials-content.visible {
        opacity: 1;
    }

    .job-title-wrapper {
        padding: 20px;
    }

    .materials-content p .title-big,
    .materials-content h2 .title-big {
        font-size: 20px;
    }

    .materials-content {
        min-width: 230px;
    }

    .desktop-video {
        display: block;
    }

    .has-mobile-video .desktop-video {
        display: none;
    }

    .has-mobile-video .mobile-video {
        display: block;
    }
}

@media (min-width: 767px) {
    .navigation-body .navigation_content {
        height: auto;
        min-height: 100%;
        justify-content: flex-start;
        padding: 48px 0;
    }

}

@media (max-width: 650px) {
    header {
        padding: 12px 0 12px 0;
    }
}

@media (max-width: 576px) {
    br.mobile-only{
        display:block;
    }
    .slider-block-row .slick-arrow.slick-prev{
        left: 50%;
        transform: translate(-200%, -55%);
        background-position: center;
    }
    .slider-block-row .slick-arrow.slick-next{
        transform: translate(200%, -50%);
        right: 50%;
        background-position: center;
    }
    p, li {
        font-size: 14px;
        line-height: 1.8;
    }
    .text-block-inner-subtitle p {
        font-size: 17px;
    }
    .partners-title {
        font-size: 14px;
    }
    .footer_item_icons {
        gap: 25px;
    }
    .footer_item_logo img {
        max-width: 100px;
    }

    .navigation-links-block-link {
        width: 100%;
    }

    .definitions-block-inner {
        padding: 40px 20px;
    }

    .accordion-block-inner {
        padding: 40px;
    }

    .form-inputs-wrapper {
        padding: 40px 25px;
    }

    .slider-block-row .slick-arrow {
        top: auto;
        bottom: 32px;
    }

    .slider-block-row {
        padding: 0px;
        padding-bottom: 80px;
    }

    .hero-block-container {
        margin-top: 97px;
    }

    .materials-inner,
    .contact-details-item {
        grid-template-columns: 100%;
    }

    .jobs-block-inner {
        padding: 25px;
    }

    .materials-content p .title-big,
    .materials-content h2 .title-big {
        font-size: 19px;
    }

    .materials-content {
        min-width: 257px;
    }
}


@media (max-width: 499px) {
    .text-block-inner-title h2 .text-small, .text-block-inner-title p .text-small {
        font-size: 20px;
    }
    .text-block-inner-title p .text-big, .text-block-inner-title h2 .text-big {
        font-size: 20px;
    }
    .accordion-block-inner {
        padding: 30px 20px;
    }

    .header {
        padding: 5px 0;
    }

    .navigation .header_menu_burger {
        margin-right: 0px;
    }

    .main-menu-toggle::after {
        right: 0;
    }

    .partners-inner {
        /*grid-template-columns: 100%;*/
        column-gap:1.5rem;
    }

}

@media only screen and (max-width: 490px) and (max-height: 885px) {
    .navigation.active {
        display: block;
    }
}