.hero__content {
    height: 100vh;
    align-content: center;
    position: relative;
}

.welcome-caption {
    font-family: var(--font-headings);
    text-align: center;
    color: #A6A6A6;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
}

.title-line-main {
    font-family: var(--font-accent);
    text-align: center;
    font-size: 80px;
    width: 100%;
    font-weight: 100;
}

.italic {
    font-style: italic;
}

.hero__title {
    text-align: center;
}

.hero__description p {
    font-family: var(--font-main);
    padding-right: 250px;
    padding-left: 250px;
    text-align: center;
    font-size: 18px;
    color: #B8B8B7;
    font-weight: 100;
    margin-top: 30px;
    margin-bottom: 50px;
}

.but-1-main {
    height: 62px;
    background-color: var(--accent-green);
    width: 241px;
    border: 0px;
    border-radius: 99px;
    font-size: 18px;
    text-transform: uppercase;
    margin-right: 10px;
}

.but-3-main {
    height: 62px;
    background-color: var(--accent-green);
    width: 340px;
    border: 0px;
    border-radius: 99px;
    font-size: 18px;
    text-transform: uppercase;
    margin-right: 10px;
}


.arrow-but-main {
    margin-bottom: -3px;
    margin-left: 8px;
}

.uph23 {
    margin-top: 1px;
}


.but-2-main {
    height: 62px;
    color: var(--accent-green);
    background-color: #00000000;
    width: 241px;
    border: 1px var(--accent-green) solid;
    border-radius: 99px;
    font-size: 18px;
    text-transform: uppercase;
    margin-left: 10px;
}

.back-line-main {
    position: absolute;
    top: 25%;
    z-index: -1;
    left: 1.4%;
}

.back-mainn-block {
    position: absolute;
    width: 100%;
    bottom: -20%;
    z-index: -1;
}

.changing-word::after {
    content: '|';
    display: inline-block;
    margin-left: 3px;
    font-weight: 500;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.scrolling-ticker {
    background-color: var(--bg-dark-light);
    padding: 40px 0px;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 60px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Стили для заполненного текста */
.ticker-item.filled {
    color: white;
}

/* Стили для текста с обводкой */
.ticker-item.outline {
    color: transparent;
    -webkit-text-stroke: 1px white;
    text-stroke: 1px white;
}

/* Кастомные звёзды вместо точек */
.ticker-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-left: 25px;
    background-image: url('/images/star-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.second-block {
    margin-bottom: 50px;
    height: 500px;
    padding-top: 125px;
    position: relative;
    margin-bottom: 10px;
}

.chast {
    width: 100%;
    max-width: 300px;
}

.cheslo-second-block {
    font-size: 50px;
    font-weight: 100;
    font-family: var(--font-headings);
}

.pod-cheslo-second-block {
    font-weight: 500;
    font-family: var(--font-headings);
    font-size: 20px;
    margin-top: 10px;
}

.ogr-line-bok {
    width: 1px;
    height: 190px;
    background-color: #222222;
}

.gor-line-sec-bl {
    width: 500px;
    height: 1px;
    background-color: #585858;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.names-block {
    color: var(--accent-green);
    font-weight: 200;
    font-size: 22px;
    font-family: var(--font-headings);
    text-transform: uppercase;
}

.description-second-block {
    font-family: var(--font-main);
    font-weight: 300;
    color: #C6C8C9;
    font-size: 18px;
    margin-top: 30px;
}



.but-second {
    height: 54px;
    color: var(--accent-green);
    background-color: #00000000;
    width: 200px;
    border: 1px var(--accent-green) solid;
    border-radius: 10px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 40px;
}


.three-block {
    margin-top: 25px;
    padding-top: 125px;
    position: relative;
    padding-bottom: 60px;
}

.setka-serv {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
}

.description-three-block {
    font-family: var(--font-main);
    font-weight: 300;
    color: #C6C8C9;
    font-size: 18px;
    margin-top: 30px;
    width: 500px;
    margin-top: -5px;
}

.services-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    margin-top: 20px;
    justify-content: space-between
}

.services-card {
    position: relative;
    overflow: hidden;
    width: 364px;
    margin-top: 30px;
    height: 320px;
    padding: 25px;
    background-color: var(--bg-dark-light);
    border-radius: 10px;
    transition: transform .3s ease;
}

.services-card:hover {
    transform: translateY(-5px);
}

/* SVG рамка поверх карточки */
.services-card .border-svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    /* не мешает кликам */
    z-index: 2;
}

