@charset "UTF-8";

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader {
    margin: 150px auto;
    border: 10px solid #ffffff;
    border-radius: 50%;
    border-top: 10px solid #46BAEA;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1.5s linear infinite;
    /* Safari */
    animation: spin 1.5s linear infinite;
}

body {
    margin: 0px 0px 0px 0px;
    width: 100%;
    margin: 0px 0px 0px 0px;
    -webkit-animation: fade-in 1s linear;
    animation: fade-in 1s linear;
    font-family: "Montserrat";
}

.wrapper {
    display: grid;
}

.scroll {
    height: 50px;
}

header {
    position: fixed;
    width: 100%;
    background-color: #2E3239;
    height: 100px;
    z-index: 9;
}

.menu {
    display: none;
}

.menu__i_active {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    margin-right: 32px;
    line-height: 18px;
    text-decoration: underline;
}

.inner_container {
    margin: 0 auto;
    width: 100%;
}

.header_wrapper {
    margin: auto 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}


/* скрываем чекбокс */

#menu__toggle {
    opacity: 0;
}


/* стилизуем кнопку */

.menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* используем flex для центрирования содержимого */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* центрируем содержимое кнопки */
    position: fixed;
    top: 40px;
    left: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}


/* добавляем "гамбургер" */

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.menu__btn>span::before {
    content: "";
    top: -8px;
}

.menu__btn>span::after {
    content: "";
    top: 8px;
}


/* контейнер меню */

.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin-top: 100px;
    padding: 0px;
    list-style: none;
    text-align: center;
    background-color: #2E3239;
}


/* элементы меню */

.menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.menu__item_active {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.menu__item:hover {
    text-decoration: underline;
}

#menu__toggle:checked~.menu__btn>span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
    top: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

#menu__toggle:checked~.menu__btn>span::after {
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
    visibility: visible;
    left: 0;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

.menu__box {
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

.menu__item {
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

.logo {
    margin: 35px auto auto;
    font-family: Overpass Mono;
    color: #B7B7B7;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.44px;
    text-transform: uppercase;
}

.logo span {
    color: #2140FF;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
}

.chat {
    text-align: right;
}

.header_wrapper button {
    width: 35px;
    height: 35px;
    margin-top: 35px;
    background-color: #2E3239;
    border-radius: 31px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    cursor: pointer;
}

.header_wrapper button img {
    width: 17px;
    margin-top: 3px;
    cursor: pointer;
    margin-left: -3px;
}

.software {
    min-width: 360px;
    max-width: 100%;
    margin-top: 100px;
    background-color: #2E3239;
}

.software_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #ffffff;
    margin: auto 20px;
}

.software_text {
    margin: 0px auto;
    z-index: 1;
}

h1, h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 31.69px;
}

p {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    width: 70%;
}

.software__l__p {
    margin: 0px;
    width: auto;
}

.software_content button {
    width: 140px;
    min-height: 44px;
    margin: 25px auto 38px auto;
    background-color: #2E3239;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    font-family: "Montserrat";
    cursor: pointer;
}

.software_img {
    display: block;
    float: right;
    overflow: hidden;
    height: 375px;
    margin-top: -375px;
    min-width: 360px;
    max-width: 100%;
}

.img01 {
    display: none;
}

.img0 {
    display: block;
    width: 380px;
    height: 375px;
    margin-right: -20px;
    -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
    filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
}

.img1 {
    display: block;
    min-width: 300px;
    max-width: 100%;
    padding-left: 20px;
    margin: 0px auto 50px;
}

.complete {
    padding-top: 55px;
    background-color: #ffffff;
    min-width: 360px;
    max-width: 100%;
}

.complete_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #2E3239;
    margin: auto 20px;
}

.complete_text {
    margin: 0px auto;
    z-index: 1;
}

.complete_content button {
    width: 200px;
    min-height: 44px;
    margin: 25px auto 38px auto;
    background-color: #ffffff;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    color: #2E3239;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    font-family: "Montserrat";
    cursor: pointer;
}

.complete_img {
    display: block;
    float: right;
    overflow: hidden;
    height: 375px;
    margin-top: -375px;
    min-width: 360px;
    max-width: 100%;
}

.img02 {
    display: none;
}

.img2 {
    display: block;
    width: 380px;
    height: 375px;
    margin-right: -20px;
}

.img3 {
    display: block;
    min-width: 300px;
    max-width: 100%;
    padding-left: 20px;
    margin: 0 auto 50px;
}

.ott {
    padding-top: 55px;
    min-width: 360px;
    max-width: 100%;
    background-color: #2E3239;
}

.ott_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #ffffff;
    margin: auto 20px;
}

.ott_text {
    margin: 0px auto;
    z-index: 1;
}

.ott_text p {
    width: auto;
}

.ott_content button {
    width: 200px;
    height: 30px;
    margin: 25px auto 38px auto;
    background-color: #2E3239;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    font-family: "Montserrat";
    cursor: pointer;
}

