::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;
}
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-arrow.btn-arrow-rev,
.btn.btn-primary{
    background-color: #e31e24;
    color: #fff;
}
.btn.btn-arrow.btn-arrow-rev:hover,
.btn.btn-primary:hover{
    background-color: #fff;
    color: #e31e24;
}
.btn.btn-arrow{
    display: flex;
    flex-direction: row;
    gap: 6px;
}
.btn.btn-arrow:after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("/images/arrow.svg");
    transition: .3s;
}
.btn.btn-arrow.btn-arrow-rev:after,
.btn.btn-arrow:hover:after{
    background-image: url("/images/arrow-h.svg");
}
.btn.btn-arrow.btn-arrow-rev:hover:after{
    background-image: url("/images/arrow.svg");
}
.p-top{
    padding-top: 50px;
}
.p-bot{
    padding-bottom: 50px;
}
input[type="text"],
input[type="phone"],
input[type="email"]{
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #333;
    padding: 3px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    background-color: #fff;
    width: 100%;
    vertical-align: middle;
    transition: .3s;
}
input[type="text"]:focus,
input[type="phone"]:focus,
input[type="email"]:focus{
    border-bottom-color:  #e31e24;
}
label{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    padding: 3px 15px;
    display: block;
}
.field-input.required label:after{
    content: ' *';
    color: #e31e24;
}
.field-input{
    position: relative;
    line-height: 1;
    padding-top: 24px;
}
.field-input label{
    position: absolute;
    left:0;
    top: 24px;
    transition: .3s;
}
.field-input input:focus + label,
.field-input input.hasVal + label{
    top: 0;
    font-size: 14px;
    padding: 0;
}
.field-input input.hasError{
    background-color: rgba(227, 30, 36, 0.37);
    border-bottom-color: #E31E24;
}
.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;
}
.field-check label:before{
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    cursor: pointer;
    border: 2px solid #333;
}
.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;
}
body:not(.showmenu) .toggle-menu .close-m,
body.showmenu .toggle-menu .open-m{
    display: none;
}
.title-page{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 1em;
    text-align: center;
}
#menusite{
    position: fixed;
    top: 60px;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 70;
    left: -100%;
    opacity: 0;
    transition: .5s;
}
body.showmenu #menusite{
    opacity: 1;
    left: 0;
}

#menusite .panel-m{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    max-width: 100%;
    background-color: #333;
    color: #fff;
}
#menusite .menu-container{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: auto;
    padding-bottom: 0;
}
#menusite .menu-items{
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    text-align: center;
}
#menusite .menu-items li{
    font-weight: 500;
    font-size: 24px;
    line-height: 1.67;
    color: #787878;
}
#menusite .menu-items li + li{
    margin-top: 10px;
}
#menusite .w-block{
    background-color: #fff;
    color: #333;
    padding: 32px 16px;
}
#menusite .btn-line{
    text-align: center;
    margin-top: 24px;
}
#menusite .contact-menu{
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    color: #fff;
    padding: 32px 16px 20px;
}
#menusite .contact-menu .item-cont + .item-cont{
    margin-top: 4px;
}
#menusite .contact-menu .item-cont.top-mod-marg{
    margin-top: 20px;
}
#menusite .soc-list{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
}
#menusite .soc-list img{
    width: 50px;
}
#menusite .desc-text{
    padding: 20px 16px 32px;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
    color: #c7c7c7;
}
#menusite .desc-text .copyright{
    margin-top: 6px;
}
#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 .col-logo img{
    width: 164px;
}
#header .col-menu,
#header .col-btn{
    display: none;
}
#header .col-logo{
    flex: 1 0 0%;
}
#header .toggle-menu{
    background-color: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}
#header .row,
#footer .soc-list{
    display: flex;
    flex-direction: row;
    align-items: center;
}
#footer{
    text-align: center;
    background: #333;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}
