* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    background-color: var(--bg-color);
    transition: background 0.5s ease;
}
header {
    position: relative;
    height: 750px;
    transition: background 0.5s ease;
    background: none;
    padding: 24px 100px 68px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #05183C 70%, rgba(0, 0, 0, 0) 100% );
    opacity: 1;
    transition: opacity 0.5s ease;
}
header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #F6F6F6 70%, rgba(246, 246, 246, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
header > * {
    position: relative;
    z-index: 2;
}
body.dark-mode header::before {
    opacity: 0;
}
body.dark-mode header::after {
    opacity: 1;
}
button{
    background: none;
    border: none;
    cursor: pointer;
}
p{
    font-family: 'Manrope_Med', sans-serif;
}
h1{
    font-family: 'TT Fors Trial Medium', sans-serif;
}
a{
    text-decoration: none;
}
span{
    color: var(--color-accent);
}
.logo{
    fill: var(--text-color);
    transition: fill 0.5s ease;
    width: 176px;
    height: 38px;
}
.connection_icon{
    background-color: var(--color-btns);
    border-radius: 50px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    backdrop-filter: blur(12px);
    margin: 0 0 0 24px;
}
.connection_btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.connection_btn:hover .connection, .connection_btn:hover .connection_icon{
    background-color: var(--btns-hover);
}
.phone{
    fill: var(--text-color);
    transition: fill 0.5s ease;
}
.mail{
    fill: var(--text-color);
    transition: fill 0.5s ease;
}
.sun{
    transition: 0.5s ease;
    position: absolute;
}
.moon{
    transition: 0.5s ease;
    position: absolute;
}
.connection{
    background-color: var(--color-btns);
    border-radius: 50px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px 0 16px;
    margin-left: 4px;
    transition: background-color 0.5s ease;
    backdrop-filter: blur(12px);
}
.connection p{
    font-weight: 300;
    font-size: 16px;
    color: var(--text-color);
    transition: color 0.5s ease;
}
.connection_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn_light-dark{
    background-color: var(--color-btns);
    border-radius: 10px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}
.btn_light-dark:hover{
    background-color: var(--btns-hover);
}
.opacity{
    opacity: 0;
}
.none{
    display: none !important;
}
.top_left_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 700px;
}
.top_right_block{
    width: 820px;
    display: flex;
    justify-content: space-between;
}
.menu a{
    font-weight: 300;
    font-family: 'TT_Fors_Variable', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    transition: color 0.5s ease, background 0.5s ease;
    padding: 6px 16px 6px 16px;
    height: 36px;
    border-radius: 50px;
}
.menu{
    background-color: var(--color-btns);
    border-radius: 50px;
    padding: 0 8px 0 8px;
    height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
    transition: background-color 0.5s ease;
}
.menu a:hover{
    background-color: var(--btns-hover);
}
.btn_personal_account{
    background-color: var(--text-color);
    height: 46px;
    border-radius: 50px;
    transition: background-color 0.5s ease;
    padding: 11px 24px 11px 24px;
}
.btn_personal_account:hover{
    background-color: var(--account-hover);
}
.btn_personal_account p{
    color: var(--bg-color);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.5s ease;
}
.top_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block_star{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 862px;
    height: 319px;
    margin: 124px 0 0 0;
}

