::selection{color:#fff;background:#a8181d9f}::-webkit-scrollbar{width:4px;height:4px}::-webkit-scrollbar-track{background-color:#e31e24}::-webkit-scrollbar-track-piece{background-color:#fff}::-webkit-scrollbar-thumb{height:4px;background-color:#e31e24;border-radius:2px}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    margin: 0;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
.d-none{
    display: none;
}
main {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}
pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}
button,
input { /* 1 */
    overflow: visible;
}
button,
select { /* 1 */
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}

html,body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1f1f1f;
}
html{
    height: 100%;
}
body{
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
#header,
#footer{
    flex: 0 0 auto;
}
#main{
    flex: 1 0 auto;
}
a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: #e31e24;
}
img{
    max-width: 100%;
    vertical-align: middle;
}
p{
    margin-top: 0;
    margin-bottom: 1em;
}
p:last-child{
    margin-bottom: 0;
}
.btn{
    display: inline-block;
    border: 2px solid #e31e24;
    background-color: #fff;
    border-radius: 22px;
    padding: 8px 26px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #e31e24;
    cursor: pointer;
    text-align: center;
    transition: .3s;
}
.btn img{
    width: 24px;
}
.btn:hover,
.btn.btn-primary{
    background-color: #e31e24;
    color: #fff;
}
.btn.btn-primary:hover{
    background-color: #fff;
    color: #e31e24;
}
.p-top{
    padding-top: 32px;
}
.p-bot{
    padding-bottom: 32px;
}
input[type="text"],
input[type="phone"],
input[type="email"],
textarea{
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    border: 1px solid #e4e4e7;
    padding: 15px 10px 1px 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    background-color: #fff;
    width: 100%;
    vertical-align: middle;
    transition: .3s;
}
input[type="text"]:focus,
input[type="phone"]:focus,
input[type="email"]:focus,
textarea:focus{
    border-color:  #333;
}
label{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7a7a7a;
    padding: 9px 10px;
    display: block;
}
.field-input.required label:after{
    content: '*';
    color: #e31e24;
}
.field-input{
    position: relative;
    line-height: 1;
    padding-top: 0;
}
.field-input label{
    position: absolute;
    left:0;
    top: 0;
    width: 100%;
    transition: .3s;
}
.field-input input:focus + label,
.field-input input.hasVal + label,
.field-input textarea:focus + label,
.field-input textarea.hasVal + label{
    top: -2px;
    font-size: 12px;
    padding: 0 0 0 10px;
}
.field-input input.hasError,
.field-input textarea.hasError{
    background-color: rgba(227, 30, 36, 0.37);
    border-bottom-color: #E31E24;
}
.field-input + .field-input{
    margin-top: 12px;
}
.field-check{
    position: relative;
}
.field-check input{
    position: absolute;
    left: 10px;
    top: 50%;
    opacity: 0;
}
.field-check label{
    display: block;
    position: relative;
    padding-left: 32px;
    font-size: 14px;
    line-height: 20px;
    padding-top: 2px;
    padding-bottom: 0;
    padding-right: 0;
}
.field-check label:before{
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    cursor: pointer;
    border: 2px solid #e4e4e7;
    background-color: #fff;
}
.field-check label:after{
    content: '';
    display: block;
    left: 8px;
    top: 3px;
    width: 8px;
    height: 14px;
    position: absolute;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    cursor: pointer;
    opacity: 0;
}
.field-check input:checked + label:after{
    opacity: 1;
}
.row-field.row{
    gap: 12px 0;
}
.btn-form{
    background-color: #7378fa;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #f7fafc;
    outline: none;
    box-shadow: none;
    border: 2px solid #7378fa;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}
.btn-form:hover{
    background-color: #e31e24;
    border-color: #e31e24;
    color: #fff;
}
.btn-form:active{
    color: #e31e24;
    background-color: #fff;
    border-color: #e31e24;
}
body:not(.showmenu) .toggle-menu .close-m,
body.showmenu .toggle-menu .open-m{
    display: none;
}
.row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.row>*,
.col-12{
    flex: 0 0 auto;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
}
.col-6{
    width: 50%;
}
.title-page{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 1em;
    text-align: center;
}
.title-block{
    font-weight: 700;
    font-size: 26px;
    line-height: .95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1em;
}
.title-block:first-letter{
    color: #e31e24;
}
#header{
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #4a4a4a;
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 7px;
    padding-bottom: 7px;
}
#header .row{
    align-items: center;
}
#header .col-logo{
    width: auto;
    flex: 1 0 0%;
}
#header .col-logo img{
    width: 164px;
}
#header .soc-list,
#header .col-tel,
#header .col-btn{
    flex: 0 0 auto;
    width: auto;
}
#header .col-tel a{
    font-weight: 700;
    font-size: 24px;
}
#header .col-tel a:not(:hover){
    color: #333;
}
#header .btn-action{
    line-height: 1.2;
    color: #333;
    font-weight: 700;
    font-size: 17px;
}
#header .btn-action:hover{
    color: #333
}
#header .btn-action:active{
    color: #ac3c3f
}
#header .soc-list{
    gap: 10px;
}
#header .soc-list,
#footer .soc-list{
    display: flex;
    flex-direction: row;
    align-items: center;
}
#footer{
    text-align: center;
    background-color: #939BF7;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
