/* #region fonts */
@font-face {
    font-family: "Aeonik";
    src: url(../fonts/Aeonik-Light.ttf) format("opentype");
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: "Aeonik";
    src: url(../fonts/Aeonik-Regular.ttf) format("opentype");
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "Aeonik";
    src: url(../fonts/Aeonik-Medium.ttf) format("opentype");
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: "Aeonik";
    src: url(../fonts/Aeonik-Bold.ttf) format("opentype");
    font-weight: 800;
    font-display: swap
}

@font-face {
    font-family: "Apparel";
    src: url("../fonts/Apparel Bold It.ttf") format("opentype");
    font-weight: 700;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "Apparel";
    src: url("../fonts/Apparel Black It.ttf") format("opentype");
    font-weight: 900;
    font-style: italic;
    font-display: swap
}
/* #endregion fonts */

/* #region reset css */
* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
*:before,
*:after {
    box-sizing: border-box
}

html,
body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

nav,
footer,
header,
aside {
    display: block
}

input,
button,
textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block
}

picture {
    display: block
}

button {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer
}

button[disabled] {
    cursor: default
}

sup {
    font-size: 60%;
    line-height: 0
}
/* #endregion reset css */

/* #region base */
html {
    font-family: "Aeonik", Arial, sans-serif;
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums
}

body {
    background-color: #fff;
    color: #2d2926;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    flex-direction: column
}

body.modal-open {
    overflow: hidden
}

main {
    flex: 1
}

.content {
    min-width: 320px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px
}

h1 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 400
}

h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em
}

@media(min-width: 425px) {
    h1 {
        font-size: 40px;
        line-height: 44px
    }
}

@media(min-width: 640px) {
    .content {
        padding: 0 40px
    }
}

@media(min-width: 990px) {
    h2 {
        font-size: 32px;
        line-height: 38px
    }
}

@media(min-width: 1280px) {
    h1 {
        font-size: 54px;
        line-height: 54px
    }

    h2 {
        font-size: 40px;
        line-height: 48px
    }
}
/* #endregion base */

/* #region utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@keyframes lds-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}
/* #endregion utilities */

/* #region elements */
.btn {
    align-items: center;
    border-radius: 50px;
    display: flex;
    text-decoration: none;
    font-size: 12px;
    justify-content: center;
    line-height: 18px;
    position: relative;
    padding: 10px 16px;
    position: relative
}

a.btn {
    display: inline-flex;
}

.btn__load {
    display: none;
    width: 12px
}

.btn__load img {
    animation: lds-ring 1.2s linear infinite;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%
}

.btn__success {
    display: none;
    width: 12px
}

.btn__success img {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.btn__wrapper {
    position: relative
}

.btn__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    transition: opacity .3s
}

.btn__arrow--left {
    left: 0;
    opacity: 0
}

.btn__arrow--right {
    right: 0;
    opacity: 1
}

.btn span {
    padding-right: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: padding .2s ease-in-out
}

.btn:hover span {
    padding-right: 0;
    padding-left: 14px
}

.btn:hover .btn__arrow--left {
    left: 0;
    opacity: 1
}

.btn:hover .btn__arrow--right {
    right: 0;
    opacity: 0
}

.btn--main {
    background-color: #fe3131;
    color: #fff
}

.btn--main-tp {
    border: 1px solid #002f75;
    color: #002f75
}

.btn--phone {
    border: 1px solid rgba(91, 85, 80, .2);
    color: #2d2926;
    transition: border-color .2s ease-in-out
}

.btn--phone:hover {
    border: 1px solid #5b5550
}

.btn--white {
    background-color: #fff;
    color: #474535;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em
}

.btn--white:hover {
    background-color: rgba(255, 255, 255, .6)
}

.btn--loading .btn__wrapper {
    display: none
}

.btn--loading .btn__load {
    display: block
}

.btn--success .btn__wrapper,
.btn--success .btn__load {
    display: none
}

.btn--success .btn__success {
    display: block
}

.accent {
    color: #002f75;
    font-family: "Apparel";
    font-style: italic;
    letter-spacing: 0
}

.green {
    color: #474535
}

.form-input {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(91, 85, 80, .4);
    border-radius: 35px;
    font-size: 12px;
    line-height: 18px;
    padding: 0 16px;
    height: 40px;
    text-transform: uppercase
}

.form-input:hover {
    box-shadow: 0 0 0 2px #5b5550;
    border-color: rgba(0, 0, 0, 0)
}

.form-input:hover {
    border-color: #fff
}

.form-input.focus-visible {
    outline: none;
    border: 1px solid #5b5550;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
}

.form-input:focus-visible {
    outline: none;
    border: 1px solid #5b5550;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
}

.form-input--error {
    background-color: rgba(255, 0, 0, .1)
}