.block_tg_wa{
    position: absolute;
    right: 100px;
    margin: 110px 0 0 0;
    width: 195px;
    height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.btn_card{
    width: 195px;
    height: 100px;
    padding: 12px;
    border: 1px solid var(--brdr-block-btn);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border 0.5s ease;
}
.blue_block{
    width: 24px;
    height: 24px;
    background-color: #1365FD;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 auto;
    transition: background 0.5s ease;
}
.btn_card p{
    color: var(--text-color);
    font-weight: 300;
    font-size: 16px;
    text-align: left;
    transition: color 0.5s ease;
}
.btn_card:hover{
    border: 1px solid var(--color-block-btn);
}
.btn_card:hover .blue_block{
    background-color: rgba(32, 73, 185, 1);
}
.block div{
    width: 24px;
    height: 24px;
    background-color: #1365FD;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.5s ease;
}
.block{
    margin: 0 0 0 auto;
    width: 58px;
    display: flex;
    align-items: center;
}
.block p{
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.5s ease;
}
.block_star span{
    position: absolute;
    color: var(--color-star);
    pointer-events: none;
    transition: transform 0.5s ease-out, color 0.5s ease;

}
.block_star span p{
    font-size: 18px;
    font-family: 'TT_Fors_Variable', sans-serif;
    font-weight: 100;
    opacity: 0.8;
    letter-spacing: 0.5px;
}
.planet{
    position: absolute;
    width: 461px;
    height: 461px;
    left: 50%;
    margin: 46px 0 0 0;
    transform: translateX(-50%);
    stroke: var(--color-planet);
    transition: stroke 0.5s ease;
}
.star1{
    opacity: 0.5;
}
.star2{
    opacity: 0.5;
}
.star7{
    opacity: 0.5;
}
.info_header{
    width: 740px;
}
.info_header p{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 32px;
    width: 740px;
    height: 38px;
    transition: color 0.5s ease;
}
.info_header h1{
    height: 144px;
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    line-height: 72px;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 72px;
    width: 740px;
    transition: color 0.5s ease;
}
.accent{
    color: var(--color-accent);
}
.bottom_header{
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.info_btns button{
    padding: 18px 24px 18px 24px;
    border-radius: 10px;
}
.info_btns p{
    font-weight: 300;
    font-size: 18px;
    color: var(--text-color);
    line-height: 24px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.info_btns{
    width: 476px;
}
.info_btns1{
    background-color: var(--color-accent);
    transition: background-color 0.5s ease;
    margin: 24px 0 0 0;
}
.info_btns2{
    background-color: var(--one-btn);
    transition: background-color 0.5s ease;
    margin: 24px 0 0 16px;
}
.info_btns1 p{
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
}
.info_btns2 p{
    font-weight: 300;
    font-size: 16px;
    color: var(--color-accent);
}
.info_btns1:hover{
    background-color: rgba(32, 73, 185, 1);
}
.info_btns2:hover{
    background-color: var(--one-btn-hvr);
}
.block_company{
    position: relative;
    overflow: hidden;
    height: 674px;
    margin: 150px 100px 0 100px;
    display: flex;
    justify-content: space-between;
}

.vector {
    padding: 10px;
    background-color: var(--color-accent);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.name_block{
    display: flex;
    align-items: center;
    justify-content: start;
}
.name_block p{
    font-weight: 300;
    font-size: 18px;
    color: var(--text-color);
    transition: color 0.5s ease;
    margin: 0 0 0 16px;
}
.company_left_block {
    width: 704px;
    height: 400px;
    padding: 0 50px 0 0;
}
.company_left_block h2{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 500;
    font-size: 54px;
    line-height: 56px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 16px 0 0 0;
}
.info_company_p{
    color: var(--text-color);
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 32px 0 0 0;
}


.company_figures h2{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 82px;
    line-height: 74px;
    letter-spacing: -2px;
    transition: color 0.5s ease;
    margin-top: 24px;
}
.company_figures p{
    color: var(--text-color);
    font-weight: 200;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    width: 52%;
    margin: 32px 0 0 0;
}
.company_money{
    height: 182px;
    border-top: 1px solid #454545;
    transform: translateX(calc(100% + 100px));
    transition: transform 0.1s linear;
}
.company_data{
    height: 182px;
    border-top: 1px solid #454545;
    margin: 64px 0 0 0;
    transform: translateX(calc(100% + 100px));
    transition: transform 0.1s linear;
}
.company_time{
    height: 182px;
    border-top: 1px solid #454545;
    margin: 64px 0 0 0;
    transform: translateX(calc(100% + 100px));
    transition: transform 0.1s linear;
}
.projects{
    margin: 150px 100px 0 100px ;
}
.block_top_project{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block_top_project h1{
    color: var(--text-color);
    font-weight: 600;
    font-size: 120px;
    line-height: 112px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.card_project{
    position: relative;
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.card_project img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    display: block;
    pointer-events: none;
}
.block_card_project {
    height: 602px;
    width: 810px;
}
.block_card_project:hover img {
    transform: scale(1.2);
}

.block_card_project:nth-child(odd) {
    grid-column: 1;
}
.block_card_project:nth-child(even) {
    grid-column: 2;
    margin-top: 100px;
    justify-self: end;
}
.block_card_project:hover .glass_block{
    opacity: 1;
}
.glass_block{
    width: 382px;
    height: calc(100% - 64px);;
    position: absolute;
    top: 32px;
    right: 32px;
    padding: 24px;
    background-color: #00000057;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(12px);
}
.glass_block p{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.block_designations{
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.glass_info{
    margin: 24px 0 0 0;
}
.tag{
    width: fit-content;
    height: 28px;
    border-radius: 50px;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 16px 5px 16px;
    margin-right: 5px;

    font-family: 'Manrope_Med', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.glass_block_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.glass_block_info p{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
    transition: all 0.5s ease;
}
.glass_block_info svg{
    stroke: #FFFFFF;
    transition: all 0.5s ease;
}
.glass_block_info:hover p{
    color: var(--color-accent);
}
.glass_block_info:hover svg{
    stroke: var(--color-accent);
}
.ui_ux p{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.web p{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.ba p{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.block_projects{
    margin: 64px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.text_info{
    display: flex;
    justify-content: start;
    margin: 24px 0 0 0;
}
.boll_blue{
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 50px;
    margin-top: 15px;
    flex-shrink: 0;
}
.text_info h3{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 0 0 0 12px;
}
.our_principles{
    width: 810px;
    height: 550px;
    border: 1px solid var(--brdr-block);
    border-radius: 20px;
    transition: border 0.5s;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.our_principles h1{
    color: var(--text-color);
    font-weight: 600;
    font-size: 54px;
    line-height: 56px;
    letter-spacing: 0;
    transition: color 0.5s;
    width: 287px;
    height: 112px;
}
.our_principles_p{
    color: #707070;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
}
.our_principles h3{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 0 0 0 6px;
}
.p_block_discuss{
    color: var(--text-color-btn);
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
    transition: color 0.5s;
    text-align: start;
    font-family: 'TT Fors Trial Medium', sans-serif;
}
.block_content{
    width: 347px;
    height: 208px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.name_principles{
    display: flex;
    justify-content: start;
    align-items: center;
}
.block_discuss div{
    background-color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s;
    margin: 0 0 0 auto;
}
.block_discuss{
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    width: 746px;
    height: 180px;
    transition: border 0.5s;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.block_top_info{
    display: flex;
    justify-content: space-between;
}
.block_discuss:hover{
    border: 2px solid rgba(32, 73, 185, 1);
}
.block_discuss:hover div{
    background-color: rgba(32, 73, 185, 1);
}
.block_discuss:hover p{
    color: rgba(32, 73, 185, 1);
}
.next_btn{
    background-color: var(--color-btns);
    width: 217px;
    height: 54px;
    transition: background-color 0.5s;
    border-radius: 10px;
    margin: 100px 0 0 50px;
}
.next_btn p{
    color: var(--text-color);
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.next_btn:hover{
    background-color: var(--btns-hover);
}
.services{
    position: relative;
    height: 800px;
    background-color: var(--bg-services);
    transition: background-color 0.5s;
    margin: 150px 0 0 0;
    padding: 80px 100px 80px 100px;
    overflow: hidden;
}
.services_left_block h2{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 56px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 16px 0 0 0;
    width: 581px;
    height: 112px;
}
.menu_services {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 426px;
    height: 204px;
    margin: 280px 0 0 0;
}

.item {
    text-align: left;
    cursor: pointer;
    position: relative;
}
.item p{
    color: #707070;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    transition: 0.5s ease;
}
.item:hover p{
    color: var(--text-color);
    padding-left: 30px;
}

.item.active p{
    color: var(--text-color);
    padding-left: 30px;
    transition: 0.5s;
}

.indicator {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
    left: 0;
    top: 0;
    transform: translateY(8px);
    transition: top 0.5s ease, left 0.5s ease;
}
.circle {
    position: absolute;
    width: 1720px;
    height: 1720px;
    top: -145px;
    right: -540px;
    transition: transform 1s ease;
    border: var(--bg-bullet) 2px solid;
    border-radius: 100%;
    pointer-events: none;
}
.slider{
    overflow: hidden;
    margin: 0 0 0 48%;
}
.block_slider {
    position: absolute;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transform: translate(-50%, -50%);
}
.block1{
    background: conic-gradient(
            var(--color-accent) 0deg 51.4deg,
            var(--bg-bullet) 51.4deg 360deg
    );
}
.block2{
    background: conic-gradient(
            var(--color-accent) 0deg 102.8deg,
            var(--bg-bullet) 102.8deg 360deg
    );
}
.block3{
    background: conic-gradient(
            var(--color-accent) 0deg 154.2deg,
            var(--bg-bullet) 154.2deg 360deg
    );
}
.block4{
    background: conic-gradient(
            var(--color-accent) 0deg 205.6deg,
            var(--bg-bullet) 205.6deg 360deg
    );
}
.block5{
    background: conic-gradient(
            var(--color-accent) 0deg 257.0deg,
            var(--bg-bullet) 257.0deg 360deg
    );
}
.block6{
    background: conic-gradient(
            var(--color-accent) 0deg 308.4deg,
            var(--bg-bullet) 308.4deg 360deg
    );
}
.block7{
    background: conic-gradient(
            var(--color-accent) 0deg 360deg,
            var(--bg-bullet) 360deg 360deg
    );
}
.back_block{
    width: 141px;
    height: 141px;
    border-radius: 50%;
    background-color: var(--bg-services);
    transition: background-color 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}
.block_slider p{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    background: #1365FD;
    width: 48px;
    height: 48px;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_services button{
    background-color: var(--color-accent);
    border-radius: 10px;
    width: 268px;
    height: 54px;
    position: absolute;
    bottom: 0;
    transition: background-color 0.5s ease;
}
.content_services button:hover{
    background-color: rgba(32, 73, 185, 1);
}
.content_services button p{
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: white;
}
.content_services{
    position: absolute;
    top: 264px;
    right: 204px;
    width: 704px;
    height: 400px;
}
.content_services h2{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    width: 611px;
    height: 76px;
}
.content_services p{
    color: var(--text-color);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}

.block_services_info{
    transform: translateX(calc(100% + 250px));
    transition: transform 0.7s ease, opacity 0.7s ease;
    position: absolute;
    top: 0;
    opacity: 0;
}
.block_services_info p{
    margin-top: 24px;
}

.block_services_info_active{
    transform: translateX(0);
    opacity: 1;
}
.slider_customers{
    height: 564px;
    margin: 150px 0 0 100px;
    overflow: hidden;
    position: relative;
}
.customers_block{
    display: flex;
    justify-content: space-between;
}
.p_customers_top{
    width: 794px;
    height: 128px;
    margin: 0 154px 0 0;

    color: var(--text-color);
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.customers_block h2{
    width: 352px;
    height: 152px;
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 56px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 16px 0 0 0;
}

.slider-track{
    display:flex;
    gap: 28px;
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateX(850px);
}
.slide{
    display: flex;
    justify-content: space-between;
    width: 850px;
    height: 364px;
    border-radius: 24px;
    background-image: url("../img/background.png");
    background-position: -1600px -900px;
    background-repeat: no-repeat;

    color: #FFFFFF;
}
.controls {
    position: absolute;
    left: 0;
    bottom: 0;
    display:flex;
    gap: 12px;
    align-items:center;
    z-index: 20;
    pointer-events: auto;
}
.btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items:center;
    justify-content:center;
    background-color: var(--color-accent);
    cursor: pointer;
    transition: background-color 0.5s ease;
    backdrop-filter: blur(4px);
    stroke: #FFFFFF;
}
.btn:hover{
    background-color: rgba(32, 73, 185, 1);
}
.disabled {
    background: none;
    border: 1px solid #707070;
    stroke: #707070;
    pointer-events: none;
}
.slide h2{
    font-family: 'TT Fors Trial Medium', sans-serif;
    color: white;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
}
.slide p{
    color: white;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
}
.text_block_slide{
    width: 668px;
    height: 364px;
    padding: 32px 48px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid #FFFFFF29;
}
.slider_svg{
    width: 118px;
    height: 118px;
    border-radius: 100%;
    border: 1px solid #FFFFFF29;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 32px 0 32px;
}
.contacts{
    width: calc(100% - 165px);
    height: 708px;
    margin: 150px 100px 0 100px;
    position: relative;
    display: flex;
}
.map{
    width: 808px;
    height: 564px;
    margin: 48px 0 0 0;
}
[class*="copyrights-pane"] {
    display: none !important;
}
[class*="ground-pane"] {
    filter: grayscale(1);
}
[class*="map"] {
    border-radius: 20px;
}
.contacts_left_block{
    width: 502px;
    height: 96px;
    position: relative;
}
.contacts_left_block h2{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 56px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 16px 0 0 0;
}
.block_map{
    width: 235px;
    height: 164px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 24px;
    left:24px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.block_map div p{
    font-family: 'TT Fors Trial Medium', sans-serif;
    color: black;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}
.block_map p{
    font-family: 'Manrope_Med', sans-serif;
    width: 190px;
}
.block_map div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.block_map a{
    color: var(--color-accent);
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.block_map a:hover{
    color: rgba(32, 73, 185, 1);

}
.contact-form{
    margin: 144px 0 0 65px;
    width: 100%;
}
.form-group{
    display: flex;
    flex-direction: column;
}
label{
    font-family: 'TT_Fors_Variable', sans-serif;
    color: var(--text-color);
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 0 0 12px 0;
}
.form-row{
    display: flex;
    gap: 27px;
    margin: 32px 0 0 0;
}
.half{
    width: 50%;
}
.contacts input{
    font-family: 'TT_Fors_Variable', sans-serif;
    background-color: var(--bg-input);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
    border: none;
    border-radius: 10px;
    height: 54px;
    padding: 18px 16px 18px 16px;
}
textarea{
    font-family: 'TT_Fors_Variable', sans-serif;
    background-color: var(--bg-input);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
    border: none;
    border-radius: 10px;
    padding: 18px 16px 18px 16px;
    height: 114px;
}
.full{
    margin: 32px 0 0 0;
}
.checkbox{
    display: flex;
    align-items: start;
    margin: 32px 0 0 0;
}
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin: 0;
}
.custom-checkbox input {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 18px;
}
.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}
.checkmark::after {
    content: "";
    width: 5px;
    height: 8px;
    border-right: 3px solid var(--text-color);
    border-bottom: 3px solid var(--text-color);
    transform: scale(0) rotate(45deg);
    transform-origin: bottom left;
    transition: transform 0.2s ease;
    position: absolute;
    top: -4px;
    left: 0;
}
.custom-checkbox input:checked + .checkmark::after {
    transform: scale(1) rotate(45deg);
}
.checkbox p{
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: -3px 0 0 12px;
}
.checkbox a{
    color: var(--bg-input-a);
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.checkbox a:hover{
    color: var(--color-accent);
}
.submit-btn{
    width: 268px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items:center;
    justify-content:center;
    background-color: var(--color-accent);
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.submit-btn p{
    color: #FFFFFFFF;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.submit-btn:hover{
    background-color: rgba(32, 73, 185, 1);
}
.captcha{
    width: 229px;
    height: 54px;
    border-radius: 10px;
    border: 1px solid #454545;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 12px 16px;
}
.captcha p{
    color: var(--text-color);
    width: 120px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 0 0 0 12px;
}
.block_btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 48px 0 0 0;
}
footer{
    height: 469px;
    background-color: #191919;
    padding: 40px 100px 40px 100px;
    margin: 150px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.btn_footer{
    width: 210px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items:center;
    justify-content:center;
    background-color: #2C2C2C;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.btn_footer p{
    color: white;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.btn_footer:hover{
    background-color: rgba(69, 69, 69);
}
.column_1{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:space-between;
}
.column_2{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content:end;
}
.column_2 p{
    color: white;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
}
.column_2 .footer_year{
    color: #707070;
}
.name_footer{
    color: #707070;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
}
.column_3 a{
    color: #FFFFFF;
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.column_3 a:hover{
    color: var(--color-accent);
}
.column_2 a{
    color: #FFFFFF;
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    cursor: pointer;
}
.column_2 a:hover{
    color: var(--color-accent);
}
.column_3{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.block_btns_footer{
    display: flex;
    gap: 12px;
}
.top_mrgn{
    margin: 24px 0 0 0;
}
.column_4{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}
.btn_card2{
    width: 195px;
    height: 100px;
    padding: 12px;
    border: 1px solid #FFFFFF29;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border 0.5s ease;
}
.btn_card2 p{
    color: white;
    font-weight: 300;
    font-size: 16px;
    text-align: left;
    transition: color 0.5s ease;
}
.btn_card2:hover{
    border: 1px solid var(--color-accent);
}
.scroll_back{
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #2C2C2C;
    transition: background-color 0.5s ease;
}
.scroll_back:hover{
    background-color: #707070;
}
.captcha div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
}
.block_colum{
    display: flex;
    flex-direction: column;
}
.column_1 svg{
    width: 247px;
    height: 53px;
}

.menu_burger{
    display: none;
}
.offcanvas{
    display: none;
}
.bullets{
    display: none;
}
@media (max-width: 1850px){
    .block_card_project {
        width: 100%;
        height: 582px;
    }
    .our_principles {
        width: 100%;
    }
    .block_discuss {
        width: 100%;
    }
    .block_card_project:nth-child(even) {
        margin: 100px 0 0 25px;
        justify-self: start;
    }
}
@media (max-width: 1750px) {
    header {
        padding: 24px 50px 34px 50px;
    }
    .block_tg_wa {
        right: 50px;
    }
    .top_right_block {
        width: 779px;
        min-width: auto;
    }
    .connection_icon {
        margin: 0 0 0 10px;
    }
    .top_left_block {
        width: 650px;
    }
    header {
        padding: 24px 50px 34px 50px;
    }
    .content_services {
        right: 50px;
    }
    .circle {
        right: -700px;
    }
    .slider {
        overflow: hidden;
        margin: 0 0 0 42%;
    }
}
@media (max-width: 1608px) {
    .block_top_info{
        flex-direction: column;
        height: 278px;
    }
    .block_content {
        width: 100%;
        height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .our_principles h1{
        font-size: 32px;
        line-height: 38px;
        width: 169px;
        height: 76px;
    }
    .block_card_project:nth-child(even) {
        margin: 8% 0 0 25px;
        justify-self: start;
    }
}
@media (max-width: 1650px) {
    .map {
        width: 502px;
    }
    .slider {
        overflow: hidden;
        margin: 0 0 0 39%;
    }
}
@media (max-width: 1560px) {
    .logo {
        width: 100px;
    }
    .top_left_block {
        max-width: 600px;
        width: 42%;
    }
    .btn_light-dark {
        transform: translateX(0);
        width: 42px;
        height: 42px;
    }
    .connection_icon {
        width: 42px;
        height: 42px;
    }
    .connection {
        height: 42px;
        padding: 0 14px 0 14px;
    }
    .menu {
        height: 42px;
    }
    .btn_personal_account {
        height: 42px;
        padding: 9px 20px 9px 20px;
    }
    .slider {
        overflow: hidden;
        margin: 0 0 0 35%;
    }
    .customers_block h2 {
        margin: 16px 70px 0 0;
    }
    .content_services {
        right: 20px;
    }
    .circle {
        right: -830px;
    }
    .services {
        padding: 80px 50px 80px 50px;
    }
    .content_services {
        width: 612px;
    }
}
@media (max-width: 1480px) {
    .slider {
        overflow: hidden;
        margin: 0 0 0 420px;
    }
    .info_header p {
        font-size: 32px;
        width: 600px;
        height: 38px;
    }
    .info_header {
        width: 600px;
    }
    /*.info_btns {*/
    /*    width: 245px;*/
    /*}*/
    /*.info_btns button {*/
    /*    width: 100%;*/
    /*}*/
    /*.info_btns1 {*/
    /*    margin: 12px 0 0 0;*/
    /*}*/
    /*.info_btns2 {*/
    /*    margin: 12px 0 0 0;*/
    /*}*/
    .info_btns button {
        padding: 18px 24px 18px 24px;
        border-radius: 10px;
        width: auto;
    }
    .info_btns {
        width: 476px;
    }
    .info_btns2 {
        margin: 24px 0 0 16px;
    }
    .info_header p {
        font-size: 24px;
        width: 100%;
        height: 30px;
    }
    .info_header h1 {
        font-size: 36px;
        line-height: 39px;
        height: 78px;
        width: 100%;
    }
    .info_header {
        width: 412px;
    }
    .info_btns p{
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 1415px) {
    .connection_icon {
        display: none;
    }
    .top_left_block {
        width: 35.3%;
    }
    .block_company {
        margin: 150px 50px 0 50px;
    }
    .projects {
        margin: 80px 50px 0 50px;
    }
    .services {
        padding: 80px 50px 80px 50px;
    }
    .slider_customers {
        margin: 150px 0 0 50px;
    }
    .contacts {
        margin: 150px 50px 0 50px;
        width: calc(100% - 100px);
    }
    footer {
        padding: 40px 50px 40px 50px;
    }
}
@media (max-width: 1375px){
    .info_header p{
        font-size: 24px;
        width: 100%;
        height: 30px;
    }
    .block_card_project {
        height: 480px;
    }
    .info_header h1{
        font-size: 36px;
        line-height: 39px;
        height: 78px;
        width: 100%;
    }
    .info_header {
        width: 412px;
    }
    .company_left_block h2{
        font-size: 32px;
        line-height: 38px;
    }
    .info_company_p{
        font-size: 16px;
        line-height: 24px;
        margin: 16px 0 0 0;
    }
    .name_block p{
        font-size: 16px;
        line-height: 24px;
    }
    .company_figures h2{
        font-size: 54px;
        line-height: 56px;
    }
    .company_figures p{
        font-size: 16px;
        line-height: 22px;
        margin: 12px 0 0 0;
    }
    .block_top_project h1{
        font-size: 54px;
        line-height: 56px;
        transition: color 0.5s ease;
    }
    .p_block_discuss{
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }
    .text_info h3{
        font-size: 16px;
        line-height: 20px;
    }
    .boll_blue {
        margin-top: 6px;
    }
    .services_left_block h2{
        font-size: 32px;
        line-height: 38px;
        width: 358px;
        height: 76px;
    }
    .name_block p{
        font-size: 16px;
        line-height: 24px;
    }
    .content_services h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
        height: 30px;
    }
    .content_services p {
        font-size: 16px;
        line-height: 22px;
    }
    .customers_block h2{
        width: 352px;
        height: 38px;
        font-size: 32px;
        line-height:38px;
    }
    .p_customers_top{
        font-size: 18px;
        line-height: 24px;
        margin: 45px 154px 0 0;
    }
    .contacts_left_block h2 {
        font-size: 32px;
        line-height: 38px;
    }
    .our_principles {
        height: 450px;
    }
    .block_discuss {
        width: 100%;
        height: 70px;
        transition: border 0.5s;
        padding: 16px;
        flex-direction: row;
        align-items: center;
    }
}
@media (max-width: 1300px){
    .menu_burger{
        position:fixed;
        top:18px;
        right:18px;
        display:inline-grid;
        place-items:center;
        background-color: var(--color-btns);
        border-radius: 10px;
        width: 46px;
        height: 46px;
        transition: background-color 0.5s ease;
        backdrop-filter: blur(12px);
        z-index: 21;
    }
    .burger__lines{
        width:20px;
        height:14px;
        position:relative;
        display:block
    }
    .burger__lines span{
        position:absolute;left:0;right:0;height:2px;background: var(--text-color);display:block;transition:transform 300ms ease,opacity 300ms ease,top 300ms ease;
    }
    .burger__lines span:nth-child(1){top:0}
    .burger__lines span:nth-child(2){top:6px}
    .burger__lines span:nth-child(3){top:12px}
    .offcanvas {
        position: fixed;
        top:0;
        right:0;
        height:100vh;
        width: 390px;
        max-width:100%;
        background: var(--bg-color);
        transform: translateX(100%);
        transition: all 0.5s;
        z-index: 20;
        display:flex;
        flex-direction:column;
        padding:18px;
    }
    .offcanvas.open{transform:translateX(0)}

    .backdrop.visible{opacity:1;pointer-events:auto}
    .offcanvas__header{
        display: flex;
        width: 83%;
        justify-content: space-between;
    }
    .nav a{
        font-weight: 500;
        font-family: 'TT_Fors_Variable', sans-serif;
        font-size: 16px;
        color: var(--text-color);
        transition: color 0.5s ease;
        margin: 16px 0 0 0;
    }
    .nav a p{
        margin: 16px 0 0 0;
    }
    .nav{
        margin: 26px 0 0 0;
        height: 184px;
    }
    .menu_burger.open .burger__lines span:nth-child(1){transform:translateY(6px) rotate(45deg)}
    .menu_burger.open .burger__lines span:nth-child(2){opacity:0}
    .menu_burger.open .burger__lines span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

    .btn_personal_account{
        margin: 40px 0 0 0;
    }
    .connection_block{
        display: none;
    }
    .btn_light-dark{
        display: none;
    }
    .top_right_block{
        display: none;
    }
    .burger_light_dark{
        display: flex;
        top: 16px;
        left: 269px;
        transform: translateX(0);
    }
    .burger_connection{
        display: flex;
        flex-direction: column;
        margin: 34px 0 0 0;
    }
    .burger_connection a{
        color: var(--text-color);
        font-weight: 600;
        font-size: 24px;
        line-height: 30px;
        transition: color 0.5s ease;
        font-family: 'TT_Fors_Variable', sans-serif;
        cursor: pointer;
    }
    .burger_connection a:hover{
        color: var(--color-accent);
    }
    header {
        padding: 16px 16px 24px 16px;
    }
    .block_tg_wa {
        right: 16px;
    }
    .block_card_project {
        height: 400px;
    }


    .contacts {
        width: calc(100% - 100px);
        height: 1146px;
        display: flex;
        flex-direction: column;
        margin: 80px 0 0 50px;
    }
    .block_map {
        top: 354px;
        left: 16px;
    }
    .map {
        width: 100%;
        height: 438px;
        margin: 32px 0 0 0;
    }
    .contact-form {
        margin: 32px 0 0 0;
    }
    .full {
        margin: 16px 0 0 0;
    }
    .captcha {
        width: 100%;
        height: 62px;
        padding: 14px 16px 14px 16px;
    }
    .contacts_left_block {
        width: 100%;
        height: 78px;
    }
    .contacts_left_block h2 {
        font-size: 32px;
        line-height: 38px;
    }
    .block_btns_burger{
        display: flex;
        margin: 40px 0 0 0;
        gap: 16px;
    }
    .burger_card_btn{
        margin: 16px 0 0 0;
        width: 100%;
    }
    .burger_block_colum{
        margin: 24px 0 0 0;
    }
    .content_services {
        width: 500px;
    }
    .circle {
        right: -940px;
    }
}
@media (max-width: 1200px){
    .next_btn {
        margin: 50px 0 0 50px;
    }
}
@media (max-width: 1200px){
    .company_left_block {
        padding: 0;
    }
    .customers_block h2 {
        width: 400px;
    }
    .block_tg_wa{
        display: none;
    }
    .btn_card{
        display: none;
    }
    .top_left_block{
        width: 100%;
    }
    .logo{
        fill: var(--text-color);
        transition: fill 0.5s ease;
        width: 109px;
        height: 24px;
    }
    header {
        height: 844px;
        padding: 16px 16px 24px 16px;
    }
    .info_header{
        width: 100%;
    }
    .block_star{
        width: 586px;
        height: 323px;
        margin: 111px 0 0 0;
    }
    .planet{
        width: 400px;
        height: 400px;
    }
    .bottom_header{
        display: flex;
        flex-direction: column;
        align-items: start;
        height: 336px;
        justify-content: space-between;
    }
    .info_btns{
        display: flex;
        flex-direction: column;
        height: 196px;
    }
    .info_btns2{
        margin: 16px 0 0 0;
    }
    .info_btns button{
        padding: 18px 24px 18px 24px;
        border-radius: 10px;
    }
    .info_btns{
        width: 100%;
    }
    .block_company{
        height: 708px;
        margin: 80px 16px 0 16px;
        display: flex;
        flex-direction: column;
    }
    .company_left_block{
        width: 100%;
        height: 204px;
    }
    .company_money, .company_data, .company_time{
        height: 136px;
        margin: 32px 0 0 0;
    }
    .projects{
        margin: 80px 16px 0 16px ;
    }
    .block_projects{
        display: flex;
        flex-direction: column;
        margin: 0 0 0 0;
    }
    .next_btn{
        width: 100%;
        margin: 32px 0 0 0;
    }
    .block_projects > .our_principles:nth-last-child(2) {
        order: 1;
    }
    .card_project img {
        width: 100%;
        height: 100%;
    }
    .slider {
        margin: 0;
    }
    .card_project{
        display: block;
    }
    .block_card_project {
        width: 100%;
        height: 100%;
    }
    .our_principles{
        width: 100%;
        height: 372px;
        padding: 24px;
        margin: 32px 0 0 0;
    }
    .block_discuss{
        width: 100%;
        height: 70px;
        transition: border 0.5s;
        padding: 16px;
        flex-direction: row;
        align-items: center;
    }
    .block_card_project:nth-child(even) {
        grid-column: auto;
        margin: 32px 0 0 0;
        justify-self: auto;
    }
    .block_card_project{
        margin: 32px 0 0 0;
    }
    .block_discuss div{
        width: 38px;
        height: 38px;
    }
    .services{
        height: 800px;
        margin: 80px 0 0 0;
        padding: 48px 16px 48px 16px;
    }
    .circle {
        top: 252px;
        left: 50%;
        transform: translate(-50%, 0) rotate(60deg);
    }
    .content_services {
        top: 389px;
        width: calc(100% - 32px);
        height: 366px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .content_services button {
        width: 100%;
        bottom: 34px;
    }
    .menu_services{
        display: none;
    }
    .bullets {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 4px;
    }
    .bullet {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--bg-bullet);
        transition: transform 0.5s ease;
        cursor: pointer;
    }
    .bullet.active {
        background: var(--color-accent);
    }
    .bullets2{
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 4px;
    }
    .bullet2 {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--bg-bullet);
        transition: transform 0.5s ease;
        cursor: pointer;
    }
    .bullet2.active {
        background: var(--color-accent);
    }
    .controls{
        display: none;
    }
    .customers_block{
        flex-direction: column;
    }
    .slider_customers {
        position: relative;
        height: 544px;
        margin: 80px 0 0 17px;
    }
    .slider-track {
        gap: 16px;
        transform: translateX(0px);
        margin: 32px 0 0 0;
    }
    .slide{
        width: 584px;
        height: 312px;
        position: relative;
    }
    .slider_svg {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 58px;
        height: 58px;
        margin: 0px 16px 16px 0px;
    }
    .slider_svg svg{
        width: 20px !important;
        height: 20px !important;
    }
    .slide h2 {
        position: absolute;
        top: 0px;
        right: 0px;
        font-size: 16px;
        line-height: 24px;
        border-left: 1px solid #FFFFFF29;
        padding: 25px 16px 25px 16px;
        width: 494px;
        height: 90px;
        display: flex;
        align-items: center;
    }
    .text_block_slide {
        height: 176px;
        border: none;
    }
    .slide p {
        position: absolute;
        top: 90px;
        right: 0px;
        border-top: 1px solid #FFFFFF29;
        padding: 22px 16px 24px 16px;
    }
    .contacts{
        width: 100%;
        height: 1360px;
        margin: 80px 0 0 0;
        display: flex;
        flex-direction: column;
        padding: 0 16px 0 16px;
    }
    .block_map{
        top: 354px;
        left: 16px;
    }
    .map{
        width: 100%;
        height: 424px;
        margin: 32px 0 0 0;
    }
    .contact-form {
        margin: 32px 0 0 0;
    }
    .form-row {
        flex-direction: column;
        gap: 0px;
        margin: 0;
    }
    .half {
        width: 100%;
        margin: 16px 0 0 0;
    }
    .full {
        margin: 16px 0 0 0;
    }
    .block_btns {
        flex-direction: column;
        margin: 16px 0 0 0;
        align-items: start;
    }
    .captcha {
        width: 100%;
        height: 62px;
        padding: 14px 16px 14px 16px;
    }
    .submit-btn {
        width: 100%;
        margin: 32px 0 0 0;
    }
    footer{
        position: relative;
        height: 558px;
        padding: 48px 15px 48px 15px;
        margin: 80px 0 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .column_3 .footer_connection {
        width: calc(100% - 30px);
        position: absolute;
        left: 15px;
        top: 120px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .top_mrgn {
        margin: 0;
    }
    .column_1 svg{
        width: 109px;
        height: 20px;
    }
    .column_1 {
        align-items: start;
    }
    .block_btns_footer {
        position: absolute;
        left: 15px;
        bottom: 238px;
        display: flex;
        gap: 12px;
    }
    .btn_card_btn{
        position: absolute;
        right: 16px;
        bottom: 238px;
    }
    .btn_footer {
        width: calc(100% - 30px);
        position: absolute;
        left: 15px;
        bottom: 160px;
    }
    .column_2{
        flex-direction: column-reverse;
        height: 48px;
        position: absolute;
        left: 15px;
        bottom: 56px;
    }
    .btn_card2{
        width: 180px;
    }
    .scroll_back {
        position: absolute;
        right: 15px;
        bottom: 48px;
    }
    .not_none{
        display: flex;
    }
    .p_customers_top {
         width: 100%;
         height: 72px;
         margin: 16px 0 0 0;
    }
    .p_block_discuss{
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }

    .block_top_info {
         flex-direction: row;
        height: 278px;
    }
    .block_content {
        width: 310px;
    }
    .block_services_info_active {
        transform: translateX(0);
        margin: 0 0 0 15%;
        opacity: 1;
        width: 80%;
    }
}
@media (max-width: 900px){
    .block_services_info_active {
        transform: translateX(0);
        margin: 0;
        opacity: 1;
        width: auto;
    }
    .card_project{
        position: relative;
    }
    .glass_block_info{
        position: absolute;
        inset: 0;
        z-index: 1;
        text-decoration: none;
        color: inherit;
    }
    .block_card_project:hover .glass_block{
        opacity: 0;
    }
    .glass_block{
        inset: 0;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        width: auto;
        height: auto;
}
    .checkbox p{
        font-weight: 200;
        font-size: 14px;
        line-height: 18px;
    }
    .checkbox a{
        font-weight: 200;
        font-size: 14px;
        line-height: 18px;
    }
}
@media (max-width: 431px){
    .customers_block h2 {
        height: 76px;
        width: 90%;
    }
}
@media (max-width: 600px){
.p_customers_top{
    width: 100%;
    height: 120px;
    margin: 16px 0 0 0;
    font-size: 16px;
}
.customers_block h2 {
    width: 90%;
}
.slider_customers {
    height: 786px;
    margin: 80px 0 0 16px;
}
.slide {
    width: 332px;
    height: 468px;
}
.slide h2 {

    border-left: 1px solid #FFFFFF29;
    padding: 15px 16px 15px 16px;
    width: 242px;
}
.slide p {
    position: absolute;
    top: 90px;
    right: 0px;
    border-top: 1px solid #FFFFFF29;
    padding: 24px 16px 24px 16px;
}
.scroll_block h2{
    font-size: 24px;
    line-height: 30px;
    width: 225px;
}
.scroll_block h2 span{
    font-size: 54px;
    line-height: 56px;
}
.block_star {
    width: 100%;
    height: 275px;
    margin: 91px 0 0 0;
}
.planet {
    width: 300px;
    height: 300px;
}
.info_header h1 {
    font-size: 36px;
    line-height: 42px;
    height: 84px;
}
.info_header p {
    font-size: 16px;
    line-height: 24px;
    height: 20px;
}
.block_company {
    height: 928px;
}
.company_money, .company_data, .company_time {
    height: 186px;
    margin: 24px 0 0 0;
}
.company_figures p {
    font-size: 16px;
    line-height: 22px;
    margin: 24px 0 0 0;
    width: 100%;
}
.our_principles h1 {
    font-size: 24px;
    line-height: 30px;
    width: 300px;
    height: 30px;
}
.block_top_info {
    flex-direction: column;
    height: 266px;
}
.our_principles {
    height: 411px;
}
.block_discuss {
    height: 62px;
    padding: 12px 12px 12px 16px;
}
.block_content {
    width: 100%;
}
.map{
    height: 438px;
}
.contacts_left_block {
    width: 100%;
    height: 78px;
}
.column_3 .footer_connection {
    left: 16px;
    top: 116px;
    flex-direction: column;
    align-items: start;
}
footer{
    height: 738px;
    padding: 40px 16px 40px 16px;
}
.btn_card_btn {
    position: absolute;
    right: 16px;
    bottom: 234px;
    width: 100%;
}
.block_btns_footer {
    left: 15px;
    bottom: 350px;
    width: calc(100% - 32px);
}
.btn_card2 {
    width: calc(100% - 32px);
}
.services{
    height: 889px;
    margin: 80px 0 0 0;
    padding: 48px 16px 48px 16px;
}
.content_services {
    top: 351px;
    height: 490px;
}
.content_services h2{
    height: auto;
}
}












