@font-face {
font-family: 'InterTight';
src: url('fonts/InterTight-Black.ttf');
src: local('☺'),
url('fonts/InterTight-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'InterTight';
src: url('fonts/InterTight-Bold.ttf');
src: local('☺'),
url('fonts/InterTight-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'InterTight';
src: url('fonts/InterTight-SemiBold.ttf');
src: local('☺'),
url('fonts/InterTight-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'InterTight';
src: url('fonts/InterTight-Regular.ttf');
src: local('☺'),
url('fonts/InterTight-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'InterTight';
src: url('fonts/InterTight-Light.ttf');
src: local('☺'),
url('fonts/InterTight-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
*{
	margin:0;
	padding:0;
}
*:focus{
	outline:none;
}
html{scroll-behavior:smooth}

body{
	font-family: 'InterTight', sans-serif;
	color: #565857;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	background: #E4E4E4;
	-webkit-text-size-adjust: 100%;
	letter-spacing: -0.01em;
}
body.overflow-hidden {
  overflow: hidden;
}
a{
	color: #4671D5;
	text-decoration: none;

}
a[href^="tel"]{
	color:inherit;
	text-decoration:none
}
button{
	outline:0
}
ol,ul{
	list-style:none
}

textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{
	-webkit-appearance:none;
	appearance:none;
	border-radius:0
}
input[type="search"]{
	-webkit-appearance:textfield
}
table{
	border-collapse:collapse;
	border-spacing:0
}
th,td{
	padding:2px
}
h1 {
font-weight: 700;
  font-size: 96px;
  line-height: 90%;
  letter-spacing: -0.02em;
  color: #30302e;
  margin-bottom: 84px;
}
h2 {
font-weight: 700;
font-size: 42px;
line-height: normal;
}
p {
	padding-bottom: 10px;
}
img {max-width: 100%;}
*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}

#wrapper {
	overflow: hidden;
}
@media (min-width: 575.98px){
    .section{
        padding: 0 calc(50vw - 270px);
    }
}

@media (min-width: 768.98px){
    .section{
        padding: 0 calc(50vw - 360px);
    }
}

@media (min-width: 991.98px) {
    .section {
        padding: 0 calc(50vw - 480px);
    }
}

@media (min-width: 1199.98px){
    .section {
         padding: 0 calc(50vw - 560px);
    }
}
/*
@media (min-width: 1279.98px){
    .section {
       padding: 0 calc(50vw - 729px);
    }
}*/
@media (min-width: 1439.98px){
  .section {
      padding: 0 calc(50vw - 630px);
  }
}
@media (min-width: 1519.98px){
  .section {
      padding: 0 calc(50vw - 729px);
  }
}
@media (max-width: 575.98px){
    .section{
        padding: 0 20px;
    }
}
.section {
	position: relative;
}
.row {
	display:flex;
	flex-wrap:wrap;
}


/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*end slick*/
#header {
  padding: 50px 0 15px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

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

#header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.6);
    *backdrop-filter: blur(33px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 4;    

}
#header.fixed #logo img{
        filter: brightness(0);  
}
.burger {
	display:none;
	width: 25px;
	height: 14px;
	background: url(images/burger.svg) no-repeat center left;
	cursor: pointer;
}
.burger.active {
	width: 20px;
	height: 20px;
	background: url(images/close.svg) no-repeat center;
}
#menu ul  {
display: flex;
column-gap: 30px;
}
#menu ul li {
	display: inline-block;
}
#menu ul li.active a,
#menu ul li:hover a {
	color: #0145F3;
}
#menu ul li a {
text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  color: #020202;
}
.header_contact {
  font-weight: 700;
  font-size: 18px;
  color: #30302e;
  display: flex;
  gap: 15px;
  align-items: center;
}
.tg {
  background: url(images/Telegram.svg) no-repeat center;
  width: 44px;
  height: 44px;
  display: block;
}
.hidden_desc {
	display:none;
}
.slider {
display: flex;
  flex-wrap: wrap;
  position: relative;
}
.slider:before {
*content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(0deg, #e4e4e4 1%, rgba(228, 228, 228, 0) 40%);
    z-index: 1;
}
.slide_left {
  width: 40%;
  position:relative;
}
.slide_left img{
display: block;
}
.slide_left:before {
  width: 100%;
  height: 100%;
  content:'';
  background: #010102;
  position:absolute;
  top: 0;
left: -73%;
  z-index: -1;
}
.slide_right {
  width: 60%;
  display: grid;
  align-content: center;
}

.slide_title {
font-weight: 700;
font-size: 54px;
line-height: 110%;
color: #032576;
}
.slide_form {
background: linear-gradient(90deg, #6C8CD5 0%, #38496F 100%);
  border-radius: 20px;
  font-weight: 300;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  padding: 42px 60px;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
}
.slide_form:before {
content: '';
  border: 1px solid rgba(239, 239, 239, 0.3);
  border-radius: 30px;
  background: rgba(18, 64, 172, 0.15);
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  position: absolute;
  z-index: -1;
}
.slide_subtitle {
padding: 42px;
  position: absolute;
  width: 371px;
  height: 202px;
  z-index: 2;
  bottom: -20px;
  right: -60px;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #4671d5;
}
.slide_subtitle:before {
content: '';
  width: 100%;
  height: 100%;
  left: -5px;
  top: -10px;
  position: absolute;
  border: 1px solid #d0dee1;
  border-radius: 30px;
  backdrop-filter: blur(13px);
  background: rgba(70, 113, 213, 0.15);
  transform: rotate(-7deg);
  z-index: -1;
}
.slide_subtitle b{
display: block;
}
.slide_form .button {
font-weight: 400;
font-size: 20px;
line-height: 110%;
letter-spacing: -0.02em;
color: #fff;
border-radius: 50px;
background: #1D1D1D; 
white-space: nowrap;
padding: 26px 80px;
}

.modal_div h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.modal_div input[type="text"],
.modal_div input[type="tel"],
.modal_div input[type="number"]{
padding: 20px 30px;
  border: none;
  width: 100%;
  border-radius: 30px;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #7b7b7b;
  font-family: inherit;
}

.wpcf7 input[type="submit"],
.modal_div input[type="submit"] {
text-align: center;
  border: none;
  text-decoration: none;
  font-family: inherit;
  background: #fa0;
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #fff;
  border-radius: 30px;
  padding: 24px 75px;
  display: inline-block;
  width: 100%;
}
.wpcf7-spinner {
	position: absolute!important;
}
.policy {
	color: #FFF;
  font-size: 12px;
  line-height: 150%;
  display: block;
}
.policy a{
	color: #FFF;
    font-size: 12px;
}
.form_service_title {
font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #565857;
  text-align: center;
  padding: 10px 0 20px 0;	
}
.c-accordion {
  position: relative;
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
}
.c-accordion__content {
  background: #f6f5fa;
  margin-bottom: 20px;
  border-radius: 20px;
}
.c-accordion__content-title {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 17px;
  padding: 30px 50px;
  justify-content: space-between;
  cursor: pointer;
}
.c-accordion__content.active .c-accordion__content-title {
	background: #eae9f1;
  border-radius: 20px;
}
.c-accordion__content.active .c-accordion__content-title .icon img {
    filter: brightness(0) invert(1);
}
.c-accordion__content-title span {
  font-weight: 600;
  font-size: 18px;
  color: #032576;
}
.c-accordion__content-title .icon {
  margin-right: 10px;
}
.c-accordion__content-title .icon img {
  vertical-align: middle;
}
.c-accordion__content-main {
  font-size: 14px;
  line-height: 22px;
  padding: 0 0 0 58px;
  display: none;
}
.c-accordion__content.active .c-accordion__content-main {
  display: block;
  position: relative;
  padding: 42px 50px 42px 50px;
}
.c-accordion__plus {
  width: 40px;
  height: 40px;
    border-radius: 100%;
    text-indent: -9999px;
    display: inline-block;
    position: relative;
    transition: .3s;
    overflow: hidden;
    transition: .3s;
	flex-shrink: 0;
}
.c-accordion__plus:before {
    content: '';
    width: 40px;
    height: 40px;
    mask: url(images/plus.svg) no-repeat center;
    -webkit-mask: url(images/plus.svg) no-repeat center;
    position: absolute;
    left: 0;
    transition: .3s;
    background: #98dcc4;
}
.c-accordion__content.active .c-accordion__plus {	
    mask: url(images/minus.svg) no-repeat center;
    -webkit-mask: url(images/minus.svg) no-repeat center;
}

.blocks_title {
    display: grid;
    grid-template-columns: 40% 60%;
}
.blocks_title h2{
    font-weight: 300;
    font-size: 20px;
    line-height: 90%;
    letter-spacing: -0.02em;
    color: #565857;
}
  .blocks_title h2:before{
    content:'';
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: inline-block;
    background: #4671d5;
        margin-right: 10px;
    margin-bottom: 3px;
}
.blocks_sub_title {
    font-weight: 700;
    font-size: 41px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #565857;
}
.blocks_sub_title span{
    color: #4671d5;
}
.blocks,.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    position: relative;
    margin-top: 100px;
     
}
.pd {
padding-top: 100px;
    padding-bottom: 100px;
}
#reviews {
    background: #EFEFEF;
}
.reviews.blocks {
  display: block;
      margin-bottom: 0px;
}
.reviews.blocks .item {
margin: 0 24px;
font-weight: 300;
font-size: 18px;
line-height: 120%;
letter-spacing: -0.02em;
color: #2a2a2a;
}
.reviews .img_name {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;    
    margin-bottom: 20px;

  }.reviews .name {
font-weight: 500;
font-size: 22px;
line-height: 110%;
letter-spacing: -0.02em;
color: #2a2a2a;
}
.reviews .dolzhnost {
    grid-column: 2 / span 2;
    font-weight: 300;
font-size: 18px;
line-height: 110%;
letter-spacing: -0.02em;
color: rgba(121, 121, 121, 0.7);
}
.reviews .img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    overflow: hidden;
        grid-row: span 2;
}
.reviews .img img{
    width: 100%;
    height: 100%;
object-fit: cover;
object-position: center;
}
.reviews.blocks .item .desc {
  margin-bottom: 20px;
}
.details_content {
  padding: 20px 0 0 0;
}
.reviews.blocks .item.active {
	background: linear-gradient(90deg, #6C8CD5 0%, #38496F 100%);
  color: #fff;
}
.reviews.blocks .item.active  .name {
  color: #fff;
}
.reviews.blocks .item.active .dolzhnost {
  color: rgba(255, 255, 255, 0.7);
}

.service:before {
    content: '';
    position: absolute;
    width: 563px;
    height: 635px;
    top: -7%;
    left: -19%;
    background: url(images/ellipse1.png) no-repeat center;
    z-index: -1;
}
.blocks .item {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(33px);
    background: rgba(255, 255, 255, 0.3);
    padding: 42px;
    position: relative;
        display: grid;
    align-content: space-between;
}
.service:after {
    content: '';
    position: absolute;
    width: 563px;
    height: 635px;
    bottom: 20%;
    right: -19%;
    background: url(images/ellipse2.png) no-repeat center;
    z-index: -1;
}
.blocks .item h3{
    font-weight: 400;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #1d1d1d;
    margin: 24px 0;
}
.blocks .item .desc{
   margin-bottom: 50px;
}
.blocks .item .desc li,
.desc_benefis li,
.wp-block-list li{
        padding: 0 0 15px 24px;
    position: relative;
}
.blocks .item .desc li:before,
.desc_benefis li:before,
.wp-block-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 10px;
    position: absolute;
    background: #565857;
    left: 0px;
    top: 5px;
}
.button_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.button_block .open_modal {
      background: #fa0;
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: #fff;
    border-radius: 30px;
    padding: 24px 75px;
    display: inline-block;
}
.button_block .open_modal:hover {
      background: #4671d5;
}
.more {
  font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #565857;
        padding: 0px 75px;
}
#case {
    background: #6C8CD5;
    position: relative;
}
.case_box {
  position: relative;
   z-index: 1;
}
#case:before {
    content: '';
    position: absolute;
    width: 806px;
    height: 944px;
    top: 0;
    left: 0;
    background: url(images/ellipse3.png) no-repeat center;
}
#case:after {
    content: '';
    position: absolute;
    width: 416px;
    height: 582px;
    bottom: 20%;
    right: 0;
    background: url(images/ellipse4.png) no-repeat center;
        z-index: 0;
}
#case .blocks_title h2,
#case .blocks_sub_title,
#case .blocks .item {
    color: #EEEEEE;
}
#case .blocks_sub_title span{
    color: #FFAA00;
}
#case .blocks .item .name {
  font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 28px;
}
#case .blocks .item {
font-weight: 300;
    font-size: 18px;
