/* ALL */

/* Плавность анимаций */
* {
  transition: 0.3s;
}
/* Плавность анимаций */

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

h1,h2,h3,p,span {
    margin: 0;
    padding: 0;
}

a {

    color: #233656;
}

body {
    margin: 0 auto;
    color: #233656;
    font-style: normal;
    font-family: 'Manrope', sans-serif;
}

/* h2 {
    font-weight: 500;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 40px;
} */

/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  *, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  :focus, :active {
    outline: none;
  }
  
  a:focus, a:active {
    outline: none;
  }
  
  nav, footer, header, aside {
    display: block;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  input, button, textarea {
    font-family: inherit;
  }
  
  input::-ms-clear {
    display: none;
  }
  
  button {
    cursor: pointer;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  a, a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  ul li {
    list-style: none;
  }
  
  img {
    vertical-align: top;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  
  /*------------------------------------------*/


.wrapper {
  padding-left: 5%; padding-right: 5%;
}

/* HEADER */

header {
  background: #0059FF;
  border-radius: 0px 0px 30px 30px;
}

/* START HEADER */

.wrapper_header {
	padding: 0 20px;
   max-width: 1357px;
   margin: 0 auto;
}

.header_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0px 20px;
  }

  .header_logo_mob {
    display: none;
  }
  
  .header_conection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    max-width: 410px;
  }
  
  .header_button_wb:hover {
    transform: translate(0,-8px);
    -webkit-transform: translate(0,-8px);
    -o-transform: translate(0,-8px);
    -moz-transform: translate(0,-5px);
 }
 
 .form_error {
     color: white !important;
     font-weight: bold;
 }

 .header_button_ozon:hover {
    transform: translate(0,-8px);
    -webkit-transform: translate(0,-8px);
    -o-transform: translate(0,-8px);
    -moz-transform: translate(0,-5px);
 }

  /* .header_tel {
    margin-right: 45px;
  } */
  
  .tel_link {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000;
  }
  
  .header_nav li {
    position: relative;
  }
  
  .header_nav a.parent {
    margin: 0px 20px 0px 0px;
  }
  
  .header_list > li {
    position: relative;
    margin-right: 30px;
  }
  /* .header_list > li:last-child {
    margin-right: 0px;
  } */
  
  .header_link {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    transition: all 0.3s ease-in-out;
  }
  .header_link:hover {
    color: #E61C8E;
  }
  
  .burger_icon {
    display: none;
  }
  
  .header_conection_mob {
    display:none;
  }

  .header_tel_link{
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    background-color: #a396d5;
    border-radius: 30px;
  }

  .header_tel_link:hover {
    background-color: #aaa0d1 !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }

  .header_tel_mob {
    display: none;
  }

  /*Бургер меню*/
  body.lock {
    overflow: hidden;
  }
  
  @media (min-width: 1250px) {
    .header_list {
      display: flex;
      align-items: center;
    }
  }
  @media (max-width: 1250px) {

    .header_tel {
      display: none;
    }

    .header_tel_mob {
      display: block;
      margin-top: 50px;
      text-align: center;
    }

    /* .header_conection {
      display: none;
    } */
    .burger_icon {
      z-index: 5;
      display: block;
      position: relative;
      width: 40px;
      height: 30px;
      cursor: pointer;
    }
    .burger_icon span,
    .burger_icon::before,
    .burger_icon::after {
        left: 0;
        position: absolute;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: #000;
        }
    .burger_icon::before,
    .burger_icon::after {
        content: "";
        }
        .burger_icon::before {
        top: 0;
        }
        .burger_icon::after {
        bottom: 0;
        }
        .burger_icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
        }
        .burger_icon.active span {
        transform: scale(0) translate(0px, -50%);
        }
        .burger_icon.active::before {
        background-color: #fff;
        top: 50%;
        transform: rotate(-45deg) translate(0px, -50%);
        }
        .burger_icon.active::after {
        background-color: #fff;
        bottom: 50%;
        transform: rotate(45deg) translate(0px, 50%);
        }
        .header_nav {
        z-index: 1;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 100px 30px 30px 30px;
        transition: left 0.3s ease 0s;
        overflow: auto;
        }
        .header_nav:before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 70px;
        }
        .header_nav.active {
        left: 0;
        }
        .header_list {
        text-align: center;
        max-width: 240px;
        margin: 0 auto;
        margin-top: 100px;
        }
        .header_nav a.parent {
        margin: 0;
        }
        .header_list > li {
        flex-wrap: wrap;
        margin: 0px 0px 30px 0px;
        }
        .header_list > li:last-child {
        margin-bottom: 0;
        }
        .header_link {
        color: #FFF;
        font-size: 34px;
        line-height: 40px;
        }
        .sub_header_list {
        position: relative;
        margin: 0px 0px 15px 0px;
        }
        .sub_sub_header_list {
        padding: 0px 5px;
        position: relative;
        left: 0;
        top: 0;
        }
        .arrow {
        border-top: 10px solid #fff;
        }
        .sub_header_arrow.arrow {
        right: 5px;
        border-left: 7px solid transparent;
        border-bottom: none;
        border-top: 10px solid #000;
        border-right: 7px solid transparent;
        }
        
        @media (max-width: 850px) {

          .header_conection {
            display: none;
          }

          .header_conection_mob {
            margin-top: 100px;
            display:flex;
            flex-direction: column;
            align-items: center;
          }
  
          .header_button_ozon {
            margin-top: 30px;
          }

          .header_list {
            margin-top: 30px;
          }
        }
  }
  /* Меню Бургер */
  /* END HEADER */