/* Анимируем «рисование» рамки при hover */
.services-card:hover .border-svg rect {
    transition: stroke-dashoffset .8s ease;
    stroke-dashoffset: 0;
}

.service-name {
    font-size: 25px;
    margin-top: 20px;
    font-weight: 500;
}


.card-xz-chto {
    font-size: 14px;
    font-weight: 100;
    color: #fff;
    border: 1px #2A2A2A solid;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 99px;
}

.card-description {
    font-weight: 200;
    color: #B0B2B3;
    margin-top: 10px;
    font-size: 17px;
}

.card-price {
    font-size: 24px;
    color: var(--accent-green);
    margin-top: 20px;
    /* position: absolute;
    top: 67%; */
}

.card-but {
    background-color: #191919;
    padding: 15px;
    border-radius: 99px;
    border: 0px;
    top: 77%;
    position: absolute;
    transition: .3s;
}

.card-but:hover {
    rotate: 45deg;
}

.services-card-2 {
    background-color: #0b3722;
    overflow: hidden;
}

.w29x29 {
    width: 31px;
    height: 29px;
}

.w50x50 {
    width: 50px;
    height: 50px;
}

.line-between-pages {
    width: 100%;
    display: flex;
    justify-content: center;
}

.four-block {
    min-height: 700px;
    padding-top: 50px;
}


.but-four {
    height: 54px;
    color: #fff;
    background-color: #00000000;
    width: 200px;
    border: 1px #fff solid;
    border-radius: 99px;
    font-size: 18px;
    text-transform: uppercase;
}

.but-four-v2 {
    padding: 15px;
    background-color: #00000000;
    border: 1px #272727 solid;
    border-radius: 50%;
    text-transform: uppercase;
    margin-left: 10px;
}

.but-four-v3 {
    height: 54px;
    color: #fff;
    background-color: #00000000;
    width: 250px;
    border: 1px #fff solid;
    border-radius: 99px;
    font-size: 18px;
    text-transform: uppercase;
}

.portfolio-block {
    width: 100%;
    height: 1000px;
    background-color: #000;
    padding-top: 40px;
    position: relative;
}


.BCBCBC {
    color: #BCBCBC;

}

.buttons-portfolio-variants {
    width: 750px;
    border-radius: 10px;
    background-color: #121212;
    height: 70px;
    display: flex;
    align-items: center;
    align-content: center;
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-around;
    margin-top: 60px;
}


.h1-portfolio-butons {
    border-radius: 10px;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 35px;
    padding-left: 35px;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
}

.portfolio-case {
    padding: 20px;
    background-color: #101010;
    border-radius: 20px;
    height: 380px;
    width: 400px;
    margin-bottom: -60px;
}

.h6-portfolio-case {
    font-family: Montserrat;
    font-size: 20px;
    color: #00F900;
    font-weight: 500;
    margin-top: 20px;
}

.h5-portfolio-case {
    color: #BEBEBE;
    font-size: 16px;
    font-weight: 300;
    width: 400px;
    margin-top: -40px;
}

.in-website {
    color: #00F900;
    margin: 0px;
}

.Left-Arrow-p {
    width: 34px;
    height: 34px;
    margin-top: -6px;
    margin-left: 5px;
}

.portfolio-case-containner {
    gap: 30px;
    margin-top: -10px;
    flex-wrap: wrap;
}

.portfolio-image {
    width: 400px;
}


.card-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.card-stack {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
}

.card {
    position: absolute;
    width: 70%;
    height: 100%;
    border-radius: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    transform-origin: left center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.card.hidden {
    opacity: 0;
    transform: translateX(100%) scale(0.6);
}

.card.leaving {
    animation: slide-out-left 0.5s forwards;
}

.card:nth-child(1) {
    z-index: 4;
    transform: translateX(0%) scale(1);
}

.card:nth-child(2) {
    z-index: 3;
    transform: translateX(20%) scale(0.9);
}

.card:nth-child(3) {
    z-index: 2;
    transform: translateX(40%) scale(0.8);
}

.card:nth-child(4) {
    z-index: 1;
    transform: translateX(60%) scale(0.7);
}

.slider {
    position: relative;
    margin-top: 50px;
    width: 1330px;
    height: 600px;
    align-content: center;
}

.clients_slider_item {
    position: absolute;
    top: 0%;
    width: 75%;
    height: 560px;
    background: gray;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.6s ease;
}

.inactive {
    width: 10%;
    opacity: 0;
    left: 90%;
    height: 60%;
    top: 18%;
    font-size: 0px;
}

.position-1 {
    left: 0;
    transform: translateX(0) scale(1);
    z-index: 5;
    opacity: 1;
}

.position-2 {
    left: 11%;
    transform: translateX(0%) scale(0.9);
    z-index: 4;
    opacity: 1;
}

.position-3 {
    left: 22%;
    transform: translateX(0%) scale(0.8);
    z-index: 3;
    opacity: 1;
}

.position-4 {
    left: 32%;
    transform: translateX(0%) scale(0.7) !important;
    z-index: 2;
    opacity: 1;
}

.exit-left {
    animation: exitLeft 0.6s forwards;
}

@keyframes exitLeft {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-300px) scale(1.2);
        opacity: 0;
    }
}