line-height: 120%;
letter-spacing: -0.02em;
color: #fff;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
align-content: baseline;
}
#case .blocks .item .desc li:before,
#case .blocks_title h2:before {
    background: #eee;
}
#case .blocks {
    grid-template-columns: 1fr 1fr 1fr;
}
#case .blocks .item:nth-child(3) {
    grid-column: 2;
}

.page_inner #case .blocks .item.active {
background: #fff;
  color: #38496F;
}
.page_inner #case .blocks .item.active .name{
color: #38496F;
}
.page_inner #case .blocks .item.active .desc li::before{
background: #6c8cd5;
}

.benefis_box .blocks_sub_title {
      width: 70%;
}
.desc_benefis {
    grid-column: 2;
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #565857;
        margin: 50px 0px 0;
}
.benefis.blocks {
      grid-template-columns: 1fr 1fr 1fr 1fr;
}
.benefis .item {
    background-color: #FFAA00;
    border-radius: 30px;
    padding: 34px;
    min-height: 430px;
}
.benefis .item .name{
font-weight: 400;
font-size: 32px;
line-height: 90%;
letter-spacing: -0.02em;
color: #fff;
    margin-bottom: 30px;
}

.benefis .item .desc{
font-weight: 300;
font-size: 20px;
line-height: 120%;
letter-spacing: -0.02em;
color: #fff;
margin: 0;
}