.ott_img {
    display: block;
    float: right;
    overflow: hidden;
    margin-top: -379px;
    min-width: 360px;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.custom_development_img {
    margin: 70px auto 50px;
    width: 375px;
}

picture {
    margin: auto;
}

.img4 {
    display: block;
    width: 380px;
    height: 375px;
    margin-right: -20px;
    -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
    filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
}

.img5 {
    display: block;
    min-width: 200px;
    max-width: 100%;
    margin: 0 auto 50px;
}

.cctv {
    padding-top: 55px;
    background-color: #ffffff;
    min-width: 360px;
    max-width: 100%;
}

.cctv_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #2E3239;
    margin: auto 20px;
}

.cctv_text {
    margin: 0px auto;
    z-index: 1;
}

.cctv_text p {
    width: auto;
}

.cctv__l__p {
    margin: 5px auto;
}

.cctv_p_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
}

.cctv_p_list_item {
    font-size: 12px;
    margin: 0px;
    font-weight: 500;
    line-height: 14.6px;
}

.cctv_content button {
    width: 200px;
    height: 30px;
    margin: 25px auto 38px auto;
    background-color: #ffffff;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    color: #2E3239;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    font-family: "Montserrat";
    cursor: pointer;
}

.cctv_img {
    display: block;
    float: right;
    overflow: hidden;
    height: 375px;
    margin-top: -365px;
    min-width: 360px;
    max-width: 100%;
}

.img6 {
    display: block;
    width: 380px;
    height: 375px;
    margin-right: -20px;
}

.img7 {
    display: block;
    min-width: 300px;
    max-width: 100%;
    margin: 0 auto 50px;
}

.cameras {
    padding-top: 55px;
    min-width: 360px;
    max-width: 100%;
    background-color: #2E3239;
}

.cameras_bg_d {
    display: none;
}

.cameras_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #ffffff;
    margin: auto 20px;
}

.cameras_text {
    margin: 0px auto;
    z-index: 1;
}

.cameras_text p {
    width: auto;
    font-size: 12px;
}

.cameras_text_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
    z-index: 1;
}

.cameras_block_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
}

.cameras_block_item p {
    font-size: 12px;
}

.cameras_border_img {
    width: 20px;
    height: 20px;
    border-radius: 31px;
    border: 1px solid #46BAEA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cameras_border_img img {
    width: auto;
    display: block;
}

.cameras_2_block {
    display: none;
}

.cameras_bg {
    width: 100%;
}

.cameras_bg img {
    display: block;
    width: 100%;
    margin-top: -302px;
    height: 302px;
}

.comp_vision {
    padding-top: 55px;
    background-color: #ffffff;
    min-width: 360px;
    max-width: 100%;
    position: relative;
}

.comp_vision_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #2E3239;
    margin: auto 20px;
}

.comp_vision_text {
    margin: 0px auto;
    z-index: 1;
}

.comp_vision_text p {
    width: auto;
}

.comp_vision_content button {
    width: 200px;
    height: 30px;
    margin: 25px auto 0px auto;
    background-color: #ffffff;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    color: #2E3239;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    font-family: "Montserrat";
    cursor: pointer;
}

.comp_vision_img {
    display: block;
    float: right;
    overflow: hidden;
    height: 375px;
    margin-top: -375px;
    min-width: 360px;
    max-width: 100%;
}

.computer_vision_contact_us {
    background: #46BAEA !important;
    color: #FFF !important;

}

.img8 {
    display: block;
    width: 380px;
    height: 375px;
    margin-right: -20px;
}

.img9 {
    display: block;
    min-width: 300px;
    max-width: 100%;
    margin: 151px auto 50px;
}

.rtc {
    padding-top: 55px;
    min-width: 360px;
    max-width: 100%;
    background-color: #2E3239;
}

.rtc_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #ffffff;
    margin: auto 20px;
}

.rtc_text {
    margin: 0px auto;
    z-index: 1;
}

.rtc_text p {
    width: auto;
}

.rtc_content button {
    width: 200px;
    height: 30px;
    margin: 25px auto 38px auto;
    background-color: #2E3239;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #46BAEA;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    font-family: "Montserrat";
    cursor: pointer;
}

.hand_img {
    margin: auto;
    width: 100%;
    z-index: 1;
}

.img11 {
    display: block;
    float: left;
    margin-left: -20px;
}

.img12 {
    display: block;
    float: right;
    margin-top: 150px;
    margin-right: -20px;
}

.rtc_img {
    display: block;
    float: right;
    overflow: hidden;
    height: 375px;
    margin-top: -375px;
    min-width: 360px;
    max-width: 100%;
}

.img10 {
    display: block;
    width: 380px;
    height: 375px;
    margin-right: -20px;
    -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
    filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
}


.client_logos {
    background: #ffffff;
    margin: 100px auto;
    padding-top: 50px;
}

.client_logos h1, .client_logos h2 {
    max-width: 1000px;
    text-align: left;
    margin: auto;
    color: #68B8E5;
}

.client_logo {
    height: 60px;
    margin-right: 85px;
}

.marquee {
    max-width: 1440px;
    height: 70px;
    margin: 80px auto 145px;
    overflow: hidden;
    position: relative;
}

.marquee div {
    display: block;
    width: 200%;
    height: 70px;

    position: absolute;
    overflow: hidden;

    animation: marquee 5s linear infinite;
}