.form-input:disabled {
    border-color: rgba(91, 85, 80, .4) !important;
    background-color: #ebebeb !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important
}

@media(min-width: 990px) {
    .btn {
        font-size: 14px;
        line-height: 24px
    }

    .btn__arrow {
        width: 14px;
        height: 14px
    }

    .btn span {
        padding-right: 22px
    }

    .btn:hover span {
        padding-left: 22px
    }

    .form-input {
        font-size: 14px;
        line-height: 24px
    }
}
/* #endregion elements */

/* #region .header */
.header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    height: 60px;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100
}

@supports((-webkit-backdrop-filter: blur(14px)) or (backdrop-filter: blur(14px))) {
    .header {
        background-color: rgba(255, 255, 255, .8);
        border-bottom: 1px solid rgba(0, 0, 0, .02);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px)
    }
}

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

.header__logo {
    flex: 1
}

.header__logo a {
    width: 80px;
    display: block
}

.header__nav {
    display: none
}

.header a.btn.header__phone {
    display: none
}

.header__call {
    padding: 0 12px;
    height: 28px
}

.header__phone-mob,
.header__burger {
    border: 1px solid rgba(91, 85, 80, .2);
    border-radius: 50%;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    transition: border-color .2s ease-in-out;
    position: relative;
    margin-left: 12px
}

.header__phone-mob:hover,
.header__burger:hover {
    border-color: #5b5550
}

.header__phone-mob {
    display: block
}

.header__phone-mob img {
    width: 12px;
    height: 12px
}

.header__burger {
    cursor: pointer
}

.header__burger span {
    background-color: #2d2926;
    display: block;
    position: absolute;
    height: 1px;
    width: 15px;
    left: 50%;
    transform: translate(-50%, -50%)
}

.header__burger span:nth-child(1) {
    top: 38%
}

.header__burger span:nth-child(2) {
    top: 50%
}

.header__burger span:nth-child(3) {
    top: 62%
}

.header-menu {
    background-color: #fff;
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none
}

.header-menu--open {
    display: block
}

.header-menu__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1
}

.header-menu__bg img {
    width: 90%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%)
}

.header-menu__top {
    border-bottom: 1px solid rgba(0, 0, 0, .02);
    height: 60px;
    position: relative;
    z-index: 2
}

.header-menu__top .content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    height: 100%
}

.header-menu__logo {
    width: 80px
}

.header-menu__close {
    border: 1px solid rgba(91, 85, 80, .2);
    border-radius: 50%;
    cursor: pointer;
    width: 28px;
    flex: 0 0 28px;
    height: 28px;
    position: relative
}

.header-menu__close img {
    width: 8px;
    height: 8px
}

.header-menu__close:hover {
    border-color: #5b5550
}

.header-menu__body {
    padding: 25px 0;
    position: relative;
    z-index: 2
}

.header-menu__body ul {
    list-style: none
}

.header-menu__body ul a {
    color: inherit;
    text-decoration: none;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em
}

.header-menu__body ul a:hover {
    text-decoration: underline
}

.header-menu__body li+li {
    margin-top: 16px
}

.header-menu__body .btn {
    width: 100%;
    max-width: 300px
}

.header-menu__body .btn--main-tp {
    margin-top: 36px;
    margin-bottom: 12px
}

.header-menu__title {
    color: rgba(45, 41, 38, .5);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 18px;
    letter-spacing: .02em
}

@media(min-width: 990px) {
    .header {
        height: 80px
    }

    .header__logo {
        flex: initial;
        margin-right: 28px
    }

    .header__logo a {
        width: 128px
    }

    .header__nav {
        display: flex;
        flex: 1;
        list-style: none
    }

    .header__nav li a {
        color: #000;
        color: initial;
        text-decoration: none;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px
    }

    .header__nav li a:hover {
        text-decoration: underline
    }

    .header__nav li+li {
        margin-left: 16px
    }

    .header a.btn.header__phone {
        display: block
    }

    .header__call {
        height: auto;
        padding: 10px 16px;
        margin-left: 14px
    }

    .header__phone-mob,
    .header__burger {
        display: none
    }
}
/* #endregion .header */

/* #region .hero */
.hero {
    padding-top: 20px
}

.hero__fs h1 {
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 420px
}

.hero__fs h1 .accent {
    font-weight: 900
}

.hero__form {
    margin-top: 24px
}

.hero__form .form-input--phone {
    width: 100%
}

.hero__form .btn {
    width: 100%;
    margin-top: 12px;
    height: 40px
}

.hero-benefit {
    display: flex
}

.hero-benefit+.hero-benefit {
    margin-top: 20px
}

.hero-benefit__icon {
    border: 1px solid rgba(91, 85, 80, .2);
    border-radius: 57px;
    position: relative;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin-right: 12px
}