.channel_box .blocks_sub_title{
	font-weight: 400;
  font-size: 28px;
  line-height: 110%;
  margin: 30px 0px;
}
.channel_items.blocks {
	margin-top: 50px;
}
.channel_items .item {
border: 1px solid rgba(239, 239, 239, 0.3);
border-radius: 30px;
  padding: 24px;
  background: rgba(141, 165, 222, 0.2);
}
.channel_items .item_wrap {
border: 1px solid rgba(239, 239, 239, 0.5);
  border-radius: 20px;
  background: #EFEFEF;
  padding: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.channel_items .name {
  font-weight: 400;
  font-size: 32px;
  line-height: 90%;
  letter-spacing: -0.02em;
  color: #000;
}
.channel_items .button {
font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #fff;
  border-radius: 50px;
  background: #1D1D1D;
  white-space: nowrap;
  padding: 23px 80px;
}
.channel_items {
  margin-bottom: 20px;
}
.slick-prev,.slick-next {
  position: absolute;
  top: -100px;
  right: 0;
  background: #E4E4E4 url(images/arrow.svg) no-repeat center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: none;
    text-indent: -9999px;
    cursor: pointer;
}
.slick-prev {
  right: 100px;
      transform: rotate(180deg);
}
.slick-next {
}

article header h1{
padding: 160px 0 60px 0;
  margin-bottom: 0;
  font-size: 60px;
}
article .entry-content {

}
.entry_content {
padding: 70px 100px 70px 0;
}
.entry_img {

}
.entry_img div{

}
.wp-block-table {
  padding: 30px 0;
}
.entry_fields h2 {
width: 50%;
padding: 70px 0 60px;
margin: 0;
}
/* стили для webkit */
.wpcf7-form-control::-webkit-input-placeholder { color:#606060;    opacity: 1; }
.wpcf7-form-control::-webkit-input-placeholder {
color:#606060;    opacity: 1;
}
.wpcf7-form-control::-webkit-input-placeholder {
color:#606060;    opacity: 1;
}
/* стили для mozilla */
.wpcf7-form-control:-moz-placeholder { color:#606060;    opacity: 1; }
.wpcf7-form-control:-moz-placeholder {
color:#606060;    opacity: 1;
}
.wpcf7-form-control:-moz-placeholder {
color:#606060;    opacity: 1;
}


.slogan {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding: 100px 0;
}
.img_slogan { 
  position: relative;
}
.img_slogan img{
position: absolute;
  max-width: none;
  left: -50%;
  top: -80%;
}
.text_slogan {
  font-weight: 700;
  font-size: 100px;
  line-height: 90%;
  letter-spacing: -0.02em;
  color: #565857;
}
.text_slogan span{
color: #4671d5;
}
#footer {
  background: #e4e4e4;
}
#contact {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  gap: 20px;
  padding: 36px 0;
}
.copyright,.privacy {
  font-weight: 400;
  font-size: 14px;
  color: #7d7d7d;
}
.privacy {
  text-decoration: underline;
}
#overlay,#over_menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    *background: #000000;
    *opacity: 0.6;
    z-index: 25;
    backdrop-filter: blur(10px);
    background: rgba(18, 64, 171, 0.3);
}

