@charset "UTF-8";
* {
    color: rgb(255, 255, 255);
    box-sizing: border-box;
}

.header-menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 85.79px;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.05)) 1;
    background-color: rgb(18, 1, 24);
    z-index: 100;
}

.header-menu > li > a > img {
    width: 150px;
    height: 80px;
    padding: 5px 0 0 0;
}

.li-for-ua {
    font-family: Inter;
    font-size: 18px;
    line-height: 32.68px;
    font-weight: 400;
    background-color: rgb(109, 53, 220);
    color: rgb(255, 255, 255);
    transition: transform 0.2s ease-in-out;
    border: none;
    border-radius: 1.2px;
}

.custom-select {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    background: none;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: transparent;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 5px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.select-arrow-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 35%;
    right: 5px;
}

/*style the items (options), including the selected item:*/
.select-items div {
    color: #ffffff;
    width: 100%;
    height: 41.33px;
    border-bottom: 1px solid transparent;
    border-color: transparent transparent rgb(0, 0, 0) transparent;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-selected {
    color: #ffffff;
    width: 50px;
    height: 41.33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(109, 53, 220);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-items div:nth-child(2):hover {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.select-items div {
    text-align: center;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgb(197, 95, 252);
}

.li-header-menu > a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: Tactic Sans;
    font-size: 23px;
    font-weight: 500;
    transition: transform 0.2s ease-in-out;
}

.li-header-menu:hover {
    transform: scale(1.1);
}

.space-for-header {
    height: 113.39px;
}

.gallery {
    width: 100%;
}

.gallery-container {
    display: flex;
    align-items: center;
    height: 600px;
    margin: 0 auto;
    position: relative;
    touch-action: pan-x;
}

.gallery-item {
    height: 200px;
    opacity: 0;
    position: absolute;
    transition: all 0.3s linear;
    width: 330px;
    z-index: 0;
    border-radius: 15px;
    background-size: contain;
}

.gallery-item-1, .gallery-item-3 {
    height: 305px;
    opacity: 0.7;
    width: 650px;
    z-index: 1;
}

.gallery-item-1 {
    left: 3%;
    transition: all 0.3s linear;
    transform: scaleX(-1);
}

.gallery-item-2 {
    box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.35);
    height: 470px;
    opacity: 1;
    left: calc(50% - 500px);
    transition: all 0.3s linear;
    width: 1000px;
    z-index: 2;
}

.gallery-item-3 {
    right: 3%;
    transition: all 0.3s linear;
    transform: scaleX(1);
}

.gallery-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
    margin: 25px 0;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.5;
}

.gallery-controls > button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 30px;
    margin: 0 50px;
    padding: 0 12px;
    width: 66px;
    background-repeat: no-repeat;
    height: 35px;
    z-index: 3;
}

.gallery-controls > button:hover {
    transform: scale(1.3);
}

.gallery-controls-previous {
    position: absolute;
    background-image: url("/src/image/button to slider left.svg");
}

.gallery-controls-next {
    position: absolute;
    right: 0;
    background-image: url("/src/image/button to slider right.svg");
}

.text-image {
    opacity: 0;
    position: absolute;
    transition: all 0.3s linear;
    z-index: 3;
}

.text-for-image-1, .text-for-image-3 {
    opacity: 0;
    z-index: 1;
    transition: all 0s ease-in-out;
}

.text-for-image-1 {
    left: 30%;
}

.text-for-image-1 > h2 {
    width: 708.93px;
    height: 105px;
    font-family: "Tactic Sans", sans-serif;
    font-weight: 500;
    font-size: 29px;
    line-height: 34.8px;
}

.text-for-image-1 > p {
    width: 580.03px;
    height: 120px;
    font-family: Tactic Sans;
    font-size: 22px;
    font-weight: 300;
    line-height: 29.96px;
}

.text-for-image-1 > p > span {
    font-weight: 500;
}

.text-for-image-2 {
    opacity: 1;
    top: 20%;
    left: 20%;
    z-index: 2;
}

.text-for-image-2 > h1 {
    width: 374px;
    font-weight: 500;
    font-size: 79.3px;
    line-height: 95.17px;
    font-family: Tactic Sans;
}

.text-for-image-2 > h2 {
    width: 500px;
    font-weight: 500;
    font-size: 29px;
    line-height: 34.8px;
    font-family: Tactic Sans;
    margin-bottom: 55px;
}

.text-for-image-2 > p {
    width: 500px;
    font-family: Open Sans;
    font-weight: 300;
    font-size: 22px;
    line-height: 29.96px;
}

.text-for-image-3 {
    right: 30%;
}

.text-for-image-3 > h2 {
    width: 785px;
    height: 105px;
    font-weight: 500;
    font-size: 29px;
    line-height: 29px;
    font-family: Tactic Sans;
}

.text-for-image-3 > p {
    width: 606px;
    height: 150px;
    font-family: Tactic Sans;
    font-size: 22px;
    line-height: 29.96px;
    font-weight: 300;
}

.text-for-image-3 > p > span {
    font-weight: 500;
}

.section-for-info-main {
    display: flex;
    margin-bottom: 100px;
}

.section-for-info-right-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s, transform 1s;
}