/* PROMO_SECTION */

/* .promo_section {
    margin-top: 80px;
    background-color:#000;
}

.promo_section > .promo_container:first-child {
    height: 321px;
    background: url(img/promo.jpg) center no-repeat;
    background-size: cover;
    border-radius: 10px;
    display: flex;
    flex-direction: column-reverse;
}

.promo_container > .promo_bgimage_text h1{
    font-weight: 900;
    font-size: 34px;
    line-height: 40px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 50px 63px;
}

.promo_text {
    margin-top: 35px;
    font-weight: 900;
    font-size: 48px;
    line-height: 56px;
    text-transform: uppercase;
} */

/* START CASE_SECTION */

.wrapper_case{
	padding: 0 20px;
	max-width: 1357px;
	margin: 0 auto;
}

.cases_section {
	/* min-height: 1132px; */
	margin-top: 100px;
}

.case_title h2 {
	font-style: normal;
	font-weight: bold;
	font-size: 70px;
	line-height: 122px;
	text-align: center;
	color: #F2FAFA;
	position: relative;
	top: 83px;
	margin-bottom: 166px;
}

.flex-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}

.slider-wrapper {
	max-width: 1357px;
  /* border-radius: 30px; */
	width: 100%;
	height: 577px;
	position: relative;
	/* box-shadow: 10px 10px 44px -10px rgba(0,0,0,0.75); */
}

.slide {
	display: none;
	box-shadow: 0px 2px 41px rgba(112, 112, 112, 0.367);
	border-radius: 30px;
	/* padding: 30px; */
	/* width: 1360px; */
	height: 580px;

}

.slider_content {
  display: flex;
  flex-direction: column;
	margin: 0 130px;
  padding-top: 115px;

}

.slider_header {
  max-width: 550px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 46px;
  color: #FFFFFF;
  text-transform: none;
}

.slider_text {
  max-width: 490px;
  margin-top: 40px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
  text-transform: none;
}

.button_container {
  margin-top: 30px;
  display: flex;

}


/* ававава */