#modal_submit {
	width: 390px;
	height: auto;
	position: fixed;
	display: none;
	z-index: 50;
	background: #fff;
	box-sizing: border-box;
	padding: 42px;
}
#modal_submit h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 10px;
  position:relative;
}
#modal_submit h2:before {
  position:absolute;
  content:'';
  background: url(images/submit.png) no-repeat center;
  width: 55px;
  height: 55px;
  left: -80px;
}
#modal_submit p {
  font-size: 14px;
  line-height: 21px;
}
.wpcf7-response-output {
	display:none;
}
.modal_div {
    width: 520px;
    height: auto;
    position: absolute;
    display: none;
    z-index: 50;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: #ECECEC;
    padding: 42px;
}
.modal_close {
  position: absolute;
  right: -30px;
  top: -20px;
  cursor: pointer;
}
.modal_close::after,.menu_close:after {
  display: inline-block;
  content: '';
  mask: no-repeat center url(images/close.svg);
  -webkit-mask: no-repeat center url(images/close.svg);
  width: 20px;
  height: 20px;
  background: #fff;
}
.menu_close {
  position: absolute;
  right: 50px;
  top: 50px;
  cursor: pointer;
  display:none;
}
.menu_close:after {
  background: #323232;
}
.modal_div input[type="submit"]{
	cursor: pointer;
}
.modal_div input[type="submit"]:hover{
    background: #fff;
	color: #0145F3;
}
.modal_div .policy {
    margin: 10px 0 0px;
    color: #97b4ff;
}
.modal_div .policy a{
    color: #97b4ff;
}
.modal_div .form_wrap {
  margin-top: 10px;
}
.modal_div .form_title {
margin-bottom: 11px;
font-weight: 400;
font-size: 30px;
line-height: 36px;
text-align: center;
color: #fff;
}
.modal_div  .form_list br {
 display:none;
}
.modal_div  .form_list span {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 6px 11px;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  color: #fff;
  display: inline-block;
  width: auto;
  margin: 0 0 5px 0;
}
.modal_div .form_desc {
font-size: 14px;
line-height: 1.5;
margin-bottom: 10px;
color: #fff;	
}
.modal_div .form_desc .subdesc {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin: 0 0 15px 0;
}
.modal_div p {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}
.modal_div .form_desc p {
  text-align: left;
}
.modal_div .form_title p{
font-weight: 700;
  font-size: 28px;
  line-height: 120%;
}