.header-mobile {
    display: none;
}

.side-menu {
    display: none;
}

.nav-buttons {
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    width: 15%;
    align-items: center;
}

.nav-buttons button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 22px 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    width: 60px;
    height: 60px;
}

.nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.bg1 {
    background: #121212;
    border: 1px #1E1E1E solid;
}

.bg2 {
    background: #121212;
    border: 1px #1E1E1E solid;
}

.bg3 {
    background: #121212;
    border: 1px #1E1E1E solid;
}

.bg4 {
    background: #121212;
    border: 1px #1E1E1E solid;
}

.position-1 {
    background: #161616;
}




.portfolio-h1 {
    width: 100%;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin: 0px;
}

.header-portfolio-block {
    width: 100%;
    height: 150px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.all-portfolio-button-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.all-portfolio-button {
    width: 260px;
    height: 60px;
    border-radius: 90px;
    border: 2px #0ECB0E solid;
    background-color: #000000;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    font-family: Montserrat;
    z-index: 1;
}

.al-c-st {
    align-content: flex-start
}

.progress-bar-track {
    width: 85%;
    height: 4px;
    background: #ddd;
    position: relative;
    margin-top: 30px;
    border-radius: 2px;
}

.progress-thumb {
    position: absolute;
    top: -3px;
    width: 100px;
    height: 10px;
    background: #fff;
    border-radius: 10px;
    transition: left 0.4s ease;
}

.left-arrow-nav {
    rotate: 180deg;
    fill: #fff;
    width: 45px;
    height: 45px;
}

.right-arrow-nav {
    fill: #fff;
    width: 45px;
    height: 45px;
}

.between-form {
    margin-top: 150px;
    margin-bottom: 150px;
    background-color: var(--bg-dark-light);
    height: 1000px;
    position: relative;
}

.tofj3 {
    width: 100% !important;
    rotate: 180deg;
    position: absolute;
    left: 0;
    top: 0;
}

.tofj3-v2 {
    width: 100% !important;
    position: absolute;
    left: 0;
    bottom: 0;
}

.h2-between-form {
    font-size: 60px;
    font-weight: 200;
    width: 630px;
}

.description-between-block {
    font-family: var(--font-main);
    font-weight: 300;
    color: #C6C8C9;
    font-size: 18px;
    margin-top: 20px;
    font-weight: 200;
    margin-left: 8px;
    width: 500px;
}

.between-but {
    margin-left: 8px;
    margin-top: 35px;
}

.form-between-main {
    background-color: #151515;
    border-radius: 20px;
    width: 430px;
    height: 630px;
    padding: 30px;
    align-content: center;
}

.form-h5 {
    text-align: center;
    font-size: 28px;
    font-family: var(--font-headings);
    font-weight: 400;
    margin-top: -10px;
}

.form-h6 {
    font-size: 16px;
    font-weight: 200;
    font-family: var(--font-headings);
    text-align: center;
    margin-top: 10px;
}

label {
    font-size: 17px;
    font-family: var(--font-headings);
    font-weight: 400;
    width: 100%;
    min-width: 350px;
    display: block;
}

input {
    width: 95%;
    margin-top: 8px;
    border: 1px #656565 solid;
    border-radius: 10px;
    height: 50px;
    background-color: #00000000;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-headings);
    color: #fff;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #151515 inset !important;
    /* Заливка */
    -webkit-text-fill-color: #ffffff !important;
    /* Цвет текста */
    transition: background-color 5000s ease-in-out 0s;
    /* Safari fix */
}

.mt-15 {
    margin-top: 15px !important;
}

.form-sub-but {
    height: 50px;
    width: 100%;
    border-radius: 10px;
    border: 0px;
    background-color: var(--accent-green);
    font-size: 16px;
    color: #000;
    margin-top: 20px;
}

.phone-inp {
    width: 431px;
    padding-left: 105px !important;
    height: 53px;
}

.ffjef {
    line-height: 100%;
}

.cards {
    width: 100%;
    display: flex;
    gap: 23px;
    margin-top: 30px;
}

.card-2 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 200px;
    background-color: #00000000;
    border-radius: 20px;
    border: 1px #404040 solid;
    height: 400px;
    position: relative;
    transition: .6s;
    overflow: hidden;
}