.slider_btn_left {
  padding: 12px 30px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  margin-right: 20px;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.slider_btn_left:hover {
	/* box-shadow: 0px 0px 15px 25px #35353552; */
	background-color: #ffffff46;
	transform: translate(0,-2px);
	-webkit-transform: translate(0,-2px);
	-o-transform: translate(0,-2px);
	-moz-transform: translate(0,-2px);
	box-shadow: 0px 5px 5px 5px #35353552;
}


.slider_btn_right {
  padding: 12px 13px;
  background: #FFFFFF;
  border-radius: 20px;
  font-weight: 700;
  border: 1px solid #FFFFFF;
  font-size: 16px;
}

.slider_btn_right:hover {
	background-color: #ececec;
	transform: translate(0,-2px);
	-webkit-transform: translate(0,-2px);
	-o-transform: translate(0,-2px);
	-moz-transform: translate(0,-2px);
	box-shadow: 0px 5px 5px 5px #35353552;
}

/* ававава */


/* .slider_btn_left {
  padding: 12px 13px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  margin-right: 20px;
} */

.slider_btn_left > a {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 90%;
  color: #FFFFFF;
}

.slider_btn_right {
  padding: 12px 13px;
  background: #FFFFFF;
  border-radius: 20px;
}

.slider_btn_right > a {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 90%;
  color: #cb1986;
}

.btn_wb {
  color: #cb1986;
}

.btn_ozon {
  color: #005bff;
}

.slide_content {
	display: flex;
   	flex-direction: column-reverse;
	box-sizing: border-box;
	height: 577px;
	max-width: 1290px;
	margin: 0 20px;
	color: #fff;
}

.slide_content span {
	padding: 20px;
	border: solid white 1px;
	background-color: #5f6db9c7;
	backdrop-filter: blur(5px);
	border-radius: 5px;
	background: linear-gradient(99.97deg, rgba(65, 21, 137, 0.5) 16.54%, rgba(99, 3, 107, 0.5) 100.52%);
  border: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	backdrop-filter: blur(7px);
	border-radius: 20px;
}



.name_of_slide {
	display: flex; 
	justify-content: space-between;
	margin-bottom: 30px;
	font-family: 'Montserrat';
	font-weight: 800;
	font-size: 40px;
	flex-wrap: wrap;
	align-items: center;
}


.name_of_slide > span {

	padding: 10px;
	overflow-wrap: break-word;
	margin-right: 15px;
	/* width: fit-content; */
}

/* Важный медиазапрос для названия слайда, кнопки */
@media screen and (max-width:982px){
	.name_of_slide > span {
		width: min-content;
	}

	.name_of_slide  {
		flex-direction: column;
		align-items: normal;
	}

	span.button_of_slide {
		width: 180px;
	}

	.parameters_of_slide {
		flex-direction: column;
		flex-direction: column-reverse;
	}

	.parameter_container {
		margin-bottom: 18px;
	}

	.slider-wrapper .buttons_of_slide {
		bottom: 520px;
	}
}

@media screen and (max-width:440px){
	span.button_of_slide {
		width: 100%;
	}
	.name_of_slide > span {
		width: 100%;
		/* text-align: center; */
		font-size: 30px;
		/* padding: 10px 30px; */
	}
}


.parameter_container:first-child {
	margin-bottom: 20px;
	margin-right: 5px;
}

.parameters_of_slide {
	display: flex;
	/* margin-bottom: 20px; */
	font-family: 'Montserrat';
	font-weight: 800;
	font-size: 14px;
	
	color: #FFFFFF;	
}

.parameters_of_slide span {
	padding: 5px 9px;
	border-radius: 8px;
}

.daily_parameter,.rating_parameter {
	text-align: center;
	margin-right: -10px;
	margin-left: 10px;
} 

.parameters_of_slide > span:nth-child(1) {
	margin-right: 30px;
	
}

.slide.active {
	display: block;
}

span.button_of_slide {
	/* color: white; */
	/* background: rgb(238, 90, 32); */
	padding: 15px;
	background: linear-gradient(95.83deg, rgba(255, 1, 1, 0.7) 0%, rgba(255, 246, 34, 0.7) 94.07%);
	backdrop-filter: blur(4px);
	border-radius: 15px;
	border: none;
	font-weight: 800;
	font-size: 18px;
	line-height: 22px;
	color:#FFFFFF;
	filter: drop-shadow(0px 0px 20px #B2510B);
	text-align: center;
	margin: 10px 0px;
}

.first {
	background: url(img/ozon_slider_png.png) no-repeat;
	background-size: cover;
	background-position: right;
}

.second {
	background: url(img/wb_slider_png.png) no-repeat;
	background-size: cover;
	background-position: right;
}

.third {
	background: url(img/marketplace_slider.png) no-repeat;
	background-size: cover;
	background-position: right;
}

.buttons_of_slide {
	display: flex;
	flex-direction: row;
	position: relative;
	bottom: 330px;
	justify-content: space-between;

}

/* #btn-prev, #btn-next {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50px;
	background-color: gray;
	opacity: 0.4;
	cursor: pointer;
	transition: opacity .2s ease-in-out;
} */

/* #btn-prev:hover, #btn-next:hover {
	opacity: 0.6;
} */

#btn-prev:hover, #btn-next:hover {
	box-shadow: 0px 0px 10px #0000003d;
	border-radius: 100%;
}

#btn-prev:active, #btn-next:active{
	box-shadow: 0px 0px 0px #707070;
}

#btn-prev {
	border-radius: 100%;
	margin-left: 40px;
}