.modal_div .form_field {
	margin: 0 0 10px 0;
	text-align: center;
}
.modal_div .form_field label{
	font-size: 12px;
color: #777;
margin: 20px 0;
display: block;
}



.page_inner h1 {
  font-size: 78px;
  margin-bottom: 30px;
}
.slide_right_text {
	margin: 0 0 60px 0;
}
#cart_infographica .blocks .item {
  border-radius: 40px;
  padding: 42px;
  background: #EFEFEF;
  display: flex;
  align-items: flex-start;
  gap: 0px 20px;
}
#cart_infographica .blocks .item .icon {
padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(18, 64, 172, 0.15);
}
#cart_infographica .blocks .item h3 {
margin: 5px 0 15px;
  font-size: 26px;
}
#cart_infographica .blocks .item .desc {
  margin-bottom: 0px;
}
#cart_infographica .icon img {
  max-width: 40px;
  display: block;
}


@media only screen and (max-width: 1480px) {
  h1 {
      font-size: 83px;
  }
  .slide_form {
    font-size: 22px;
    gap: 20px;
  }
  .slide_form .button {
      font-size: 18px;
  }
  .button_block .open_modal {
    padding: 24px 60px;
}
.more {
    padding: 0px 40px;
}
.text_slogan {
    font-size: 90px;
}
#contact {
    grid-template-columns: 1fr 2fr 1fr 1fr;
}
}
@media only screen and (max-width: 1500px) {
.page_inner h1 {
  font-size: 60px;
}
}
@media only screen and (max-width: 1380px) {
    h1 {
        font-size: 74px;
    }
	.slide_right {
  padding: 100px 0 0 0;
}
}
@media only screen and (max-width: 1280px) {
	h1 {
    font-size: 74px;
}
  .page_inner h1 {
    font-size: 38px;
    margin-bottom: 30px;
  }
.slide_form {
    font-size: 18px;
}
.slide_form .button {
    font-size: 16px;
        padding: 22px 64px;
}
.service .item img{
    max-width: 70px;
}
.blocks .item h3 {
    font-size: 28px;
}
.button_block {
    gap: 20px;
    text-align: center;
}
.button_block .open_modal {
    padding: 24px 0px;
    width: 100%;
}
.more {
    padding: 0px 0px;
    width: 100%;
}
.benefis.blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.benefis .item {
    min-height: 230px;
}
.img_slogan img {
    left: -80%;
    top: -120%;
}
.text_slogan {
    font-size: 80px;
    z-index: 2;
}
	#menu ul {
		column-gap: 20px;
	}
	#menu ul li{
		    padding: 10px 0;
	}
	.channel_items .item_wrap {
  flex-wrap: wrap;
}
}