.etap-ico {
    width: 60px;
    margin-top: 15px;
    opacity: .3;
    transition: .3s;
}

.card-2.active-card .etap-ico {
    opacity: 1;
}

.etap-p {
    display: none;
    transition: .3s;
    font-size: 16px;
}

.etap-h3 {
    font-size: 22px;
    margin-top: 20px;
    font-weight: 400;
    transition: .3s;
}

.number-etap {
    position: absolute;
    top: 78%;
    font-size: 46px;
    font-family: var(--font-main);
    font-weight: 600;
}

.active-card {
    width: 340px;
    background-color: #121212;
    border-radius: 20px;
    border: 0px;
}


.etap-p.active {
    display: block;
    margin-top: 16px;
    font-family: var(--font-main);
    font-weight: 300;
    color: #B0B2B3;
}


.seven-block {
    min-height: 800px;
}

.line-between-pages-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 110px;
    margin-bottom: 110px;
}

.technology-mini-block {
    width: 110px;
    background-color: #121212;
    border-radius: 10px;
    height: 110px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.technology-mini-block:hover {
    background-color: #1e1e1e;
}

.f-s-my {
    font-size: 50px;
    margin-top: 5px
}

.description-seven-block {
    font-family: var(--font-main);
    font-weight: 100;
    color: #B0B2B3;
    font-size: 18px;
    margin-top: 15px;
    width: 450px;
}

.number-technology {
    font-size: 64px;
    font-weight: 400;
    font-family: var(--font-headings);
    margin-top: 15px;

}

.number-technology-t {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-headings);
    margin-top: 36px;
    color: #858587;
    width: 50%;
    margin-left: 15px;
}

.faq {
    background-color: #121212;
    height: 100%;
    margin-top: -20px;
    padding-bottom: 80px;
}

.but-four-v3 {
    height: 54px;
    color: #fff;
    background-color: #00000000;
    width: 250px;
    border: 1px #fff solid;
    border-radius: 99px;
    font-size: 18px;
    text-transform: uppercase;
}


.FAQ-block {
    background-color: #0f1013;
    width: 100%;
    height: 800px;
}

.zalishiti-vidguk-2 {
    width: 300px;
    height: 60px;
    color: #fff;
    background-color: #00F900;
    border-radius: 5px;
    border: 0px;
    margin-top: 60px;
    z-index: 3;
}



.FAQ-h1 {
    width: 100%;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin: 0px;
    margin-top: -15px;
}

.FAQ-h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    width: 100%;
    margin: 0px;
    font-family: var(--font-headings);

}


.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-top: 20px;
}

.faq-item {
    background-color: #00000000;
    border-radius: 20px;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px #1d1d1d solid;
    transition: background-color 0.3s ease;
    margin-top: 20px;

}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-headings);
    font-weight: 200;
}

.faq-item.active .faq-question {
    color: var(--accent-green);
    background-color: #00000000;
}

.faq-item.active {
    background-color: #15151500 !important;
}

.faq-icon {
    font-size: 28px;
    color: #fff;
    transition: 0.3s;
    background-color: #00000000;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-green);
    font-size: 32px;
}

.faq-answer {
    color: #aaa;
    font-size: 16px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.3s ease, margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
    background-color: #15151500;
    font-family: var(--font-accent);
    font-weight: 200;
}

.footer {
    background-color: #121212;
    height: 360px;
    margin-top: 0px;
    border-top: 1px var(--accent-green) solid;
    padding-top: 50px;
}

.footer-h5 {
    font-size: 24px;
    font-family: var(--font-headings);
    font-weight: 500;
    margin-bottom: 23px;
}

.footer-h6 {
    font-size: 16px;
    font-family: var(--font-headings);
    font-weight: 300;
    margin-top: 15px;
}



.first-block {
    position: relative;
    overflow: hidden !important;
}



/* Сторінка про нас */

.about-us-first-block {
    background-color: #121212;
    height: 500px;
    background-position: top;
    border-top: 1px #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/images/about-first-bg.svg);
    padding-top: 85px;

}