.hero-benefit__icon img {
    width: 20px;
    height: 20px
}

.hero-benefit__text p {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .6
}

.hero-benefit__text span {
    display: block;
    font-size: 16px;
    line-height: 24px
}

.hero-anim {
    margin-top: 40px;
    position: relative;
    display: none;
}

.hero-anim__main,
.hero-anim__main img,
.hero-anim__main video {
    border-radius: 20px;
}

.hero-anim__main video {
    width: 100%;
    display: block;
}

.hero-anim__img {
    border-radius: 12px;
    position: absolute;
    filter: drop-shadow(0px 100px 80px rgba(0, 0, 0, 0.15)) drop-shadow(0px 30.1471px 24.1177px rgba(0, 0, 0, 0.0977383)) drop-shadow(0px 12.5216px 10.0172px rgba(0, 0, 0, 0.075)) drop-shadow(0px 4.5288px 3.62304px rgba(0, 0, 0, 0.0522617))
}

.hero-anim__img img {
    border-radius: 12px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero-anim__img--1 {
    width: 100px;
    height: 116px;
    top: 14px;
    left: -15px
}

.hero-anim__img--2 {
    width: 84px;
    height: 107px;
    right: -14px;
    bottom: 26px
}

@media(min-width: 640px) {
    .hero {
        padding-top: 40px
    }

    .hero__fs h1 {
        margin-bottom: 24px
    }

    .hero__form {
        margin-top: 32px
    }

    .hero__form .btn {
        margin-top: 16px
    }

    .hero-anim {
        margin-top: 60px
    }

    .hero-anim__img--1 {
        width: 168px;
        height: 192px;
        top: 28px;
        left: -30px
    }

    .hero-anim__img--2 {
        width: 168px;
        height: 214px;
        right: -28px;
        bottom: 52px
    }
}

@media(min-width: 990px) {
    .hero {
        padding-top: 60px;
    }

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

    .hero__fs {
        flex: 0 0 50%;
        padding-right: 30px
    }

    .hero__fs h1 {
        margin-bottom: 32px
    }

    .hero__form {
        margin-top: 32px;
        display: flex
    }

    .hero__form .form-input--phone {
        margin-right: 16px;
        height: 44px;
        width: 253px
    }

    .hero__form .btn {
        width: auto;
        margin-top: 0;
        height: 44px
    }

    .hero-benefit__icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        margin-right: 20px
    }

    .hero-benefit__icon img {
        width: 24px;
        height: 24px
    }

    .hero-benefit__text p {
        font-size: 12px;
        line-height: 20px
    }

    .hero-benefit__text span {
        font-size: 20px;
        line-height: 28px
    }

    .hero-anim {
        margin-top: 0;
        flex: 0 0 50%;
        padding-left: 30px;
        display: block;
    }

    .hero-anim__img--1 {
        width: 128px;
        height: 145px;
        top: 52px;
        left: -84px
    }

    .hero-anim__img--2 {
        width: 128px;
        height: 162px;
        right: -37px;
        bottom: 55px
    }
}

@media(min-width: 1280px) {
    .hero__fs h1 {
        margin-bottom: 44px;
        max-width: none;
        max-width: initial
    }

    .hero__form {
        margin-top: 44px
    }

    .hero-benefit+.hero-benefit {
        margin-top: 28px
    }

    .hero-anim {
        margin-top: 0;
        flex: 0 0 50%
    }

    .hero-anim__img--1 {
        width: 172px;
        height: 195px;
        top: 107px;
        left: -108px
    }

    .hero-anim__img--2 {
        width: 172px;
        height: 218px;
        right: -50px;
        bottom: 74px
    }
}
/* #endregion .hero */

/* #region .services */
.services {
    overflow: hidden;
    padding: 80px 0 80px
}

.services h2 {
    text-align: center;
    max-width: 550px;
    margin: 0 auto
}

.services__body {
    position: relative;
    margin: 60px 0 0
}

.services__content {
    margin: -8px
}

.services__bg {
    position: absolute;
    top: -54px;
    z-index: 1
}

.service-item {
    position: relative;
    z-index: 2;
    padding: 8px;
    height: 300px
}

.service-item__wrapper {
    border-radius: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
}

.services--anim-init .service-item__wrapper {
    transition: all .2s ease-in-out;
}