@media only screen and (max-width: 1199px) { 
body {
    font-size: 16px;
}
	#logo img {
        max-width: 200px;
    height: auto;
  }
  #header {
    z-index: 4;
}
h1 {
    font-size: 63px;
}
.slide_right {
    padding-top: 100px;
}
.slide_form {
    flex-wrap: wrap;
        padding: 32px;
}
.slide_form .button {
    padding: 20px 64px;
}
.slide_subtitle {
    padding: 24px;
    font-size: 16px;
        width: 310px;
    height: 160px;
    bottom: -45px;
    right: -10px;
}
.blocks_title {
    grid-template-columns: 30% 70%;
        z-index: 2;
    position: relative;
}
.blocks_sub_title {
    font-size: 34px;
}
.service:before {
    top: -8%;
    left: -28%;
}
.blocks .item {
    align-content: start;
}
.blocks .item .desc {
    margin-bottom: 24px;
}
.button_block .open_modal,.more {
    font-size: 14px;
}
#case .blocks {
    grid-template-columns: 1fr 1fr;
}
#case .blocks .item:nth-child(3) {
    grid-column: 1;
}
.desc_benefis {
    font-size: 20px;
}
.slogan {
    padding: 90px 0;
}
    .img_slogan img {
        left: -50%;
        top: -80%;
        width: 160%;
    }
    .text_slogan {
        font-size: 65px;
    }

   #contact {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .copyright {
        grid-column: 1 / span 2;
    grid-row: 2;  
    }
    .header_contact {
    grid-column: 3 / span 2;
    grid-row: 1;
}
  #menu ul li a {
		    font-size: 28px;
	}
    .burger {
        display: block;
        margin: 0 0 0 -145px;
    }
	.header_menu {
		display: none;
    position: fixed;
        z-index: 30;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    padding: 50px;
    width: 50%;
	}
	.header_menu .phone {
	display:block;
}
	.menu_close {
		display:block;
	}
  #menu ul {
    row-gap: 17px;
    flex-wrap: wrap;
  }
  #menu ul li {
    width: 100%;
  }
  .header_menu a.phone {
      font-size: 18px;
      font-weight: bold;
      margin: 30px 0 0 0;
      display: block;
  }
  .top_header {
    gap: 30px;
}
.channel_box .blocks_sub_title {
  font-size: 18px;
}
.channel_items .name {
  font-size: 22px;
}
}