.breadcrumbs-h6 {
    font-size: 18px;
    color: #b7b7b7;
    font-family: var(--font-accent);
    font-weight: 200;
    margin-left: 5px;
}

.breadcrumbs {
    margin-top: -15px;
}


canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    width: 100%;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100% !important;
}

/* ---- particles.js container ---- */
#particles-js2 {
    width: 100%;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh !important;
}

/* ---- stats.js ---- */
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

.particles-js-canvas-el {
    width: 100%;
    height: 100vh !important;
}

.page-first-block-cont {
    padding: 80px;
    border-radius: 20px;
    z-index: 10;
    position: relative;

}

.page-back-first {
    background-color: #ffffff05;
    height: 420px;
    margin-top: -80px;
    margin-left: -80px;
    margin-right: -80px;
    position: absolute;
    width: 1300px;
    border-radius: 20px;
    pointer-events: none;
    filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: -1;
}


.about-us-per-block {
    padding-top: 100px;
    position: relative;
}

.prinncipi-cont {
    margin-top: 50px;
    margin-bottom: 20px;
}

.number-princip {
    font-weight: 200;
    color: #969a9f;
    font-size: 18px;
    font-family: var(--font-headings);
}

.h1-princip {
    font-size: 26px;
    font-family: var(--font-headings);
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 18px;
}

.p-principi {
    font-size: 16px;
    font-weight: 200;
    font-family: var(--font-main);
    color: #969a9f;
}

.principi-head {
    font-size: 50px;
}

.about-us-three-block {
    height: 700px;
    padding-top: 100px;
    padding-bottom: 220px;
    background-color: var(--bg-dark-light);
    display: block;
}

.about-us-shit-block {
    height: 600px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--bg-dark-light);
    display: block;
}

.map-block-about-us {
    position: relative;
}

.point-map {
    width: 10px;
    height: 10px;
    background-color: var(--accent-green);
    border-radius: 50%;
    position: absolute;
    border: 5px #000000ab solid;
}

.p1 {
    top: 31%;
    left: 54.5%;
}

.p2 {
    top: 40%;
    left: 21.5%
}

.p4 {
    top: 29%;
    left: 44.5%;
}

.p3 {
    top: 61%;
    left: 79%;
}

.p5 {
    top: 47%;
    left: 63%;
}

.p6 {
    top: 39%;
    left: 55%;
}

.p7 {
    top: 31%;
    left: 65%;
}

.p8 {
    top: 33%;
    left: 25%;
}


.p9 {
    top: 76%;
    left: 30%;
}

.p10 {
    top: 49%;
    left: 13.5%;
}

.point-map h6 {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.point-map h6.hide {
    opacity: 0;
    pointer-events: none;
    /* чтобы не мешал курсору */
}

.name-of-city {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 53px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -30px;
    color: #000;
}

.name-of-city-2 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -52px;
    color: #000;
    width: 78px;
}

.name-of-city-4 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 61px;
}

.name-of-city-3 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 70px;
}

.name-of-city-5 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 50px;
}

.name-of-city-6 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 35px;
}

.name-of-city-7 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 55px;
}

.name-of-city-8 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 55px;
}

.name-of-city-9 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 65px;
}

.name-of-city-10 {
    font-size: 14px;
    margin-top: -40px;
    background-color: var(--accent-green);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: -45px;
    color: #000;
    width: 55px;
}


.line-between-pages-3 {
    width: 100%;
    margin-top: 110px;
    margin-bottom: -25px;
    display: flex;
    justify-content: center;
}

.about-us-four-block {
    width: 100%;
    height: 700px;
    margin-top: -25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.green-blick-about-us {
    rotate: 180deg;
    display: block;
    width: 70%;
    position: absolute;
    bottom: 0;
}

.four-about-number {
    font-size: 60px;
    font-weight: 800;
    font-family: var(--font-accent) !important;
    color: transparent;
    -webkit-text-stroke: 2px white;
    /* обводка */
    font-family: 'Arial', sans-serif;
}

.four-about-text {
    font-size: 24px;
    font-weight: 300;
    font-family: var(--font-accent) !important;
    width: 150px;
}

.about-four-cont {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px #3d3f3e solid;
    width: 600px;
}

.keomvoek {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 85px;
}

.reviews-about-block {
    height: 700px;
    padding-top: 120px;
}

.review-connt-about {
    width: 360px !important;
    height: 350px !important;
    background-color: #ffffff03;
    border-radius: 20px;
    margin-top: 40px;
    padding: 30px;
    position: relative;
}

.linne-about-rev {
    width: 100%;
    height: 1px;
    background-color: #ffffff1c;
    margin-top: 28px;
}

.rating-rev-about {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: 300;
}

.star-rating {
    font-size: 22px;
    display: inline-flex;
    gap: 4px;
    margin-left: 10px;
    margin-top: -3px;
}

.star {
    color: #ffffff2b;
    /* фон незаповнених */
    position: relative;
    display: inline-block;
}

.star.filled {
    color: #ffdf31;
}

.star.partial::before {
    content: '★';
    color: gold;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--percent);
    overflow: hidden;
}