.marquee span {
    float: left;
    width: 50%;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

footer {
    background-color: #343941;
    color: #ffffff;
    padding-bottom: 20px;
    min-width: 375px
}

.footer_container {
    display: none;
}

.footer_container_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.logo_mob {
    margin-top: 32px;
    color: #B7B7B7;
    font-family: Overpass Mono;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.92px;
    text-transform: uppercase;
}

.logo_mob span {
    color: #2140FF;
}

.logo_mob a {
    text-decoration: none;
    color: #ffffff;
}

.social_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.social_icon img {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 32px;
}

.f_item_titel picture {
    margin: 0px;
}

.f_item_titel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f_item_titel img {
    width: 14px;
    margin: 0px 10px;
    float: right;
}

#comp,
#cont,
#prod {
    display: none;
}

.footer_nav_items {
    cursor: pointer;
    border-bottom: 1px solid #494E57;
}

.footer_nav_items p {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

.footer_nav_items ul {
    padding: 0px;
    margin: 0px;
}

.footer_nav_items ul a {
    color: #ffffff;
    text-decoration: none;
}

.footer_nav_items ul li {
    list-style-type: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    padding: 5px 0px 5px 0px;
}

.pricing {
    background-color: #2E3239;
}

.pricing_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto 20px;
}

.pricing_h1 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 320px;
    text-align: left;
    margin: 30px auto 20px auto;
    color: #ffffff;
}

.per {
    height: 35px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 35px;
    background-color: #343941;
    border: 1px solid #3E444E;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.per button {
    width: 100%;
    height: 35px;
    background-color: #343941;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 22px;
}

.focus_btn_active {
    border: 2px solid #46BAEA !important;
}

.pricing_main {
    max-width: 1100px;
    min-width: 360px;
    margin: 100px auto 0px auto;
}

.pricing_desktop {
    display: none;
}

.setup-fee {
    display: flex;
    flex-wrap: wrap;
}

.setup-free__elements {
    margin: 0px auto;
    color: #ffffff;
}

.setup-free__elements .slide {
    height: 122px !important;
}

.setup-free__elements h2 {
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.setup-fee__slide {
    color: #ffffff;
    padding-top: 24px;
    height: 90px !important;
}

.setup-fee__slide .price {
    width: auto !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 4px 12px;
}

.slider-conteiner {
    width: 100%;
    background-color: #2E3239;
    color: #ffffff;
    text-align: center;
    padding-bottom: 20px;
}

.slider-wrapper {
    max-width: 98vw;
    margin: auto;
}

.slider {
    position: relative;
    overflow: hidden;
    padding: 0px 0px;
    margin: auto;
}

.slide {
    max-width: 100vw;
    max-height: auto;
    margin: auto;
    background-color: #343941;
    border: 1px solid #3E444E;
    border-radius: 15px;
    margin-bottom: 20px;
}

.slide_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto 30px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    width: 280px;
    height: 392px;
}

.description_slide {
    width: 218px;
    margin: auto 18px;
}

.description_slide p {
    width: 207px !important;
}

.description_slide button {
    width: 213px !important;
    margin: 360px auto 0px auto !important;
}

.description_slide .price {
    width: 82px !important;
}

.slide_info h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.slide_info p {
    width: 280px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 0px;
}

.price {
    text-align: center;
    width: 82px !important;
    padding: 7px 10px;
    margin-top: 0px;
    margin-bottom: 20px !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    border: 1px solid #FFFFFF;
    border-radius: 18px;
}

.slide_info button {
    width: 280px;
    height: 35px;
    margin: 335px auto auto auto;
    background-color: #343941;
    border-radius: 20px;
    color: #ffffff;
    border: 2px solid #46BAEA;
    cursor: pointer;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    position: absolute;
}

.btn_href {
    width: 280px;
    height: 35px;
    margin: 35px auto 30px auto;
    background-color: #343941;
    border-radius: 20px;
    color: #ffffff;
    border: 2px solid #46BAEA;
    cursor: pointer;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.slicl-list {
    overflow: hidden;
}

.slider .slick-arrow {
    display: none !important;
}

.slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
}

.slider .slick-dots li {
    list-style-type: none;
    margin: 0px 10px;
}

.slider .slick-dots button {
    font-size: 0;
    border-radius: 100px;
    border: none;
    width: 10px;
    height: 10px;
    background-color: #3E444E;
    position: absolute;
    padding: 0px;
}