@media only screen and (max-width: 991px) { 
.slide_left {
    width: 45%;
}
  .slide_right {
    width: 55%;
}
  h1 {
    margin-bottom: 55px;
            font-size: 44px;
}
    .burger {
        margin: 0 0 0 -32px;
    }
    .blocks_title h2 {
    font-size: 16px;
}
    .blocks_sub_title {
        font-size: 24px;
    }
    .blocks, .service {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}
.blocks .item {
    padding: 24px;
}
    .blocks .item h3,
    .benefis .item .name {
        font-size: 24px;
    }
    .benefis .item .desc {
    font-size: 16px;
}
.reviews.blocks {
    margin-top: 110px;
}
.pd {
    padding-top: 50px;
    padding-bottom: 50px;
}
    .service:before {
        top: -5%;
        left: -42%;
    }
    #case .blocks .item .name {
    font-size: 20px;
}
    .text_slogan {
        font-size: 50px;
    }
	.header_soc.hidden_desc {
		display: block;
		margin: 50px 0 0;
	}
      .slide_form .button {
        padding: 14px 46px;
    }
	.top_header {
		gap: 12px;
	}

	.c-accordion {
		max-width: 100%;
	}
  .modal_close {
        right: 12px;
        top: 20px;
        width: 30px;
        height: 30px;
        border-radius: 100%;
  }
  .modal_close::after, .menu_close:after {
        background: #565857;
}
 .channel_img {
  display: none;
}
}

@media only screen and (max-width: 768px) { 
    #logo img {
        max-width: 120px;
        height: auto;
    }
        h1 {
        font-size: 33px;
    }
	  .page_inner h1 {
    font-size: 42px;
  }
        .burger {
        margin: 0 0 0 90px;
    }
    .slide_left {
        width: 100%;
    }
     .slide_left img {
    position: relative;
    bottom: auto;
    height: auto;
    width: 60%;
    max-width: 100%;
    right: auto;
}
.slide_subtitle {
        bottom: 50px;
    }
    .slide_right {
        width: 100%;
        padding: 0;
        background: rgba(255, 255, 255, 0.1);
        padding: 42px;
        backdrop-filter: blur(33px);
        margin-top: -70px;
        border-radius: 40px;
    }
    .slide_form {
        padding: 24px;
        font-size: 16px;        
        gap: 10px;
    }
    .header_contact {
    font-size: 14px;
}
.tg {
    width: 30px;
    height: 30px;
    background-size: 100%;
}
    .button_block .open_modal {
        padding: 16px 0px;
    }
    .service:after {
    right: -65%;
}
    #case .blocks {
        grid-template-columns: 1fr;
    }
        .text_slogan {
        font-size: 38px;
    }
        .img_slogan img {
        left: -80%;
        top: -122%;
        width: 190%;
    }
	.top_header > .header_buttom	{
		display:none;
	}
	.header_buttom.hidden_desc {
		display: block;
	}
	.header_buttom a {
		padding: 5px 20px;
		display: inline-block;
	}
	#cart_infographica .blocks .item {
	  border-radius: 24px;
	  padding: 24px;
	  display: block;
	}
	#cart_infographica .blocks .item h3 {
	  font-size: 20px;
	}