.service-item--active .service-item__bg--gradient {
    background: rgba(45, 41, 38, .6);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.service-item--active .service-item__wrapper {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.service-item--active .service-item__content h3 {
    color: #e7e9db;
    opacity: .5;
    flex: 1
}

.service-item--active .service-item__content ul {
    /* display: block; */
    /* opacity: 1 */
    transform: translateY(0);
}

.service-item__bg {
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.service-item__bg--image {
    z-index: 1
}

.service-item__bg--image img {
    border-radius: 20px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.service-item__bg--video {
    isolation: isolate;
    overflow: hidden;
}

.service-item__bg--video video {
    border-radius: 20px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.service-item__bg--gradient {
    background: linear-gradient(180deg, rgba(45, 41, 38, 0) 38.81%, #2D2926 100%);
    z-index: 2;
}

.services--anim-init .service-item__bg--gradient {
    transition: backdrop-filter 0.2s ease;
}

.service-item__content {
    position: relative;
    padding: 24px;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.service-item__content h3 {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    max-width: 200px;
}

.services--anim-init .service-item__content h3 {
    transition: flex .2s ease;
}

.service-item__content ul {
    list-style: url(../images/icons/list-dot-red.svg);
    padding-left: 14px;
    position: absolute;
    bottom: 24px;
    left: 24px;
    transform: translateY(200px);
    /* display: none; */
    max-width: 200px;
}

.services--anim-init .service-item__content ul {
    transition: transform 0.3s ease;
}

.service-item__content li {
    font-size: 16px;
    line-height: 20px;
    color: #e7e9db
}

.service-item__content li strong {
    color: #fff
}

.service-item__content li+li {
    margin-top: 12px
}

@keyframes itemlist {
    from {
        display: none;
        opacity: 0
    }

    to {
        display: block;
        opacity: 1
    }
}

@media(min-width: 640px) {
    .services {
        padding: 100px 0 80px
    }
}

@media(min-width: 768px) {
    .services__content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center
    }

    .service-item {
        flex: 0 0 33.3333333333%;
        height: 350px
    }
}

@media(min-width: 990px) {
    .services {
        padding: 140px 0
    }

    .services h2 {
        max-width: 700px
    }

    .services__body {
        margin-top: 139px
    }

    .services__bg {
        top: -123px
    }

    .services__content {
        margin: -10px
    }

    .service-item {
        height: 370px;
        padding: 10px
    }

    .service-item--active .service-item__wrapper {
        top: -4px;
        right: -5px;
        bottom: -4px;
        left: -5px
    }
}

@media(min-width: 1280px) {
    .services__body {
        margin-top: 149px
    }

    .services__bg {
        max-width: 1000px;
        top: -134px;
        left: 50%;
        transform: translateX(-50%)
    }

    .service-item {
        flex: 0 0 20%
    }
}
/* #endregion .services */

/* #region .section-card */
.section-card+.section-card {
    margin-top: 80px
}

.section-card__head {
    margin-top: 24px
}

.section-card__head p,
.section-card__head ul {
    opacity: .8;
    font-size: 14px;
    line-height: 18px
}

.section-card__head p.accent {
    opacity: 1;
    font-weight: 900;
    font-size: 18px;
    line-height: 24px
}

.section-card__head ul {
    list-style: url(../images/icons/list-dot-gray.svg);
    padding-left: 14px
}

.section-card__head ul li {
    padding-left: 8px
}

.section-card__head ul li+li {
    margin-top: 10px
}

.section-card__head h2+p,
.section-card__head h2+ul {
    margin-top: 24px
}

.section-card__head h2+p.accent {
    margin-top: 8px
}

.section-card__head p+p,
.section-card__head p+ul {
    margin-top: 10px
}

.section-card__content {
    margin-top: 24px;
}

.section-card__head .btn {
    margin-top: 24px;
    width: 100%
}

.section-card__visual--outside {
    display: none;
}

.section-card__visual--inside {
    margin: 30px 0 0;
}

.section-card__image,
.section-card__image img {
    border-radius: 12px
}

.section-card-cctv {
    position: relative
}

.section-card-cctv__image {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0px 61px 80px rgba(0, 0, 0, .1), 0px 18.3897px 24.1177px rgba(0, 0, 0, .0651589), 0px 7.63815px 10.0172px rgba(0, 0, 0, .05), 0px 2.76257px 3.62304px rgba(0, 0, 0, .0348411)
}

.section-card-cctv__image::before {
    border-radius: 8px;
    border: 2px solid #002f75;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.section-card-cctv__image--big {
    width: 65.25%;
    height: 65.25%;
    top: -3.39%;
    left: -3.39%
}

.section-card-cctv__image--small {
    width: 30.51%;
    height: 30.51%;
    right: -2.03%;
    bottom: -1.69%
}

.section-card-cctv__image img, .section-card-cctv__image video {
    border-radius: 12px;
    height: 100%;
}

.section-card-cctv__image img {
    -o-object-fit: cover;
    object-fit: cover
}

.section-card-cctv__cam {
    align-items: center;
    color: #fff;
    display: flex;
    -webkit-user-select: none;
    user-select: none;
    position: absolute;
    top: 10px;
    left: 10px
}

.section-card-cctv__cam span {
    background-color: red;
    border-radius: 50%;
    display: block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-right: 8px
}

.section-card-cctv__cam p {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px
}

@media(min-width: 990px) {
    .section-card+.section-card {
        margin-top: 140px
    }

    .section-card .content {
        align-items: center;
        display: flex
    }

    .section-card__head {
        flex: 0 0 50%;
        padding-left: 30px
    }

    .section-card__head p,
    .section-card__head ul {
        font-size: 16px;
        line-height: 22px
    }

    .section-card__head ul li+li {
        margin-top: 16px
    }

    .section-card__head h2+p.accent {
        margin-top: 12px
    }

    .section-card__head p+p,
    .section-card__head p+ul {
        margin-top: 16px
    }

    .section-card__head ul+p.accent,
    .section-card__head p+p.accent,
    .section-card__head p.accent+ul {
        margin-top: 24px
    }

    .section-card__head .btn {
        width: auto;
        margin-top: 32px
    }

    .section-card__visual {
        flex: 0 0 50%;
        padding-right: 30px
    }

    .section-card__visual--outside {
        display: block;
    }

    .section-card__visual--inside {
        display: none;
    }

    .section-card--reverse .content {
        flex-direction: row-reverse
    }

    .section-card--reverse .section-card__head {
        padding-left: 0;
        padding-right: 30px
    }

    .section-card--reverse .section-card__visual {
        padding-left: 30px;
        padding-right: 0
    }

    .section-card__image,
    .section-card__image img {
        border-radius: 20px
    }

    .section-card__tg-btn {
        display: none
    }
}

@media(min-width: 1280px) {
    .section-card__head {
        padding-left: 70px
    }

    .section-card__head p,
    .section-card__head ul {
        font-size: 18px;
        line-height: 24px
    }

    .section-card__head p.accent {
        font-size: 20px;
        line-height: 26px
    }

    .section-card__head h2+p,
    .section-card__head h2+ul {
        margin-top: 32px
    }

    .section-card__head ul+p.accent,
    .section-card__head p+p.accent,
    .section-card__head p.accent+ul {
        margin-top: 32px
    }

    .section-card--reverse .section-card__head {
        padding-left: 0
    }
}
/* #endregion .section-card */

/* #region .swiper */
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

/* .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    [dir="ltr"] & {
        margin-left: var(--swiper-centered-offset-before)
    }

    [dir="rtl"] & {
        margin-right: var(--swiper-centered-offset-before)
    }

    [dir="ltr"] & {
        margin-left: var(--swiper-centered-offset-before)
    }

    [dir="rtl"] & {
        margin-right: var(--swiper-centered-offset-before)
    }
} */

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    width: var(--swiper-centered-offset-after);
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-top: var(--swiper-centered-offset-before);
    margin-top: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    height: var(--swiper-centered-offset-after);
    height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}
/* #endregion .swiper */

/* #region .works */
.works {
    overflow: hidden;
    margin-top: 80px
}

.works h2 {
    text-align: center;
    margin-bottom: 8px
}

.works p.accent {
    text-align: center;
    font-weight: 900;
    margin-bottom: 24px;
}

.works__carousel {
    margin: 0 auto;
    position: relative
}

.works__carousel .swiper {
    overflow: visible
}

.works__carousel .swiper-slide {
    transition: opacity .4s ease;
    opacity: .4
}

.works__carousel .swiper-slide-active {
    opacity: 1
}

.works__carousel .swiper-slide-active .works-nav {
    display: block
}

.works-slide {
    position: relative;
    border-radius: 12px
}

.works-slide__placeholder, .works-slide__placeholder img {
    border-radius: 12px;
}

.works-slide__playbtn {
    cursor: pointer;
    width: 40px;
    height: 40px
}

.works-nav {
    cursor: pointer;
    position: absolute;
    z-index: 5;
    width: 40px;
    -webkit-user-select: none;
    user-select: none;
    top: 0;
    bottom: 0;
    display: none
}

.works-nav img {
    width: 14px;
    height: 14px;
    transition: left .2s ease
}

.works-nav--prev {
    background: linear-gradient(90deg, rgba(45, 41, 38, 0.6) 0%, rgba(45, 41, 38, 0) 100%);
    border-radius: 12px 0 0 12px;
    left: 0
}

.works-nav--prev:hover {
    background: linear-gradient(90deg, #2d2926 0%, rgba(45, 41, 38, 0) 100%)
}

.works-nav--prev:active img {
    left: 38%
}

.works-nav--next {
    background: linear-gradient(270deg, rgba(45, 41, 38, 0.6) 0%, rgba(45, 41, 38, 0) 100%);
    border-radius: 0px 12px 12px 0px;
    right: 0
}

.works-nav--next:hover {
    background: linear-gradient(270deg, #2d2926 0%, rgba(45, 41, 38, 0) 100%)
}

.works-nav--next:active img {
    left: 62%
}

@media(min-width: 990px) {
    .works {
        margin-top: 140px
    }

    .works h2 {
        max-width: 600px;
        margin: 0 auto 12px
    }

    .works p.accent {
        margin-bottom: 40px
    }

    .works__carousel {
        width: 82.2%
    }

    .works-slide__playbtn {
        width: 64px;
        height: 64px
    }

    .works-nav {
        width: 78px
    }
}

@media(min-width: 1280px) {
    .works p.accent {
        font-size: 20px;
        line-height: 26px
    }
}
/* #endregion .works */

/* #region .tariffs */
.tariffs {
    margin-top: 80px;
    overflow: hidden
}

.tariffs h2 {
    margin-bottom: 12px;
    text-align: center
}

.tariffs p.accent {
    margin-bottom: 24px;
    font-weight: 900;
    font-size: 20px;
    line-height: 26px;
    text-align: center
}

.tariffs__content {
    max-width: 360px
}

.tariffs .swiper {
    overflow: visible
}

.tariff-item {
    background-color: #474535;
    border-radius: 12px;
    color: #fff;
    position: relative;
    -webkit-user-select: none;
    user-select: none
}

.tariff-item__image,
.tariff-item__bg {
    border-radius: 12px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.tariff-item__image {
    border-radius: 12px;
    z-index: 1
}

.tariff-item__image img {
    border-radius: 12px
}

.tariff-item__bg {
    /* background-image: linear-gradient(180deg, rgba(71, 69, 53, 0) -34%, #474535 44.44%); */
    background-image: linear-gradient(180deg, rgba(71, 69, 53, 0) -34%, #001637 44.44%);
    z-index: 2
}

.tariff-item__wrapper {
    padding: 20px 16px;
    position: relative;
    z-index: 3
}

.tariff-item__head {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.tariff-item__type {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 12px
}

.tariff-item__price {
    display: flex;
}

.tariff-item__price + .tariff-item__r-price {
    margin-top: 12px;
}

.tariff-item__price p {
    font-weight: 300;
    font-size: 50px;
    line-height: 50px;
    margin-left: 4px;
    white-space: nowrap;
}

.tariff-item__price span {
    color: rgba(255, 255, 255, .6)
}

.tariff-item__price span:first-child {
    margin-top: 5px
}

.tariff-item__price span:last-child {
    align-self: flex-end;
    white-space: nowrap;
}

.tariff-item__r-price {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px
}

/* .tariff-item__r-price span {
    opacity: .5
} */

.tariff-item__body {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
}

.tariff-item__benefits, .tariff-item__additionally {
    padding: 14px 0 18px;
}

/* .tariff--anim-init .tariff-item__benefits {
    transition: opacity 0.1s ease;
} */

.tariff-item__additionally {
    border-top: 1px solid rgba(255, 255, 255, .1);
    /* transform: translateY(400px);
    position: absolute;
    top: 0;
    right: 0;
    left: 0; */
}

.tariff-item__show-more {
    display: none;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-decoration: none;
}

.tariff-item__show-more:hover span {
    text-decoration: underline;
}

.tariff-item__show-more img {
    width: 22px;
    height: 22px;
    margin-left: 10px;
    margin-top: 4px;
}

.tariff-item__show-more.active img {
    transform: rotate(180deg);
}

/* .tariff--anim-init .tariff-item__additionally {
    transition: transform 0.3s ease;
} */

/* .tariff-item__body--show .tariff-item__benefits {
    opacity: 0;
} */

/* .tariff-item__body--show .tariff-item__additionally {
    transform: translateY(0);
} */

.tariff-item__elem {
    display: flex
}

.tariff-item__elem+.tariff-item__elem {
    margin-top: 8px
}

.tariff-item__elem p {
    font-size: 14px;
    line-height: 18px
}

.tariff-item .btn {
    margin-top: 26px;
    width: 100%
}

.tariff-icon {
    flex: 0 0 22px;
    width: 22px
}

.tariff-icon span {
    display: block
}

.tariff-icon--plus span,
.tariff-icon--check span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    position: relative
}

.tariff-icon--plus img,
.tariff-icon--check img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.tariff-icon--check span {
    background: #48b522
}

.tariff-icon--check img {
    width: 10px;
    height: 10px
}

.tariff-icon--fire img {
    width: 14px;
    height: 14px
}

.tariff-icon--plus span {
    background: #002f75
}

.tariff-icon--plus img {
    width: 8px;
    height: 8px
}

.tariff-icon--dot span {
    width: 10px;
    height: 16px;
    position: relative
}

.tariff-icon--dot img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(min-width: 640px) {
    .tariffs .swiper-slide {
        height: auto
    }

    .tariff-item {
        height: 100%
    }

    .tariff-item__wrapper {
        height: 100%;
        display: flex;
        flex-direction: column
    }

    .tariff-item__body {
        flex: 1;
    }
}

@media(min-width: 768px) {
    .tariffs__content {
        max-width: none;
        max-width: initial
    }
}

@media(min-width: 990px) {
    .tariffs {
        margin-top: 140px
    }

    .tariffs p.accent {
        margin-bottom: 40px
    }

    .tariffs__content {
        margin: -10px
    }

    .tariffs .swiper-wrapper {
        display: flex
    }

    .tariffs .swiper-slide {
        flex: 0 0 33.3333333333%;
        padding: 10px
    }

    .tariff-item {
        border-radius: 20px;
    }

    .tariff-item--v1 {
        height: auto;
    }

    .tariffs__content--show-more .tariff-item--v1 {
        height: 100%;
    }

    .tariff-item--v1 .tariff-item__body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 0 425px;
    }

    .tariffs__content--show-more .tariff-item--v1 .tariff-item__body {
        flex: 1;
    }

    .tariff-item--v1 .tariff-item__additionally {
        overflow: hidden;
    }

    .tariffs__content--show-more .tariff-item--v1 .tariff-item__additionally {
        overflow: visible;
    }

    .tariff-item__show-more {
        display: flex;
    }

    .tariff-item__bg {
        border-radius: 20px
    }

    .tariff-item__image,
    .tariff-item__image img {
        border-radius: 20px
    }

    .tariff-item__head {
        padding-bottom: 26px
    }

    .tariff-item__type {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 16px
    }

    .tariff-item__price + .tariff-item__r-price {
        margin-top: 16px;
    }

    .tariff-item__price span {
        font-size: 22px;
        line-height: 26px
    }

    .tariff-item__price p {
        font-size: 60px;
        line-height: 60px
    }

    .tariff-item__r-price {
        font-size: 16px;
        line-height: 18px
    }

    .tariff-item__benefits, .tariff-item__additionally {
        padding: 26px 0 18px
    }

    .tariff-item__elem p {
        font-size: 16px;
        line-height: 18px
    }

    .tariff-icon {
        padding-top: 3px
    }
}

@media(min-width: 1280px) {
    .tariff-item--v1 .tariff-item__body {
        flex: 0 510px;
    }

    .tariff-item__type {
        font-size: 24px;
        line-height: 28px
    }

    .tariff-item__price span {
        font-size: 24px;
        line-height: 28px
    }

    .tariff-item__price span:first-child {
        margin-top: 10px
    }

    .tariff-item__price p {
        font-size: 90px;
        line-height: 90px
    }

    .tariff-item__elem+.tariff-item__elem {
        margin-top: 12px
    }

    .tariff-item__elem p {
        font-size: 18px;
        line-height: 24px
    }
}
/* #endregion .tariffs */

/* #region .cta-section */
.cta-section {
    margin-top: 80px
}

.cta-section__block {
    background-color: #474535;
    border-radius: 20px;
    color: #fff;
    position: relative;
    padding: 24px;
    max-width: 425px;
    margin: 0 auto;
}

.cta-section__image {
    margin-right: -24px;
    position: relative;
    z-index: 2;
}

.cta-section__image img {
    max-width: 320px;
    margin-left: auto;
}

.cta-section__bg {
    /* background: linear-gradient(360deg, #2D2926 25.17%, #474535 113.04%); */
    background: linear-gradient(360deg, #001637 25.17%, #003078 113.04%);
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2
}

.cta-section__text {
    position: relative;
    z-index: 3
}

.cta-section__text h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 20px
}

.cta-section__text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    opacity: .8;
    margin-bottom: 20px
}

.cta-section__text .btn {
    width: 100%
}

@media(min-width: 990px) {
    .cta-section {
        margin-top: 140px
    }

    .cta-section__block {
        max-width: initial;
        margin: initial;
        padding: 40px 0 40px 60px;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .cta-section__image {
        min-width: 300px;
        max-width: 415px;
        margin-right: 0;
    }

    .cta-section__image img {
        max-width: initial;
    }

    .cta-section__bg {
        /* background: linear-gradient(90deg, #2D2926 0%, #474535 100%); */
        background: linear-gradient(90deg, #001637 0%, #003078 100%);
    }

    .cta-section__text {
        max-width: 600px
    }

    .cta-section__text h2 {
        font-size: 40px;
        line-height: 48px
    }

    .cta-section__text p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 36px
    }

    .cta-section__text .btn {
        width: auto
    }
}

/* @media(min-width: 1100px) {
    .cta-section__bg {
        background: linear-gradient(90deg, #474535 67.47%, rgba(71, 69, 53, 0) 166.16%)
    }
} */
/* #endregion .cta-section */

/* #region .single-page */
.single-page h1 {
    margin-bottom: 25px;
    font-weight: 700
}

.single-page h2 {
    margin-bottom: 13px;
    font-weight: 700
}

.single-page p+h2 {
    margin-top: 20px
}

.single-page p+p {
    margin-top: 10px
}

.single-page ul {
    padding-left: 16px;
}
/* #endregion .single-page */

/* #region .footer */
.footer {
    background-color: #F7F9FC;
    padding: 24px 0;
    margin-top: 40px;
}

.footer__links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 16px;
}

.footer__social {
    background-color: #566A8F;
    border: 1px solid #566A8F;
    border-radius: 50%;
    width: 44px;
    flex: 0 0 44px;
    height: 44px;
    position: relative
}

.footer__social img {
    width: 22px;
    height: 22px;
}

.footer__logo {
    margin: 0 auto 20px;
    max-width: 128px;
}

.footer__text {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.footer__text span {
    margin: 4px 0;
    display: block;
}

.footer__text a {
    color: inherit
}

@media(min-width: 990px) {
    .footer {
        margin-top: 140px
    }

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

    .footer__links {
        margin: 0;
        order: 1
    }

    .footer__logo {
        margin: 0;
        max-width: 128px
    }
}
/* #endregion .footer */

/* #region .modal */
.modal {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 150;
    padding: 0 12px
}

.modal--show {
    display: flex
}

.modal,
.modal__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.modal__backdrop {
    background-color: rgba(0, 0, 0, .7);
    z-index: 1
}

@supports((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
    .modal__backdrop {
        background-color: rgba(206, 206, 206, .7);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px)
    }
}

.modal__content {
    position: relative;
    z-index: 2;
    overflow: auto;
    padding-top: 52px
}

.modal__close {
    background: #fff;
    border-radius: 50%;
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 0
}

.modal__close img {
    cursor: pointer;
    margin-left: auto;
    width: 14px;
    height: 14px
}
/* #endregion .modal */

/* #region .modal-call, .modal-info */
.modal-call,
.modal-info {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px 20px 24px
}

.modal-call {
    max-width: 400px
}

.modal-call__text-block {
    margin-bottom: 20px;
}

.modal-call h2 {
    margin-bottom: 12px
}

.modal-call__list li+li {
    margin-top: 10px
}

.modal-call__list-item {
    color: rgba(45, 41, 38, .75);
    font-size: 14px;
    line-height: 18px;
    display: flex
}

.modal-call__list-item span {
    width: 22px;
    height: 18px;
    flex: 0 0 22px;
    display: block;
    margin-top: 4px
}

.modal-call__list-item img {
    width: 10px;
    height: 10px
}

.modal-call .form-input {
    width: 100%;
    height: 40px
}

.modal-call .form-input--name {
    margin-bottom: 12px
}

.modal-call .form-input--phone {
    margin-bottom: 24px
}

.modal-call .btn {
    width: 100%;
    padding: 0 16px;
    height: 40px
}

.modal-info {
    position: relative;
    width: 300px
}

.modal-info__bg {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1
}

.modal-info__bg img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 90%;
    transform: translateX(-50%)
}

.modal-info__content {
    position: relative;
    z-index: 2
}

.modal-info__content img {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px
}

.modal-info__content h2 {
    text-align: center;
    margin-bottom: 12px
}

.modal-info__content p {
    color: rgba(45, 41, 38, .75);
    text-align: center;
    font-size: 14px;
    line-height: 18px
}

@media(min-width: 990px) {
    .modal__content {
        padding-top: 0;
        padding-right: 52px
    }

    .modal__close {
        width: 42px;
        height: 42px;
        top: 0;
        right: 0
    }

    .modal-call,
    .modal-info {
        padding: 40px 40px 50px
    }

    .modal-call {
        max-width: 520px
    }

    .modal-call__text-block {
        margin-bottom: 40px;
    }

    .modal-call h2 {
        margin-bottom: 24px
    }

    .modal-call__list li+li {
        margin-top: 12px
    }

    .modal-call__list-item {
        font-size: 18px;
        line-height: 24px
    }

    .modal-call .form-input {
        height: 56px
    }

    .modal-call .form-input--name {
        margin-bottom: 24px
    }

    .modal-call .form-input--phone {
        margin-bottom: 40px
    }

    .modal-call .btn {
        height: 56px
    }

    .modal-info {
        width: 520px
    }

    .modal-info__content img {
        width: 118px;
        height: 118px;
        margin-bottom: 40px
    }

    .modal-info__content h2 {
        margin-bottom: 24px
    }

    .modal-info__content p {
        font-size: 18px;
        line-height: 24px
    }
}
/* #endregion .modal-call, .modal-info */
