body {
    position: relative;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 24px;
    background-color: #ffffff;
    font-family: 'Montserrat-Regular';
    color: rgb(30, 30, 30);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 80px;
    font-weight: 500;
    line-height: 90px;
    letter-spacing: 2.2px;
    font-family: 'Oswald-Regular';
}

h2 {
    color: rgb(55, 76, 97);
    font-family: 'Oswald-Regular';
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 18px;
}

h3 {
    color: rgb(163, 137, 112);
    font-family: 'Oswald-Regular';
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    margin-top: 42px;
    margin-bottom: 19px;
}

h4 {
    color: rgb(30, 30, 30);
    font-family: 'Oswald-Regular';
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 40px;
}

p {
    color: rgb(30, 30, 30);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

input[type="text"],
input[type="tel"] {
    box-sizing: border-box;
    border: 1px solid rgb(111, 128, 146);
    border-radius: 20px;
    background: rgb(255, 255, 255);
    color: rgb(30, 30, 30);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    padding-top: 19px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 19px;
    transition: 0.6s;
}

input[type="text"]:hover,
input[type="tel"]:hover {
    border: 1px solid #000000;
}

input[type="submit"] {
    width: 100%;
    padding-top: 17px;
    padding-bottom: 19px;
    border-radius: 20px;
    background: rgb(163, 137, 112);
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.6px;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.6s;
}

input[type="submit"]:hover {
    background: rgb(255, 255, 255);
    color: rgb(163, 137, 112);
}

a {
    transition: 0.6s;
}

strong {
    font-weight: 500;
    font-family: 'Montserrat-SemiBold';
}

.container_full {
	width: 100%;
}

.container {
    width: 100%;
    max-width: 1420px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
    flex: 1;
}

.header_full {
    position: absolute;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(241, 236, 230, 0.2);
    padding-top: 18px;
    padding-bottom: 15px;
    height: 82px;
    box-sizing: border-box;
}

.header_full.header_nobackground {
    position: relative;
    background-color: rgb(55, 76, 97);
}

.header_full .header_blocks {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.header_full.header_fixed {
    position: fixed;
    background-color: rgb(55, 76, 97);
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
}

.title.title_nobackground {
    position: relative;
}

.title.title_nobackground h1 {
    color: rgb(55, 76, 97);
    margin-bottom: 40px;
}

header {

}

header .container {

}

.logo {
    width: 100%;
    max-width: 164px;
    margin-top: 3px;
}

.logo img {

}

.main-menu {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 607px;
    padding-top: 12px;
}

.main-menu li {
    margin-right: 40px;
}

.main-menu a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 24px;
    font-family: 'Montserrat-Medium';
}

.main-menu .has-submenu {
    position: relative;
    margin-right: 70px;
}

.main-menu li:last-child {
	margin-right: 0px;
}

.submenu-toggle, .has-submenu:after {
    display: block;
    content: '';
    position: absolute;
    width: 19px;
    height: 20px;
    background-image: url('../img/arrow_menu.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 3px;
    right: -30px;
}

.submenu-toggle {
    display: none;
}

.submenu {
    position: absolute;
    opacity: 0;
    width: 100%;
    padding-top: 15px;
    transition: opacity 0.5s;
    top: 15px;
}

.has-submenu:hover .submenu {
    top: 15px;
    opacity: 1;
    transition: top 1s;
    transition: opacity 0.5s;
}

.submenu li {
    margin-right: 0px;
    margin-bottom: 0px;
    background-color: #374c61;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    width: 210px;
    box-sizing: border-box;
}

.submenu li:nth-child(2n) {
    padding-top: 0px;
}

.submenu li:last-child {
    margin-bottom: 0px;
}

.submenu a {

}

.social-icons {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 130px;
    padding-top: 4px;
}

.social-icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    border-radius: 12px;
    background: rgb(111, 128, 146);
	margin-right: 10px;
}

.social-icon img {
	display: block;
	margin: auto;
}

.social-icon.telegram {

}

.social-icon.vk {
    display: none;
}

.social-icon.whatsapp {
    display: none;
}

.social-icon.phone {
	margin-left: 30px;
	margin-right: 0px;
	background: rgb(163, 137, 112);
}

.social-icon:hover,
.social-icon.phone:hover {
    background: rgb(76 89 102);
}

header .home_slider {

}

header .home_slider .arrows {
	position: relative;
}

.arrow_next, .arrow_prev {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 41px;
    z-index: 999;
    top: 681px;
    right: 72px;
}

.arrow_next.swiper-button-disabled, .arrow_prev.swiper-button-disabled {
    background-image: url('../img/arrow_slider.svg');
}

.arrow_next {
    transform: rotate(180deg) translate(0px, 0px);
}

.arrow_next, .arrow_prev {
    background-image: url('../img/arrow_slider_active.svg');
}

.arrow_prev.swiper-button-disabled {
    transform: rotate(0);
}

.arrow_next {
    right: 0px;
}

header .swiper-wrapper {

}

header .swiper-slide {

}

header .slide-content {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 190px;
    padding-bottom: 60px;
}

header .slide-content .container {

}

header .slide-content .title {
    width: 100%;
    max-width: 800px;
}

header .slide-content .title p, .image_header .title p {
    color: rgb(255, 255, 255);
    font-size: 80px;
    font-weight: 500;
    line-height: 90px;
    letter-spacing: 2.2px;
    font-family: 'Oswald-Regular';
}

header .slide-content .text {
    margin-top: 41px;
}

header .slide-content .text ul {

}

header .slide-content .text ul li {
    position: relative;
    color: rgb(249, 249, 249);
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    padding-left: 29px;
    margin-bottom: 19px;
    letter-spacing: 0.23px;
}

header .slide-content .text ul li:before {
    display: block;
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 100%;
    left: 8px;
    top: 19px;
}

header .slide-content .btn {
    display: block;
    margin-top: 22px;
    width: 100%;
    max-width: max-content;
    border-radius: 20px;
    background: rgb(163, 137, 112);
    padding: 17px 140px 17px 140px;
    color: rgb(255, 255, 255);
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.6s;
}

header .slide-content .btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(163, 137, 112);
}