#footer .item-cont + .item-cont,
#footer .row-contact .col-item + .col-item{
    margin-top: 4px;
}
#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;
    color: #787878;
    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: #c7c7c7;
    margin-top: 20px;
    width: 100%;
}
#footer .item-cont{
    font-size: 22px;
}
#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);
    }
}
.accordion .item-accord + .item-accord{
    margin-top: 10px;
}
.accordion .item-accord:after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-image:linear-gradient(90deg, #1F1F1F 0%, rgba(31, 31, 31, 0) 100%);
    transition: .3s;
}
.accordion .item-accord.open:after{
    background-image:linear-gradient(90deg, #E31E24 0%, rgba(227, 30, 36, 0) 100%);
}
.accordion .item-accord .name{
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #1f1f1f;
    padding: 10px;
    cursor: pointer;
}
.accordion .item-accord .name>span:first-child{
    flex: 1 0 0%;
}
.accordion .item-accord .name .toggle{
    cursor: pointer;
    width: 32px;
    height: 32px;
    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/close.svg");
}
.accordion .item-accord .block-accord{
    display: none;
}
.accordion .item-accord .panel{
    font-weight: 500;
    color: #787878;
    padding: 10px;
}
.accordion .item-accord .panel p,
.block-type-1 .col-content .small-desc-text p,
.block-type-1 .col-content .desc-text,
.form-bottom .col-content .small-desc-text{
    text-indent: 3rem;
}
.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;
}
.block-type-1 .btn-line-bottom{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.block-type-1 .row-left-small .col-title .btn-line{
    display: none;
}
.block-type-1 .row-left-small .col-title .title{
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}
.block-type-1 .col-content .desc-text{
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}
.block-type-1 .col-content .small-desc-text{
    font-weight: 500;
    font-size: 16px;
    color: #787878;
}
.block-type-1 .col-content .desc-text + .small-desc-text{
    margin-top: 16px;
}
.block-type-1 .accordion,
.bn-block .text,
.case-block .portfolio-list,
.case-block .portfolio-slider{
    margin-top: 20px;
}
.case-block .portfolio-slider .panel{
    display: block;
    font-weight: 700;
    font-size: 22px;
    color: #333;
}
.case-block .portfolio-slider .title{
    display: block;
}
.case-block .portfolio-slider .image{
    display: block;
    position: relative;
    padding-top: 78%;
    margin-bottom: 20px;
}
.case-block .portfolio-slider .image img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.case-block .portfolio-slider .swiper{

}
.case-block .portfolio-slider .swiper-pagination{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: center;
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    margin-top: 16px;
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-height: 2px;
    --swiper-pagination-bullet-border-radius: 2px;
    --swiper-pagination-bullet-inactive-color: #d9d9d9;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: #ed1c24;
}
.bn-block .image-block img{
    width: 100%;
}
.bn-block .image-block .big,
.bn-block .image-block .mid,
.bn-block .image-block .min{
    display: none;
}
.bn-block .text{
    font-size: 16px;
}
.bn-block .text,
.info-biznes .text{
    font-weight: 500;
    text-align: center;
    color: #787878;
}
.info-biznes .text{
    text-align: left;
    text-indent: 3rem;
}
.block-big-text .container,
.first-block .container{
    position: relative;
}
.first-block h1.big-text{
    font-size: 1em;
    margin: 0;
    font-weight: inherit;
}
.block-big-text,
.first-block{
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    font-family: "Manrope", sans-serif;
}
.first-block{
    padding-top: 50px;
}
.block-big-text .text-1{
    position: relative;
    z-index: 3;
}
.block-big-text .text-2{
    position: relative;
    z-index: 3;
}
.block-big-text .text-3{
    position: relative;
    z-index: 3;
}
.first-block .line-1{
    position: relative;
    text-align: center;
    z-index: 3;
}
.first-block .line-2{
    text-align: center;
    position: relative;
    z-index: 3;
}
.first-block .line-3{
    text-align: center;
    position: relative;
    z-index: 3;
}
.first-block .gro-img{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}
.first-block .gro-img .image-circle{
    flex: 0 0 auto;
    width: 90px;
    line-height: 0;
}
.first-block .gro-img .min-text{
    flex: 1 0 0%;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    text-transform: none;
}
.block-big-text .image-circle{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
}
.bn-block .btn-line,
.info-biznes .btn-line{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}
.scroll-line{
    white-space: nowrap;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #e31e24;
    overflow: hidden;
}
.scroll-line .line{
    display: flex;
}
.scroll-line span{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.scroll-line span:after{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #e31e24;
    border-radius: 50%;
    margin: 0 12px;
}
.scroll-line span.black-type{
    color: #333;
}
.scroll-line span.black-type:after{
    background-color: #333;
}
.case-block .portfolio-list{
    display: none;
}
.cifri-block{
    padding-left: 16px;
    padding-right: 16px;
}
.cifri-block .col-item + .col-item{
    margin-top: 16px;
}
.cifri-block .panel{
    position: relative;
    padding-top: 82%;
}
.cifri-block .panel img{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cifri-block .panel .desc{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.cifri-block .panel .desc .number{
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}
.form-bottom .title-time{
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #333;
    line-height: 1.2;
}
.form-bottom .timer{
    font-weight: 800;
    font-size: 60px;
    text-transform: uppercase;
    color: #e31e24;
    margin-top: 10px;
    text-align: center;
    line-height: 1.2;
}
.form-bottom .sale-text{
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.35;
    text-align: center;
}
.form-bottom .small-desc-text{
    font-weight: 500;
    color: #787878;
    margin-top: 10px;
}
.form-style .row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 0;
    margin-left: -8px;
    margin-right: -8px;
}
.form-style .row .col,
.form-style .row .col-12{
    flex: 0 0 auto;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
}

.form-style .row .col-accept,
.form-style .row .col-btn{
    margin-top: 16px;
}
.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;
}
@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;
}

@media (min-width: 400px){
    .block-big-text{
        font-size: 38px;
    }
    .first-block{
        font-size: 38px;
    }
}
@media (min-width: 440px){
    .block-big-text{
        font-size: 40px;
    }
    .first-block{
        font-size: 40px;
    }
}
@media (min-width: 480px){
    .block-big-text,
    .form-bottom .sale-text{
        font-size: 50px;
    }
    .first-block{
        font-size: 50px;
    }
}
@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;
    }
    .bn-block .image-block .small{
        display: none;
    }
    .bn-block .image-block .min{
        display: block;
    }
    .block-big-text,
    .form-bottom .sale-text{
        font-size: 50px;
    }
    .block-big-text .image-circle{
        width: 140px;
    }
    .first-block{
        font-size: 50px;
    }
    .cifri-block .row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: -8px;
        margin-right: -8px;
        gap: 16px 0;
    }
    .cifri-block .row .col-item{
        padding-left: 8px;
        padding-right: 8px;
        flex: 0 0 auto;
        width: 50%;
    }
    .cifri-block .col-item + .col-item{
        margin-top: 0;
    }
    .form-bottom .title-time{
        font-size: 26px;
    }
    .form-bottom .timer{
        font-size: 70px;
    }
    .modal-content{
        font-size: 18px;
    }
}
@media (min-width: 768px){
    .container{
        width: 720px;
    }
    .modal-content .modal-title{
        font-size: 30px;
        text-align: left;
    }
    .title-page{
        font-size: 30px;
    }
    .modal-content .pop-text,
    .block-type-1 .col-content .desc-text{
        text-align: left;
    }
    .p-top{
        padding-top: 60px;
    }
    .p-bot{
        padding-bottom: 60px;
    }
    .first-block .line-1{
        text-align: left;
    }
    .first-block .line-2 {
        text-align: right;
    }
    .bn-block .image-block .min{
        display: none;
    }
    .bn-block .image-block .mid{
        display: block;
    }
    #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: 1 0 0%;
    }
    #footer .col-policy{
        text-align: right;
        flex: 0 0 auto;
    }
    #footer .row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    #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%;
    }
    .block-big-text .text-1{
        text-align: right;
    }
    .block-big-text .text-2{
        text-align: left;
    }
    .case-block .portfolio-slider{
        display: none;
    }
    .case-block .portfolio-list{
        display: block;
        margin-top: 32px;
    }
    .case-block .portfolio-list .row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 0;
        margin-left: -8px;
        margin-right: -8px;
    }
    .case-block .portfolio-list .row>div{
        padding-left: 8px;
        padding-right: 8px;
        flex: 0 0 auto;
        width: 100%;
    }
    .case-block .portfolio-list .row .col,
    .case-block .portfolio-list .row .col-item.type-small{
        width: 50%;
    }
    .case-block .portfolio-list{
        color: #333;
    }
    .case-block .portfolio-list .image{
        display: block;
    }
    .case-block .portfolio-list .image img{
        width: 100%;
    }
    .case-block .portfolio-list a{
        display: block;
    }
    .case-block .portfolio-list a .title{
        display: block;
        line-height: 1.2;
        letter-spacing: -0.04em;
        font-weight: 700;
        font-size: 20px;
        margin-top: 10px;
    }
    .case-block .portfolio-list .row .col:first-child .row{
        height: 100%;
    }
    .info-biznes .text{
        text-indent: initial;
        text-align: center;
    }
    .block-big-text,
    .form-bottom .sale-text{
        font-size: 70px;
    }
    .form-bottom .sale-text{
        text-align: left;
    }
    .form-bottom .sale-text .line-1{
        text-align: right;
    }
    .block-big-text .image-circle{
        width: 170px;
    }
    .first-block{
        font-size: 70px;
    }
    .cifri-block .row .col-item{
        width: 33.3333%;
    }
    .first-block .gro-img{
        margin-top: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        max-width: 50%;
    }
    .first-block .gro-img .image-circle{
        width: 110px;
    }
    .form-bottom .title-time{
        font-size: 36px;
    }
    .form-bottom .timer{
        font-size: 80px;
    }
    .form-style .row .col{
        width: 50%;
    }
    .modal-content{
        font-size: 20px;
    }
}
@media (min-width: 992px){
    .container{
        width: 920px
    }
    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;
    }
    .accordion .item-accord .name .toggle{
        width: 50px;
        height: 50px;
    }
    .accordion .item-accord:last-child:after{
        display: none;
    }
    .accordion .item-accord .btn{
        gap: 10px;
    }
    .accordion .item-accord .btn-line{
        justify-content: flex-start;
    }
    .block-type-1 .row-left-small .col-title .title{
        font-size: 32px;
        text-align: left;
    }
    #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;
    }
    .case-block .portfolio-list a .title{
        font-size: 26px;
    }
    .bn-block .btn-line,
    .info-biznes .btn-line{
        margin-top: 32px;
    }
    .form-bottom .col-content .small-desc-text{
        margin-bottom: 32px;
        margin-top: 32px;
    }
    .block-big-text{
        font-size: 95px;
        margin-top: -130px;
    }
    .first-block{
        font-size: 100px;
        line-height: 1.1;
    }
    .block-big-text .image-circle{
        width: 190px;
    }
    .first-block .line-1{
        padding-left: 9%;
        text-align: left;
    }
    .first-block .line-3{
        padding-left: 3%;
        text-align: left;
    }
    .cifri-block .panel img{
        position: relative;
        left: auto;
        top: auto;
        height: auto;
    }
    .cifri-block .panel .desc .number{
        font-size: 70px;
        margin-bottom: 8px;
    }
    .cifri-block .panel{
        padding-top: 0;
    }
    .first-block .gro-img{
        max-width: 40%;
        align-items: flex-end;
    }
    .first-block .gro-img .image-circle{
        width: 130px;
    }
    .form-bottom .sale-text{
        font-size: 95px;
    }
    .scroll-line{
        font-size: 40px;
    }
    .scroll-line span:after{
        width: 24px;
        height: 24px;
        margin: 0 24px;
    }
}
@media (min-width: 1200px){
    label{
        font-size: 20px;
        line-height: 34px;
    }
    input[type="text"], input[type="phone"], input[type="email"]{
        font-size: 20px;
        line-height: 34px;
    }
    #menusite{
        display: none;
    }
    .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;
    }
    .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;
    }
    #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-contact{
        flex: 1 0 0%;
        padding-left: 32px
    }
    .bn-block .image-block .mid{
        display: none;
    }
    .bn-block .image-block .big{
        display: block;
    }
    .block-type-1 .row-left-small .col-title .title{
        margin-bottom: 0;
    }
    .block-type-1 .row-left-small,
    #footer .row-1{
        display: flex;
        flex-direction: row;
        gap: 32px;
    }
    .block-type-1 .row-left-small .col-title{
        width: 260px;
        position: relative;
    }
    .block-type-1 .row-left-small .col-title .stiky-block{
        position: sticky;
        top: 120px;
    }
    #footer .row-1 .col-logo{
       flex: 0 0 auto;
    }
    .block-type-1 .row-left-small .col-content,
    #footer .row-1 .col-info{
        flex: 1 0 0%;
    }
    .block-type-1 .row-left-small .col-title .btn-line{
        display: flex;
        flex-direction: row;
        margin-top: 24px;
    }
    .block-type-1 .btn-line-bottom{
        display: none;
    }
    .block-type-1 .col-content .desc-text{
        font-size: 40px;
    }
    .block-type-1 .col-content .small-desc-text{
        font-size: 24px;
    }
    .bn-block .text{
        margin-top: 50px;
        font-size: 32px;
        padding-left: 16%;
        padding-right: 16%;
    }
    #header{
        padding-top: 25px;
        padding-bottom: 25px;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
        background: #fafafa;
    }
    #header .btn:not(:hover){
        background: #fafafa;
    }
    #header .col-logo img{
        width: auto;
    }
    #header .col-menu,
    #header .col-btn{
        display: block;
    }
    #header .col-btn-menu{
        display: none;
    }
    #header .col-logo,
    #header .col-btn{
        flex: 0 0 25%;
    }
    #header .col-btn{
        text-align: right;
    }
    #header .col-menu{
        flex: 0 0 50%;
    }
    #header .col-menu ul{
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }
    #footer .title-f{
        font-size: 28px;
        margin-bottom: 20px;
    }
    #footer .row-contact .col-item {
        width: 48%;
    }
    .scroll-line{
        font-size: 50px;
    }
    .block-type-1 .col-content .desc-text + .small-desc-text{
        margin-top: 32px;
    }
    .case-block .portfolio-list .row{
        gap: 32px 0;
    }
    .case-block .portfolio-list a .title{
        font-size: 22px;
        margin-top: 20px;
    }
    .block-big-text{
        font-size: 110px;
        margin-top: -150px;
    }
    .first-block{
        font-size: 120px;
    }
    .block-big-text .image-circle{
        width: 220px;
    }
    .cifri-block .panel .desc .number{
        font-size: 80px;
    }
    .first-block .gro-img{
        left: -30px;
        top: 45%;
        gap: 40px;
        max-width: 50%;
    }
    .first-block .gro-img .image-circle{
        width: 180px;
    }
    .first-block .gro-img .min-text{
        font-size: 24px;
    }
    .form-bottom .sale-text{
        font-size: 110px;
        margin-top: 0;
        font-weight: 400;
    }
    .form-bottom .title-time{
        font-size: 36px;
        text-align: left;
    }
    .form-bottom .timer{
        font-size: 60px;
    }
    .form-bottom .time-group{
        padding-top: 30px;
    }
    .form-style .row{
        gap: 20px 0;
    }
    .form-style .row .col-accept, .form-style .row .col-btn{
        margin-top: 12px;
    }
}
@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%;
    }
    .case-block .portfolio-list .row,
    .cifri-block .row,
    .form-style .row{
        margin-left: -16px;
        margin-right: -16px;
    }
    .case-block .portfolio-list .row>div,
    .cifri-block .row .col-item,
    .form-style .row .col,
    .form-style .row .col-12{
        padding-left: 16px;
        padding-right: 16px;
    }
    .case-block .portfolio-list a .title{
        font-size: 26px;
    }
    .block-big-text{
        font-size: 130px;
        margin-top: -180px;
    }
    .first-block{
        font-size: 130px;
    }
    .block-big-text .image-circle{
        width: 260px;
    }
    .cifri-block .panel .desc .number{
        font-size: 90px;
    }
    .first-block .gro-img .image-circle{
        width: 200px;
    }
    .first-block .gro-img .min-text{
        max-width: 480px;
    }
    .first-block .gro-img .min-text{
        font-size: 28px;
    }
    .form-bottom .sale-text{
        font-size: 130px;
    }
    .form-bottom .title-time{
        font-size: 38px;
    }
    .form-bottom .timer{
        font-size: 80px;
    }
    .form-bottom .time-group{
        padding-top: 40px;
    }
}
@media (min-width: 1500px){
    html,body{
        font-size: 22px;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 44px;
    }
    #footer .title-f{
        font-size: 32px;
    }
    #footer .item-cont{
        font-size: 24px;
    }
    .container{
        width: 1452px;
    }
    .block-big-text{
        font-size: 150px;
    }
    .block-big-text .image-circle{
        width: 300px;
    }
    .first-block{
        font-size: 150px;
    }
    .first-block .gro-img{
        gap: 60px
    }
    .first-block .gro-img .image-circle{
        width: 220px;
    }
    .first-block .gro-img .min-text{
        font-size: 30px;
    }
    .form-bottom .sale-text{
        font-size: 150px;
    }
    .form-bottom .title-time{
        font-size: 40px;
    }
    .form-bottom .timer{
        font-size: 90px;
    }
    .form-bottom .time-group{
        padding-top: 50px;
    }
}
@media (min-width: 1700px){
    html,body{
        font-size: 24px;
    }
    .container{
        width: 1652px;
    }
    .modal-content .modal-title,
    .title-page{
        font-size: 46px;
    }
    .scroll-line{
        font-size: 60px;
    }
    #header .col-menu ul{
        gap: 80px;
    }
    #footer .col-contact{
        padding-left: 64px;
    }
    .case-block .portfolio-list a .title{
        font-size: 32px;
    }
    .p-top{
        padding-top: 100px;
    }
    .p-bot{
        padding-bottom: 100px;
    }
    .accordion .item-accord .name{
        font-size: 36px;
        padding: 30px 20px;
    }
    .accordion .item-accord .panel{
        font-size: 24px;
        padding: 20px 20px 30px;
    }
    .accordion .item-accord .btn-line,
    .block-type-1 .accordion{
        margin-top: 50px;
    }
    .block-type-1 .row-left-small .col-title .title{
        font-size: 44px;
        text-align: left;
    }
    .block-type-1 .col-content .desc-text{
        font-size: 46px;
    }
    .block-big-text{
        margin-top: -240px;
    }
    .first-block,
    .block-big-text,
    .form-bottom .sale-text{
        font-size: 180px;
    }
    .block-big-text .image-circle{
        right: 35px;
        top: 60%;
        width: auto;
    }
    .block-big-text .text-1{
        margin-right: -30px;
    }
    .block-big-text .text-2{
        margin-left: -30px;
    }
    .first-block .gro-img{
        gap: 100px;
    }
    .first-block .gro-img .image-circle{
        width: 240px;
    }
    .first-block .gro-img .min-text{
        font-size: 32px;
    }
    .form-bottom .title-time{
        font-size: 44px;
    }
    .form-bottom .timer{
        font-size: 100px;
    }
}
@media (min-width: 1800px) {
    .block-big-text .text-1{
        margin-right: -80px;
    }
    .block-big-text .text-2{
        margin-left: -80px;
    }
}
@media (max-width: 1199.98px){
    body.showmenu{
        overflow: hidden;
    }
}
@media (max-width: 767.98px){
    .block-type-1 .col-content .desc-text{
        text-indent:0;
    }
}
@media (max-width: 575.98px){
    .info-biznes.p-top{
        padding-top: 16px;
    }
    #form-home .btn{
        margin-left: auto;
        margin-right: auto;
    }
    .first-block .gro-img .image-circle,
    .block-big-text .image-circle{
        display: none;
    }
    .first-block .gro-img .min-text{
        text-align: center;
    }
}