#footer .container{
    position: relative;
}
#footer .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
#footer .item-cont + .item-cont,
#footer .row-contact .col-item + .col-item{
    margin-top: 10px;
}
#footer .row-contact .col-item:last-child{
    margin-top: 20px;
}
#footer .soc-list{
    gap: 20px;
    justify-content: center;
}
#footer .soc-list img{
    width: 50px;
    height: auto;
}
#footer .title-f{
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
}
#footer .desc-f{
    display: block;
    font-size: 18px;
    margin-bottom: 1em;
}
#footer .col-menu{
    display: none;
}
#footer .menu-f{
    color: #c7c7c7;
}
#footer .menu-f .item + .item{
    margin-top: 16px;
}
#footer .col-copyright{
    margin-bottom: 6px;
}
#footer .bottom-line{
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
    color: #fff;
    margin-top: 20px;
    width: 100%;
}
#footer .item-cont{
    font-size: 22px;
    font-weight: 600;
}
#footer .image-circle{
    display: none;
}
#footer .col-logo{
    text-align: center;
    margin-bottom: 20px;
}
.anchor-block-mobi{
    position: relative;
}
.anchor-block-mobi .anchor-tag{
    position: absolute;
    top: -70px;
    left: 0;
}
.container{
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}
.image-circle{
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 0;
}
.image-circle .text{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    animation: 20s linear 0s infinite circle-rotate;
}
@keyframes circle-rotate{
    0%{
        transform:rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
.questions-list .row{
    gap: 16px 0;
}
.accordion .item-accord{
    position: relative;
    z-index: 5;
}
.accordion .item-accord:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: blur(79.72586059570312px);
    background: linear-gradient(90deg, rgba(68, 255, 154, 0.4) 0%, rgba(68, 176, 255, 0.4) 23.44%, rgba(139, 68, 255, 0.4) 48.96%, rgba(255, 102, 68, 0.4) 73.96%, rgba(235, 255, 112, 0.4) 100%);
    opacity: 0;
    transition: .2s;
}
.accordion .item-accord .block{
    position: relative;
    box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    transition: .2s;
}
.accordion .item-accord + .item-accord{
    margin-top: 12px;
}
.accordion .item-accord.open{
    z-index: 1;
}
.accordion .item-accord.open .block{
    box-shadow: 0 0 0 0 rgba(74, 58, 255, 0);
}
.accordion .item-accord.open:before{
    opacity: 1;
}
.accordion .item-accord .name{
    margin: -12px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    line-height: .95;
    letter-spacing: -0.04em;
    color: #333;
    cursor: pointer;
}
.accordion .item-accord .name>span:first-child{
    flex: 1 0 0%;
}
.accordion .item-accord .name .toggle{
    cursor: pointer;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/images/plus.svg");
    transition: .3s;
}
.accordion .item-accord.open .name .toggle{
    background-image: url("/images/minus.svg");
}
.accordion .item-accord .block-accord{
    display: none;
}
.accordion .item-accord .panel{
    font-weight: 400;
    color: #7a7a7a;
    padding-top: 10px;
    font-size: 14px;
    line-height: 1.36;
}
.accordion .item-accord .btn-line{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.accordion .item-accord .btn{
    display: flex;
    flex-direction: row;
    gap: 6px;
    background-color: #e31e24;
    color: #fff;
}
.accordion .item-accord .btn:hover{
    border-color: #333;
    background-color: #333;
}

.dop-services .row{
    gap: 16px 0;
}
.dop-services .title-block{
    margin-bottom: .66em;
}
.dop-services .title-desc{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #7a7a7a;
    margin-bottom: 1.6em;
}
.dop-services .panel{
    position: relative;
    box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
    background: #fff;
    border-radius: 16px 10px;
    padding: 10px;
    text-align: center;
    height: 100%;
}
.dop-services .panel .title{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #333;
    margin-top: 16px;
    position: relative;
}
.dop-services .panel .title:first-letter{
    color: #e31e24;
}
.dop-services .panel .image{
    position: relative;
}
.dop-services .panel:before{
    content: '';
    display: block;
    position: absolute;
    left: 15%;
    width: 70%;
    height: 56%;
    top: 25%;
    filter: blur(45px);
    background: linear-gradient(90deg, #44ff9a 0%, #44b0ff 23.44%, #8b44ff 48.96%, #f64 73.96%, #ebff70 100%);
    opacity: 0.1;
}

.cms-info .col-image{
    text-align: center;
}
.cms-info .image{
    position: relative;
    display: inline-block;
}
.cms-info .row{
    gap: 20px 0;
}
.cms-info .image:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 80%;
    filter: blur(36px);
    opacity: .6;
    background: linear-gradient(90deg, #44ff9a 0%, #44b0ff 23.44%, #8b44ff 48.96%, #f64 73.96%, #ebff70 100%);
}
.cms-info .image img{
    position: relative;
}
.cms-info .title{
    font-weight: 600;
    font-size: 20px;
    line-height: .95;
    letter-spacing: -0.04em;
    color: #333;
    margin-bottom: .53em;
}
.cms-info .text{
    line-height: 1.7;
    color: #7a7a7a;
    font-size: 16px;
}

.template-block{
    background: #fafafa;
}
.swiper{
    --swiper-pagination-bullet-horizontal-gap: 5px;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-inactive-color: #e6e6e6;
    --swiper-pagination-color: #7378fa;
    --swiper-pagination-bullet-width: 24px;
    --swiper-pagination-bullet-height: 3px;
    --swiper-pagination-bullet-border-radius: 2px;
}
.swiper .swiper-pagination{
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    margin-top: 24px;
    line-height: 0;
}
.template-block .slider-templ{
    position: relative;
    --swiper-navigation-size: 52px;
}
.swiper-button-next, .swiper-button-prev{
    width: 52px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 6px 0 rgba(74, 58, 255, 0.1);
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
.swiper-navigation-disabled ~.swiper-button-next,
.swiper-navigation-disabled ~.swiper-button-prev{
    display: none;
}
.swiper-button-next:before, .swiper-button-prev:before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("/images/prev.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-next:before{
    background-image: url("/images/next.svg");
}
.template-block .swiper-slide img{
    width: 100%;
    position: relative;
    box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
}
.template-block .swiper-slide .image{
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}
.template-block .swiper-slide .name{
    font-weight: 600;
    font-size: 22px;
    line-height: .95;
    letter-spacing: -0.04em;
    text-align: center;
    color: #333;
    margin-top: 16px;
    position: relative;
}
.template-block .swiper-slide .image:before{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #44ff9a 0%, #44b0ff 23.44%, #8b44ff 48.96%, #f64 73.96%, #ebff70 100%);
    opacity: 0.3;
}

.price-block .panel{
    height: 100%;
    position: relative;
}
.price-block .panel:before{
    content: '';
    display: block;
    left: 10px;
    top: 50%;
    width: calc( 100% - 20px );
    height: 50%;
    border-radius: 10px;
    filter: blur(20px);
    opacity: .6;
    background: linear-gradient(90deg, #44ff9a 0%, #44b0ff 23.44%, #8b44ff 48.96%, #f64 73.96%, #ebff70 100%);
    position: absolute;
}
.price-block .panel .bg{
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
}
.price-block .title-line{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}
.price-block .title-line .num{
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
    background: linear-gradient(89deg, #6fd3fe 0%, #7f61f9 100%);
    border-radius: 10px;
    padding: 12px;
    line-height: 1;
    width: 48px;
    text-align: center;
}
.price-block .title-line .title{
    font-weight: 600;
    font-size: 20px;
    line-height: .95;
    letter-spacing: -0.04em;
    color: #333;
}
.price-block .text{
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}
.price-block .text .dop{
    color: #7a7a7a;
    margin-top: 10px;
}
.price-block .row{
    gap: 16px 0;
    justify-content: center;
}
.price-block .text b{
    font-weight: 600;
}

.bn-text-first{
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
.bn-text-first .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.bn-text-first .container{
    position: relative;
}
.bn-text-first .mobi-text{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 33px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 0 4px rgba(74, 58, 255, 0.3);
    margin-bottom: 10px;
}
.bn-text-first .mobi-text .big{
    font-size: 60px;
}
.bn-text-first .text-base{
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 24px;
}
.bn-text-first .btn-line a{
    display: inline-block;
    border-radius: 10px;
    padding: 16px 20px;
    background-color: #e31e24;
    font-weight: 600;
    font-size: 20px;
    color: #f7fafc;
    line-height: 1;
    border: 2px solid #e31e24;
    transition: .2s;
}
.bn-text-first .btn-line a:hover{
    background-color: #333;
    border-color: #333;
    color: #fff;
}
.bn-text-first .btn-line a:active{
    background-color: #fff;
    border-color: #e31e24;
    color: #e31e24;
}
.btn-close{
    background-color: transparent;
    padding: 0;
    outline: none;
    border: none;
    box-shadow: none;
    background-image: url("/images/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.btn-close:hover{
    opacity: .7;
}
.modal{
    --bs-modal-zindex: 1055;
    --bs-modal-width: 1200px;
    --bs-modal-padding: 50px 40px;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: #787878;
    --bs-modal-bg: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transform: translate(0, -500px);
    opacity: 0;
}

.form-bottom .title-block{
    margin-bottom: 10px;
}
.form-bottom .title-desc{
    font-size: 16px;
    line-height: 1.5;
    color: #7a7a7a;
    margin-bottom: 24px;
}
.form-bottom .form-style{
    background-color: #f5f5f5;
    padding: 12px;
    position: relative;
    border-radius: 0 0 8px 8px;
}
.form-bottom .form-head{
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #333;
    padding: 30px 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, rgba(68, 255, 154, 0.3) 0%, rgba(68, 176, 255, 0.3) 23.44%, rgba(139, 68, 255, 0.3) 48.96%, rgba(255, 102, 68, 0.3) 73.96%, rgba(235, 255, 112, 0.3) 100%);
}
.form-bottom .bg-shadow{
    position: relative;
}
.form-bottom .bg-shadow:before{
    content: '';
    display: block;
    position: absolute;
    left: -10px;
    right: -10px;
    top:-40px;
    bottom: -30px;
    filter: blur(30px);
    background: linear-gradient(90deg, rgba(68, 255, 154, 0.3) 0%, rgba(68, 176, 255, 0.3) 23.44%, rgba(139, 68, 255, 0.3) 48.96%, rgba(255, 102, 68, 0.3) 73.96%, rgba(235, 255, 112, 0.3) 100%);
}
.form-bottom .col-check .title{
    font-weight: 700;
    line-height: .95;
    letter-spacing: -0.04em;
    color: #333;
    font-size: 20px;
    margin-bottom: .625em;
}
.form-bottom .col-check .check-list{
    font-size: 16px;
    line-height: 1.7;
}
.form-bottom .col-check .check-list>div{
    padding-left: 2.7em;
    background-image: url("/images/check-list.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 1.7em;
    line-height: 1.7;
}
.form-bottom .col-check .check-list>div + div{
    margin-top: 1em;
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    transform: none;
    opacity: 1;
}
.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border-radius: 10px;
    outline: 0;
    box-shadow: -10px 10px 30px 0 rgba(51, 51, 51, 0.5);
    font-weight: 500;
}
.modal-content .btn-close{
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    z-index: 10;
    background-size: 94%;
}
.modal-content .modal-title{
    font-weight: 500;
    font-size: 24px;
    color: #e31e24;
    margin-bottom: .7em;
    padding-right: 30px;
    text-align: center;
}
.modal-content .pop-text{
    text-align: center;
}
.modal-content .btn{
    width: 100%;
}
.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 0;
    background-color: var(--bs-backdrop-bg);
    transition: height .5s ease-out, opacity .5s ease-out;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show{
    opacity: var(--bs-backdrop-opacity);
    height: 100vh;
}
 .modal-content .btn-line{
    margin-top: 20px;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

.modal-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
body.modal-open{
    overflow: hidden;
}

.col-consult{
    padding-right: 16px;
}
.header__telegram-wrapper {
    position: relative;
}
.header__telegram-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.header__telegram-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}
.header__telegram-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.header__telegram-contact:hover .header__telegram-avatar img {
    transform: scale(1.05);
}
.header__telegram-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse-desktop 2s infinite;
}
@keyframes pulse-desktop {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}
.header__telegram-icon {
    display: none;
}
.header__telegram-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
    border: 1px solid #e0e0e0;
}
.header__telegram-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}
.header__telegram-wrapper:hover .header__telegram-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.telegram-tooltip__content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.telegram-tooltip__avatar {
    flex-shrink: 0;
}
.telegram-tooltip__avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.telegram-tooltip__info {
    flex: 1;
}
.telegram-tooltip__name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}
.telegram-tooltip__text {
    font-size: 12px;
    color: #666;
    font-weight: 400 !important;
}

@media (min-width: 360px){
    .template-block .swiper-slide .name{
        font-size: 24px;
    }
    .bn-text-first .mobi-text{
        font-size: 41px;
    }
    .bn-text-first .mobi-text .big{
        font-size: 69px;
    }
    .bn-text-first .text-base{
        font-size: 25px;
    }
}
@media (min-width: 440px){

}
@media (min-width: 480px){

}
@media (min-width: 576px){
    .modal-content .btn{
        width: auto;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 26px;
    }
    .modal-content .btn-close{
        right: 30px;
        top: 30px;
        background-size: initial;
    }
    .container{
        width: 520px;
    }
    .modal{
        --bs-modal-padding: 48px;
    }
    .modal-content{
        font-size: 18px;
    }
    .accordion .item-accord .block{
        padding: 24px;
    }
    .accordion .item-accord .name{
        font-size: 22px;
        font-weight: 700;
        padding: 24px;
        margin: -24px;
    }
    .accordion .item-accord .panel{
        font-size: 18px;
        line-height: 1.7;
        color: #333;
    }
    .price-block .panel .bg{
        border-radius: 20px;
        padding: 32px;
    }
    .price-block .text{
        font-size: 16px;
    }
    .bn-text-first .mobi-text{
        font-size: 46px;
    }
    .bn-text-first .mobi-text .big{
        font-size: 76px;
    }
    .bn-text-first .text-base{
        font-size: 24px;
    }
    .template-block .swiper{
        --swiper-pagination-bullet-horizontal-gap: 10px;
        --swiper-pagination-bullet-width: 40px;
        --swiper-pagination-bullet-height: 4px;
    }
}
@media (min-width: 768px){
    .title-block,
    .form-bottom .title-desc{
        text-align: center;
    }
    .d-md-none{
        display: none;
    }
    .d-md-block{
        display: block;
    }
    .container{
        width: 720px;
    }
    .col-md-4{
        width: 33.33333%;
    }
    .col-md-6{
        width: 50%;
    }
    .modal-content .modal-title{
        font-size: 30px;
    }
    .p-top{
        padding-top: 50px;
    }
    .p-bot{
        padding-bottom: 50px;
    }
    #footer{
        text-align: left;
    }
    #footer .col-contact{
        width: 100%;
    }
    #footer .bottom-line{
        font-size: 14px;
    }
    #footer .title-f{
        display: block;
        font-size: 24px;
        margin-bottom: 16px;
    }
    #footer .col-copyright{
        margin-bottom: 0;
        text-align: left;
        flex: 0 0 auto;
        width: auto;
    }
    #footer .col-policy{
        flex: 0 0 auto;
        width: auto;
    }
    #footer .row-contact .col-item + .col-item,
    #footer .row-contact .col-item:last-child{
        margin-top: 0;
    }
    #footer .row-contact{
        align-items: center;
        gap: 20px 0;
        justify-content: space-between;
    }
    #footer .row-contact .col-item{
        flex: 0 0 auto;
        width: 32%;
    }
    .modal-content{
        font-size: 20px;
    }
    .accordion .item-accord .name{
        font-size: 26px;
    }
    .accordion .item-accord .panel{
        font-size: 20px;
    }
    .dop-services .title-desc{
        font-size: 18px;
    }
    .dop-services .title-desc{
        line-height: 1.7;
        text-align: center;
    }
    .template-block .swiper-slide .name{
        font-size: 26px;
    }
    .bn-text-first{
        padding-top: 30px;
        padding-bottom: 60px;
    }
    .bn-text-first .text-base{
        width: 66%;
        font-size: 26px;
        text-transform: none;
    }
    .bn-text-first .desc-text{
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 60px;
        line-height: 1.05;
        text-align: right;
        color: #fff;
        text-shadow: 0 0 14px rgba(74, 58, 255, 0.3);
        position: absolute;
        top: 0;
        right: -10px;
    }
    .bn-text-first .desc-text .line-3{
        font-size: 100px;
    }
    .price-block .panel .bg{
        border-radius: 16px;
        padding: 20px;
    }
    .form-bottom .col-btn{
        text-align: center;
    }
    .form-bottom .btn-form{
        width: auto;
        padding: 14px 40px;
    }
    .form-bottom .form-style{
        padding: 20px;
    }
    .form-bottom .form-style .col-textarea .field,
    .form-bottom .form-style .col-textarea textarea{
        height: 100%;
    }
    .row-field.row{
        gap: 20px 0;
        margin-left: -6px;
        margin-right: -6px;
    }
    .row-field.row>*{
        padding-left: 6px;
        padding-right: 6px;
    }
}
@media (min-width: 992px){
    .container{
        width: 920px
    }
    .col-lg-6{
        width: 50%;
    }
    label{
        font-size: 18px;
    }
    .modal-content .btn-line{
        margin-top: 32px;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 34px;
    }
    .modal{
        --bs-modal-padding: 64px;
    }
    .modal-content .btn-close{
        right: 40px;
        top: 40px;
        width: 50px;
        height: 50px;
    }
    .btn{
        border-radius: 25px;
        padding: 7px 26px;
        font-size: 22px;
        line-height: 32px;
    }
    .btn img,
    .btn.btn-arrow:after{
        width: 32px;
        height: 32px;
    }
    #footer .bottom-line{
        margin-top: 50px;
        flex: 0 0 100%;
        width: 100%;
    }
    #footer .title-f{
        font-size: 26px;
    }
    #footer .row-contact .col-item{
        width: 31%;
    }
    #footer .soc-list img{
        width: 64px;
    }
    .accordion .item-accord .name{
        font-size: 18px;
    }
    .accordion .item-accord .panel{
        font-size: 16px;
    }
    .cms-info .title{
        font-size: 22px;
    }
    .cms-info .text{
        font-size: 18px;
    }
    .template-block .swiper-slide .image:before{
        width: 326px;
        margin-left: -163px;
    }
    .swiper .swiper-pagination{
        margin-top: 32px;
    }
    .bn-text-first {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .bn-text-first .desc-text{
        font-size: 84px;
        top: -20px;
    }
    .bn-text-first .desc-text .line-3{
        font-size: 130px;
    }
    .bn-text-first .text-base{
        font-size: 32px;
        width: 62%;
    }
    .price-block .panel .bg{
        border-radius: 20px;
        padding: 32px;
    }
    input[type="text"], input[type="phone"], input[type="email"], textarea{
        font-size: 18px;
        padding: 15px 21px;
    }
    label{
        padding: 16px 22px;
    }
    .field-input input:focus + label, .field-input input.hasVal + label, .field-input textarea:focus + label, .field-input textarea.hasVal + label{
        padding: 0 0 0 22px;
    }
    .form-bottom .btn-form{
        font-size: 32px;
        line-height: 36px;
        padding: 19px 38px;
    }
    .form-bottom .title-block{
        margin-bottom: 14px;
    }
    .form-bottom .title-desc{
        margin-bottom: 32px;
        font-size: 18px;
    }
    #footer .row-first{
        align-items: center;
    }
}
@media (min-width: 1200px){
    .d-xl-block{
        display: block;
    }
    .d-xl-none{
        display: none;
    }
    .col-consult{
        padding-left: 20px;
        padding-right: 0;
    }
    label{
        font-size: 18px;
        line-height: 24px;
    }
    input[type="text"], input[type="phone"], input[type="email"], textarea{
        font-size: 18px;
        line-height: 24px;
    }
    .modal-content{
        font-size: 22px;
    }
    html,body{
        font-size: 18px;
    }
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 38px;
    }
    .container{
        width: 1110px;
    }
    .col-xl-3{
        width: 25%;
    }
    .col-xl-4{
        width: 33.33333%;
    }
    .col-xl-8{
        width: 66.66666%;
    }
    .cifri-block{
        padding-left: 32px;
        padding-right: 32px;
    }
    .p-top{
        padding-top: 70px;
    }
    .p-bot{
        padding-bottom: 70px;
    }
    #footer .soc-list{
        justify-content: flex-start;
    }
    #footer .col-logo{
        text-align: left;
        margin-bottom: 0;
        flex: 0 0 auto;
        width: 280px;
    }
    #footer .image-circle{
        display: inline-block;
    }
    #footer .image-logo{
        display: none;
    }
    #footer .desc-f{
        font-size: 20px;
    }
    #footer .col-menu{
        display: block;
        flex: 0 0 auto;
        width: 20%;
    }
    #footer .col-info{
        flex: 1 0 0%;
        padding-left: 32px
    }
    #header{
        padding-top: 15px;
        padding-bottom: 15px;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
        background: #fafafa;
    }
    #header .col-logo img{
        width: auto;
    }
    #footer .title-f{
        font-size: 28px;
        margin-bottom: 20px;
    }
    #footer .row-contact .col-item {
        width: 48%;
    }
    .accordion .item-accord .name{
        font-size: 22px;
    }
    .accordion .item-accord .panel{
        font-size: 18px;
    }
    .questions-list .row{
        margin-left: -12px;
        margin-right: -12px;
        gap: 24px 0;
    }
    .questions-list .row>*{
        padding-left: 12px;
        padding-right: 12px;
    }
    .accordion .item-accord + .item-accord{
        margin-top: 24px;
    }
    .dop-services .panel{
        padding: 16px 10px;
    }
    .dop-services .col-xl-3{
        width: 20%;
    }
    .dop-services .title-desc{
        font-size: 20px;
    }
    .dop-services .panel .title{
        font-size: 14px;
    }
    .cms-info .title-block{
        text-align: left;
    }
    .cms-info .col-text{
        padding-right: 24px;
    }
    .cms-info .title{
        font-size: 24px;
    }
    .template-block .swiper-slide .name{
        font-size: 24px;
    }
    .bn-text-first {
        padding-top: 70px;
        padding-bottom: 150px;
    }
    .bn-text-first .desc-text{
        font-size: 95px;
    }
    .bn-text-first .desc-text .line-3{
        font-size: 150px;
    }
    .bn-text-first .text-base{
        font-size: 36px;
        width: 58%;
    }
    .bn-text-first .btn-line a{
        border-radius: 16px;
        padding: 16px 30px;
        font-size: 26px;
    }
    .price-block .title-line .title{
        font-size: 22px;
    }
    .form-bottom{
        padding-bottom: 100px;
    }
    .form-bottom .row-line-form{
        align-items: center;
    }
    .form-bottom .col-check{
        padding-left: 20px;
    }
    .manager-line .face-circle{
        position: relative;
        width: 150px;
        height: 150px;
        flex: 0 0 auto;
    }
    .manager-line .face-circle img.img-face{
        box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
        background: #f0f4f7;
        border: 8px solid #fff;
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }
    .manager-line .face-circle .handsfree{
        box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
        background: #fff;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        padding: 5px 4px;
        line-height: 1;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .manager-line{
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    .manager-line .label-face{
        flex: 0 0 auto;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.5;
        color: #000;
        box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
        border-radius: 12px;
        position: relative;
    }
    .manager-line .label-face>div{
        background-color: #fff;
        border-radius: 12px;
        position: relative;
        padding: 20px 24px;
    }
    .manager-line .label-face:before{
        content: '';
        display: block;
        position: absolute;
        width: 12px;
        height: 12px;
        background-color: #fff;
        transform: rotate(45deg);
        top: 50%;
        left: -5px;
        margin-top: -4px;
        box-shadow: 0 2px 10px 0 rgba(74, 58, 255, 0.16);
    }
    .form-bottom .col-content .panel{
        position: relative;
    }
    .manager-line{
        position: absolute;
        top: -26px;
        right: -280px;
        z-index: 10;
    }
    .form-bottom .form-head{
        font-size: 28px;
    }
    .form-bottom .form-style{
        padding: 50px 60px;
    }
    #header .row{
        gap: 0 34px;
    }
    #header .btn-action{
        font-size: 24px;
        color: #e31e24;
    }
}
@media (min-width: 1360px){
    html,body{
        font-size: 20px;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 42px;
    }
    .container{
        width: 1300px;
    }
    #footer .soc-list{
        justify-content: flex-end;
    }
    #footer .row-contact .col-item{
        width: 31%;
    }
    .cms-info .title{
        font-size: 26px;
    }
    .cms-info .text{
        font-size: 20px;
    }
    .bn-text-first .desc-text{
        font-size: 106px;
    }
    .bn-text-first .desc-text .line-3{
        font-size: 170px;
    }
    .bn-text-first .text-base{
        font-size: 40px;
        width: 56%;
    }
    .form-bottom .col-check {
        padding-left: 25px;
    }
    .form-bottom .col-check .title{
        font-size: 24px;
    }
    .form-bottom .col-check .check-list{
        font-size: 18px;
    }
}
@media (min-width: 1500px){
    html,body{
        font-size: 22px;
    }
    #header {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 44px;
    }
    #footer .title-f{
        font-size: 32px;
    }
    #footer .item-cont{
        font-size: 24px;
    }
    .container{
        width: 1452px;
    }
    .col-xxl-3{
        width: 25%;
    }
    .col-xxl-9{
        width: 75%;
    }
    .accordion .item-accord .name{
        font-size: 26px;
    }
    .accordion .item-accord .panel{
        font-size: 20px;
    }
    .cms-info .title{
        font-size: 28px;
    }
    .template-block .swiper-slide .name{
        font-size: 28px;
    }
    .price-block .title-line .num{
        font-size: 32px;
        width: 68px;
        padding: 18px 12px;
    }
    .price-block .title-line{
        margin-bottom: 20px;
    }
    .price-block .text .dop{
        margin-top: 20px;
    }
    .price-block .row{
        margin-left: -12px;
        margin-right: -12px;
        gap: 24px 0;
    }
    .price-block .row>*{
        padding-left: 12px;
        padding-right: 12px;
    }
    .bn-text-first{
        padding-top: 100px;
        padding-bottom: 160px;
    }
    .bn-text-first .desc-text{
        font-size: 126px;
    }
    .bn-text-first .desc-text .line-3{
        font-size: 200px;
    }
    .bn-text-first .text-base{
        font-size: 50px;
        width: 60%;
    }
    .bn-text-first .text-base{
        margin-bottom: 48px;
    }
    .bn-text-first .btn-line a{
        border-radius: 20px;
        padding: 20px 40px;
        font-size: 32px;
    }
    .price-block .title-line .title{
        font-size: 28px;
    }
    .dop-services .panel .title{
        font-size: 18px;
    }
    .form-bottom .title-desc{
        font-size: 20px;
    }
    .form-bottom .col-check {
        padding-left: 30px;
    }
    .form-bottom .col-check .title{
        font-size: 26px;
    }
    .form-bottom .col-check .check-list{
        font-size: 20px;
    }
    .form-bottom .form-style{
        padding: 50px 100px;
    }
}
@media (min-width: 1600px){
    .template-block .slider-templ{
        --swiper-navigation-sides-offset: -70px;
    }
}
@media (min-width: 1750px){
    html,body{
        font-size: 24px;
    }
    .container{
        width: 1720px;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 46px;
    }
    .p-top{
        padding-top: 100px;
    }
    .p-bot{
        padding-bottom: 100px;
    }
    .title-block{
        font-size: 48px;
    }
    .cms-info .title{
        font-size: 30px;
    }
    .template-block .slider-templ{
        --swiper-navigation-sides-offset: 10px;
    }
    .price-block .title-line .title{
        font-size: 30px;
    }
    .price-block .text{
        font-size: 18px;
    }
    .bn-text-first .desc-text{
        font-size: 150px;
    }
    .bn-text-first .desc-text .line-3{
        font-size: 240px;
    }
    .bn-text-first .text-base{
        margin-bottom: 64px;
        font-size: 60px;
        width: 62%;
    }
    .bn-text-first .desc-text{
        line-height: 1.1;
    }
    .bn-text-first {
        padding-bottom: 190px;
    }
    .dop-services .panel{
        padding: 24px 20px;
    }
    .form-bottom .col-check .title{
        font-size: 32px;
    }
    .form-bottom .col-content{
        padding-right: 30px;
    }
    #footer .item-cont {
        font-size: 30px;
    }
}
@media (min-width: 1860px) {
    .template-block .slider-templ{
        --swiper-navigation-sides-offset: -70px;
    }
}
@media (max-width: 1199.98px){
    body.showmenu{
        overflow: hidden;
    }
    .dop-services .swiper .swiper-slide{
        height: auto;
        width: 180px;
    }
    .dop-services .swiper{
        padding: 10px 10px 0;
        margin-top: -10px;
    }
    .form-bottom{
        padding-bottom: 100px;
    }
    #header .soc-list,
    #header .col-tel{
        display: none;
    }
}
@media (max-width: 767.98px){
    #footer .title-f,
    #footer .desc-f{
        display: none;
    }
    #footer .row-contact .col-item + .col-item{
        margin-top: 20px;
    }
}
@media (max-width: 575.98px){
    .container{
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (max-width: 439.98px){
    .dop-services .row{
        gap: 8px 0;
        margin-left: -4px;
        margin-right: -4px;
    }
    .dop-services .row>*{
        padding-left: 4px;
        padding-right: 4px;
    }
    .dop-services .panel{
        box-shadow: 0 1px 4px 0 rgba(74, 58, 255, 0.1);
    }
}