.section-for-info-right-side-info {
    display: flex;
}

.section-for-info-right-side-info > img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.section-for-info-right-side-info > p {
    width: 520px;
    margin-top: 8px;
    margin-bottom: 45px;
    font-family: Open Sans;
    font-weight: 300;
    font-size: 19px;
    line-height: 22px;
}

.section-for-info-right-side-info > p > span {
    font-family: Tactic Sans;
    font-weight: 500;
    line-height: 25.87px;
}

.section-for-info-left-side-background_for_text {
    background: linear-gradient(to left, rgba(24, 11, 36, 0), rgb(34, 14, 56));
    height: 28%;
    width: 957px;
    position: absolute;
    left: -400px;
    top: 38%;
}

.section-for-info-left-side-place_for_text {
    height: 156px;
    width: 585.28px;
    color: rgb(255, 255, 255);
    z-index: 1;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 29px;
    margin: 40px 0 65px 0;
}

.section-for-info-left-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 85px;
}

.section-for-info-left-side-logo_image {
    width: 300px;
    height: 130px;
    position: absolute;
    top: -35px;
}

.section-for-info-left-side-logo {
    width: 300px;
    height: 110px;
    position: relative;
}

.section-for-info-left-side-title {
    font-family: Tactic Sans;
    font-weight: 500;
    font-size: 24px;
    line-height: 26.64px;
}

.buttons_box {
    width: 100%;
    display: flex;
    margin-top: 20px;
}

.block3-button_box-left, .block3-button_box-leftt {
    width: 275px;
    height: 70px;
    background-image: url("/src/image/Rectangle 34.svg");
    color: rgb(0, 255, 178);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: none;
    background-color: transparent;
    font-family: Tactic Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 27.6px;
}

.block3-button_box-left:hover, .block3-button_box-right:hover, .block3-button_box-leftt:hover {
    background-image: url(../src/image/button_before.svg);
    color: #C55FFC;
}

.block3-button_box-right {
    width: 275px;
    height: 70px;
    background-image: url("/src/image/Rectangle 1689.svg");
    color: rgb(255, 255, 255);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: none;
    background-color: transparent;
    font-family: Tactic Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 27.6px;
    margin-left: 26px;
}

.architecture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.architecture-container-title {
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 23px;
}

.architecture-container-text {
    width: 912px;
    height: 111px;
    font-family: Open Sans;
    font-weight: 300;
    font-size: 20px;
    line-height: 27.24px;
    margin-top: 35px;
    text-align: center;
    margin-bottom: 130px;
}

.architecture-container-box {
    background-image: url("/src/image/architectBackground.webp");
    width: 981px;
    height: 618.84px;
    position: relative;
}

.architecture-container-box-text {
    position: absolute;
    transition: opacity 2s;
    font-family: Open Sans;
    font-weight: 300;
    font-size: 15px;
    line-height: 20.43px;
}

.video {
    top: 24.5%;
    left: 0;
    transition: transform 1.5s;
}

.server {
    top: 19%;
    right: -10%;
    transition: transform 1.5s;
}

.kasa {
    top: 72%;
    left: -10%;
    transition: transform 1.5s;
}

.bcva {
    top: 77.5%;
    right: -10%;
    transition: transform 1.5s;
}

.klient {
    text-align: center;
    top: 67%;
    right: -10%;
    transition: transform 1.5s;
}

.license {
    margin-bottom: 7px;
}

.license > a {
    text-decoration: none;
    color: #8B8B8B;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
}

.license > a:hover {
    color: rgb(0, 255, 178);
}

.box {
    display: none;
}

