@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/BebasNeueBold.woff2") format("woff2"), url("../fonts/BebasNeueBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/BebasNeue-Thin.woff2") format("woff2"), url("../fonts/BebasNeue-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/BebasNeueLight.woff2") format("woff2"), url("../fonts/BebasNeueLight.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue Book";
    src: url("../fonts/BebasNeueBook.woff2") format("woff2"), url("../fonts/BebasNeueBook.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/BebasNeueRegular.woff2") format("woff2"), url("../fonts/BebasNeueRegular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

button,
input,
textarea {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
}

button:focus {
    box-shadow: none !important;
}

*:focus {
    outline: none;
}

body {
    font: 400 16px "Bebas Neue", sans-serif;
    background: #050308;
    color: #fff;
}

a {
    display: inline-block;
    font: inherit;
    color: inherit;
    transition: 300ms;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a img {
    border: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    max-width: 956px;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .container {
        width: 750px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

.wrapper {
    padding-top: 110px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .wrapper {
        padding-top: 130px;
    }
}

.arrow {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 100px;
    width: 42px;
    color: #fff;
    height: 38px;
    align-items: center;
    transform: translateX(-50%);
    background: #6c757d;
    justify-content: center;
    border-radius: 8px;
    transition: 300ms;
    cursor: pointer;
}

.arrow.active {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .arrow {
        width: 60px;
        height: 60px;
        bottom: 140px;
        right: 0;
        left: auto;
        transform: translate(0, 0);
        position: fixed;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 0;
        border-right: none;
        z-index: 100;
    }
}

.arrow .desktop {
    display: block;
}

@media only screen and (max-width: 767px) {
    .arrow .desktop {
        display: none;
    }
}

.arrow .mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .arrow .mobile {
        display: flex;
        align-items: flex-start;
        transform: rotate(180deg);
        width: 25px;
        height: 25px;
    }
}

.arrow:hover {
    background: #5c636a;
}

@media only screen and (max-width: 767px) {
    .arrow:hover {
        background-color: #3e9be9;
    }
}

.modal {
    background: #1e2125 !important;
    max-width: 550px !important;
    width: 100%;
    padding: 40px 20px !important;
    display: none;
}

.modal__form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

.modal__form input {
    border: none;
    border-bottom: 1px solid #dac294;
    background: none;
    color: #fff;
    padding: 10px;
    font-size: 20px;
}

.modal__form2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

.modal__form2 input {
    border: none;
    border-bottom: 1px solid #dac294;
    background: none;
    color: #000;
    padding: 10px;
    font-size: 20px;
}

.contact__form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

.contact__form input {
    border: none;
    border-bottom: 1px solid #dac294;
    background: none;
    color: #000;
    padding: 10px;
    font-size: 20px;
}

.modal__btn {
    border: 3px solid #dac294;
    background-color: #dac294;
    padding: 10px 60px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

.buy-system {
    width: 100%;
    border: 3px solid #dac294;
    background-color: #dac294;
    padding: 5px 60px;
    font-size: 30px;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    cursor: pointer;
    margin-top: 20px;
}

.buy-system:hover {
    width: 100%;
    border: 3px solid #dac294;
    background-color: #fff;
    padding: 5px 60px;
    font-size: 30px;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    cursor: pointer;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .modal__btn {
        padding: 10px 15px;
    }
}

.modal__btn:hover {
    border: 3px solid #dac294;
    background-color: #fff;
    color: #000;
}

.header {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    background: #050308;
    height: 125px;
    z-index: 10;
}

@media only screen and (max-width: 767px) {
    .header {
        height: 140px;
    }
}

.header__inner {
    padding-top: 8px;
}

@media only screen and (max-width: 767px) {
    .header__inner {
        display: flex;
        align-items: flex-start;
    }
}

.header__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .header__aside {
        max-width: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .header__aside {
        display: block;
        max-width: 100%;
        margin-left: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
}

.header__top {
    text-align: center;
}

.header__logo {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

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

.header__text {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    margin-top: 5px;
}

@media only screen and (max-width: 767px) {
    .header__text {
        font-size: 16px;
        margin-top: 0;
    }
}

.header__social {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .header__social {
        text-align: center;
    }
}

.header__icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
    .header__icons {
        display: none;
    }
}

.header__icons a {
    display: flex;
    align-items: flex-start;
    margin-right: 5px;
    cursor: pointer;
}

.header__icons a:last-child {
    margin-right: 0;
}

.header__call {
    border: 3px solid #dac294;
    padding: 0 30px;
    background: none;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    line-height: 24px;
    transition: 300ms;
}

.header__call:hover {
    border: 3px solid #dac294;
    background-color: #dac294;
    color: #000;
}

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

@media only screen and (max-width: 767px) {
    .header__nav {
        display: none;
    }

    .header__nav.show {
        display: block;
        position: absolute;
        height: 100vh;
        min-height: 100vh;
        width: 100%;
        background: #1e2125;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        padding: 100px 20px 40px;
    }
}

.header__nav-item.dropdown {
    position: relative;
    z-index: 100;
}

.header__nav-item.dropdown:before {
    content: "";
    display: block;
    position: absolute;
    width: 850px;
    left: -320px;
    height: 30px;
    background: transparent;
    bottom: -30px;
    z-index: 100;
}

.header__nav-item.dropdown:hover .header__dropdown {
    display: grid;
}

@media only screen and (max-width: 767px) {
    .header__nav-item.dropdown > a {
        position: relative;
    }

    .header__nav-item.dropdown:before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        left: 0;
        height: 0;
        background: transparent;
        bottom: -30px;
        z-index: 100;
    }

    h3.systems-name-b {
        padding-left: 17px;
    }
}

.header__nav-item.dropdown > a.active {
    color: #dac294;
}

@media only screen and (max-width: 767px) {
    .header__nav-item.dropdown > a.active {
        color: #dac294;
    }

    .header__nav-item.dropdown > a.active::after {
        transition: 400ms;
        transform: rotate(180deg) translateY(50%);
    }
}

.header__nav-item.dropdown > a:after {
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: relative;
    top: -5px;
}

@media only screen and (max-width: 767px) {
    .header__nav-item.dropdown > a:after {
        display: block;
        border: none;
        background: url(../images/arrow.svg) 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        width: 12px;
        height: 12px;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        position: absolute;
        content: "";
        margin-left: 0;
        transition: 400ms;
    }
}

.header__nav-item > a {
    padding: 0 8px;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: 400ms;
}

@media only screen and (max-width: 767px) {
    .header__nav-item > a {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 30px;
        width: 100%;
    }
}

.header__nav-item > a:hover {
    color: #dac294;
}

@media only screen and (max-width: 767px) {
    .header__nav-item > a:hover {
        color: #dac294;
    }
}

.header__dropdown {
    display: none;
    position: absolute;
    width: 850px;
    background-color: #050308;
    border: 3px solid #dac294;
    border-radius: 8px;
    color: #fff;
    padding: 30px;
    left: -320px;
    top: 50px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0;
}

@media only screen and (max-width: 991px) {
    .header__dropdown {
        width: 700px;
        left: -260px;
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .header__dropdown {
        width: 100%;
        grid-template-columns: 1fr;
        left: 0;
        position: relative;
        top: 0;
        border: none;
        background: none;
        padding-top: 0;
        padding-left: 15px;
    }
}

.header__dropdown a {
    padding: 7px;
}

@media only screen and (max-width: 767px) {
    .header__dropdown a {
        text-transform: lowercase;
    }
}

.header__dropdown a:hover {
    background: #e9ecef;
    color: #1e2125;
}

@media only screen and (max-width: 767px) {
    .header__dropdown a:hover {
        background: none;
        color: #dac294;
    }
}

.header__dropdown.active {
    display: grid;
}

.header__burger {
    display: none;
    width: 23px;
    z-index: 100;
}

@media only screen and (max-width: 767px) {
    .header__burger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
}

.header__burger.active {
    background: #fff;
    width: 30px;
    height: 30px;
}

.header__burger.active a span::after,
.header__burger.active a span::before {
    background-color: #1e2125;
}

.header__burger.active a span::before {
    transform: rotate(-45deg);
    top: 2px;
    left: 4px;
}

.header__burger.active a span::after {
    top: 2px;
    left: 4px;
    transform: rotate(45deg);
}

.header__burger a {
    display: block;
    cursor: pointer;
    padding: 12px 0;
}

.header__burger a span {
    position: relative;
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 7px;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

.header__burger a span:before,
.header__burger a span:after {
    content: "";
    width: 23px;
    height: 2px;
    position: absolute;
    left: 0;
    background: #fff;
    border-radius: 7px;
    transition: all 0.2s ease-in-out;
}

.header__burger a span:before {
    top: -9px;
}

.header__burger a span:after {
    top: 9px;
}

.hero {
    overflow: hidden;
    margin-top: 20px;
    padding: 106px 0;
    position: relative;
}

.line-bg {
    overflow: hidden;
    height: 160px;
    position: relative;
    background-image: url(../images/bg-line.webp);
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.5);
}

@media only screen and (max-width: 767px) {
    .hero {
        padding: 30px 0;
        margin-top: 0;
    }
}

.hero .video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

@media only screen and (max-width: 991px) {
    .hero .video {
        width: 1200px;
    }
}

.hero__title {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .hero__title {
        margin-bottom: 15px;
        font-size: 22px;
    }
}

.hero__text {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .hero__text {
        font-size: 20px;
    }
}

.hero__buttons {
    display: flex;
    align-items: center;
    margin-bottom: 110px;
}

@media only screen and (max-width: 767px) {
    .hero__buttons {
        margin-bottom: 40px;
    }
}

.hero__button {
    border: 3px solid #dac294;
    padding: 10px 60px;
    font-size: 20px;
    background: none;
    color: #fff;
    font-weight: 500;
    margin-right: 20px;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .hero__button {
        padding: 10px 15px;
    }
}

.hero__button:hover {
    border: 3px solid #dac294;
    background-color: #dac294;
    color: #000;
}

.hero__button-new {
    border: 3px solid #dac294;
    background-color: #dac294;
    padding: 10px 60px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .hero__button-new {
        padding: 10px 15px;
    }
}

.hero__button-new:hover {
    border: 3px solid #dac294;
    background-color: #fff;
    color: #000;
}





.hero__button-2 {
    border: 3px solid #dac294;
    padding: 10px 90px;
    font-size: 20px;
    background: none;
    color: #000;
    font-weight: 500;
    margin-right: 20px;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .hero__button {
        padding: 10px 15px;
    }
}

.hero__button-2:hover {
    border: 3px solid #dac294;
    background-color: #dac294;
    color: #000;
}

.hero__button-new-2 {
    border: 3px solid #dac294;
    background-color: #dac294;
    padding: 10px 90px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .hero__button-new {
        padding: 10px 15px;
    }

    .button-box-system {
        display: block !important;
    }
}

.hero__button-new-2:hover {
    border: 3px solid #dac294;
    background-color: #fff;
    color: #000;
}




.hero__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .hero__footer {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .hero__button-new-2 {
        border: 3px solid #dac294;
        background-color: #dac294;
        padding: 10px 0;
        font-size: 25px;
        color: #000;
        text-align: center;
        font-weight: 500;
        width: 100%;
        line-height: 30px;
        transition: 300ms;
        cursor: pointer;
        margin-top: 15px;
    }

    .hero__button-2 {
        border: 3px solid #dac294;
        padding: 10px 0;
        font-size: 25px;
        background: none;
        color: #000;
        font-weight: 500;
        line-height: 30px;
        transition: 300ms;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
    }

    .system-page-2 {
        padding-top: 0 !important;
        padding-bottom: 30px;
    }
}

.hero__footer-text {
    font-size: 30px;
    font-weight: 400;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .hero__footer-text {
        margin-top: 0;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero__footer-text:last-child {
        margin-bottom: 0;
    }
}

.systems-page {
    background: #fff;
    color: #000;
    padding-top: 30px;
    padding-bottom: 30px;
}

.systems__title {
    text-align: center;
    text-align: center;
    padding-top: 30px;
    color: #fff;
    font-size: 44px;
    padding-bottom: 10px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .systems__title {
        font-size: 30px;
        padding-top: 10px;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
}

.systems__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

@media only screen and (max-width: 767px) {
    .systems__items {
        grid-template-columns: 1fr 1fr;
    }
}

.systems__item {
    display: flex;
    align-items: center;
    height: 100%;
}

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

.systems__text {
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
    .systems__text {
        font-size: 18px;
        text-align: left;
    }
}

.about {
    margin-top: 30px;
    padding-bottom: 100px;
    border-bottom: 5px solid #dac294;
    margin-bottom: 50px;
    padding-top: 80px;
    background-image: url(../images/info_bg_filter.jpg);
    background-attachment: fixed;
}

@media only screen and (max-width: 767px) {
    .about {
        padding-bottom: 60px;
        margin-bottom: 30px;
    }
}

.about__title {
    text-align: center;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .about__title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.about__text {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .about__text {
        font-size: 20px;
    }
}

.about__list {
    list-style-type: disc;
    padding-left: 30px;
}

@media only screen and (max-width: 767px) {
    .about__list {
        padding-left: 20px;
    }
}

.about__list li {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .about__list li {
        font-size: 18px;
    }
}

.about__list li a {
    text-decoration: underline;
    transition: 300ms;
}

.about__list li a:hover {
    color: #dac293;
}

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

.about__stars {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.about__star {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .about__star {
        width: 20px;
        height: 20px;
    }
}

.about__description {
    margin-bottom: 20px;
}

.about__description p {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .about__description p {
        font-size: 18px;
    }
}

.about__description p:last-child {
    margin-bottom: 0;
}

.about__buttons {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .about__buttons {
        flex-direction: column;
        justify-content: center;
    }

    .about__buttons .hero__button {
        margin-right: 0;
        margin-bottom: 10px;
        width: 200px;
    }

    .about__buttons .hero__button-new {
        width: 200px;
    }
}

.contacts {
    margin-bottom: 50px;
}

.contacts__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .contacts__inner {
        display: block;
    }
}

.contacts__title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contacts_title {
    color: #000;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .contacts__title {
        font-size: 30px;
    }

    .contacts_title {
        font-size: 30px;
    }
}

.contacts__text {
    margin-bottom: 25px;
}

.contacts__text p {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
    .contacts__text p {
        font-size: 20px;
    }
}

.contacts__text p:last-child {
    margin-bottom: 0;
}

.contacts__telega {
    border: 3px solid #3e9be9;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #3e9be9;
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    margin-bottom: 30px;
}

.contacts__telega:hover {
    border: 3px solid #3381c1;
    background-color: #3381c1;
}

.contacts__footer {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contacts__footer a {
    display: flex;
    align-items: center;
    margin-right: 4px;
}

@media only screen and (max-width: 767px) {
    .contacts__footer a {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }

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

.contacts__footer a:last-child {
    margin-right: 0;
}

.contacts__link {
    color: #fff;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 500;
    transition: 400ms;
}

@media only screen and (max-width: 767px) {
    .contacts__link {
        display: none;
    }
}

.contacts__link:hover {
    color: #dac293;
    text-decoration: underline;
    transition: 400ms;
}

.contacts__block {
    width: 466px;
    background-color: #a31146;
    border-radius: 8px;
    padding: 20px;
}

@media only screen and (max-width: 991px) {
    .contacts__block {
        width: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .contacts__block {
        width: 100%;
        margin-top: 40px;
        padding: 15px;
    }
}

.contacts__subtitle {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
    .contacts__subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.contacts__description {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
    .contacts__description {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.contacts__label {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
    .contacts__label {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.contacts__list {
    padding-left: 30px;
    list-style: disc;
}

@media only screen and (max-width: 767px) {
    .contacts__list {
        padding-left: 20px;
    }
}

.contacts__list li {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 7px;
}

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

.footer {
    background-color: #191919;
    padding: 10px 0;
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .footer__inner {
        display: block;
    }
}

.footer__arrow {
    display: none;
}

@media only screen and (max-width: 767px) {
    .footer__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(180deg);
        cursor: pointer;
        width: 20px;
        height: 20px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

.footer__numbers {
    display: none;
}

@media only screen and (max-width: 767px) {
    .footer__numbers {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
}

.footer__number {
    margin: 0 3px;
    padding: 0 3px;
    font-size: 16px;
    position: relative;
}

.footer__number:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #dac294;
}

.footer__logo {
    display: flex;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .footer__logo {
        display: none;
    }
}

.footer__info {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .footer__info {
        text-align: center;
    }

    .footer__info .header__icons {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer__info .header__icons a {
        margin-right: 15px;
    }

    .footer__info .header__icons a:last-child {
        margin-right: 0;
    }
}

.footer__telega {
    padding: 10px 0;
    background: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

@media only screen and (max-width: 767px) {
    .footer__telega {
        border: none;
        padding: 0;
    }
}

.footer__telega:hover {
    color: #dac294;
}

@media only screen and (max-width: 767px) {
    .footer__telega:hover {
        border: none;
        background: transparent;
        color: #dac293;
    }
}

.footer__polytical {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 26px;
}

.footer__polytical:hover {
    color: #dac293;
}

.footer__policy {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer__policy a {
    text-decoration: underline;
    transition: 300ms;
}

.footer__policy a:hover {
    color: #dac293;
}

.systems-page-p {
    font-family: sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 20px;
}

.system-page-p {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
}

.systems-desc {
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    padding-right: 20px;
}

.systems-desc-b {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    padding-right: 20px;
}

.systems-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e2e2;
    width: 100%;
    margin-bottom: 25px;

}

.systems-card-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
    margin-left: 40px;
}

.systems-logo {
    width: 296px;
}

.systems-content {
    width: 630px;
    padding: 20px 0;
}

h3.systems-name {
    font-size: 30px;
    font-weight: 400;
    margin: 15px 0px 20px 0;
}

h3.systems-name-b {
    font-size: 30px;
    font-weight: 600;
    margin: 15px 0px 20px 0;
}

.systems-button {
    background-color: #dac294;
    border: 3px solid #dac294;
    padding: 2px 20px;
    font-size: 20px;
    color: #000;
    margin-top: 30px;
    font-weight: 400;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

.systems-button:hover {
    background-color: #fff;
    border: 3px solid #dac294;
    padding: 2px 20px;
    font-size: 20px;
    color: #000;
    margin-top: 30px;
    font-weight: 400;
    line-height: 30px;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {

    .line-bg {
        overflow: hidden;
        height: 110px;
        position: relative;
        background-image: url(../images/bg-line.webp);
        background-repeat: no-repeat;
        filter: brightness(0.5);
        background-size: 710px 110px;
    }

    .systems-card {
        display: block;
        padding-bottom: 20px;
    }

    .systems-card-end {
        display: block;
        padding-bottom: 20px;
        margin-left: 0;
    }

    .systems-content {
        width: 100%;
        padding: 0;
    }

    .systems-logo {
        height: 100%;
        padding: 20px 10px;
        text-align: center;
        width: 100%;
    }

    h3.systems-name {
        font-size: 25px;
        font-weight: 400;
        padding: 0px 20px;
        margin: 0px 0px 20px 0;
        text-align: center;
    }

    .systems-desc {
        font-size: 13px;
        padding: 0px 20px;
        margin-bottom: 20px;
    }

    .button-card {
        display: flex;
        justify-content: center;
    }

    .systems-button {
        margin-top: 0;
    }

    .contacts-form {
        width: 100% !important;
    }

    .systems-desc-b {
        padding-left: 18px;
        padding-bottom: 20px;
    }

}

.contacts__text p:last-child {
    font-size: 15px;
    font-weight: 500;
    font-family: sans-serif;
    color: #000;
    max-width: 450px;
    line-height: 20px;
}

.telega-contacts {
    width: 56px;
}

.contacts-form {
    width: 450px;
}

.message {
    padding: 20px;
    font-size: 20px;
}

.system-page {
    background: #fff;
    color: #000;
    padding-top: 30px;
    padding-bottom: 30px;
}

.system-page-2 {
    background: #fff;
    color: #000;
    padding-bottom: 30px;
}

.system-page-h {
    text-align: center;
    font-size: 40px;
}

.system-page-h2 {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-top: 35px;
}

.video-block-opt {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
}

@media (max-width: 640px) {

    .video-block-opt {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
    }

    .video-block-opt iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .opisanie-h3 {
        width: 100% !important;
    }

    .opisanie-h3-blockin {
        width: 100% !important;
    }

}

.opisanie-detail {}

.opisanie-h3-blockin {
    font-size: 30px;
    font-weight: 400;
    margin-top: 35px;
    text-align: center;
}

.opisanie-h3 {
    font-size: 30px;
    font-weight: 400;
    margin-top: 35px;
    width: 750px;
}

.spis {
    list-style: disc;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 17px;
    font-family: sans-serif;
    font-weight: 200;
}

.spis-2 {
    list-style: disc;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 200;
}

.spis-2 li {
    padding: 3px 0;
    font-weight: 200;
}

.spis-3 {
    list-style: disc;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 200;
}

.spis-3 li {
    padding: 8px 0;
    font-weight: 200;
    padding-left: 2.2rem;
    background-image: url(../images/cube.webp);
    background-position: 0 0;
    background-size: 1.6rem 1.6rem;
    list-style: none;
    background-repeat: no-repeat;
}

.action {
    display: block;
    margin: 100px auto;
    width: 100%;
    text-align: center;
}

.action a {
    display: inline-block;
    padding: 5px 10px;
    background: #f30;
    color: #fff;
    text-decoration: none;
}

.action a:hover {
    background: #000;
}

.opisanie-p {
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 200;
    line-height: 22px;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .system-page-h {
        font-size: 30px;
        line-height: 35px;
    }

    .system-page-p {
        font-size: 15px;
    }

    .buy-system {
        padding: 5px 10px !importantim;
        font-size: 21px;
    }

    .images-systems-block {
        display: block !important;
        margin-bottom: 30px !important;
    }

    .images-systems-block-2 {
        display: block !important;
        margin-bottom: 30px !important;
    }

    .left-wrap {
        margin-right: 0 !important;
    }

    .logo-sup {
        width: 100% !important;
        margin-top: 25px;
    }
}

.center {
    text-align: center;
}

.button-box-system {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.images-systems-block {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 80px;
}

.images-systems-block-2 {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 0;
}

.left-wrap {
    justify-content: flex-start;
    margin-right: 30px;
    width: 50%;
}

.right-wrap {
    justify-content: flex-end;
    width: 50%;
}

.img-block {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.logo-sup {
    width: 50%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.center-wrap {
    width: 300px;
    margin-right: 20px;
}

.buy-system-bottom {
    width: 100%;
    border: 3px solid #dac294;
    background-color: #dac294;
    padding: 10px 60px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    cursor: pointer;
    margin-top: 20px;
}

.buy-system-bottom:hover {
    width: 100%;
    border: 3px solid #dac294;
    background-color: #fff;
    padding: 10px 60px;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    cursor: pointer;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .center-wrap {
        width: 100%;
        margin-right: 0;
    }

    .left-wrap {
        justify-content: flex-start;
        margin-right: 30px;
        width: 100%;
    }

    .right-wrap {
        justify-content: flex-end;
        width: 100%;
    }

    .buy-system-bottom {
        padding: 5px 10px;
        font-size: 21px;
    }
}