#btn-next {
	border-radius: 100%;
	margin-right: 40px;
}

/* END CASE_SECTION */


/* ABOUT_SECTION */

.about_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-items: center;
    margin-top: 140px;
    align-items: center;
    max-width: 1357px;
    margin: 0 auto;
    margin-top: 100px;
}

.about_text {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #41516B;
}

.about_text h1 {
  font-weight: 800;
  font-size: 34px;
  line-height: 40px;
  color: #2B2D33;
  max-width: 446px;
  margin-bottom: 27px;
}
.about_text p{
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  max-width: 446px;

} 

.about_image img {
    width: 100%;
    height: auto;
}

/* END_ABOUT_SECTION */



/* START USLUGI_SECTION */

.section_uslugi{
  max-width: 1357px;
  margin: 0 auto;
  margin-top: 100px;
}

.uslugi_title h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 90%;
  color: #2B2D33;
  text-align: center;
}

.uslugi_container {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.uslugi_item {
  max-width: 250px;
  margin-right: 20px;
  margin-bottom: 30px;
}

.uslugi_item:last-child {
  margin-right: 0px;
  margin-bottom: 0px;
}

.uslugi_item img {
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-bottom: 15px;
}

.uslugi_item img:hover {
  box-shadow: 0px 14px 10px 1px rgba(0, 0, 0, 0.15);
  transform: translate(0,-8px);
  -webkit-transform: translate(0,-8px);
  -o-transform: translate(0,-8px);
  -moz-transform: translate(0,-5px);
}

.uslugi_item h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 90%;
  color: #000000;
  margin-bottom: 10px;
}

.uslugi_item p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #3F3F3F;
}

@media (max-width: 575px) {
  .uslugi_item {
    margin-right: 0px;
  }
}

/* END USLUGI_SECTION */



/* START DOP_USLUGI_SECTION */

.dop_uslugi_section {
  max-width: 1357px;
  margin: 0 auto;
  margin-top: 100px;
}

.dop_uslugi_title h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 90%;
  color: #2B2D33;
  text-align: center;
}

.dop_uslugi_container {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
}

.dop_uslugi_item {
  max-width: 200px;
}

.dop_uslugi_item_img img {
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.28);
  border-radius: 5px;
}

.dop_uslugi_item_img img:hover {
  box-shadow: 0px 14px 10px 1px rgba(0, 0, 0, 0.15);
	transform: translate(0,-8px);
	-webkit-transform: translate(0,-8px);
	-o-transform: translate(0,-8px);
	-moz-transform: translate(0,-5px);
}

.dop_uslugi_item_text {
  margin-top: 20px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

@media (max-width: 1400px) {

  .dop_uslugi_container {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 40px;
  }

}

@media (max-width: 750px) {
  .dop_uslugi_container {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 40px;
  }

  .dop_uslugi_item_img img {
    max-width: 200px;
  }
}

@media (max-width: 500px) {
  .dop_uslugi_item_img img {
    max-width: 95%;
}

  .dop_uslugi_item {
    text-align: center;
  }

  .dop_uslugi_item_text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* END DOP_USLUGI_SECTION */



/* START STAGES_SECTION */

.stages_section {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 100px;
}

.stages_title h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 90%;
  color: #2B2D33;
  text-align: center;
}

.stages_container {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 100px;
  grid-row-gap: 80px;
}

.stages_item {
  display: flex;
  align-items: center;

}

.stages_item_img {
  margin-right: 20px;
  
}

.stages_item_img img {
  width: 50px;
  height: 50px;
}

.stages_item_text p {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 90%;
  color: #000000;
}

@media (max-width: 1020px) {
  .stages_container {
    grid-template-columns: repeat(1, 1fr);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 100px;
  }
}

@media (max-width: 430px) {
  .stages_container {
    grid-row-gap: 40px;
  }

  .stages_item_text p {
    font-size: 22px;
  }
}

/* .stages_section {
  margin: 0 auto;
  margin-top: 100px;
  max-width: 1357px;
}

.stages_title>h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 90%;
  color: #2B2D33;
  text-align: center;
}

.stages_container {
  margin-top: 100px;
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 70px;
}

.stages_card > img {
  max-width: 212px;
}

@media (max-width: 1200px) {
  .stages_container {
    grid-template-columns: 1fr 1fr 1fr;
  }
} */

/* END STAGES_SECTION */

/* START SERVICES_SECTION */

.services_content_left img {
  max-width: 350px;
  max-height: 350px;
}

.services_section {
  max-width: 1357px;
  margin: 0 auto;
  margin-top: 100px;
}

.services_title>h2,span {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: white;
    text-align: left;
}

.services_title>h2>span {
  color:#1400FF;
}

.services_container {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(217, 217, 217, 0.36);
  border-radius: 40px;
  padding-right: 3%;
  padding-left: 3%;
}

.services_menu {
  display: flex;
  /* flex-wrap: wrap; */
  padding-top: 30px;
}

.services_btn {
  margin-right: 25px;
  padding: 15px 30px;
  border: 1px solid #000000;
  border-radius: 40px;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  cursor: pointer;
}

.services_btn:hover {
  background-color: #ececec;
    transform: translate(0,-2px);
    -webkit-transform: translate(0,-2px);
    -o-transform: translate(0,-2px);
    -moz-transform: translate(0,-2px);
    box-shadow: 0px 5px 5px 5px #35353552;
}

.services_btn.active_btn {
  background: #E61C8E;
  border: 1px solid rgba(217, 217, 217, 0.36);
  color: #fff;
}

/* .services_btn:hover{
  background: #1FCCA7;
  border: 1px solid rgba(217, 217, 217, 0.36);
  color: #fff;
} */

.services_btn:last-child {
  margin-right: 0px;
}

.services_content_wrapper {
  display: none;
}

.services_content_wrapper.active_btn {
  display: block;
}

.services_content {
  display: grid;
  margin: 20px 0px 20px 0px;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  justify-items: center;
  align-items: center;
}

.services_content_right {
  max-width: 630px;
}

.services_content_right>h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 49px;
  color: #000000;
}