.slider .slick-dots li.slick-active button {
    background: -o-linear-gradient(0.27deg, #46C0EF 0.15%, #4865AD 99.68%);
    background: linear-gradient(89.73deg, #46C0EF 0.15%, #4865AD 99.68%);
}

.slick-slide {
    opacity: 0.5;
}

.slick-slide p {
    display: none;
}

.slick-current {
    opacity: 1;
}

.slick-current p {
    display: block;
}

.slide a {
    position: inherit;
}

.downloads_main {
    max-width: 100%;
    min-width: 360px;
    margin: 100px auto 0px auto;
    background-color: #2E3239;
}

.downloads_desktop {
    display: none;
}

.downloads_second_group_blocks {
    max-width: 1000px;
    min-width: 360px;
    display: grid;
    grid-template-columns: auto;
    margin: auto;
}

.downloads_block {
    width: 320px;
    margin: auto 20px;
    color: #ffffff;
    background: #343941;
    border: 1px solid #3E444E;
    border-radius: 10px;
    margin: 0px auto 25px auto;
}

.block_title {
    display: grid;
    grid-template-columns: 90% auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block_title h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin: 10px auto 0px 15px;
}

.block_title p {
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    margin: 0px auto 10px 15px;
}

.block_title img {
    margin-right: 0px;
    width: 16px;
}

.block_items {
    display: none;
}

.block_item {
    display: grid;
    grid-template-columns: 70px 140px auto auto;
}

.block_item img {
    width: 35px;
    margin: auto 0px 13px 10px;
}

.arch_img {
    margin: auto auto 13px 15px !important;
}

.name_block_item_text {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin: 0px;
    padding: 0px;
    width: auto;
}

.version_block_item_text {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.125em;
    color: #8993A2;
    margin: 0px;
    padding: 0px;
}

@media all and (min-width: 768px) and (max-width: 1023px) {
    .pricing_main {
        margin: 152px auto 0px auto;
    }

    .downloads_main {
        margin: 152px auto 0px auto;
    }

    h1, h2 {
        font-size: 32px;
    }

    p {
        font-size: 18px;
    }

    .software_content button {
        width: 150px;
        height: 36px;
        font-size: 18px;
    }

    .img1 {
        display: none;
    }

    .img01 {
        display: block;
        width: 600px;
        margin: auto;
        margin-bottom: 70px;
    }

    .software_img {
        height: auto;
        margin-top: -625px;
    }

    .img0 {
        width: 600px;
        height: auto;
        margin-right: 0;
    }

    .complete_content button {
        width: 210px;
        height: 36px;
        font-size: 18px;
    }

    .complete_img {
        height: auto;
        margin-top: -700px;
    }

    .img2 {
        width: 600px;
        height: auto;
        margin-right: 0;
    }

    .img3 {
        display: block;
        width: 600px;
        margin: auto;
        margin-bottom: 140px;
    }

    .ott_img {
        width: auto;
        height: auto;
        margin-top: -700px;
    }

    .img4 {
        width: 600px;
        height: auto;
        margin-right: 0;
    }

    .img5 {
        display: block;
        width: 480px;
        margin: auto;
        margin-bottom: 50px;
    }

    .cctv_content button {
        width: 210px;
        height: 36px;
        font-size: 18px;
    }

    .cctv_img {
        width: auto;
        height: auto;
        margin-top: -700px;
    }

    .img6 {
        width: 600px;
        height: auto;
        margin-right: 0;
    }

    .img7 {
        display: block;
        width: 480px;
        margin: auto;
        margin-bottom: 120px;
    }

    .cameras_text h1, .cameras_text h2 {
        font-size: 26px;
        line-height: 31.69px;
    }

    .cameras_text p {
        font-size: 16px;
    }

    .cameras_block_item p {
        font-size: 16px;
    }

    .cameras_border_img {
        width: 30px;
        height: 30px;
    }

    .cameras_border_img img {
        width: 12px;
    }

    .cameras_2_block {
        padding-left: 40px;
    }

    .cameras_2_block img {
        width: 320px;
    }

    .comp_vision_img {
        width: auto;
        height: auto;
        margin-top: -620px;
    }

    .img8 {
        width: 600px;
        height: auto;
        margin-right: 0;
    }

    .img9 {
        width: 480px;
        margin: 151px auto 120px auto;
    }

    .rtc_img {
        width: auto;
        height: auto;
        margin-top: -630px;
    }

    .img10 {
        width: 600px;
        height: auto;
        margin-right: 0;
    }

    .downloads_second_group_blocks {
        display: grid;
        grid-template-columns: auto auto;
    }

    .loader {
        margin: 310px auto;
        border: 16px solid #ffffff;
        border-radius: 50%;
        border-top: 16px solid #46BAEA;
        width: 120px;
        height: 120px;
        -webkit-animation: spin 2s linear infinite;
        /* Safari */
        animation: spin 2s linear infinite;
    }
}


/* FREE TRIAL */

.main_freetrial {
    background-color: #212121;
}

.freetrial_wrapper {
    max-width: 1000px;
    margin: auto;
}

.freetrial_cards {
    padding-top: 200px;
    padding-bottom: 20px;
    display: grid;
    gap: 20px;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 316px);
}

.freetrial_card {
    width: 316px;
    height: 332px;
    border-radius: 32px;
    background-color: #FCFDFF;
    position: relative;
}

.freetrial_card img {
    width: 35px;
    height: 35px;
    margin: 36px auto 44px 36px;
}

.freetrial_cards__title {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0px auto 10px 32px;
}

.freetrial_cards__subtitle {
    color: #9E9E9E;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    width: 228px;
    margin: 0px auto 58px 32px;
}

.freetrial_cards__btns {
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px;
    width: 256px;
    margin: auto auto 31px auto;
    position: absolute;
    bottom: 0px;
    left: 32px;
}

.freetrial_cards__btns button {
    padding: 8px 20px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    border-radius: 100px;
    background: #000AFF;
    border: none;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.freetrial_cards__btns button a {
    color: #FFF;
    text-decoration: none;
}

.popup_freetrial {
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(29, 29, 29, 0.74);
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    z-index: 888888;
    justify-content: center;
}

.popup_freetrial.popup_show {
    display: flex;
}

.popup_contactus {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.74);
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    z-index: 888888;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.popup_contactus.popup_show {
    opacity: 1;
    visibility: visible;
}

.popup_wrapper {
    display: flex;
    max-width: 375px;
    min-width: 375px;
    background-color: #FFF;
    margin: auto auto auto auto;
    border-radius: 24px;
    flex-wrap: wrap;
}

.popup_freetrial__title {
    width: 296px;
    margin: 32px auto 30px auto;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.popup_freetrial__label {
    margin: 0px auto 0px 23px;
    color: #000;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.popup_freetrial__input {
    height: 40px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    color: #000;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 318px;
    margin: 8px auto 20px;
}

.description {
    height: 115px;
    padding: 12px 8px 8px 8px;
}

.popup_freetrial__select {
    height: 60px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    color: #000;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 334px;
    margin: 8px auto 20px;
    cursor: pointer;
}

.popupfreetrial_btn_wrapper {
    display: grid;
    grid-template-columns: auto auto;
    margin: 32px auto 16px;
    gap: 16px;
}

.popupfreetrial_btn_wrapper a {
    text-decoration: none;
    color: #7C7C7C;
}

.freetrial_cancel_btn {
    height: 44px;
    padding: 6px 32px;
    border-radius: 100px;
    width: 120px;
    color: #000AFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #000AFF;
    cursor: pointer;
    background-color: #FFF;
}

.contactus_cancel_btn {
    height: 44px;
    padding: 6px 32px;
    border-radius: 100px;
    width: 120px;
    color: #000AFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #000AFF;
    cursor: pointer;
    background-color: #FFF;
}

.freetrial_request_btn {
    height: 44px;
    padding: 6px 40px;
    border-radius: 100px;
    background: #000AFF;
    width: 181px;
    border: none;
    cursor: pointer;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.contanct_submit_btn {
    height: 44px;
    padding: 6px 40px;
    border-radius: 100px;
    background: #000AFF;
    width: 181px;
    border: none;
    cursor: pointer;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.popup_footer_subtitle {
    margin: 16px auto 30px;
    color: #000;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 299px;
}

@media all and (min-width: 1024px) and (max-width: 2200px) {

    .chat {
        display: none;
    }

    .freetrial_cards {
        padding-bottom: 150px;
    }

    .pricing_main {
        margin: 152px auto 0px auto;
    }

    .downloads_main {
        margin: 152px auto 0px auto;
    }

    .loader {
        margin: 310px auto;
        border: 16px solid #ffffff;
        border-radius: 50%;
        border-top: 16px solid #46BAEA;
        width: 120px;
        height: 120px;
        -webkit-animation: spin 2s linear infinite;
        /* Safari */
        animation: spin 2s linear infinite;
    }

    .slider-conteiner {
        display: none;
    }

    .scroll {
        height: 100px;
    }

    h1, h2 {
        font-size: 36px;
    }

    nav {
        display: none;
    }

    .header_wrapper {
        width: 100%;
        margin: auto;
        grid-template-columns: auto auto;
    }

    .logo {
        margin-right: 0px;
    }

    .menu {
        display: block;
        margin-top: 30px;
        padding-left: 53px;
    }

    .menu__i {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        margin-right: 32px;
    }

    .menu button {
        width: 141px;
        margin: 0px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        font-family: "Montserrat";
    }

    .software {
        height: 700px;
    }

    .software_content {
        width: 1000px;
        margin: auto;
        height: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-bottom: 265px;
        z-index: 1;
        position: relative;
    }

    .software_text {
        margin: 0px;
        width: 1000px;
        margin-top: 160px;
    }

    .software_img {
        display: block;
        float: right;
        overflow: hidden;
        height: 700px;
        margin-top: -700px;
        min-width: 360px;
        max-width: 100%;
    }

    .img0 {
        width: 770px;
        height: auto;
        margin-top: 0px;
    }

    .img1 {
        display: none;
    }

    .img01 {
        display: block;
        width: 500px;
        height: auto;
        float: right;
        margin-top: 150px;
    }

    .complete {
        height: 645px;
    }

    .complete_content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 1000px;
        margin: auto;
        z-index: 1;
        position: relative;
    }

    .img3 {
        display: block;
        min-width: 500px;
        padding-left: 0px;
        margin: 0 auto 50px;
    }

    .complete_img {
        display: block;
        float: left;
        overflow: hidden;
        height: 600px;
        margin-top: -415px;
        min-width: 360px;
        max-width: 100%;
    }

    .img2 {
        width: 600px;
        height: auto;
        margin-top: 0px;
        -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }

    .ott {
        height: 645px;
    }

    .ott_content {
        z-index: 1;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 1000px;
        margin: auto;
        gap: 20px;
    }

    .img5 {
        display: block;
        min-width: 500px;
        padding-left: 0px;
        margin: 0 auto 50px;
    }

    .ott_img {
        display: block;
        float: right;
        overflow: hidden;
        height: 600px;
        margin-top: -480px;
        min-width: 360px;
        max-width: 100%;
    }

    .img4 {
        width: 600px;
        height: auto;
        margin-top: 0px;
    }

    .cctv {
        height: 645px;
    }

    .cctv_content {
        padding-top: 100px;
        z-index: 1;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        width: 1000px;
        margin: auto;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .img7 {
        display: block;
        min-width: 500px;
        padding-left: 0px;
        margin: 0 auto 50px;
    }

    .cctv_img {
        display: block;
        float: left;
        overflow: hidden;
        height: 600px;
        margin-top: -415px;
        min-width: 360px;
        max-width: 100%;
    }

    .img6 {
        width: 600px;
        height: auto;
        margin-top: 0px;
        -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }

    .cameras {
        height: 645px;
    }

    .cameras_content {
        z-index: 1;
        position: relative;
        width: 1000px;
        margin: auto;
        text-align: center;
    }

    .cameras_blocks {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 30px;
    }

    .cameras_0_block {
        padding-top: 100px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .cameras_1_block {
        padding-top: 100px;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .cameras_2_block {
        display: block;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .cameras_2_block img {
        width: 400px;
    }

    .cameras_block_item p {
        font-size: 14px;
    }

    .cameras_border_img {
        width: 35px;
        height: 35px;
    }

    .cameras_border_img img {
        width: 14px;
    }

    .cameras_block_item {
        padding: 20px 0px;
    }

    .cameras_bg_m {
        display: none;
        display: none !important;
    }

    .cameras_bg_d {
        display: block;
        margin-top: -580px !important;
    }

    .cameras_bg img {
        height: 580px;
    }

    .comp_vision {
        height: 545px;
        padding-top: 0px;
    }

    .comp_vision_content {
        padding-top: 50px;
        z-index: 1;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 1000px;
        margin: auto;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
    }

    .comp_vision_text {
        width: 100%;
        margin: auto 0px;
    }

    .img9 {
        display: block;
        float: right;
        min-width: 500px;
        padding-left: 0px;
        margin: auto 0px auto auto;
        text-align: end;
    }

    .comp_vision_img {
        display: block;
        float: right;
        overflow: hidden;
        height: 600px;
        margin-top: -415px;
        min-width: 360px;
        max-width: 100%;
    }

    .img8 {
        width: 600px;
        height: auto;
        margin-top: 0px;
    }

    .rtc {
        height: 645px;
    }

    .rtc_content {
        z-index: 1;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        width: 1000px;
        margin: auto;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        gap: 200px;
    }

    .hand_img {
        width: 400px;
    }

    .img11 {
        margin-left: 0px;
        margin-top: 110px;
    }

    .img12 {
        margin-right: 0px;
    }

    .rtc_img {
        display: block;
        float: left;
        overflow: hidden;
        height: 600px;
        margin-top: -415px;
        min-width: 360px;
        max-width: 100%;
    }

    .img10 {
        width: 600px;
        height: auto;
        margin-top: 0px;
        -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
        -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
        filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(199deg) brightness(108%) contrast(100%);
    }

    .rtc_text {
        width: 50%;
    }

    .footer_container_mobile {
        display: none;
    }

    .footer_container {
        display: block;
        max-width: 1440px;
        margin: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 75px;
        justify-content: center;
    }

    .footer_link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        color: #ffffff;
        margin-top: 32px;
        width: 177px;
    }

    .footer_link p {
        margin-top: 0px;
        margin-bottom: 16px;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
    }

    .footer_link a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
        padding: 5px 0px;
    }

    .pricing_header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        width: 1000px;
        margin: auto;
    }


    .pricing_h1 {
        font-weight: 600;
        font-size: 36px;
        line-height: 44px;
        width: 100%;
        text-align: left;
        margin: 0px auto 55px 0px;
        color: #ffffff;
    }

    .per button {
        width: 100%;
        height: 35px;
        background-color: #343941;
        border: none;
        color: #fff;
        cursor: pointer;
        border-radius: 22px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
    }

    .pricing_desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        color: #ffffff;
        padding-bottom: 100px;
    }

    .slide {
        height: 417px;
    }

    .slide_info button {
        width: 280px;
        height: 35px;
        margin: 335px auto 30px auto;
        position: absolute;
    }

    .slide a {
        position: absolute;
    }

    .gap {
        height: 22px;
    }

    .gap_0 {
        height: 40px;
    }

    .gap_1 {
        height: 32px;
    }

    .downloads_second_group_blocks {
        display: grid;
        grid-template-columns: auto auto auto;
    }

    .block_items {
        display: block;
    }

    .block_title img {
        display: none;
    }

    .block_title h3 {
        font-size: 20px;
        line-height: 39px;
        margin: 10px auto 8px 15px;
    }

    .block_title_text p {
        font-size: 16px;
        line-height: 25px;
        margin: 0px 15px 10px 15px;
        padding-top: 10px;
        border-top: 1px solid #454B55;
        width: 290px;
    }

    .block_item img {
        width: 40px;
        margin: auto 0px 13px 0px;
    }
}

@media all and (min-width: 1600px) and (max-width: 1920px) {
    .pricing_main {
        margin: 152px auto 0px auto;
    }

    .downloads_main {
        margin: 152px auto 0px auto;
    }

    .block_item img {
        width: 40px;
        margin: auto 0px 13px 0px;
    }

    .block_item {
        display: grid;
        grid-template-columns: auto 220px auto auto;
    }

    .arch_img {
        margin: auto 5px 13px 40px !important;
    }

    .downloads_second_group_blocks {
        max-width: 1600px;
        gap: 20px;
    }

    .downloads_block {
        width: 500px;
    }

    .block_title h3 {
        font-size: 32px;
        line-height: 39px;
        margin: 10px auto 8px 40px;
    }

    .block_title_text p {
        width: 420px;
        margin: 0px 40px 10px 40px;
    }

    .block_item img {
        width: 60px;
    }

    .name_block_item_text {
        font-size: 20px;
        line-height: 25px;
    }

    .version_block_item_text {
        font-size: 20px;
        line-height: 25px;
    }

    h1, h2 {
        font-weight: 600;
        font-size: 50px;
        line-height: 61px;
    }

    p {
        font-size: 25px;
        line-height: 30px;
        width: auto;
    }

    .software_content button {
        width: 200px;
        height: 40px;
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
    }

    .software {
        height: 980px;
    }

    .software_content {
        width: 1600px;
    }

    .software_text {
        width: 1600px;
        margin-top: 180px;
    }

    .img01 {
        width: 860px;
        margin-top: 200px;
    }

    .software_img {
        height: 980px;
        margin-top: -950px;
    }

    .img0 {
        width: 980px;
    }

    .complete {
        padding-top: 40px;
        height: 980px;
    }

    .complete_content {
        width: 1600px;
    }

    .complete_text {
        width: 950px;
        margin-top: 100px;
    }

    .img3 {
        width: 660px;
        margin: 120px auto 50px;
    }

    .complete_content button {
        width: 252px;
        height: 40px;
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
    }

    .img2 {
        width: 980px;
    }

    .complete_img {
        height: 980px;
        margin-top: -710px;
    }

    .ott {
        height: 980px;
        padding-top: 20px;
    }

    .ott_content {
        width: 1600px;
    }

    .ott_content button {
        width: 252px;
        height: 40px;
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
    }

    .img5 {
        width: 572px;
        margin-top: 150px;
    }

    .ott_text {
        margin-top: 110px;
    }

    .ott_text p {
        width: 70%;
    }

    .ott_img {
        height: 980px;
        margin-top: -730px;
    }

    .img4 {
        width: 980px;
    }

    .cctv {
        height: 980px;
        padding-top: 20px;
    }

    .cctv_content {
        width: 1600px;
    }

    .cctv_content button {
        width: 252px;
        height: 40px;
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
    }

    .cctv_p_column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cctv_p_list_item {
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
    }

    .img7 {
        width: 796px;
    }

    .cctv_img {
        height: 980px;
        margin-top: -700px;
    }

    .img6 {
        width: 980px;
    }

    .cameras {
        height: 980px;
        padding-top: 10px;
    }

    .cameras_content {
        width: 1600px;
    }

    .cameras_text_img {
        width: 1600px;
    }

    .cameras_text p {
        font-size: 20px;
        line-height: 24px;
    }

    .cameras_blocks {
        gap: 60px;
    }

    .cameras_block_item {
        padding: 60px 0;
    }

    .cameras_block_item p {
        font-size: 18px;
        line-height: 22px;
    }

    .cameras_border_img {
        width: 62px;
        height: 62px;
    }

    .cameras_border_img img {
        width: 20px;
    }

    .cameras_2_block img {
        width: 563px;
    }

    .cameras_2_block img {
        width: 563px;
        padding-top: 58px;
    }

    .cameras_bg {
        height: 900px;
        margin-top: -905px;
    }

    .cameras_bg img {
        height: 900px;
    }

    .comp_vision {
        height: 980px;
        padding-top: 20px;
    }

    .comp_vision_content {
        width: 1600px;
        padding-top: 300px;
    }

    .img9 {
        min-width: 656px;
    }

    .comp_vision_img {
        height: 980px;
        margin-top: -680px;
    }

    .img8 {
        width: 980px;
    }

    .rtc {
        height: 980px;
    }

    .rtc_content {
        width: 1600px;
    }

    .hand_img {
        width: auto;
        margin: 0px;
        margin-top: 200px;
    }

    .img11 {
        width: 252px;
        margin-top: 0px;
        margin-right: 70px;
    }

    .img12 {
        width: 252px;
        margin-top: 50px;
    }

    .rtc_img {
        height: 980px;
        margin-top: -730px;
    }

    .img10 {
        width: 980px;
    }

    /* .footer_container {
        width: 1600px;
        gap: 15%;
        height: 290px;
    } */
    .footer_link {
        margin-top: 32px;
    }

    .footer_link p {
        margin-top: 0px;
        margin-bottom: 16px;
    }

    .pricing_header {
        width: 984px;
    }

    .pricing_desktop {
        width: 1100px;

    }

    .slide_info button {
        width: 280px;
        height: 35px;
        margin: 335px auto 30px auto;
        position: absolute;
    }



    .slide a {
        position: absolute;
    }

    .our_partners {
        margin: auto auto;
        max-width: 1600px !important;
    }

    .our_partners__logos {
        max-width: 1600px !important;
    }

    .our_partners h1, .our_partners h2 {
        max-width: 1600px !important;
        padding-left: 10px;
    }

    .customers_reviews__wrapper {
        max-width: 1600px !important;
    }

    .customers_reviews h1, .customers_reviews h2 {
        max-width: 1600px !important;
    }

    .costumers_reviews-sliders {
        max-width: 1500px !important;
    }

    .costumers-slide {
        width: 450px !important;
    }

}

.our_partners {
    margin: auto 10px;
    min-width: 400px;

}

.our_partners h1, .our_partners h2 {
    max-width: 1440px;
    /* margin: 140px auto auto; */
    color: #68B8E5;
    padding-top: 55px;
}

.our_partners__logos {
    max-width: 1440px;
    overflow: hidden;
    margin: 50px auto 140px;
    padding: 20px 0px;
}

.our_partners__logos img {
    height: 50px;
    margin-right: 40px;
}

.our_partners__logos button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
    display: none;
}

.our_partners__logos picture.slick-slide {
    opacity: 1;
}

.slick-slide {
    opacity: 1;
}

.customers_reviews {
    min-width: 415px;
    background-color: #2E3239;
}

.customers_reviews h1, .customers_reviews h2 {
    max-width: 1440px;
    margin: auto;
    padding-left: 10px;
    padding-top: 75px;
    padding-bottom: 32px;
    color: #FFFFFF;
}

.costumers_reviews-sliders {
    max-width: 1440px;
    overflow: hidden;
    margin: auto;
}

.costumers-slide {
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 335px;
    height: 370px;
    margin: auto 20px;
    filter: blur(2px);
    opacity: 0.4;
}

.slick-current {
    opacity: 1 !important;
    filter: none !important;
}

.costumers-slide-header {
    display: flex;
    gap: 17px;
    margin: auto;
    padding: 28px 24px 24px;
    justify-content: center;
    align-items: center;
}

.costumers-slide_logo {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    border: 1px solid #A7A7A7;
}

.costumers-slide_title {
    max-width: 194px;
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0px;
}

.costumers-slide_hr {
    background: #E6E6E6;
    width: 287px;
    height: 1px;
    border: none;
    margin: 0px auto;
}

.costumers-slide_link {
    padding-top: 20px;
    padding-left: 24px;
    margin: 0;
    max-width: 287px;
    color: #000AFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.costumers-slide_subtitle {
    padding-top: 8px;
    padding-left: 24px;
    margin: 0;
    max-width: 287px;
    color: #A7A7A7;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}

.costumers-slide_text {
    padding: 24px 24px 64px;
    width: 287px;
    color: #000;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin: 0px;
}

.slick-slide p {
    display: block;
}

.customers_reviews .slick-prev,
.slick-next {
    display: none !important;
}

.costumers-slide__btns {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 140px;
    gap: 16px;
}

.costumers-slide__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}


@media (min-width: 1024px) and (max-width: 2200px) {

    .btn_href {
        margin: 335px auto 30px auto;
    }


    .our_partners {
        margin: auto auto;
        max-width: 1000px;
    }

    .our_partners__logos img {
        height: 70px;
        margin-right: 100px;
    }

    .costumers-slide_logo {
        width: 64px;
        height: 64px;
        border-radius: 64px;
    }

    .costumers-slide_title {
        max-width: 233px;
        font-size: 24px;
        line-height: 30px;
        margin: 0px;
    }

    .costumers-slide-header {
        padding: 24px 22px 14px;
        justify-content: flex-start;
    }

    .costumers-slide_hr {
        width: 408px;
    }

    .costumers-slide_link {
        font-size: 20px;
        padding-top: 10px;
        padding-left: 32px;
    }

    .costumers-slide_subtitle {
        padding-top: 4px;
        padding-left: 32px;
    }

    .costumers-slide_text {
        padding: 14px 32px 0px;
        width: 408px;
        font-size: 13px;
        line-height: 18px;
    }

    .costumers-slide__btns {
        position: absolute;
        top: 50px;
        right: 0px;
    }

    .customers_reviews__wrapper {
        position: relative;
        background: #2e3239;
        max-width: 1000px;
        margin: auto auto;
        padding-bottom: 120px;
    }

    .customers_reviews h1, .customers_reviews h2 {
        padding-bottom: 72px;
    }

    .slick-current {
        transform: scale(1.35);
        position: relative;
        z-index: 1;
        width: 500px !important;
    }

    .costumers-slide {
        /* width: 450px; */
        width: 210px;
        height: 310px;
    }

    .costumers_reviews-sliders {
        max-width: 1440px;
        overflow: hidden;
        margin: auto;
        height: 500px;
        padding-top: 60px;
    }

}

.our_partners__logos .slick-current {
    width: auto !important;
    transform: scale(1);
}