@font-face {
    font-family: 'sfprosemi';
    src: url('../fonts/SF-Pro-Display-Semibold.otf');
    font-weight: normal;
    font-style: normal;
    line-height: -3px;
}
/* @font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-Regular.ttf');
    font-weight: normal;
    font-style: normal;    
} */
body{
    /* cursor: url('../pics/cursor.svg'), auto; */
    cursor: default;
}

.home-hero:before{
    position: absolute;
    content: "";
    /* width: 928px;
    height: 898px; */
    width: 646px;
    height: 625px;
    /* background: url(../pics/foilet.webp); */
    background: url(../pics/main-svech.webp);
    bottom: 0;
    left: 0;
    transform: rotate(180deg);
    background-size: cover;
}
.home-hero:after{
    position: absolute;
    content: "";
    width: 646px;
    height: 625px;
    background: url(../pics/main-svech.webp);
    top: 0;
    right: 0;
    background-size: cover;
}

 h2, .h2{
    font-size: 48px;
    margin-bottom: 32px !important;
}
.text-center{
    text-align: center;
}
.qm-md .site-header .menu-burger { 
    width: 70px;
}
.btn{
    padding: 15px 30px !important;
}
.btn.bg-white{
    border:1px solid #212121
}
.home-hero h1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    padding: 50px 0;
    font-family: "Inter Tight";
    font-size: 256px;
    font-weight: 500;
    color: #212121;
    /* font-size: 17vw; */
}
.sub-hero{
    max-width: 720px;
    margin:0 auto;
    font-size: 64px;
}
.sub-hero-top{
    color: rgba(33, 33, 33, 0.5);    
    line-height: 110%;
}
.sub-hero-bottom{
    margin: 48px 0;
    color: inherit;    
    line-height: 110%;
}