.services_content_right>p {
  margin-top: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.services_content_right>p>span {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #E61C8E;
}

/* END SERVICES_SECTION */


/* START manager_call_section */

.manager_call_section {
  margin-top: 100px;
  background: linear-gradient(45deg, #CC9ACF 0%, #5259B6 100%);
  min-height: 215px;
  padding: 50px 0px;
}

.maganer_call_title h2 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 46px;
  color: white;
}

.placeholder_manager_call_name {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50px;
  padding-left: 22px;
  height: 45px;
  font-weight: 600;
  font-size: 20px;
  color: white;
}
::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}

.send_button_manager_call {
  background: #E61C8E;
  border-radius: 30px;
  padding: 10px 100px;
  font-weight: 600;
  font-size: 20px;
  color: white;
}

.send_button_manager_call {
  font-weight: 600;
  font-size: 20px;
  color: white;
} 

.send_button_manager_call:hover {
    transform: translate(0,-2px);
    -webkit-transform: translate(0,-2px);
    -o-transform: translate(0,-2px);
    -moz-transform: translate(0,-2px);
    box-shadow: 0px 5px 5px 5px #35353552;
}

.imput_button_manager_call_name {
  margin-right: 24px;
}
.button_container_manager_call {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 950px) {

  .button_container_manager_call {
    flex-direction: column;
  }

  .imput_button_manager_call_name {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .placeholder_manager_call_name {
    min-width: 350px;
  }

  .send_button_manager_call {
    min-width: 350px;
  }
}

@media (max-width: 450px) {
  .maganer_call_title h2 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 375px) {

  .placeholder_manager_call_name {
    min-width: 310px;
  }

  .send_button_manager_call {
    min-width: 310px;
  }
}

/* END manager_call_section */

/* START reviews section */

.reviews {
  max-width: 1357px;
  margin: 0 auto;
}

.title_reviews_h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 100px;
  margin-bottom: 50px;
  color: #2B2D33;
  text-align: center;
}
.slider_reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  background: url(./img/background_reviews.svg);
  background-size: cover;
  padding: 50px;
  border-radius: 20px;
}
.reviews_card img {
  max-height: 400px;
  border-radius: 20px;
}

.reviews_card img:hover {
    /* box-shadow: 0px 14px 10px 1px rgb(0 0 0 / 15%); */
    transform: translate(0,-8px);
    -webkit-transform: translate(0,-8px);
    -o-transform: translate(0,-8px);
    -moz-transform: translate(0,-5px);
}

#reviews_button_left {
  display: none;
  width: 30px;
  height: 30px;
  border-top: 5px solid #000;
  border-left: 5px solid #000;
  transform: rotate(-45deg);
}