@media (max-width: 576px) {
    .space-for-header {
        display: none;
    }

    .box {
        width: 95%;
        height: 41px;
        margin-bottom: 47px;
        display: block;
    }

    .box_container {
        display: flex;
        align-items: center;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        height: 41px;
        background-color: rgb(18, 1, 24);
        border-bottom: 3px solid;
        border-image: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.05)) 1;
        position: fixed;
        top: 0;
        z-index: 33;
    }

    .header-mob-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .header-mob-wrapper-vue {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        max-width: 81.52px;
        width: -362.962962963%;
        height: 15px;
        margin-left: 10px;
    }

    .hamburger-button {
        max-width: 28.12px;
        height: 16px;
        margin-right: 10px;
    }

    .li-for-ua {
        font-family: Inter;
        font-size: 12.59px;
        line-height: 15.23px;
        font-weight: 400;
        background-color: rgb(109, 53, 220);
        color: rgb(255, 255, 255);
        transition: transform 0.2s ease-in-out;
        border: none;
        border-radius: 1.2px;
        margin-left: 40%;
    }

    .li-for-ua > option {
        font-size: 12.59px;
        line-height: 15.23px;
    }

    .header-mob-wrapper-menu {
        display: none;
    }

    .mob_link {
        border-bottom: 1px solid;
        border-image: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.05)) 1;
    }

    .mob_link:hover {
        background: rgb(109, 53, 220);
    }

    .active {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: fixed;
        top: 41px;
        width: 100vw;
        background-color: rgb(18, 1, 24);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .active > a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-family: Tactic Sans;
        font-weight: 500;
        font-size: 11.68px;
        line-height: 14.02px;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .gallery {
        width: 100%;
    }

    .gallery-container {
        display: flex;
        align-items: center;
        height: 160px;
        margin: 0 0 20px;
        position: relative;
        touch-action: pan-x;
    }

    .gallery-item {
        height: 200px;
        opacity: 0;
        position: absolute;
        transition: all 0.3s linear;
        width: 80vw;
        z-index: 0;
        border-radius: 15px;
        background-size: contain;
        touch-action: pan-x;
    }

    .gallery-item-1, .gallery-item-3 {
        height: 200px;
        opacity: 0.7;
        width: 30vw;
        z-index: 1;
    }

    .gallery-item-1 {
        left: 3%;
        transform: scaleX(-1);
        opacity: 0;
    }

    .gallery-item-2 {
        box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.35);
        height: 200px;
        opacity: 1;
        left: 0%;
        width: 100%;
        z-index: 2;
    }

    .gallery-item-3 {
        right: 3%;
        transform: scaleX(1);
        opacity: 0;
    }

    .gallery-controls {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 100px;
        margin: 25px 0;
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        opacity: 0.5;
    }

    .gallery-controls > button {
        background-color: transparent;
        border: 0;
        cursor: pointer;
        font-size: 30px;
        margin: 0;
        padding: 0 8px;
        width: 12px;
        background-repeat: no-repeat;
        height: 35px;
        z-index: 3;
    }

    .gallery-controls > button:hover {
        transform: scale(1);
    }

    .gallery-controls-previous {
        position: absolute;
        left: 0;
        background-image: url("/src/image/mobile_strelka_right.png");
        rotate: 180deg;
    }

    .gallery-controls-next {
        position: absolute;
        right: 0;
        background-image: url("/src/image/mobile_strelka_right.png");
    }

    .text-image {
        opacity: 0;
        position: absolute;
        z-index: 3;
    }

    .text-for-image-1, .text-for-image-3 {
        opacity: 0;
        z-index: 1;
        transition: all 0s ease-in-out;
    }

    .text-for-image-1 {
        display: none;
        left: 0;
        transform: scaleX(-1);
        height: 0;
    }

    .text-for-image-1 > h2 {
        width: 0%;
        height: 0%;
        font-family: Open Sans;
        font-weight: 400;
        font-size: 29px;
        line-height: 34.8px;
    }

    .text-for-image-1 > p {
        width: 0px;
        height: 0px;
        font-family: Open Sans;
        font-size: 22px;
        font-weight: 300;
        line-height: 29.96px;
    }

    .text-for-image-1 > p > span {
        font-weight: 400;
    }

    .text-for-image-2 {
        opacity: 1;
        top: 2%;
        left: 10%;
        z-index: 2;
    }

    .text-for-image-2 > h1 {
        width: 100px;
        font-weight: 500;
        font-size: 35px;
        line-height: 42px;
        font-family: "Tactic Sans";
    }

    .text-for-image-2 > h2 {
        width: 200px;
        font-weight: 500;
        font-size: 12px;
        line-height: 14.4px;
        font-family: "Tactic Sans";
        margin-bottom: 20px;
    }

    .text-for-image-2 > p {
        width: 190px;
        font-family: Open Sans;
        font-weight: 300;
        font-size: 9px;
        line-height: 12.26px;
    }

    .text-for-image-3 {
        display: none;
        left: 0;
        height: 0;
    }

    .text-for-image-3 > h2 {
        width: 0;
        height: 0;
        font-weight: 400;
        font-size: 29px;
        line-height: 29px;
        font-family: Open Sans;
    }

    .text-for-image-3 > p {
        width: 0;
        height: 0;
        font-family: Open Sans;
        font-size: 22px;
        line-height: 29.96px;
        font-weight: 300;
    }

    .text-for-image-3 > p > span {
        font-weight: 400;
    }

    .section-for-info-main {
        display: flex;
        flex-direction: column;
        margin-bottom: 68px;
    }

    .section-for-info-right-side {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
        width: 100%;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .section-for-info-right-side-info {
        display: flex;
    }

    .section-for-info-right-side-info > img {
        width: 14.86px;
        height: 14.86px;
        vertical-align: middle;
    }

    .section-for-info-right-side-info > p {
        width: 301px;
        margin-top: 1px;
        margin-bottom: 12px;
        font-family: Open Sans;
        font-weight: 300;
        font-size: 11px;
        line-height: 13.2px;
    }

    .section-for-info-right-side-info > p > span {
        font-family: Tactic Sans;
        font-weight: 400;
        line-height: 14.98px;
    }

    .section-for-info-left-side-background_for_text {
        background: linear-gradient(to left, rgba(24, 11, 36, 0), rgb(34, 14, 56));
        height: 35%;
        width: 100%;
        position: absolute;
        left: -10%;
        top: 58%;
    }

    .section-for-info-left-side-place_for_text {
        height: 75px;
        width: 325px;
        color: rgb(255, 255, 255);
        z-index: 1;
        font-family: Open Sans;
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 14.98px;
        margin: 30px 0 30px 0;
    }

    .section-for-info-left-side {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-right: 0px;
    }

    .section-for-info-left-side-logo_image {
        width: 202px;
        height: 70px;
        position: absolute;
        align-self: center;
        top: 1%;
        left: 25%;
        transform: translateX(-25%);
    }

    .section-for-info-left-side-logo {
        width: 202px;
        height: 70px;
        position: relative;
        display: flex;
    }

    .section-for-info-left-side-title {
        font-family: Tactic Sans;
        font-weight: 500;
        font-size: 14px;
        line-height: 15.54px;
        text-align: center;
        width: 305px;
    }

    .license {
        position: absolute;
        bottom: -112%;
    }

    .license > a {
        font-size: 8px;
        line-height: 9.22px;
        font-family: Gilroy;
        font-weight: 300;
    }

    .buttons_box {
        position: absolute;
        bottom: -130%;
        width: 100%;
        display: flex;
        justify-content: center;
        left: -4%;
    }

    .buttons_box > a {
        width: 156px;
        height: 35px;
    }

    .block3-button_box-left, .block3-button_box-leftt {
        width: 156px;
        height: 36px;
        background-image: url("/src/image/Rectangle 34mob.svg");
        color: rgb(0, 255, 178);
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 4.09px;
        border: none;
        background-color: transparent;
        font-family: Tactic Sans;
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 13.2px;
        margin-top: 0px;
    }

    .block3-button_box-left:hover, .block3-button_box-right:hover, block3-button_box-leftt:hover {
        background-image: url(../src/image/button_before.svg);
        color: #C55FFC;
        background-size: 156px 36px;
    }

    .block3-button_box-right {
        width: 156px;
        height: 36px;
        background-image: url("/src/image/Rectangle 1689mob.svg");
        color: rgb(255, 255, 255);
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 4.09px;
        border: none;
        background-color: transparent;
        font-family: Tactic Sans;
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 13.2px;
        margin-left: 26px;
    }

    .architecture-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
    }

    .architecture-container-title {
        height: 24px;
        font-family: Tactic Sans;
        font-weight: 500;
        line-height: 24px;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .architecture-container-text {
        width: 310.87px;
        height: 105px;
        font-family: Open Sans;
        font-weight: 300;
        font-size: 11px;
        line-height: 14.98px;
        margin-top: 22px;
        text-align: center;
        margin-bottom: 57px;
    }

    .architecture-container-box {
        background-image: url("/src/image/architectureBackgroundMobile.webp");
        width: 335px;
        height: 470px;
        background-repeat: no-repeat;
    }

    .architecture-container-box-text {
        position: absolute;
        opacity: 1;
        transition: opacity 2s;
        font-family: Open Sans;
        font-weight: 300;
        font-size: 9px;
        line-height: 12.26px;
    }

    .video {
        top: 30.5%;
        left: 55%;
        transition: none;
    }

    .showvideo {
        opacity: 1;
        transform: translateX(70%);
    }

    .server {
        top: 58%;
        right: 0%;
        transition: none;
    }

    .showserver {
        opacity: 1;
        transform: translateX(-65%);
    }

    .kasa {
        top: 30.7%;
        left: 20%;
        transition: none;
    }

    .showkasa {
        opacity: 1;
        transform: translateX(100%);
    }

    .bcva {
        top: 58.2%;
        right: 0%;
        transition: none;
    }

    .showbcva {
        opacity: 1;
        transform: translateX(-431%);
    }

    .klient {
        text-align: center;
        top: 92.5%;
        right: 0%;
        transition: none;
    }

    .showklient {
        opacity: 1;
        transform: translateX(-167%);
    }
}