/* Swiper Pagination & Navigation */
header .swiper-pagination {

}

header .swiper-button-prev {

}

header .swiper-button-next {

}

.blocks_home {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin-top: 76px;
}

.blocks_home .company {
    width: 100%;
    max-width: 46%;
}

.blocks_home .company h2 {
    color: rgb(163, 137, 112);
    font-size: 40px;
    font-family: 'Oswald-Regular';
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 20px;
}

.blocks_home .company p {
    color: rgb(30, 30, 30);
    font-size: 24px;
    line-height: 40px;
    text-align: left;
}

.blocks_home .company p strong {
    color: rgb(55, 76, 97);
    font-weight: 700;
    font-family: 'Montserrat-Bold';
    margin-top: 18px;
    display: block;
}

.blocks_home .company ul {
    margin-top: 10px;
}

.blocks_home .company li {
    position: relative;
    color: rgb(30, 30, 30);
    font-size: 24px;
    line-height: 40px;
    font-family: 'Montserrat-SemiBold';
    padding-left: 34px;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.blocks_home .company li:before {
    display: block;
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../img/ellipse.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0px;
    top: 13px;
}

.blocks_home .info {
    width: 100%;
    max-width: 49.33333%;
    padding: 30px;
    border-radius: 20px;
    background: rgba(55, 76, 97, 0.7);
    box-sizing: border-box;
}

.blocks_home .info h3 {
    font-family: 'Oswald-Regular';
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.blocks_home .info h3 span {
    color: rgb(55, 76, 97);
}

.blocks_home .info ul {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.blocks_home .info li {
    width: 100%;
    max-width: 32%;
    margin-top: 28px;
}

.blocks_home .info .info-number {
    display: block;
    color: rgb(206, 202, 199);
    font-family: 'Oswald-Regular';
    font-size: 60px;
    font-weight: 500;
    line-height: 89px;
    text-align: center;
    margin-bottom: 13px;
}

.blocks_home .info .info-text {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    font-family: 'Montserrat-SemiBold';
}

.image_header {
    padding-top: 212px;
    padding-bottom: 106px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image_header.header_page_big {
    padding-top: 313px;
    padding-bottom: 101px;
}

.image_header.header_page_big .text_1 {
    margin-top: 38px;
    width: 100%;
    max-width: 730px;
}

.image_header.header_page_big .text_1 p {
    color: rgb(249, 249, 249);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.3px;
}

.image_header.image_color {
    background-color: #444444;
    padding-top: 106px;
}

.image_header .container {

}

.image_header .title {

}

.image_header .title p {

}

.image_header .text {
    width: 100%;
    max-width: 1085px;
    margin-top: 40px;
}

.image_header .text p {
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 30px;
    font-family: 'Montserrat-SemiBold';
}

.image_header .text_1 {
    margin-top: 40px;
}

.image_header .text_1 p {
    color: rgb(206, 202, 199);
    font-size: 20px;
    line-height: 24px;
}

.image_header .text_1 p span {
    color: rgb(255 255 255);
}

.image_header .text_1.text_1_service p {
    font-family: 'Oswald-Regular';
    font-size: 30px;
    line-height: 30px;
}

.image_header .text_1.text_1_service p span {
    font-family: 'Oswald-Regular';
    font-size: 40px;
    line-height: 40px;
}

.breadcrumbs {
    margin-top: 22px;
    margin-bottom: 40px;
}

.breadcrumbs .container {

}

.breadcrumbs #breadcrumb {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
}

.breadcrumbs #breadcrumb li {
    color: rgb(206, 202, 199);
}

.breadcrumbs #breadcrumb li, .breadcrumbs #breadcrumb a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.breadcrumbs #breadcrumb li:after {
    content: '|';
    margin-right: 10px;
    margin-left: 10px;
}

.breadcrumbs #breadcrumb li:last-child:after {
    display: none;
}

.breadcrumbs #breadcrumb a {
    color: rgb(55, 76, 97);
}

.content p {
    margin-bottom: 10px;
}