#reviews_button_right {
  display: none;
  width: 30px;
  height: 30px;
  border-top: 5px solid #000;
  border-right: 5px solid #000;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .reviews_card {
    display: none;
  }
  .activeR {
    display: block;
    text-align: center;
  }
  .slider_reviews {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: stretch;
  }

  #reviews_button_left {
    display: block;
  }
  #reviews_button_right {
    display: block;
  }
  .buttons_of_reviews {
    display: flex;
    flex-direction: row;
    position: relative;
    bottom: 200px;
    justify-content: space-between;
  }
}
/* END reviews section */

/* START FOOTER */

footer {
  margin-top: 100px;
  background: linear-gradient(96.97deg, rgba(13, 83, 248, 0.2) -2.46%, rgba(229, 28, 143, 0.2) 104.84%);
}

.footer_container {
  /* max-width: 1357px; */
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  padding: 50px 0px 50px 0px;
  max-width: 1357px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer_logo_container {
  display: grid;
  grid-row-gap: 15px;
  max-width: 160px;
}

/* .footer_logo_signature {
  margin-top: 15px;
} */

.footer_logo_signature>h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}

.footer_content {
  display: grid;
  grid-row-gap: 65px;
}

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

.footer_conection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  /* grid-column-gap: 20px; */
}

.footer_button_wb:hover {
  transform: translate(0,-8px);
  -webkit-transform: translate(0,-8px);
  -o-transform: translate(0,-8px);
  -moz-transform: translate(0,-5px);
}

.footer_button_ozon:hover {
  transform: translate(0,-8px);
  -webkit-transform: translate(0,-8px);
  -o-transform: translate(0,-8px);
  -moz-transform: translate(0,-5px);
}

.footer_list {
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(4, 1fr);
  justify-items: end; */
}

.footer_list > li {
  margin-right: 40px;
}

.footer_list > li:last-child {
  margin-right: 0px;
}

.footer_link {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #000000;
}

.footer_link:hover {
  color: #E61C8E;
}

.footer_info {
  display: flex;
  justify-content: space-between;
}

.footer_address {
  max-width: 260px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}

.footer_tel_email {
  display: grid;
  grid-column-gap: 5px;
  text-align: end;
}

.footer_email {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  text-align: end;
}

.footer_tel {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}

.footer_signature {
  display: grid;
  grid-column-gap: 5px;
  justify-items: end;
}

.footer_sign {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #000000;
}

.footer_sign_link>a {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #362F8C;
}

@media (max-width: 1200px) {

  .footer_content {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }

  .footer_menu {
    flex-direction: column;
  }

  .footer_conection {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }

  .footer_list {
    flex-direction: column;
    align-items: center;
  }

  .footer_list > li {
    margin-right: 0px;
  }

  .footer_info {
    flex-direction: column;
    align-items: flex-end;
  }

  .footer_tel {
		text-align: end;
	}

  .footer_address {
    text-align: end;
  }

  /* .footer_signature {
    justify-items: start;
  } */
}