#cart_infographica .blocks .item .icon {
  display: inline-block;
}

}
@media only screen and (max-width: 575px) { 
     #header {
  padding: 24px 0 15px;
}
   #logo img {
        max-width: 150px;
    }

    
    .blocks_title {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .reviews.blocks .item {
    margin: 0;
}
.benefis_box .blocks_sub_title {
    width: 100%;
}
.desc_benefis {
    grid-column: 1;
    margin: 20px 0px 0;
            font-size: 18px;
}
    .slogan {
        padding: 40px 0;
    }
        .img_slogan img {
        top: -66%;
    }
    article header h1 {
    font-size: 45px;
}
    .entry_content {
    padding: 70px 0px 70px 0;
}
.modal_div {
    width: 90%;
    padding: 30px;
  }
  .channel_box .channel_title h2 {
  font-size: 28px;
}
}
@media only screen and (max-width: 480px) { 
      .slide_subtitle {
        padding: 16px;
        font-size: 14px;
        width: 260px;
        height: 126px;
    }
  .header_menu {
    padding: 40px;
    width: 70%;
  }
  .menu_close {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
  }
  #menu ul li a {
		font-size: 22px;
	}
  .burger {
    margin: 0 0 0 30px;
  }
     .service:before {
        top: -3%;
        left: -86%;
    }
    .slick-prev, .slick-next {
    width: 60px;
    height: 60px;
    background-size: 50%;
}
.slick-prev {
    right: 70px;
}
.reviews .dolzhnost {
    font-size: 14px;
}
.reviews.blocks .item {
    font-size: 16px;
}
.reviews .name {
    font-size: 18px;
}
    .benefis.blocks {
        grid-template-columns: 1fr;
    }
    .benefis .item {
        min-height: auto;
    }
    .slogan {
    grid-template-columns: 1fr;
}
    .img_slogan img {
        left: -27%;
        top: -54%;
        width: 127%;
    }
	.c-accordion__content-title {
		padding: 20px 40px;
	}
	.c-accordion__content.active .c-accordion__content-main {
		padding: 30px 40px 30px 40px;
			font-size: 16px;
	}
  

  .wpcf7 input[type="submit"] {
    padding: 20px;
    width: 100%;
}
      #contact {
        grid-template-columns: 1fr;
    }
    .copyright {
        grid-column: auto;
        grid-row: auto;
    }
        .header_contact {
        grid-column: auto;
        grid-row: auto;
    }
    article header h1 {
    padding: 160px 0 0px 0;
    font-size: 38px;
}
.slide_right_text {
  margin: 0 0 30px 0;
}
.channel_items .item {
	border-radius: 24px;
}
}
@media only screen and (max-width: 414px) { 
  .page_inner h1 {
    font-size: 28px;
  }
  .top_header .phone {
        background: url(images/phone.svg) no-repeat center;
        width: 30px;
        height: 30px;
        display: block;
                background-size: 100%;
        text-indent: -9999px;
    }
    .burger {
           order: 1;
}
    .slide_right {
        padding: 26px;
        border-radius: 30px;
    }
    .slide_form:before {
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    top: -12px;
    left: -12px;
}
    h1 {
        font-size: 28px;
                margin-bottom: 35px;
    }
    .reviews .img_name {
    grid-template-columns: 1fr;
    }
    .reviews .img {
    grid-row: span 1;
}
.reviews .dolzhnost {
    grid-column: 1 / span 1;
}
.slogan {
        padding: 40px 0 0;
    }
.img_slogan {
    display: none;
}
  .header_menu {
    width: 90%;
  }
  .top_header {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .burger {
      background: url(images/burger.svg) no-repeat center right;
  }
	
	.modal_div .form_title p {
		font-size: 22px;
	}
	#cart_infographica .blocks .item .icon {
	  width: 74px;
	  margin-bottom: 20px;
	}
.channel_items .item_wrap {
  padding: 24px;
}
.channel_items .item_wrap .icon {
max-width: 40px;
}

}
@media only screen and (max-width: 390px) { 
	
    .slide_left img {
        width: 73%;
    }
    .slide_subtitle {
        display: none;
    }
	
	.c-accordion__content-title {
		padding: 20px;
	}
	.c-accordion__content-title span {
		font-size: 14px;
		line-height: normal;
	}
	.c-accordion__content.active .c-accordion__content-main {
		padding: 20px;
		font-size: 14px;
	}
  .modal_div input[type="submit"] {
    margin: 10px 0;
    cursor: pointer;
    padding: 20px 0;
    width: 100%;
}
.channel_items .item {
	padding: 12px;
}
}
@media only screen and (max-width: 402px) { 
.burger {
        margin: 0;
}

}