.blocks_cases {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.blocks_cases .content {
    width: 100%;
    max-width: 49%;
}

.blocks_cases .content .services_provided {
    margin-top: 40px;
}

.services_provided.mobile_case {
    display: none;
}

.services_provided p {
    color: rgb(163, 137, 112);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.services_provided ul {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
}

.services_provided ul li {
    margin-right: 10px;
    margin-bottom: 20px;
}

.services_provided ul li a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    border-radius: 12px;
    background: rgb(111, 128, 146);
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 8px;
}

.services_provided ul li a:after {
    display: none!important;
}

.services_provided ul li:last-child {
    margin-right: 0px;
}

.blocks_cases .content.no-image {
    max-width: 100%;
}

.blocks_cases .image {
    width: 100%;
    max-width: 49.22222%;
}

.blocks_cases .image.mobile_case {
    display: none;
}

.blocks_cases .image .image_block {
    position: relative;
}

.blocks_cases .image img {
    border-radius: 40px;
}

.blocks_cases .text-image {
    position: absolute;
    border-radius: 40px;
    background: rgb(241, 236, 230);
    top: 76%;
    width: 100%;
    max-width: 88%;
    margin: auto;
    left: 0px;
    right: 0px;
    padding: 40px;
    box-sizing: border-box;
}

.blocks_cases .text-image-1 {
    color: rgb(163, 137, 112);
    font-family: 'Oswald-Regular';
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
}

.blocks_cases .text-image-2 {
    color: rgb(55, 76, 97);
    font-family: 'Montserrat-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 8px;
}

.other_cases {
    margin-top: 140px;
    padding-top: 68px;
    padding-bottom: 58px;
    background: rgb(249, 249, 249);
}

.other_cases .container {
    position: relative;
}

.other_cases h2 {

}

.other_cases .other-cases-swiper {

}

.other_cases .swiper-wrapper {

}

.other_cases .swiper-slide {

}

.other_cases .case-preview {
    display: flex;
    flex-flow: column;
    justify-content: end;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 30px;
    box-sizing: border-box;
    min-height: 721px;
    height: 100%;
    align-items: flex-end;
}

.other_cases .case-preview .detail_button {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    font-family: 'Montserrat-SemiBold';
    transition: 0.6s;
    display: block;
    width: 100%;
}

.other_cases .case-preview .detail_button:hover {
    color: rgb(111 128 146);
}

.other_cases .case-preview .detail_button:after {
    display: block;
    position: absolute;
    content: '';
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/arrow_min_white.svg');
    border-radius: 20px;
    top: 0px;
    left: 200px;
}

.other_cases .case-title {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    font-family: 'Oswald-Regular';
    margin-bottom: 18px;
    min-height: 88px;
    width: 100%;
}

.other_cases .services_provided {
    min-height: 121px;
    margin-bottom: 9px;
    width: 100%;
}

.other_cases .text-services-provided {

}

.other_cases .text-services-provided p {
    color: rgb(206, 202, 199);
    margin-bottom: 10px;
}

.other_cases .services-list {

}

.other_cases .services-list ul {

}

.other_cases .services-list li {

}

.other_cases .arrow_next, 
.other_cases .arrow_prev,
.cases_slider .arrow_next,
.cases_slider .arrow_prev,
.other_services .arrow_next, 
.other_services .arrow_prev
 {
    top: 14px;
    border-radius: 20px;
    background-color: rgb(111, 128, 146);
}

.other_cases .arrow_next,
.other_services .arrow_next {
    right: 24px;
}

.other_cases .arrow_prev, 
.other_services .arrow_prev {
    right: 99px;
}

.other_cases .arrow_next.swiper-button-disabled, 
.other_cases .arrow_prev.swiper-button-disabled,
.cases_slider .arrow_prev, 
.other_services .arrow_next.swiper-button-disabled, 
.other_services .arrow_prev.swiper-button-disabled {
    background-image: url(../img/arrow_slider_active.svg);
    background-color: rgb(255, 255, 255);
}

.other_cases .arrow_next, 
.other_cases .arrow_prev,
.other_services .arrow_next, 
.other_services .arrow_prev {
    background-image: url(../img/arrow_slider.svg);
}

.cases_slider .arrow_prev {
    background-image: url(../img/arrow_case_left.svg);
}

.cases_slider .arrow_next {
    background-image: url(../img/arrow_case_right.svg);
    transform: unset;
}

.services_cases_list {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.services_cases_list .block {
    width: 100%;
    max-width: 30%;
    margin-bottom: 20px;
}

.services_cases_list .block_full {
    display: block;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 30px;
    box-sizing: border-box;
    min-height: 430px;
}

.services_cases_list .title {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    font-family: 'Oswald-Regular';
    margin-bottom: 18px;
    min-height: 88px;
}

.services_cases_list .services_provided {

}

.services_cases_list .text-services-provided {
    margin-top: 30px;
    margin-bottom: 10px;
}

.services_cases_list .text-services-provided p {

}

.services_cases_list .services-list {
    min-height: 138px;
}

.services_cases_list .services-list ul {

}

.services_cases_list .services-list li {

}

.services_cases_list span, .services_cases_list span a {
    display: block;
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    font-family: 'Montserrat-SemiBold';
    margin-top: 60px;
}

.contacts_page {

}

.contacts_page .blocks {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.contacts_page .block_info {
    width: 100%;
    max-width: 444px;
}

.contacts_page .block_info .block {
    border-radius: 40px;
    background: rgb(249, 249, 249);
    padding: 30px 40px 30px 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.contacts_page .block_info .block.address {
    position: relative;
}

.title.title_nobackground:before {
    display: block;
    position: absolute;
    content: '';
    width: 389px;
    height: 389px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: -196px;
    top: 88px;
    background-image: url('../img/contacts_background_1.svg');
    z-index: -1;
}

.title.title_nobackground:before {
    top: 280px;
}

.content_page {
    position: relative;
    min-height: 800px;
    overflow-y: hidden;
    overflow-x: visible;
    margin-bottom: -97px;
    padding-bottom: 97px;
}

.content_page p {
    margin-bottom: 20px;
}

.content_page table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-collapse: collapse; 
}

.content_page table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}

.content_page table td {
    border: 1px solid #dddddd;
    padding: 5px;
}

.contacts_page .block_info .block.address .title:after {
    background-image: url('../img/address.svg');
    background-size: 30px;
}

.contacts_page .block_info .block .title {
    position: relative;
    color: rgb(111, 128, 146);
    font-family: 'Oswald-Regular';
    font-size: 30px;
    font-weight: 400;
    line-height: 26px;
    padding-top: 17px;
    padding-bottom: 17px;
    margin-bottom: 22px;
}

.contacts_page .block_info .block .title:after,
.blocks_services .content .text_3:after,
.blocks_services .content .text_5:after {
    display: block;
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background-color: rgb(55, 76, 97);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    right: 0px;
    top: -2px;
}

.contacts_page .block_info .block .info {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 18px;
}

.contacts_page .block_info .block .phone a,
.contacts_page .block_info .block .mail a {
    color: rgb(55, 76, 97);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Montserrat-SemiBold';
}

.contacts_page .block_info .block .phone {
    margin-bottom: 24px;
}

.contacts_page .block_info .block .mail {
    padding-left: 5px;
}

.contacts_page .block_info .block.details {

}

.contacts_page .block_info .block.details .title:after {
    background-image: url('../img/details.svg');
    background-size: 30px;
}

.contacts_page .map {
    width: 100%;
    max-width: 908px;
}

.contacts_page .map .map_block {
    width: 100%;
    height: 734px;
    border-radius: 40px;
    overflow: hidden;
}

.company_page {

}

.company_page .text {
    width: 100%;
    max-width: 674px;
    margin-left: auto;
    color: rgb(30, 30, 30);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-top: -31px;
    box-sizing: border-box;
    margin-bottom: 11px;
}

.company_page .blocks {
}

.company_page .blocks li {
    width: 100%;
}

.company_page .blocks .block {
    position: relative;
    border-radius: 40px;
    background: rgb(249 249 249);
    /*backdrop-filter: blur(2px);*/
    width: 100%;
    max-width: 564px;
    padding-top: 20px;
    padding-left: 62px;
    padding-right: 30px;
    padding-bottom: 20px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.company_page .blocks .block:after {
    display: block;
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    border: 14px solid rgb(235 236 238);
    background: rgb(55, 76, 97);
    right: -33px;
    top: 15px;
    box-sizing: border-box;
    border-radius: 100%;
    transition: 0.6s;
}

.company_page .blocks .block:before {
    display: block;
    position: absolute;
    content: '';
    width: 283.5px;
    height: 3px;
    border-bottom: 3px dashed rgb(206, 202, 199);
    border-radius: 8px;
    right: -255px;
    top: 89px;
    transform: rotate(24deg);
}

.company_page .blocks .block:hover:after {
    background: rgb(163 137 112);
}

.company_page ul li:nth-child(2n) .block {
    margin-left: auto;
}

.company_page ul li:nth-child(2n) .block:after {
    left: -33px;
}

.company_page ul li:nth-child(2n) .block:before {
    left: -253px;
    transform: rotate(-25deg);
}

.company_page ul li:last-child .block:before {
    display: none;
}

.company_page ul li:nth-child(12) .block:before {
    top: 94px;
    transform: rotate(-24deg);
}

.company_page ul li:nth-child(13) .block:before {
    right: -258px;
    top: 100px;
    transform: rotate(25deg);
}

.company_page ul li:nth-child(3) .block:before {
    top: 90px;
    transform: rotate(24deg);
}

.company_page ul li:nth-child(4) .block:before {
    left: -261px;
    top: 94px;
    transform: rotate(-24deg);
}

.company_page ul li:nth-child(4) .block:after,
.company_page ul li:nth-child(13) .block:after {
    top: 18px;
}
.company_page ul li:nth-child(14) .block:after {
    top: 34px;
}

.company_page .blocks .block .title {
    color: rgb(163, 137, 112);
    font-size: 40px;
    font-weight: 500;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Oswald-Regular';
    margin-right: 0px;
    width: 100%;
    max-width: 21%;
}

.company_page .blocks .block .text_info {
    color: rgb(55, 76, 97);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    width: 100%;
    max-width: 79%;
}

.blocks_services {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.blocks_services .content {
    width: 100%;
    max-width: 908px;
}

.blocks_services .form {
    width: 100%;
    max-width: 444px;
}

.blocks_services .content ul {
    margin-bottom: 42px;
}

.blocks_services .content ul li {
    position: relative;
    color: rgb(30, 30, 30);
    font-size: 24px;
    line-height: 40px;
    padding-left: 35px;
    font-family: 'Montserrat-SemiBold';
    margin-bottom: 10px;
}

.blocks_services .content ul li:before {
    display: block;
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border: 4px solid rgb(111, 128, 146);
    background-color: rgb(55, 76, 97);
    left: 0px;
    top: 13px;
    border-radius: 100%;
}

.blocks_services .content .text_3 {
    position: relative;
    color: rgb(55, 76, 97);
    font-family: 'Oswald-Regular';
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 19px;
}

.blocks_services .content .text_3:after {
    background-image: url('../img/light.svg');
    background-size: 34px;
}

.blocks_services .content .text_4 {
    margin-bottom: 41px;
}

.blocks_services .content .text_4 p {
    margin-bottom: 0px;
}

.blocks_services .content .text_5 {
    position: relative;
    color: rgb(255, 255, 255);
    font-family: 'Oswald-Regular';
    font-size: 80px;
    font-weight: 400;
    line-height: 90px;
    margin-bottom: 19px;
}

.blocks_services .content .text_5:after {
    background-image: url('../img/target.svg');
    background-color: rgb(111, 128, 146);
    right: -19px;
    top: -21px;
    background-size: 34px;
}

.blocks_services .content .text_6 {
    color: rgb(255, 255, 255);
    /*font-size: 20px;
    font-weight: 400;
    line-height: 30px;*/
}

.blocks_services .content .text_6 ul {
    margin-top: 10px;
}

.blocks_services .content .text_6 ul li {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Montserrat-Regular';
    padding-left: 18px;
    margin-bottom: 10px;
}

.blocks_services .content .text_6 ul li:before {
    display: block;
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border: unset;
    background-color: rgb(255 255 255);
    left: 0px;
    top: 8px;
    border-radius: 100%;
}

.blocks_services .content .text_5_6 {
    width: 100%;
    border-radius: 40px;
    background: rgb(55, 76, 97);
    padding: 40px;
    box-sizing: border-box;
}

.form_1 {
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: rgb(55, 76, 97);
    box-sizing: border-box;
}

.form_1 .title {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 42px;
}

.form_1 .form {

}

.form_1 .form .block_input {
    margin-bottom: 22px;
}

.form_1 .form .block_input input[type="text"],
.form_1 .form .block_input input[type="tel"] {
}

.form_1 .form .block_input input[type="tel"] {

}

.form_1 .form .block_input .error {

}

.form_1 .form .block_button {

}

.form_1 .form .block_button input[type="submit"] {

}

.form_1 .form .block_checkbox {
    margin-top: 17px;
}

.form_1 .form .container_checkbox {

}

.form_1 .form .container_checkbox input[type="checkbox"] {

}

.form_1 .form .container_checkbox .checkmark {

}

.form_1 .form .block_checkbox .text {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: rgb(255, 255, 255);
    padding-left: 30px;
}

.form_1 .form .block_checkbox .text a {
    color: rgb(111, 128, 146);
    text-decoration: underline;
}

.form_1 .form .block_checkbox .error {

}

.container_checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container_checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eeeeee00;
    box-sizing: border-box;
    border: 1px solid rgb(163, 137, 112);
}

.container_checkbox:hover input ~ .checkmark {
}

.container_checkbox input:checked ~ .checkmark {
}

.container_checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container_checkbox input:checked ~ .checkmark:after {
  display: block;
}

.container_checkbox .checkmark:after {
    left: 4px;
    top: 4px;
    width: 12px;
    height: 10px;
    background-image: url(../img/form_okay.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blocks_big_page {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.blocks_big_page .content {
    width: 100%;
    max-width: 676px;
}

.blocks_big_page .content h2 {
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 38px;
}

.blocks_big_page .content.no-image {

}

.blocks_big_page .sub_title_1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    font-family: 'Oswald-Regular';
    margin-top: 52px;
    margin-bottom: 32px;
}

.blocks_big_page .sub_title_1 strong {
    font-family: inherit;
    font-weight: 400;
    color: rgb(111, 128, 146);
}

.blocks_big_page .blocks_info {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.blocks_big_page .block {
    width: 100%;
    max-width: 328px;
}

.blocks_big_page .block .icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgb(241, 236, 230);
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.blocks_big_page .block .icon img {
    display: block;
    margin: auto;
}

.blocks_big_page .block_info_title {
    color: rgb(111, 128, 146);
    font-family: 'Oswald-Regular';
    font-size: 30px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 16px;
}

.blocks_big_page .block_info_text {

}

.blocks_big_page .image {
    width: 100%;
    max-width: 676px;
}

.blocks_big_page .image_block {

}

.blocks_big_page .case-content-image {

}

.blocks_big_page .text-image {
    display: block;
    position: relative;
    border-radius: 40px;
    background: rgb(241, 236, 230);
    width: 100%;
    max-width: 88%;
    margin: auto;
    padding: 40px;
    box-sizing: border-box;
    margin-top: -177px;
}

.blocks_big_page .text-image p {
    margin-bottom: 16px;
}

.blocks_image_text {
    position: relative;
    width: 100%;
    border: 10px solid rgb(255, 255, 255);
    border-radius: 40px;
    background: rgb(249, 249, 249);
    box-sizing: border-box;
    margin-top: 70px;
    padding-top: 40px;
    padding-left: 29px;
    padding-right: 29px;
    padding-bottom: 40px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.blocks_image_text .image {
    width: 100%;
    max-width: 677px;
}

.blocks_image_text .info {
    width: 100%;
    max-width: 559px;
}

.blocks_image_text .title {
    font-family: 'Oswald-Regular';
    font-size: 80px;
    font-weight: 400;
    line-height: 90px;
    color: rgb(55, 76, 97);
    margin-bottom: 20px;
}

.blocks_image_text .text {

}

.blocks_image_text .text p {
    margin-bottom: 10px;
}

.blocks_image_text .text p strong {
    color: rgb(55 76 97);
}

.other_services {
    margin-top: 84px;
}

.other_services .container {
    position: relative;
}

.other_services h4 {
    font-weight: 400;
}

.other_services .blocks {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.other_services .block {
    display: block;
    position: relative;
    width: 100%;
    max-width: 443px;
    border-radius: 40px;
    background: rgb(241, 236, 230);
    box-sizing: border-box;
    padding: 40px;
    min-height: 380px;
    margin-bottom: 20px;
}

.other_services .block:after {
    display: block;
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background-color: rgb(55, 76, 97);
    background-repeat: no-repeat;
    background-size: 34px;
    background-position: center;
    background-image: url('../img/stash_search.svg');
    border-radius: 20px;
    right: 20px;
    top: 20px;
}

.other_services .block a {
    display: block;
    position: absolute;
    bottom: 40px;
    color: rgb(163, 137, 112);
    font-family: 'Montserrat-Medium';
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    left: 40px;
}

.other_services .block a:hover {
    color: #374c61;
}

.other_services .block a:after {
    display: block;
    position: absolute;
    content: '';
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/arrow_min.svg');
    border-radius: 20px;
    right: -32px;
    top: 0px;
}

.other_services .block .case-title {
    color: rgb(55, 76, 97);
    font-family: 'Oswald-Regular';
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 18px;
}

.other_services .block .title_banner {
    color: rgb(55, 76, 97);
    font-family: 'Montserrat-Bold';
    margin-bottom: 20px;
}

.other_services .block .text_banner {

}

.other_services .block span {

}

.other_services .block.last_block {
    background: rgb(111, 128, 146);
}

.other_services .block.last_block:before {
    display: block;
    position: absolute;
    content: '';
    width: 364px;
    height: 222px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/page_big_block.webp');
    right: 0px;
    left: 0px;
    margin: auto;
    bottom: -60px;
}

.other_services .block.last_block:after {
    background-color: rgb(55, 76, 97);
    background-image: url('../img/handshake.svg');
}

.other_services .block.last_block .case-title {
    color: rgb(255, 255, 255);
}

.other_services .block.last_block .title_banner {

}

.other_services .block.last_block .text_banner {
    color: rgb(255, 255, 255);
}

.other_services .block.last_block span {
    display: block;
    cursor: pointer;
    margin-top: 40px;
    border-radius: 20px;
    background: rgb(163, 137, 112);
    width: 100%;
    text-align: center;
    color: rgb(255, 255, 255);
    font-family: 'Montserrat-Bold';
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
    padding-top: 19px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 21px;
    box-sizing: border-box;
    transition: 0.6s;
}

.other_services .block.last_block span:hover {
    color: rgb(163, 137, 112);
    background: rgb(255, 255, 255);
}

.cases_slider {
    margin-top: 60px;
    background-color: rgb(30, 30, 30);
    padding-top: 60px;
    padding-bottom: 0px;
}

.cases_slider .container {
    position: relative;
}

.cases_slider h4 {
    color: #ffffff;
    font-weight: 300;
}

.cases_slider .swiper-wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 980px;
    box-sizing: border-box;
}

.cases_slider .other-cases-swiper {

}

.cases_slider .swiper-slide {
    border-radius: 40px;
    overflow: hidden;
    opacity: 0;
    transition: 0.6s;
}

.cases_slider .swiper-slide.swiper-slide-prev {
    margin-top: -100px;
    opacity: 0.8;
}

.cases_slider .swiper-slide.swiper-slide-next {
    margin-top: 100px;
    opacity: 0.8;
}

.cases_slider .swiper-slide.swiper-slide-active {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.cases_slider .case-preview {
    display: flex;
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 720px;
    padding: 40px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    align-items: end;
}

.cases_slider .case-title {
    color: rgb(163, 137, 112);
    font-size: 40px;
    font-family: 'Oswald-Regular';
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 20px;
}

.cases_slider .decr {
    color: rgb(255 255 255);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 50px;
}

.cases_slider .services_provided {

}

.cases_slider .text-services-provided {

}

.cases_slider .text-services-provided p {
    color: rgb(206, 202, 199);
    margin-bottom: 10px;
}

.cases_slider .services-list {

}

.cases_slider .services-list ul {

}

.cases_slider .services-list li {

}

.cases_slider .info a.link {
    position: relative;
    color: rgb(255, 255, 255);
    font-family: 'Montserrat-SemiBold';
}

.cases_slider .info a:hover {
    color: #a38970;
}

.cases_slider .info a:after {
    display: block;
    position: absolute;
    content: '';
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/arrow_min_white.svg');
    border-radius: 20px;
    right: -32px;
    top: 0px;
}

.cases_slider .arrow_next {
    top: 230px;
    right: 24px;
}

.cases_slider .arrow_prev {
    top: 230px;
    right: 94px;
}

.cases_home_text {

}

.cases_home_text .container {

}

.cases_home_text .blocks_home {
    margin-top: 80px;
}

.cases_home_text .company {
    max-width: 48%;
}

.cases_home_text h2 {
    width: 100%;
    font-size: 80px;
    line-height: 90px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.cases_home_text .company p {
    font-size: 20px;
    line-height: 30px;
}

.cases_home_text .company p strong {

}

.cases_home_text .company ul {
    margin-top: 23px;
    margin-bottom: 24px;
}

.cases_home_text .company li {
    font-size: 20px;
    line-height: 25px;
    font-family: 'Montserrat-Regular';
    margin-bottom: 16px;
}

.cases_home_text .company li:before {
    background-image: unset;
    left: 0px;
    top: 6px;
    background-color: rgb(206, 202, 199);
    border-radius: 100%;
}

.cases_home_text .company .text_2 {

}

.cases_home_text .company .text_3 {
    margin-bottom: 39px;
}

.cases_home_text .company a {
    position: relative;
    color: rgb(163, 137, 112);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    font-family: 'Montserrat-SemiBold';
}

.cases_home_text .company a:hover {
    color: #374c61;
}

.cases_home_text .company a:after {
    display: block;
    position: absolute;
    content: '';
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/arrow_min.svg');
    border-radius: 20px;
    right: -32px;
    top: 4px;
}

.cases_home_text .info {
    border: 10px solid rgb(255, 255, 255);
    border-radius: 20px;
    background: rgb(249, 249, 249);
    padding: 21px;
}

.cases_home_text .info h3 {
    color: rgb(55, 76, 97);
    margin-top: 0px;
}

.cases_home_text .info h3 span {
    color: rgb(163, 137, 112);
}

.cases_home_text .info li {
    max-width: 33%;
    margin-top: 32px;
}

.cases_home_text .info .info-number {
    color: rgb(111, 128, 146);
    font-size: 80px;
    line-height: 119px;
}

.cases_home_text .info .info-text {
    color: rgb(30, 30, 30);
    font-family: 'Montserrat-Medium';
}

.in_our_work_we_use {
    margin-top: 80px;
}

.in_our_work_we_use .container {

}

.in_our_work_we_use h4 {
    color: rgb(55, 76, 97);
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 29px;
}

.in_our_work_we_use .blocks {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.in_our_work_we_use .block {
    width: 100%;
    max-width: 328px;
    border-radius: 20px;
    background: rgb(241, 236, 230);
    padding: 20px;
    box-sizing: border-box;
}

.in_our_work_we_use .image {
    margin-bottom: 5px;
}

.in_our_work_we_use .title {
    margin-bottom: 8px;
}

.in_our_work_we_use .title a {
    color: rgb(163, 137, 112);
    font-family: 'Oswald-Regular';
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
}

.in_our_work_we_use .text {
    color: rgb(111, 128, 146);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.form.form_footer {
}

.form.form_footer .form_1 {
    position: relative;
    width: 100%;
    max-width: 1024px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 394px;
    padding-bottom: 35px;
}

.form.form_footer .form_1:after {
    display: block;
    position: absolute;
    content: '';
    width: 280px;
    height: 524px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/form_image.webp');
    right: 68px;
    top: 40px;
}

.form.form_footer .form_1 .title {
    color: rgb(163, 137, 112);
    font-size: 80px;
    font-weight: 400;
    line-height: 90px;
    font-family: 'Oswald-Regular';
    margin-bottom: 20px;
}

.form.form_footer .form_1 .sub_title {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
}

.form.form_footer .form_1 .form {

}

.form.form_footer .form_1 .block_input {

}

.form.form_footer .form_1 .block_input input[type="text"] {

}

.form.form_footer .form_1 .block_input input[type="tel"] {

}

.block_input .error, .block_checkbox .error {
    display: none;
    margin-top: 6px;
    background-color: #c80a0a;
    color: #ffffff;
    padding: 10px;
    font-size: 12px;
    line-height: 12px;
    border-radius: 10px;
    width: max-content;
}

.form.form_footer .form_1 .block_button {

}

.form.form_footer .form_1 .block_button input[type="submit"] {

}

.form.form_footer .form_1 .block_checkbox {

}

.form.form_footer .form_1 .container_checkbox {

}

.form.form_footer .form_1 .container_checkbox input[type="checkbox"] {

}

.form.form_footer .form_1 .container_checkbox .checkmark {

}

.form.form_footer .form_1 .block_checkbox .text {

}

.form.form_footer .form_1 .block_checkbox .text a {

}

.form.form_footer .form_1 .block_checkbox .error {

}

#form-messages {
    margin-bottom: 10px;
}

#form-messages .success, #form-messages .error {
    background-color: #0ac875;
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 10px;
    width: max-content;
}

#form-messages .error {
    background-color: #c80a0a;
    color: #ffffff;
}

.modal {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.modal .modal-content {
    position: relative;
    width: 100%;
    max-width: 1024px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
}

.modal .modal-content .close {
    color: #ffffff;
    font-size: 64px;
    line-height: 64px;
    position: absolute;
    z-index: 11;
    top: 0px;
    right: 20px;
    cursor: pointer;
}

.contacts_page {

}

.contacts_page .form_block {
    margin-top: 74px;
}

.contacts_page .form_1 {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 40px;
}

.contacts_page .form_1 .info {
    width: 100%;
    max-width: 46%;
}

.contacts_page .form_1 .title {
    color: rgb(255, 255, 255);
    font-family: 'Oswald-Regular';
    font-size: 80px;
    font-weight: 400;
    line-height: 90px;
}

.contacts_page .form_1 .text {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.contacts_page .form_info {
    width: 100%;
    max-width: 49%;
}

.contacts_page .form_info .block_input {

}

.contacts_page .form_info .block_input input[type="text"] {

}

.contacts_page .form_info .block_input input[type="tel"] {

}

.contacts_page .form_info .block_input .error {

}

.contacts_page .form_info .block_button {

}

.contacts_page .form_info .block_button input[type="submit"] {

}

.contacts_page .form_info .block_checkbox {

}

.contacts_page .form_info .container_checkbox {

}

.contacts_page .form_info .container_checkbox input[type="checkbox"] {

}

.contacts_page .form_info .container_checkbox .checkmark {

}

.contacts_page .form_info .block_checkbox .text {

}

.contacts_page .form_info .block_checkbox .text a {

}

.contacts_page .form_info .block_checkbox .error {

}

.page_not_found {
    background-image: url('../img/404_background.webp');
    background-position: left;
    background-size: contain;
    background-repeat: repeat;
}

.page_not_found .container {
    position: relative;
}

.page_not_found h2 {
    color: rgb(163, 137, 112);
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    padding-top: 49px;
    letter-spacing: 0.8px;
    margin-bottom: 39px;
}

.page_not_found .title {
    text-align: center;
}

.page_not_found .title img {

}

.page_not_found a {
    display: block;
    position: absolute;
    width: 244px;
    height: 244px;
    background-image: url('../img/404_back.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -79px;
    padding-top: 85px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.technologies {

}

.technologies:before,
.blocks_image_text:before,
.content_page:before,
.case_page_full:before,
.service_page_full:before {
    display: block;
    position: absolute;
    content: '';
    width: 1337px;
    height: 1269px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/technologies_background_1.svg');
    left: -776px;
    top: 670px;
    z-index: -1;
}

.case_page_full,
.service_page_full {
    position: relative;
}

.case_page_full:before, 
.service_page_full:before {
    top: -356px;
    right: -500px;
    left: auto;
}

.blocks_image_text:before {
    top: 70px;
}

.content_page:before {
    top: auto;
    bottom: -970px;
    left: -424px;
}

.technologies .block {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    border: 10px solid rgb(255, 255, 255);
    border-radius: 40px;
    background: rgb(249, 249, 249);
    padding: 40px;
    margin-bottom: 10px;
}

.technologies .image {
    width: 100%;
    max-width: 22%;
    text-align: center;
}

.technologies .image img {

}

.technologies .info {
    width: 100%;
    max-width: 74%;
}

.technologies .info h3 {
    text-transform: uppercase;
    margin-top: 23px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.technologies .info h3 a {
    color: rgb(163, 137, 112);
}

.technologies .info p {
    margin-bottom: 37px;
}

.technologies .info .lists {

}

.technologies .info .lists strong {
    color: rgb(163, 137, 112);
}

.technologies .services-list {
    margin-top: 19px;
}

.technologies .services-list ul {

}

.technologies .services-list li {

}

footer {
    margin-top: 97px;
    padding-top: 47px;
    padding-bottom: 47px;
    box-sizing: border-box;
    background: rgb(55, 76, 97);
}

.footer_blocks {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer_blocks .logo_address {

}

.footer_blocks .logo_address .address {

}

.footer_blocks .logo_address .address .logo {
    display: block;
    margin-bottom: 23px;
}

.footer_blocks .logo_address .address .logo img {

}

.footer_blocks .logo_address .address p {
    color: rgb(255, 255, 255);
}

.footer_blocks .main-menu {
    align-items: flex-start; max-width: 640px;
}

.footer_blocks .main-menu li {

}

.footer_blocks .main-menu a {

}

.footer_blocks .main-menu .has-submenu {
    margin-right: 40px;
}

.footer_blocks .main-menu .submenu-toggle {display: none;}

.footer_blocks .main-menu .has-submenu:after {
    display: none;
}

.footer_blocks .main-menu .submenu {
    position: static;
    opacity: 1;
}

.footer_blocks .main-menu .submenu li {
    width: auto;
    padding: 2px;
    padding-left: 0;
}

.footer_blocks .main-menu .submenu a {
    font-size: 14px;
    line-height: 20px;
}

.footer_blocks .social-icons {

}

.footer_blocks .social-icons .social-icon {
    width: 61px;
    height: 61px;
}

.footer_blocks .social-icons .telegram {
    display: none;
}

.footer_blocks .social-icons .vk {

}

.footer_blocks .social-icons .whatsapp {

}

.footer_blocks .social-icons .phone {
    display: none;

}

.footer_blocks .social-icons .social-icon img {

}

body.header-nobackground-active {
    padding-top: 82px;
}

.mobile-menu {
    display: none;
    position: absolute;
    left: 10px;
    top: 20px;
    width: 35px;
    height: 35px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-menu__line {
    display: block;
    background-color: rgb(111, 128, 146);
    border-radius: 13px;
    width: 100%;
    height: 4px;
}

.mobile-menu__line.two_line {
    background-color: rgb(163 137 112);
}

.header_full.mobile_menu_view {
    display: block;
    position: fixed;
    background-color: #374c61;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
}

.mobile_menu_view .main-menu {
    display: block;
    margin-bottom: 20px;
}

.mobile_menu_view .has-submenu:after {
    display: none;
}

.mobile_menu_view .submenu {
    position: relative;
    opacity: 1;
    top: 0px;
    padding: 10px;
    box-sizing: border-box;
}

.mobile_menu_view .has-submenu:hover .submenu {
    top: 0px;
}

#modal_window_menu.modal {
    background-color: rgb(55, 76, 97);
    overflow-x: scroll;
}

.modal .header_full {
    position: relative;
    border-bottom: 0px;
}

.modal .main-menu {
    margin-top: 30px;
}

.modal .main-menu li {
    margin-right: 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.modal .submenu li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.modal .main-menu .main-menu a:hover {
    color: rgb(163, 137, 112);
}

#modal_window_menu.modal .modal-content .close {
    color: rgb(111, 128, 146);
    font-size: 76px;
    line-height: 62px;
    top: 0px;
    left: 0px;
    right: unset;
}

#modal_window_menu.modal .social-icons {
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgb(111, 128, 146);
    border-bottom: 1px solid rgb(111, 128, 146);
    margin-top: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
    justify-content: center;
}

#modal_window_menu.modal .social-icons .social-icon {
    display: flex;
    width: 60px;
    height: 60px;
}

#modal_window_menu.modal .social-icons .social-icon img {
    display: block;
    margin: auto;
    width: 30px;
}

#modal_window_menu.modal .social-icons .social-icon.phone {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 10px;
}

#modal_window_menu.modal .social-icons .social-icon.phone img {
    width: auto;
}

#modal_window_menu.modal .info {
    margin-top: 30px;
}

#modal_window_menu.modal .info .block {
    margin-bottom: 30px;
}

#modal_window_menu.modal .info .block span {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    font-family: 'Montserrat-Medium';
}

#modal_window_menu.modal .info .block span a {
    color: rgb(255, 255, 255);
}

#modal_window_menu.modal .info .block .title {
    color: rgb(111, 128, 146);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}

.header_glass .submenu li {
    background-color: #00000026;
}

.header_fixed .submenu li {
    background-color: rgb(55, 76, 97);
}

.cases_home_text {
    position: relative;
}

.cases_home_text:before {
    display: block;
    position: absolute;
    content: '';
    width: 985px;
    height: 1141px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/napravlenie_background_1.svg');
    right: 0px;
    top: -860px;
    z-index: -1;
}
/* Футер: меню в одну строку (добавлен пункт «Блог») */
.footer_blocks .main-menu {
    width: auto;
    max-width: none;
    flex-wrap: nowrap;
    gap: 40px;
}