@media (max-width: 850px) {

  .footer_container {
    flex-direction: column;
    align-items: center;
  }

  .footer_logo_signature>h3 {
    text-align: center;
  }

  .footer_logo_container {
    justify-items: center;
    margin-bottom: 20px;
  }

  .footer_content {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  .footer_info {
    flex-direction: column;
    align-items: center;
  }

  .footer_address {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer_tel_email {
    margin-bottom: 20px;
  }

  .footer_email {
    text-align: center;
  }

  .footer_tel {
		text-align: center;
	}

  .footer_signature {
    justify-items: center;
  }
}

/* END FOOTER */


/* TASK_SECTION */

.tasks_section {
    margin-top: 150px;
}

.task_items {
    margin: 0 auto;
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    justify-items: center;
}

.task_item {
    width: 350px;
}

.task_item h3 {
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 14px;  
}

.task_item p {
    width: 300px;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
}

h3::before {
    font-weight: 700;
    font-size: 180px;
    text-align: center;
    color: rgba(65, 81, 107, 0.15);
    display: block;
    position: relative;
    top: 40px;
    right: 170px;
}


.task_item:nth-child(1) h3::before {
    content: "1";
}

.task_item:nth-child(2) h3::before {
    content: "2";
}

.task_item:nth-child(3) h3::before {
    content: "3";
}

.task_item:nth-child(4) h3::before {
    content: "4";
}

.task_item:nth-child(5) h3::before {
    content: "5";
}

.task_item:nth-child(6) h3::before {
    content: "6";
}


/* SERVICE_SECTION */

.service_section {
    margin-top: 150px;
}

.service_container {
    margin: 0 auto;
}

.service_item {
    border-radius: 10px;
    box-shadow: inset 0px 0px 0px 2px #808A9A;
}

.service_item img {
    border-radius: 10px;
}

.service_item_text {
    padding: 27px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;    
}

.service_item_text h3 {
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

.service_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
    grid-auto-flow: dense;
  }

.service_item:nth-child(1) {
    grid-column: -2 / 1;
    grid-row: span 2;
}

.service_item:nth-child(5) {
    grid-column: 2 / -1;
    grid-row: span 2;
}


/* CONTACTS_SECTION */

.contacts_section {
    margin-top: 150px;
    margin-bottom: 50px;
}

.contacts_items {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: space-between;

}

.contacts_text {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    width: 350px;
    margin-bottom: 40px;
}

.contacts_text h3 {
    font-weight: 900;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 10px;
}

.contacts_text span {
    color:#808A9A;
    font-size: 14px;
}

.contacts_text > p:nth-child(6) {
    margin-top:10px;
}

.contacts_map iframe {
    box-shadow: 0px 0px 0px 2px #808a9a5d;
    width: 100%;
    height: 500px;
}


div.popup._type_normal._position_top > div.popup__content > div > div {
    max-height: 400px !important;
}

body > div.popup._type_normal._position_top > div.popup__content > div > div {
    height: 1400px !important;
    border-radius: 20px;
}

iframe .vlg_map .map-widget-content-view__container {
    height: 1400px !important;
    border-radius: 20px;
}

.msk_map{
    display: none;
}

.nn_map{
    display: none;
}

.vlg_map{
    display: none;
}

.view {
    display: block;
}

a.msk_link, a.nn_link, a.vlg_link {
    text-decoration: underline; 
    cursor: pointer;
}

.nn_link p {
    margin-bottom: 10px;
}

/* МEDIARULES */

/* 1200px */
@media (max-width: 1200px) {

    /* .about_section {
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 100px;
    } */

    .promo_text {
        font-size: 40px;
        line-height: 48px;
        text-align: center;
    }

    .about_container:nth-child(2) {
        order: -1;
    }
    /* .maganer_call_title h2 {
      font-size: 50%;
    }
    .send_button_manager_call{
      padding: 10px 5%;
    } */
    .services_btn {
      padding: 15px 12px;
    }
    .wrapper_case {
      padding-left: 5%;
      padding-right: 5%;
    }
}

/* 859px */
/* @media (max-width: 859px) {

    header {
        display: flex;
        flex-direction: column;
    } 

    .header_section .header_burger{
		display: block;
    }

    .header_container{
        display: flex;
        flex-direction: column;
        margin-left: 0px;
        justify-content: center;
        align-items: flex-end;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
        background-color: #2E3E58;
        color:#fff;
		z-index: 10;
		padding: 75px;
		transform: translateX(100%);
        transition: .3s all cubic-bezier(1, 0.01, 0, 0.98);
	}

    .header_container .header_item > a {
        color: #fff !important;
    }

	.header_container_active{
		transform: translateX(0);
	}

	.header_item{
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
        font-size: 30px;
        line-height: 40px;
        color: #fff;
	}
	
	.header_item:last-child{
		margin-bottom: 0;
	}

	.header_container-close{
		width: 40px;
		height: 40px;
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 11;
	}

	.header_container-close-line{
		display: block;
		width: 100%;
		height: 2px;
		background-color: #FFF;
		position: absolute;
		top: 50%;
	}

	.header_container-close-line:first-child{
		transform: translateY(-50%) rotate(45deg);
	}

	.header_container-close-line:last-child{
		transform: translateY(-50%) rotate(-45deg);
	}

    .promo_text {
        font-size: 32px;
        line-height: 30px;
    }

    .promo_container > .promo_bgimage_text h1 {
        margin: 20px 20px;
        font-size: 25px;
        line-height: 30px;
    }

    .service_items {
        display: flex;
        flex-direction: column;
    }

    .contacts_items {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }
} */

@media (max-width: 800px) {

  .cases_section{
    display: none;
  }
  /* .placeholder_manager_call_name{
    font-size: 10px;
  } */
  .services_btn {
    font-size: 16px;
    margin-right: 12px;
  }
  /* .stages_container {
    grid-template-columns: 1fr 1fr;
} */
  .about_text h1 {
    max-width: none;
    text-align: center;
  }
  .about_text p {
    text-align: center;
    max-width: none;
  }
  .slider_content {
    margin: 0 5%;
  }
  .services_content {
    grid-template-columns: 1fr;
  }
  .services_content_left {
    order: 1;
  }

  .services_content_right>h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .services_content_right>p {
    font-size: 20px;
    line-height: 26px;
  }

  .services_content_right>p>span {
    font-size: 20px;
    line-height: 26px;
  }


  .about_section {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 100px;
  }
  .header_container {
    margin: 0;
  }
  .foter_all_1 {
    flex-direction: column;
  }
  
}

/* 500px */
@media (max-width: 500px) {

    /* h2 {
        font-size: 38px;
    } */

    .promo_container > .promo_bgimage_text h1 { 
        margin: 20px 20px;
        font-size: 22px;
        line-height: 25px;
    }

    .header_logo {
        font-size: 24px;
    }

    .promo_section {
        margin-top: 40px;
    }

    .promo_text {
        font-size: 26px;
        line-height: 30px;
    }

    .about_section {
        margin-top: 60px;
    }

    .service_item_text {
        padding: 18px 18px;
    }
    
    

    .tasks_section,.service_section,.contacts_section {
        margin-top: 120px;
    }

    /* .maganer_call_title h2 {
      font-size: 50%;
    }
    
    .imput_button_manager_call_name{
      margin-right: 5px;
    }
    .send_button_manager_call {
      padding: 10px 1%;
    }
    .bttn-reg{
      font-size: 10px;
    }
    .placeholder_manager_call_name {
      max-height: 35px;
      max-width: 110px;
    } */
    .stages_card img {
      max-width: 150px;
    }
    .about_text h1 {
      text-align: left;
    }
    .about_text p {
      text-align: left;
    }
    .services_btn {
      font-size: 12px;
    }
    .stages_container,.services_section,.stages_section,.services_container {
      margin-top: 50px;
    }

    .about_image {
      text-align: center;
    }

    .about_image img {
      max-width: 80%;
    }
    .services_btn {
      padding: 5px 5px;
  }
}

/* 400px */
@media (max-width: 400px) {
  .services_btn {
    padding: 3px 3px;
    font-size: 11px;
  }

  .services_content_right>h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .services_content_right>p {
    font-size: 16px;
    line-height: 22px;
  }

  .services_content_right>p>span {
    font-size: 16px;
    line-height: 22px;
  }

  .services_content_right {
    max-width: 300px;
}

.services_content_left img {
    max-width: 250px;
    max-height: 250px;
}

}

/* 355px */
@media (max-width: 355px) {
    
    .task_item {
        width: 400px;
    }

    .stages_card img {
      max-width: 100px;
    }

    .stages_container {
      grid-row-gap: 20px;
    }
    .stages_section {
      margin: 40px auto 0px;
    }

    .services_content_right {
      max-width: 250px;
    }
    
}

.foter_all_1 {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(96.97deg, #D5E1FF -2.46%, #E3C1D5 104.84%);
  padding: 5%;
  
}
.footer_list_1 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 3%;
}
.footer_link_1_2 {
  font-weight: 700;
  font-size: 18px;
}
.footer_tel_email_1 {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 18px;
  max-width: 300px;
}
.footer_email_1 {
  display: flex;
  flex-direction: column;
}
.footer_sign_1 {
  display: flex;
  flex-direction: column;
}
.footer_button_wb_1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.fotter_chel_1 {
  display: flex;
  flex-direction: column;
}
.foter_1 {
  max-width: 160px;
}
.footer_1_logo {
  margin-bottom: 20px;
}
.footer_logo_signature_1 {
  font-weight: 700;
  font-size: 18px;
}
.footer_list_1 li {
  margin-bottom: 5%;
}
.footer_tel_email_1 div {
  margin-bottom: 5%;
}
.footer_list_1 img {
  margin-bottom: 10px;
  
}

/* Чекбокс согласия с политикой обработки ПД в форме заявки */
.form_privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-basis: 100%;
  max-width: 300px;
  margin: 20px 20px;
  font-size: 14px;
  color: white;
  text-align: left;
  cursor: pointer;
}

.form_privacy input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
}

.form_privacy a {
  color: inherit;
  text-decoration: underline;
}