.review-about-serv {
    margin-top: 20px;
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 200
}

.review-name-about {
    position: absolute;
    top: 79%;
    font-size: 24px;
    font-family: var(--font-headings);
    font-weight: 400;
}

.review-comment-about {
    position: absolute;
    top: 88.5%;
    font-size: 16px;
    font-family: var(--font-headings);
    font-weight: 300;
    color: rgb(150, 154, 159);
}

.about-us-five-block {
    height: 400px;
    padding-bottom: 150px;
    padding-top: 100px;
}

.cont-five-block {
    background-color: var(--bg-dark-light);
    border-radius: 20px;
    height: 500px;
    width: 70%;
    display: flex;
    padding: 80px;
}

.call-nad-tekst {
    font-size: 18px;
    font-family: var(--font-headings);
    font-weight: 500;
}

.call-us-please {
    font-size: 26px;
    font-family: var(--font-headings);
    font-weight: 200;
    color: #fff;
    margin-top: 5px;
}

.promej-line-about-us {
    width: 100%;
    height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff33;
    margin-top: 100px;
    margin-bottom: 80px;
}

.texts-promej-line {
    width: 350px;
    background-color: var(--bg-dark);
    font-size: 22px;
    text-align: center;
    border: 1px #ffffff6e solid;
    border-radius: 999px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.about-us-companies-block {
    height: 700px;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.companies-block-h1 {
    font-size: 50px;
    padding-left: 220px;
    padding-right: 220px;
    text-align: center;
}

.company-cont-about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    padding: 50px;
    border-radius: 50%;
    border: 1px #242727 solid;
    margin-top: 80px;
}

.promej-line-about-us-v2 {
    width: 100%;
    height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff33;
    margin-top: 150px;
    margin-bottom: 80px;
}

.texts-promej-line-v2 {
    width: 350px;
    background-color: var(--bg-dark);
    font-size: 22px;
    text-align: center;
    border: 1px #ffffff6e solid;
    border-radius: 999px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.about-us-nagorody-block {
    height: 500px;
    padding-bottom: 200px;
    margin-top: -100px;
    position: relative;
}

.nagorody-block-h1 {
    font-size: 50px;
}

.nagorody-image {
    width: 24%;
    margin-top: 50px;
}

.review-swiper {
    margin-top: 40px;
    position: relative;
}

.about-us-slider-wrapper {
    overflow: hidden !important;
    width: 100%;
    position: relative;
    max-width: 1300px !important;
    margin-bottom: 30px;
}

.about-us-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: fit-content;
    gap: 20px;
    width: 1300px;
}

.review-connt-about {
    min-width: calc(97% / 3);
    box-sizing: border-box;
}

.logo-loader {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-progress {
    position: relative;
    width: 140px;
    height: 140px;
}

.circle-progress img {
    width: 60px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

circle.bg {
    fill: #000;
    stroke: #ffffff8a;
    stroke-width: 1;
}

circle.progress {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 2;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1s ease;
}

circle.dot {
    fill: #ffffff;
    transform-origin: center;
    transform-box: fill-box;
    animation: rotateDot 2s linear forwards;
    opacity: 1;
}

@keyframes rotateDot {
    from {
        transform: rotate(0deg) translateY(-54px);
        r: 4;
    }

    to {
        transform: rotate(360deg) translateY(-54px);
        r: 6;
    }
}

#preloader.hide {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.no-scroll {
    overflow: hidden !important;
}


/* Кінець сторінки про нас */


.contacts-block {
    height: calc(100vh - 330px);
}

.contacts-cont {
    height: 420px;
    background-color: var(--bg-dark-light);
    width: 1120px;
    z-index: 1;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    display: flex;
    padding-left: 120px;
}

.form-contacts {
    width: 400px;
}

.form-contacts input {
    border-radius: 2px;
    padding-left: 15px;
}

.form-contacts label {
    margin-top: 20px;
}

.form-contacts .iti {
    width: 350px !important;
    margin-top: 8px !important;
}

.form-contacts .phone-inp {
    width: 400px;
}

.form-contacts button {
    margin-top: 20px;
    background-color: var(--accent-green);
    color: #000;
    width: 100%;
    border: 0px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 2px;
    font-size: 16px;
}

.form-name-contacts {
    width: 100%;
    font-size: 26px;
    text-align: center;
    font-weight: 400;
}

.form-name-p {
    margin-top: 5px;
    width: 400px;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 200;
}

.contacts-name {
    font-size: 16px;
    font-family: var(--font-main);
    color: #fff;
    margin-top: 20px;
    font-weight: 200;
    text-align: center;
}

.contacts-samo {
    font-size: 24px;
    margin-top: 5px;
    font-family: var(--font-headings);
    font-weight: 400;
}

.contacts-icon {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    margin-left: 5px;
}

.contacts-h1 {
    margin-top: -20px;
}

/* Портфоліо */

.portfolio-block-page {
    padding-top: 100px;
    height: 100%;
    min-height: 500px;
    padding-bottom: 125px;
}

.portfolio-vkladki-block {
    margin-left: 60px;
    width: 60%;
    height: 70px;
    border-radius: 10px;
    background-color: var(--bg-dark-light);
    display: flex;
    align-items: center;
    justify-content: space-evenly
}

.portfolio-vkladka {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 300;
    font-family: var(--font-headings);
}

.portfolio-vkladka.active {
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
}

.portfolio-vkladki-block {
    position: relative;
    display: flex;
    gap: 20px;
    position: relative;
}

.portfolio-vkladka {
    cursor: pointer;
    position: relative;
    padding: 10px 15px;
    z-index: 2;
}

.portfolio-vkladki-block {
    position: relative;
    display: flex;
    gap: 20px;
    position: relative;
    height: 70px;
    /* Задаем высоту контейнера */
    align-items: center;
}

.portfolio-vkladka {
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    /* Отступы слева и справа */
    z-index: 2;
    line-height: 40px;
    /* Центрируем текст по вертикали */
    height: 40px;
    border-radius: 8px;
}

.portfolio-vkladki-block .vkladka-bg {
    position: absolute;
    top: 34px;
    left: 0;
    height: 40px;
    width: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1;
}

.portfolio-vkladki-block {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.portfolio-vkladka {
    position: relative;
    z-index: 2;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.vkladka-bg {
    position: absolute;
    top: 34px;
    transform: translateY(-50%);
    height: 40px;
    border-radius: 8px;
    background: #eee;
    z-index: 1;
    transition: all 0.4s ease;
}

.portfolio-block-vkladka {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    height: 100%;
}

.first-blick {
    position: absolute;
    right: 0;
}

.second-blick {
    position: absolute;
    right: 0;
    rotate: 180deg;
    top: 207%;
}

.second-blick5 {
    position: absolute;
    right: 0;
    rotate: 180deg;
    bottom: 0;
    z-index: -1;
}

.three-blick {
    position: absolute;
    left: 0;
    top: 249%;
}

.seven-blick {
    position: absolute;
    left: 0;
    top: 0%;
}

.four-blick {
    position: absolute;
    top: -94%;
    left: -55.5%;
}

/* Кінець потрфоліо */




.bg1 {
    background-image: url(/images/portfolio/main/012-min.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.bg2 {
    background-image: url(/images/portfolio/main/002-min.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.bg3 {
    background-image: url(/images/portfolio/main/003-min.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.bg4 {
    background-image: url(/images/portfolio/main/004-min.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.bg5 {
    background: #121212;
    background-image: url(/images/portfolio/main/008-min.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.bg6 {
    background: #121212;
    background-image: url(/images/portfolio/main/001-min.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.clients_slider_item-container {
    width: 100%;
    height: 110px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 10px;
    background-color: #373737ab;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    top: 31%;
    padding: 20px;
}

.slide-content {
    left: 20px;
    display: block;
    width: 100%;
    font-family: var(--font-headings);
    font-size: 22px;

}

.slide-content-p {
    font-size: 16px;
    font-family: var(--font-main);
    color: #BFBFBF;
    font-weight: 200;
    margin-top: 5px;
    height: 56px;
    width: 600px;
}

.slide-content-perevagi {
    font-size: 12px;
    font-family: var(--font-headings);
    font-weight: 100;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 99px;
    border: 0px;
    background-color: #303030;
    margin-right: 10px;
}


.but-four-5 {
    padding: 15px;
    background-color: #323232;
    border-radius: 50%;
    text-transform: uppercase;
    margin-left: 10px;
    position: absolute;
    left: 90%;
    top: 30%;
    border: 0px;
    transition: .3s;
}

.but-four-5:hover {
    rotate: 45deg;
}

.name-technology-slider-port {
    top: 5%;
    left: 83%;
    position: absolute;
    font-family: var(--font-headings);
    font-weight: 300;
    color: #949494;
    border: 1px #272727 solid;
    border-radius: 99px;
    font-size: 16px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    background-color: #121212;
}


.clients_slider_item.position-1 .name-technology-slider-port {
    background-color: #161616;
}

.bt-1 {
    border-top: 1px #3d3f3e solid;
}

.hover-chars span {
    transition: all 0.2s ease;
    display: inline-block;
}

.hover-chars span:hover {
    color: var(--accent-green);
    /* замените на нужный зелёный */
    text-transform: uppercase;
    font-weight: 500;
}

.heading-block {
    width: 592px;
}

.about-us-blick {
    top: 20%;
    left: 0;
    position: absolute;
}

.about-us-blick2 {
    top: 20%;
    right: 0;
    rotate: 180deg;
    position: absolute;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popup-overlay.active {
    display: flex;
    /* или grid, в зависимости от твоей разметки */
    opacity: 1;
    visibility: visible;
}

.popup {
    background: #121212;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    width: 90%;
    position: relative;
    width: 429px;
    height: 650px;
    padding-right: 50px;
    padding-left: 45px;
    transition: .3s;
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 36px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.x30x30 {
    width: 30px;
    height: 30px;
}

.form-pop-up-h2 {
    font-size: 36px;
    font-family: var(--font-headings);
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
}

.form-pop-up-h3 {
    font-size: 15px;
    text-align: center;
    font-family: var(--font-main);
    font-weight: 200;
    margin-top: 10px;
    margin-bottom: 22px;
}

.form-pop-up-h4 {
    font-size: 12px;
    font-family: var(--font-main);
    font-weight: 200;
    text-align: center;
    margin-top: 15px;
    padding-bottom: 2px !important;
}


.heading-block-3 {
    margin-top: 25px;
}

.oferta-politika {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
}

.oferta-politika h6 {
    font-size: 14px;
    color: #b6b6b6;
    font-family: var(--font-headings);
    font-weight: 100;
}

.oferta-politika-line {
    width: 100%;
    height: 1px;
    margin-top: 50px;
    background-color: #353535;
}

.x80x80 {
    width: 65px;
    height: 65px;
}

.number-tel-fot {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-main);
    margin-top: 15px;
    font-weight: 500 !important;
}

.ik33f {
    font-size: 15px;
    margin-top: 8px;
    font-weight: 600;
    font-family: var(--font-main);
}

.head-k3i {
    color: #a6a6a6;
    margin-bottom: 0px;
    font-size: 15px;
    font-family: var(--font-headings);
    font-weight: 200;
}

.mt-26 {
    margin-top: 26px;
}


.second-blick3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.company-cont-about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    padding: 50px;
    border-radius: 50%;
    border: 1px #242727 solid;
    margin-top: 80px;
    flex: 0 0 auto;
    /* важно */
    user-select: none;
    /* чтобы не выделялось при drag */
}

.company-slider {
    display: flex;
    gap: 70px;
    overflow-x: auto;
    scroll-behavior: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    user-select: none;
    /* предотвратить выделение */
}

.company-slider::-webkit-scrollbar {
    display: none;
}

.succes-block {
    background-image: url(/images/success_bg.svg);
    height: 100vh;
    position: relative;
}

.w-700 {
    width: 700px !important;
}

.img-portfolio {
    width: 404px;
    height: 237px;
    background-size: cover;
}

.privaci-policy-block {
    height: 100%;
    padding-top: 170px;
    padding-bottom: 170px;
}


.privaci-policy-h1 {
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    position: relative;
}

.privaci-policy-p {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 18px;
    margin-top: 20px;
    z-index: 1;
    position: relative;
    color: #ffffff8c;
}

.mini-zagolovki-policy {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    z-index: 1;
    position: relative;
    font-family: var(--font-headings);
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.visible {
    opacity: 1;
}

.image-mobile-first-block {
    display: none;
}

.second-block-mob {
    display: none;
}

.pc-hide {
    display: none;
}

.company-slider {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}


.company-slider::-webkit-scrollbar {
    display: none !important;
}