#aboutUs, #psim, #bcva, #contact {
    scroll-margin-top: 80px;
}

.architecture-container-box {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.show {
    opacity: 1;
}

@keyframes typing {
    from {
        width: 0;
    }
}

.typed-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 1s steps(40, end);
}

.section-form {
    background-image: url(../src/image/back_contact.webp);
    background-repeat: no-repeat;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-header {
    padding-left: 6px;
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
}

.contact-header_mobile {
    padding-left: 6px;
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    display: none;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.contact-form {
    width: 100%;
    margin-right: 20px;
    position: relative;
}

.form-wrapper {
    margin-left: -335px;
    padding-right: 100px;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: flex-end;
    width: 1024px;
    height: 509px;
    background-size: 100%;
    background-image: url(../src/image/border_form.png);
    background-repeat: no-repeat;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 9px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.gradient-input {
    color: #FFFFFF;
    width: 100%;
    background: linear-gradient(#1c0d27, #1c0d27) padding-box, linear-gradient(70deg, #190b24, #C55FFC) border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.gradient-select {
    background: transparent;
    width: 100%;
    color: #FFFFFF;
    background: linear-gradient(#190b24, #190b24) padding-box, linear-gradient(45deg, #190b24, #C55FFC) border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 10px;
}

.gradient-border-bg-select-div {
    width: 100%;
    color: #FFFFFF;
    background: linear-gradient(#190b24, #190b24) padding-box, linear-gradient(45deg, #190b24, #C55FFC) border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    margin-bottom: 10px;
}

.custom-input, .custom-select {
    color: #FFFFFF;
    width: 100%;
    background: linear-gradient(#190b24, #190b24) padding-box, linear-gradient(45deg, #190b24, #C55FFC) border-box;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.custom-input:focus, .custom-select:focus {
    border-color: #C55FFC;
    /* Замініть на ваш обраний колір */
    outline: none;
}

.my-select {
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
    /* Щоб забезпечити місце для зображення */
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    padding: 10px 0px 10px 15px;
    background: linear-gradient(#190b24, #190b24) padding-box, linear-gradient(45deg, #190b24, #C55FFC) border-box;
    border-radius: 10px;
}

.my-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 9999;
    /*background-image: url(../src/image/form-arrow4.svg); !* Замініть шлях на ваше зображення стрілки *! */
    background-repeat: no-repeat;
    background-position: center;
}

.block3-send_button {
    color: #00FFB2;
    width: 206px;
    height: 44px;
    background-image: url(../src/image/send_form_pc.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 5px;
    border: none;
    background-color: transparent;
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    line-height: 31px;
    text-align: center;
}

.block3-send_button:hover {
    background-image: url("/src/image/send_pc_after.svg");
    color: #C55FFC;
}

.img-arrow {
    width: 28px;
    height: 23px;
    background-image: url("../src/image/arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 999;
    top: 65px;
    right: 15px;
}

.send-button {
    margin-top: 15px;
}

.contact-info {
    position: relative;
    width: 40%;
    margin-left: 100px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 20.0354px;
    line-height: 41px;
    color: #FFFFFF;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.form-heading {
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
}

.heading2 {
    padding-top: 20px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 25.6702px;
    line-height: 30px;
    margin-bottom: 0px;
}

.paragraph1 {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 20.9939px;
    line-height: 30px;
    margin-bottom: 0px;
}

.line-img {
    background-image: url("../src/image/line2.png");
    z-index: 9999;
    width: 110%;
    height: 2px;
    position: absolute;
    left: -100px;
}

.p_email {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 37px;
    padding-top: 15px;
}

.p_number {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 27px;
    padding-top: 15px;
}

@media (max-width: 576px) {
    .section-form {
        background-image: url(../src/image/new_background_mobile.webp);
        background-repeat: no-repeat;
    }

    .contact-section {
        display: block;
    }

    .contact-header {
        padding-left: 6px;
        font-family: "Tactic Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        line-height: 36px;
        display: none;
    }

    .contact-header_mobile {
        padding-left: 6px;
        font-family: "Tactic Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 30px;
        text-transform: uppercase;
        display: block;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        align-items: center;
        padding-left: 20px;
        width: 100%;
    }

    .form-wrapper {
        padding-top: 57px;
        margin-left: 0px;
        padding-right: 0px;
        padding-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        margin: auto;
        display: flex;
        justify-content: center;
        width: 355px;
        height: 700px;
        background-size: 100%;
        background-image: url(../src/image/ramka_form_mobile.webp);
        background-repeat: no-repeat;
    }

    .contact-form h2 {
        padding-right: 7px;
        padding-left: 0px;
        margin-bottom: 23px;
        font-size: 14px;
        text-align: center;
        font-family: "Tactic Sans";
        font-style: normal;
        font-weight: 500;
        line-height: 23px;
    }

    .custom-input, .custom-select {
        text-decoration-color: #FFFFFF;
        width: 100%;
        background: linear-gradient(#190b24, #190b24) padding-box, linear-gradient(45deg, #190b24, #C55FFC) border-box;
        border: 1px solid transparent;
        border-radius: 5px;
        padding: 10px 20px;
        margin-bottom: 16px;
        height: 45px;
        ont-family: "Open Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 19px;
    }

    .my-select {
        position: relative;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: transparent;
        padding: 0px 0px 0px 15px;
        background: linear-gradient(#190b24, #190b24) padding-box, linear-gradient(45deg, #190b24, #C55FFC) border-box;
        border-radius: 5px;
    }

    .block3-send_button {
        width: 216px;
        height: 46px;
        background-image: url("/src/image/border_send_mobile.svg");
        color: rgb(0, 255, 178);
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 2.09px;
        border: none;
        background-color: transparent;
        font-family: Tactic Sans;
        font-style: normal;
        font-weight: 300;
        font-size: 20px;
        line-height: 24.2px;
        margin-top: 1px;
        align-items: center;
    }

    .send-button {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        padding-right: 0px;
    }

    .contact-info {
        display: none;
    }

    .img-arrow {
        width: 18px;
        height: 12px;
        background-image: url("../src/image/arrow_mobile.svg");
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        z-index: 999;
        top: 130px;
        right: 15px;
    }

    .colored-text {
        color: #C55FFC;
    }
}

.container-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-left: 130px;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer {
    background: black;
    border-top: 40px;
    border-bottom: 20px;
}

.logo {
    width: 175.05px;
    height: 29.18px;
}

.p-foot {
    padding-left: 130px;
    color: #696969;
    font-size: 10px;
    line-height: 14px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.p-logo {
    padding-top: 5px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 20px;
    font-family: "Open Sans";
    font-style: normal;
}

.section1 {
    padding-left: -50px;
}

.section1 p {
    padding-left: 30px;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
}

.info-mobile {
    display: flex;
}

@media (max-width: 576px) {
    .p-foot {
        display: flex;
        flex-direction: column;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 400;
        padding-left: 0px;
        padding-top: 15px;
        text-align: center;
        color: #696969;
        font-size: 8px;
        line-height: 8px;
    }

    .info-mobile {
        display: flex;
    }

    .section1 p {
        margin-right: 40px;
        color: #FFFFFF;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 7px;
        line-height: 8px;
        padding-left: -20px;
    }

    .container-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
        box-sizing: border-box;
        padding-top: 0px;
        padding-bottom: 20px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    .logo {
        width: 83px;
        height: 13px;
    }

    .p-logo {
        padding-top: 5px;
        color: #FFFFFF;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 8.66914px;
        line-height: 10px;
        text-align: center;
    }
}

@font-face {
    font-family: "TacticSans-Medium";
    src: url("../fonts/TacticSans-Medium.ttf") format("truetype");
}

.swiper, .swiper1,
.swiper-text1, .swiper-text2, .swiper-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 445px;
    margin: auto;
    padding: 0;
    border-radius: 8px;
}

.slider {
    width: 700px;
    position: relative;
    margin: auto;
    padding: 0;
    margin-bottom: 33px;
}

.slider-background {
    background-image: url("../src/image/background_gradient.svg");
    position: absolute;
    left: 45%;
    width: 800px;
    height: 347px;
}

.slider-background__image {
    width: 800px;
    height: 300px;
}

.slider-button {
    position: absolute;
    width: 50px;
    height: 35px;
    top: 40%;
    transform: translateY(-50%);
    border: none;
    z-index: 20;
    cursor: pointer;
    background-color: transparent;
}

.slider-button-next {
    width: 50px;
    height: 35px;
    right: 0px;
    align-items: center;
}

.slider-button-prev {
    width: 50px;
    height: 35px;
    left: 0px;
    align-items: center;
}

.slider-button--next {
    width: 50px;
    height: 35px;
    right: 0;
    align-items: center;
}

.slider-button--prev {
    width: 50px;
    height: 35px;
    left: 0px;
    align-items: center;
}

.block1 {
    display: flex;
    padding: auto;
    flex-direction: space-between;
    margin-bottom: 0px;
    opacity: 0;
    transition: opacity 1.5s;
}

.block1.show {
    opacity: 1;
}

.block1-title {
    font-family: "TacticSans-Medium";
    margin-top: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 38.2726px;
    line-height: 46px;
}

.block1-info {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 19.1363px;
    line-height: 26px;
}

.block2-title2 {
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 23px;
}

.block2-info {
    height: 1000px;
    background-image: url("../src/image/architecture.svg");
    background-repeat: no-repeat;
    background-size: 710px 640px;
    background-position: center;
    position: relative;
    margin-bottom: 100px;
}

.block2-info__wrapper1 {
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: auto;
}

.block2-info__wrapper2 {
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: auto;
}

.block2-image {
    background-image: url("../src/image/Протикрадіжні системи.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
}

.block2-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image1 {
    background-image: url("../src/image/Системи відеоспостереження.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 127px;
    height: 128px;
    transition: transform 0.3s ease;
}

.block2-image1:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image2 {
    background-image: url("../src/image/Системи SCADA та АСУПТ.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 97px;
    height: 98px;
    transition: transform 0.3s ease;
}

.block2-image2:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image3 {
    /*background-image: url("../src/image/Системи охоронної сигналізації.png");*/
    background-image: url("../src/image/security_system.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 110px;
    height: 111px;
    transition: transform 0.3s ease;
}

.block2-image3:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image4 {
    background-image: url("../src/image/Системи алкотестування.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
}

.block2-image4:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image5 {
    background-image: url("../src/image/Системи охорони периметра.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 97px;
    height: 98px;
    border-radius: 100%;
    transition: transform 0.3s ease;
}

.block2-image5:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image6 {
    background-image: url("../src/image/Системи трекінгу автотранспорту.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 124px;
    height: 124px;
    transition: transform 0.3s ease;
}

.block2-image6:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image7 {
    background-image: url("../src/image/Підсистеми розпізнавання автомобільних номерів.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 97px;
    height: 98px;
    transition: transform 0.3s ease;
}

.block2-image7:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image8 {
    background-image: url("../src/image/Системи констролю доступу.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 110.47px;
    height: 110.47px;
    transition: transform 0.3s ease;
}

.block2-image8:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image9 {
    background-image: url("../src/image/Підсистеми розпізнавання номерів залізничних.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 122px;
    height: 123.26px;
    transition: transform 0.3s ease;
}

.block2-image9:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image10 {
    background-image: url("../src/image/Підсистеми розпізнавання осіб.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 148px;
    height: 148px;
    transition: transform 0.3s ease;
}

.block2-image10:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-image11 {
    /*background-image: url("../src/image/Системи пожежної сигналізації.png");*/
    background-image: url("../src/image/fire_system.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
}

.block2-image11:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 0, 194, 0.7);
    border-radius: 100%;
}

.block2-wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    right: 330px;
    top: 87px;
}

.block2-wrapper1 {
    display: flex;
    align-items: center;
    position: absolute;
    right: -10.3px;
    top: 116px;
}

.block2-wrapper2 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 70px;
    top: 365px;
}

.block2-wrapper3 {
    display: flex;
    align-items: center;
    position: absolute;
    right: -4px;
    top: 506px;
}

.block2-wrapper4 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 117px;
    top: 690px;
}

.block2-wrapper5 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 330px;
    top: 821px;
}

.block2-wrapper6 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 662px;
    top: 805px;
}

.block2-wrapper7 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 881px;
    top: 685px;
}

.block2-wrapper8 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 988px;
    top: 570px;
}

.block2-wrapper9 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 955px;
    top: 355px;
}

.block2-wrapper10 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 960px;
    top: 150px;
}

.block2-wrapper11 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 610px;
    top: 85px;
}

.block2-text {
    padding-left: 10px;
    border-left: 2px solid #6D35DC;
    box-shadow-left: 0px 0px 4px #5220E1;
    margin: 10px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 107.68%;
}

.block2-text1 {
    padding-right: 10px;
    border-right: 2px solid #6D35DC;
    box-shadow-right: 0px 0px 4px #5220E1;
    margin: 10px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 107.68%;
    text-align: end;
    width: 230px;
}

.block3 {
    display: flex;
    margin-bottom: 0px;
}

.block3-title {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 83px;
    z-index: 99;
}

.block3-integration {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 85px;
    position: relative;
}

.block3-integration__logo {
    width: 290px;
    height: 30px;
    margin-top: 29px;
    margin-bottom: 38px;
}

.block3-integration__info {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
    z-index: 99;
    margin-bottom: 65px;
}

.block3-integration__legacy {
    color: #8B8B8B;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 7px;
}

.block3-integration__comunication {
    color: #C55FFC;
    width: 275px;
    height: 70px;
    background-image: url(../src/image/button_before.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: none;
    background-color: transparent;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    line-height: 31px;
}

.block3-integration__wrapper {
    background-image: url(../src/image/background_gradient.svg);
    height: 210px;
    width: 957px;
    position: absolute;
    left: -50%;
    top: 240px;
}

.block3-advantages__list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    list-style: none;
    margin-top: 35px;
    padding: 0;
}

.block3-advantages__item {
    width: 100%;
    display: flex;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 500;
    font-size: 18.9464px;
    line-height: 22px;
}

.block3-advantages__image {
    width: 40px;
    height: 40px;
}

.block3-advantages__text {
    margin-top: 10px;
    margin-bottom: 26px;
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
}

.block3-advantages__text1 {
    margin-top: 6px;
    margin-bottom: 26px;
    font-family: "Tactic Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
}

.block4 {
    display: flex;
    padding: auto;
    flex-direction: space-between;
    margin-bottom: 0px;
    opacity: 0;
    transition: opacity 1.5s;
}

.block4.show {
    opacity: 1;
}

.block4-title {
    font-size: 32.766px;
    line-height: 37px;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.block4-info {
    width: 861.74px;
    font-size: 20.4787px;
    line-height: 24px;
    text-align: center;
    margin: auto;
    color: #FFFFFF;
}

.slider {
    width: 650px;
}

.slider2 {
    width: 588px;
    margin-top: 30px;
}

.slider3 {
    width: 588px;
    margin-top: 30px;
}

.swiper-slide {
    width: 90%;
    position: relative;
    padding-left: 50px;
}

.img {
    width: 95%;
    position: absolute;
    top: 0;
    left: 23px;
}

.section-for-info-left-side-background_for_textt {
    background: linear-gradient(to left, rgba(24, 11, 36, 0), rgb(34, 14, 56));
    height: 33%;
    width: 957px;
    position: absolute;
    left: -400px;
    top: 38%;
}

.section-for-info-left-side-place_for_text2 {
    height: 156px;
    width: 585.28px;
    color: rgb(255, 255, 255);
    z-index: 1;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 29px;
    margin: 40px 0 60px 0;
}

.licensee {
    margin-bottom: 7px;
}

.licensee > a {
    color: #8B8B8B;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
}

.licensee > a:hover {
    color: rgb(0, 255, 178);
}

.buttons_boxx {
    width: 100%;
    display: flex;
    margin-top: 20px;
}

.animate_slider {
    animation-name: animate_slider;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.1s;
    z-index: 10;
}

.swiper-pagination-bullet {
    display: flex;
    width: 30px;
    height: 30px;
    background-color: purple;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 50%;
    border-right: 2px solid #6D35DC;
    box-shadow: 4px 4px 4px #black;
}

.swiper-pagination-bullet-active {
    width: 40px;
    height: 40px;
    border: 2px solid #C55FFC;
    box-shadow: 4px 4px 4px black;
}

.swiper-pagination1 {
    display: none;
}

.swiper-pagination2 {
    display: none;
}

.footer_mail {
    padding-left: 30px;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    margin-top: 0;
}

.mail {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 25.6702px;
    line-height: 30px;
    color: #FFFFFF;
}

@media (max-width: 576px) {
    .section-for-info-left-side-place_for_text2 {
        height: 75px;
        width: 325px;
        color: rgb(255, 255, 255);
        z-index: 1;
        font-family: Open Sans;
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 14.98px;
        margin: 30px 0 30px 0;
    }

    .section-for-info-left-side-background_for_textt {
        background: linear-gradient(to left, rgba(24, 11, 36, 0), rgb(34, 14, 56));
        height: 34%;
        width: 100%;
        position: absolute;
        left: -10%;
        top: 60%;
    }

    .licensee {
        position: absolute;
        bottom: -120%;
    }

    .licensee > a {
        font-weight: 300;
        font-family: Gilroy;
        line-height: 9.22px;
        color: #8B8B8B;
        font-size: 8px;
        text-decoration: none;
    }

    .buttons_boxx {
        position: absolute;
        bottom: -135%;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

    .buttons_boxx > a {
        width: 156px;
        height: 35px;
    }

    .block1 {
        display: block;
        width: 100%;
        margin-bottom: 0px;
        opacity: 1;
        transition: none;
    }

    .block1-title {
        font-family: "TacticSans-Medium";
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
        text-align: center;
        text-transform: uppercase;
        margin: 0;
    }

    .block1-info {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 15px;
        text-align: center;
    }

    .slider {
        width: 100%;
        margin-bottom: 0px;
        height: 300px;
    }

    .slider-background {
        background-image: url("../src/image/background_gradient(adaptive).png");
        position: absolute;
        background-repeat: no-repeat;
        background-position-x: center;
        left: auto;
        width: 120%;
        top: -30%;
    }

    .slider-background__image {
        width: 100%;
    }

    .slider-button {
        top: 54%;
    }

    .slider-button-next {
        right: 17px;
    }

    .slider-button--next {
        right: 17px;
    }

    .slider-button-next {
        display: none;
    }

    .slider-button-prev {
        display: none;
    }

    .slider-button--next {
        display: none;
    }

    .slider-button--prev {
        display: none;
    }

    .swiper {
        height: 335px;
    }

    .swiper-slide {
        padding: 0;
    }

    .slider2 {
        width: 55%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        height: 160px;
        position: relative;
    }

    .slider3 {
        width: 55%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        height: 160px;
        position: relative;
    }

    .img {
        min-width: 335px;
        max-width: 360px;
        top: 10%;
        transform: translateY(-50%);
        left: 50%;
        transform: translateX(-50%);
    }

    .block2 {
        display: block;
        width: 100%;
        margin-top: 100px;
    }

    .block2-title1 {
        height: 24px;
        font-family: Tactic Sans;
        font-weight: 500;
        line-height: 24px;
        font-size: 20px;
        text-align: center;
        text-transform: uppercase;
    }

    .block2-info {
        height: 524px;
        background-image: url("/src/image/arcuamobile.svg");
        background-repeat: no-repeat;
        background-size: 345px 505px;
        background-position: center bottom;
        position: relative;
        margin-bottom: 60px;
    }

    .block2-text {
        display: none;
        width: 57px;
        height: 12px;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 6px;
        line-height: 107.68%;
        text-align: center;
    }

    .block2-wrapper {
        display: none;
    }

    .block2-wrapper1 {
        display: none;
    }

    .block2-wrapper2 {
        display: none;
    }

    .block2-wrapper3 {
        display: none;
    }

    .block2-wrapper4 {
        display: none;
    }

    .block2-wrapper5 {
        display: none;
    }

    .block2-wrapper6 {
        display: none;
    }

    .block2-wrapper7 {
        display: none;
    }

    .block2-wrapper8 {
        display: none;
    }

    .block2-wrapper9 {
        display: none;
    }

    .block2-wrapper10 {
        display: none;
    }

    .swiper-pagination1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swiper-pagination2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .block3 {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0px;
    }

    .block3-title {
        text-align: center;
        font-family: "Tactic Sans";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 111%;
    }

    .block3-integration {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0px;
        position: relative;
        margin-left: 20px;
    }

    .block3-integration__wrapper {
        background-image: url(../src/image/background_gradient.svg);
        height: 350px;
        width: 110%;
        position: absolute;
        left: -15px;
        top: 200px;
    }

    .block3-integration-info {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 15px;
    }

    .block4 {
        display: block;
        width: 100%;
        margin-bottom: 0px;
        opacity: none;
        transition: none;
    }

    .block5 {
        display: block;
        width: 100%;
    }

    .footer_mail {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-right: 0px;
        color: #FFFFFF;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 7px;
        line-height: 8px;
    }
}

@media (min-width: 1930px) {
    .section-for-info-left-side-background_for_textt {
        background: linear-gradient(89.85deg, #220E38 1.36%, rgba(24, 11, 36, 0) 99.88%);
        box-shadow: inset 5px 5px 5px 5px black;
        left: -30px;
    }

    .section-for-info-left-side-background_for_text {
        background: linear-gradient(89.85deg, #220E38 1.36%, rgba(24, 11, 36, 0) 99.88%);
        box-shadow: inset 5px 5px 5px 5px black;
        left: -30px;
    }
}

@media (min-width: 1024px) {
    .swiper {
        pointer-events: none;
    }
}

@keyframes animate_slider {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}

body {
    background: #0B0110;
    overflow-x: hidden;
}

h2, ul, li, span, p {
    color: #FFFFFF;
}

a {
    text-decoration: none;
}


@media (max-width: 720px) {
    .footer_adress_mobile {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 7px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }
}

/*# sourceMappingURL=style.css.map */