/******  *******/
@keyframes scale {
  to {
    transform: scale(calc(1.1 - 0.1 * var(--reverse-index)));
  }
}
.cases-items{
    position: relative;
    /*height: 100vh; /* или другая высота */
    /* overflow: hidden; */
}
.cases-item{
    display: grid;
    grid-template-columns: 515px 1fr;
    border-radius: 16px;
    background: #222038;
    color: #fff;
    margin-bottom: 20px;
    position: sticky;
    top: 70px;
    animation: scale linear forwards;
    animation-timeline: --cards-scroll;
    animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);
    text-decoration: none !important;
    gap: 119px;
    overflow: hidden;
    height: 564px;
}
.cases-item-left{
    padding: 64px 0 40px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.case-title{
    font-size: 46px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 24px;
}
.case-row{
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 30px;
    align-items: center;
    margin-bottom: 9px;
}
.case-row-title{
    font-size: 20px;
    line-height: 120%;
}
.case-row-value{
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
    text-align: right;
}
.cases-item-right {
    margin-top: 35px;
    position: relative;
    background-size: cover !important;
}
/* .cases-item-right img{
    object-fit: cover;
    height: 100%;
    position: absolute;
} */
/*.cases-item:hover .cases-item-right img{
    transform:  scale(1.1);
} */
.cases-item:nth-of-type(4){
    grid-template-columns: 707px 1fr;
}
/******  *******/
.services-items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.services-item{        
    height: 300px;
    border-radius: 16px;        
}
.si-title{
    /* font-size: 36px; */
    font-size: 1.7vw;
    font-weight: 600;
    line-height: 110%;    
}
.perevernut{
    position: absolute;
    font-size: 12px;
    top: 32px;
    right: 32px;
    color: rgba(255, 255, 255, 0.5);    
    font-weight: 400;
}
.card{
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}
.card:hover{
    transform: rotateY(180deg);
}
/******  *******/

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {  
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;  
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    padding: 40px 35px 40px 40px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;    
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background: linear-gradient(to bottom, #222129 0%,#22212e 26%,#242140 42%,#231f4d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;  
}

/* Style the back side */
.flip-card-back {
  background: linear-gradient(to bottom, #222129 0%,#22212e 26%,#242140 42%,#231f4d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: white;
  transform: rotateY(180deg);
  font-size: 0.9vw;
}

/******  *******/

.reach-buttons .btn{
        color: #212121B2 ;
        background: #FFF;
        font-size: 20px;
        font-weight: 501;

        position: relative;
        cursor: pointer;
        overflow: hidden;
        transition: color 0.3s;
        z-index: 1;
    }
.reach-buttons .btn.active{
    background: #1300FF;
    color: #fff;
}
.reach-buttons .btn:hover{
    color: #fff;
}
.reach-buttons .btn::before{
    transition: background-color .25s;
}
.reach-buttons .btn:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #1300FF;
  z-index: -1;
  animation: fillButton 0.5s forwards;
}

.reach-blocks{
    
}

.rb-title{
    /* font-size: 78px; */
    font-size: 4vw;
    font-weight: 501;
    line-height: 100%;    
}
.rb-title.small{    
    font-size: 2.5vw;
    
}
.rb-subtitle{
    margin-top: 24px;
    color: rgba(33, 33, 33, 0.5);
    font-size: 24px;
}

.rb-items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rb-item{
    border: 1px solid #212121;
    border-radius: 16px;
    padding: 40px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rb-item-num{
    color: #1300FF;
    font-weight: 700;
    font-size: 20px;
}
.rb-item-title{
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
}
/******  *******/

@keyframes fillButton {
  0% {
    width: 0;
    background-color: #1300FF;
  }
  50% {
    background-color: #1300FF;
  }
  100% {
    width: 100%;
    background-color: #7f35ff;
  }
}
/******  *******/
.fadeIn{
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-20px); /* Блок немного поднимется вверх */
  }
}

/******  *******/
.blog-items{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 15px;
}
.blog-item:nth-of-type(1){
    grid-column-start: 1;
    grid-column-end: 3;
}
.blog-item{
    text-decoration: none !important;
}
.blog-item-image{
    height: 360px;
    position: relative;
}
.blog-item-image img{
    border-radius: 16px;    
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog-item-title{
    margin-top: 20px;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;    
    font-family: sfprosemi;
}
.blog-item-date{
    margin-top: 16px;
}
/******  *******/
.big-page-form{
    max-width: 894px;
}
.big-page-form .ch-box-list input:checked+.tag{
    background-color:#1300FF;
}
.big-page-form .sm.tag{
    font-size: 20px;
    font-weight: 600;
    padding: 20px 29px;
    color: rgba(33, 33, 33, 0.7);
    /* margin-block-start: 0; */
}
.big-page-form .ch-box-list .label {
    font-size: 24px;
    color: rgba(33, 33, 33, 0.5);
}
.form-bpf{
    display: grid;
    grid-template-columns: 335px 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 16px;
}
.form-bpf input[type=text], .form-bpf input[type=tel], .form-bpf input[type=email]{
    border: 1px solid #212121;
    border-radius: 2222px;
    font-size: 20px !important;
    height: 64px;
    padding: 20px 32px;
    font-weight: 500;
    color: #212121;
}
.form-bpf input[type=text]::placeholder, .form-bpf input[type=tel]::placeholder, .form-bpf input[type=email]::placeholder{
    color: #212121;
}
.bpf-submit-block{
    display: grid;
    grid-template-columns: 232px 391px;
    gap: 30px;
    align-items: center;
}
.bpf-submit-block button[type=submit]{
    border:1px solid #212121;
}
.agree{
    font-size: 80%;
}
.ch-box-list.gray .sm.tag{
    color: rgba(33, 33, 33, 0.7);
}
.ch-box-list.gray input:checked+.tag{
    color:#FFF;
}
/******  *******/
.sub-hero-buttons{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.sub-hero-buttons .btn{
    font-size: 24px;
    padding: 15px 0 !important;
}
/******  *******/
.site-footer .menu-item>a{
    font-weight: 600;
}
.site-footer .-decor-el-1>div:nth-child(3) { 
    font-size: 40px;
    font-weight: 800;
}
/******  *******/
.--info.footer-stretch{
    
}
.footer-svyaz-btn{
    width: 100%;
    margin-bottom: 40px;
}
.site-footer .menu-item>a { 
    text-align: left;
}
.--info.footer-stretch .menu-item a{
    color: rgba(33, 33, 33, 0.79);
    font-weight: 500;
    font-size: 20px;
}

/******  *******/
.show-smaller-768{
    display: none;
}

/******  *******/
.inside-main-header{
    margin-bottom: 64px;
    margin-top: 75px;
}
.inside-main-header span{
    color: #1300FF;
}
/******  *******/
.new-all-cases{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 64px;
}
.case_preview{
    text-decoration:  none !important;
}
.case_preview_title{
    margin-top: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 105%;
}
.case_preview_image{
    overflow: hidden;
    border-radius:  16px;
}
.case_preview_image img{
    transition:  transform .5s;
}
.case_preview:hover .case_preview_image img{
    transform:  scale(1.1);
}
/******  *******/
.case-info-items{
    display:  grid;
    grid-template-columns:  repeat(4, 1fr);
    gap:  20px;
    justify-content: space-between;
    margin-top: 64px;
}
.case-info-item-title{
    font-size: 19px;
    color:  rgba(33, 33, 33, 0.7);
    margin-bottom: 24px;
}
/******  *******/
.section-100{
    margin-top: 100px;
}
/* .case-tabs .rb-title{
    font-size: 3vw;
} */
/******  *******/
.identik{
    
}
.small-header{
    color: rgba(33, 33, 33, 0.7);
    margin-bottom: 32px;
}
.identik-items{
    display:  grid;
    grid-template-columns:  repeat(2, 1fr);
    column-gap:  20px;
    row-gap: 64px;
}
.identik-item-image{
    border-radius:  16px;
    overflow: hidden;
}
.identik-item-image img{
    transition:  transform .5s;
}
.identik-item-image:hover img{
    transform:  scale(1.2);
}
.identik-item-text{
    display: flex;
    align-items: center;
    font-size: 32px;
    line-height: 110%;
    flex-direction: column;
    justify-content: center;
}
/******  *******/
.gamik{
    
}
.gamik-items-small{
    display:  grid;
    grid-template-columns: 1fr 1fr;
    gap:  20px;
}
.gamik-img{
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 720px;
    position:  relative;
}
.gamik-img img{
    object-fit: contain;
    height: 90%;
    width: 90%;
}
.gamik-item-big{    
    border-radius: 16px;
}
/******  *******/
.results-items{
    display:  grid;
    grid-template-columns:  repeat(3, 1fr);
    gap:  15px;
}
.resut-item{
    border: 1px solid #212121;
    border-radius:  16px;
    padding: 32px 40px;
}
.resut-item-title{
    font-size: 24px;
    font-weight: 600;
}
.resut-item-num{
    font-size: 64px;
    color: #1300FF;
    font-weight: 600;
    text-align: right;
    margin-top: 44px;
}
/* .role-content{
    font-size: 64px;
    font-weight: 501;
    line-height: 100%;
} */
/******  *******/
.next-case{
    display:  grid;
    grid-template-columns:  1fr 1fr;
    gap:  20px;
}
.next-case-title{
    display:  flex;
    flex-direction: column;
    justify-content:  space-between;
}
/******  *******/
.read-on-vc{
    display: flex;
    width: 280px;
    height: 88px;
    border: 1px solid #212121;
    margin-top: -32px;
    margin-bottom: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 73px;
    text-decoration:  none !important;
    gap: 7px;
    font-size: 20px;
    font-weight: 600;
}
.read-on-vc:hover {
     transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
/******  *******/
.mobile-logo-right{
    grid-column-start: 2;
    grid-column-end: -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.case-info-block{
    font-size: 22px;
    line-height: 100%;
}
.reach-buttons{
    margin-bottom: 24px;
}
/******  *******/
/******  *******/
.animate-on-scroll {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* transition-delay: 0.5s; /* Задержка 0.3 секунды */ */
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: scale(1);
}
/******  *******/
.next-case-title-top span{
    color: #1300FF;
}
.next-case-image img{
    border-radius:  16px;
}
/******  *******/
.article-container .inside-main-header{
    margin-top: 16px;
}
.article-team{
    display: flex;
    gap: 60px;
    flex-wrap: wrap;    
}
.article-content{
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(33, 33, 33, 0.3);
}
/******  *******/
.hidden{
    display: none !important;
}
.btn.drop-btn{
    background: #FFF;
    color: #212121;
}
.btn.drop-btn.show{
    background: #1300FF;
    color: #fff;
}
.white-color{
    color:  #FFF;
}
.is-invalid{
    border-color:  brown !important;
}
/******  *******/
.gamik-img{
    background: #6A67F8;
}

.gamik-7 .gamik-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.gamik-44 .gamik-img:nth-of-type(1) img{
    position: absolute;
    left: 0;
    bottom: 0;
}
.gamik-44 .gamik-img:nth-of-type(2) img{
    position: absolute;
    right: 0;
    bottom: 0;
}
.gamik-44 .gamik-img img {
    object-fit: contain;
    height: auto;
    width: 100%;
}


.gamik-45 .gamik-img {
    background: #64AA95;
}
/******  *******/
.home-hero--sphere{
    animation: opacityIn 10s ease-in;
}
@keyframes opacityIn {
  0% {
    opacity: 0;    
  }
  100% {
    opacity: 1;    
  }
}
/******  *******/
.footer-stretch{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 116px;
}
/******  *******/
.mobile-footer{
    display: none;
}
.social-ico-list img{
    width: 33px;
}
/******  *******/
.hero-before{
    position: absolute;
    right: 0;
    top: 0;
}
.hero-after{
    
}
.mt-32{
    margin-top: 32px;
}
/******  *******/


/******  GO MEDIA  *******/
@media (max-width: 1600px){
    .home-hero h1{
        font-size: 200px;
    }
    .sub-hero{
        font-size: 48px;
    }
    h2, .h2 {
        font-size: 40px;
    }
    .cases-item-left {
        padding: 50px 0 40px 64px;
    }
    .cases-item{
        height: 524px;
        grid-template-columns: 1fr 1fr;
    }
    .case-row-title {
        font-size: 18px;
    }
    .si-title{
        font-size: 28px;
    }
    .flip-card-back{
        font-size: 16px;
    }
    .reach-buttons .btn{
        font-size: 16px;
    }
    .rb-title {
        font-size: 56px;
    }
    .rb-subtitle {
        font-size: 20px;
    }
    .rb-item{
        height: 218px;
        padding: 32px;
    }
    .rb-item-title {
        font-size: 24px;
    }
    .rb-item-num{
        font-size: 16px;
    }
    .blog-item-title{
        font-size: 24px;
    }
}/****** /1600 *******/
@media (max-width: 1350px){
    body{
        font-size: 16px;
    }
    /******  *******/
    .case_preview_title {
        margin-top: 20px;
        font-weight: 600;
        font-size: 20px;
    }
    /******  *******/
    .blog-item-title{
        font-size: 22px;
    }
    /******  *******/
    .rb-item{
        padding: 20px;
    }
    .services-items{
        gap:10px
    }
    .flip-card-front, .flip-card-back{
        padding: 28px;
    }    
    .sub-hero {
        font-size: 44px;
    }
    .dark-header:not([menu=show]) .site-header .navigation{
        padding-top: 10px;
    }
    /******  *******/
    .cases-item {
        grid-template-columns: 1fr 1fr;
    }
    .case-title {
        font-size: 32px;
    }
    .case-row-title {
        font-size: 16px;
    }
    .case-row-value {
        font-size: 30px;
    }    
} /****** End 1350 *******/

@media (max-width: 1200px){
    /******  *******/
    .blog-items{
        grid-template-columns:  1fr 1fr;
        gap: 20px;
    }
    .blog-item:nth-of-type(1) {
        grid-column-start: 1;
        grid-column-end: 1;
    }
    .blog-item-title{
        font-size: 20px;
    }
    /******  *******/
    .gamik-img{
        height: 500px;
    }
    /******  *******/
    .next-case-image{
        position: relative;
        height: 366px;
    }
    .next-case-image img{
        position: absolute;
        object-fit:  cover;
        height: 100%;
    }
    /******  *******/
    .results-items {
        grid-template-columns: 1fr;        
    }
    
    /******  *******/
    .rb-items{
        gap: 10px;
    }
    .rb-item{
        height: 200px;
    }
    .rb-item-title {
        font-size: 18px;
    }
    .reach-buttons .btn{
        font-size: 14px;
    }
    /******  *******/
    .services-items {    
        grid-template-columns: repeat(2, 1fr);
    }
    .si-title {
        font-size: 32px;
    }
    .flip-card-back {
        font-size: 16px;
    }
}
/****** / 1200 *******/

@media (max-width: 992px){
    /******  *******/
    .site-main{
        overflow: hidden;
    }
    /******  *******/
    .home-hero .ctr{
        display: block;
    }
    .-op .home-hero .content, .q-md .home-hero .content{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .home-hero h1 {
        line-height: 135%;
    }
    .home-services{
        margin-top: 50px;
    }
    
    /******  *******/
    .home-hero h1{
        font-size: 112px;
    }
    h2, .h2{
        font-size: 32px;
        margin-bottom: 24px !important;
    }
    .section-100 {
        margin-top: 64px;
    }
    /******  *******/
    .gamik-44 .gamik-items-small, .gamik-45 .gamik-items-small {    
        grid-template-columns: 1fr;
    }
    .gamik-44 .gamik-img, .gamik-45 .gamik-img{
        height: 178px;
    }
    .gamik-44 .gamik-img img, .gamik-45 .gamik-img img {
        object-fit: contain;
        height: 100%;
        width: auto;
    }
    /******  *******/
    .article-team {
        gap: 10px;    
    }
    .authors{
        margin-top: -20px;
    }
    .article-content {
        margin-top: 30px;
        padding-top: 30px;
    }
    /******  *******/
    .rb-title.small {
        font-size: 24px;
    }
    /******  *******/
    .next-case {        
        grid-template-columns: 1fr;        
    }
    .next-case-title{
        order: 1;
    }
    .next-case-title-top{
        margin-bottom: 35px;
    }

    /******  *******/
    .case-info-items {
        grid-template-columns: 1fr 1fr;
    }
    .mobile-logo-right {     
        grid-template-columns: 1fr;
    }
    .case-info-item{
        margin-bottom: 24px;
    }
    .case-info-item-title{
        margin-bottom: 14px;
    }
    /******  *******/
    .read-on-vc{
        display: flex;
        width: 219px;
        height: 60px;        
        gap: 4px;
        font-size: 16px;
        margin-bottom: 32px;
        margin-top: -32px;
    }
    .main-case-image{
        position: relative;
        height: 366px;
        border-radius: 12px;
        overflow: hidden;
    }
    .main-case-image img{
        position: absolute;
        object-fit: cover;
        height: 100%;
    }
    /******  *******/
    .new-all-cases {
        grid-template-columns: 1fr;
    }
    /******  *******/
    .rb-items{
        /* grid-template-columns: 1fr 1fr; */
        grid-template-columns: 50% 50%;
        margin-top: 20px;
    }
    .rb-title{
        font-size: 32px;
    }
    .rb-subtitle{
        font-size: 16px;
        margin-top: 20px;
    }
    .rb-item-num{
        font-size: 16px;
    }

    .reach-blocks {
        margin-top: 24px;
    }
    .reach-buttons{        
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    .reach-buttons .btn{
        padding: 10px 20px !important;
    }
    /******  *******/
    .home-cases{
        margin-top: 64px;
    }
    .sub-hero {
        font-size: 32px;
    }
    .sub-hero-buttons{
        gap:10px;
    }
    .sub-hero-bottom {
        margin: 16px 0 24px;
    }
    .sub-hero-buttons .btn{
        font-size: 16px;
    }
    .cases-item {
        grid-template-columns: 1fr;
    }
    .case-row {
        /* display: flex;
        justify-content: space-between; */
        grid-template-columns: 1fr 90px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 9px;
    }
    .case-row-title {
        font-size: 12px;
    }
    .case-row-value {
        font-size: 24px;
    } 
    .cases-item{
        padding: 24px;
    }
    /******  *******/
    .desktop-footer{
        display: none;
    }
    .mobile-footer{
        display: block;
        padding-top: 52px;
    }
    .top-mob-footer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        gap:86px;
    }
    picture.logos img {
        width: 180px;
    }
    .footer-svyaz-btn{
        width: 100%;
        margin: 0;
        padding: 15px 0 !important;
    }
    .site-footer .menu-item>a {
        font-size: 16px;
        margin-bottom: 24px;
    }
    /******  *******/
    .form-bpf {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 10px;
    }
    .form-bpf input[type=text], .form-bpf input[type=tel], .form-bpf input[type=email] {
        font-size: 18px !important;
        height: auto;
        padding: 16px 36px;
    }
    .big-page-form .ch-box-list{
        margin-top: 24px;
    }
    .big-page-form .ch-box-list .label{
        font-size: 16px;
    }
    .big-page-form .sm.tag {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /******  *******/

} /****** /992 *******/

@media (max-width: 768px){
    /******  *******/
    /******  *******/
    .show-smaller-768{
        display: block;
    }
    .hidden-smaller-768{
        display: none;
    }
    /******  *******/
    .cases-item{
        height: 480px;
        gap:0;
        display: block;
    }
    .case-rows{
        width: 100%;
    }
    .cases-item-left{
        display: block;
        padding: 0;
    }
    .cases-item-left .btn{
        display: none;
    }
    .cases-item-right{
        height: 194px;
        margin-top: 25px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .cases-item:nth-of-type(4) .cases-item-right {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    /******  *******/
    .q-md .home-hero--sphere{        
        transform: translate(0%, 0%) scale(0.7, 0.7);
    }
    /******  *******/
    .blog-item-image{
        height: 186px;
    }
    /******  *******/
    .gamik-img{
        height: 300px;
    }
    /******  *******/
    .small-header{
        margin-bottom: 16px;
    }
    .resut-item{
        padding: 24px;
    }
    .resut-item-title {
        font-size: 20px;
    }
    .resut-item-num {
        font-size: 40px;
    }
    /******  *******/
    .identik-items {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 20px;
    }
    .identik-item-text{
        order: 4;
    }
    /******  *******/
    
    .home-hero .content{
        z-index:0;
    }
    /******  *******/
    #bpform{
        margin-top: 64px;
    }
    .bpf-submit-block {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    /******  *******/
    .blog-items {        
        grid-template-columns: 1fr;
        gap:32px;        
    }
    .services-items {
        grid-template-columns: 1fr;
    }
    .services-item{
        height: 240px;
    }
}

/******  *******/
@media (max-width: 550px){
    .home-hero h1 {
        font-size: 90px;
    }
    .home-hero:after{
        content: none;
    }
    .site-header .navigation>.ctr { 
        padding-left: 20px;
        padding-right: 20px;
    }
    .form-bpf {
        grid-template-columns: 1fr;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
}
}
/****** /550 *******/
@media (max-width: 480px){
    .gamik-items-small{
        gap: 10px;
    }
    .gamik-img{
        height: 180px;
    }
    .case-title {
        font-size: 24px;
    }
}


