* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "HeraclitoRegular";
  font-weight: 400;
  font-style: normal;
  zoom: 75%;
}

.container {
  margin: 0 auto;
  max-width: 1475px;
}
@media (max-width:1500px) and (max-width:1340px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width:1500px) and (max-width:1340px) and (max-width:1210px) {
  .container {
    max-width: 1024px;
  }
}
@media (max-width:1500px) and (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width:1500px) and (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .container {
    max-width: 576px;
  }
}
@media (max-width:1500px) and (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .container {
    padding: 0 10px;
  }
}

.wrapper {
  overflow: hidden;
}

.animated_ellipse {
  width: 115px;
  position: relative;
}
.animated_ellipse .ellipse {
  width: 100%;
}
.animated_ellipse .ellipse_text {
  width: 113px;
  position: absolute;
  animation: rotation 8s infinite linear;
  left: 0;
  top: 0;
  right: 0;
  bottom: 2px;
  margin: auto;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.section_title {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.section_title span {
  color: var(--GREY, #4F4F4F);
}
@media (max-width:800px) {
  .section_title {
    text-align: center;
    font-size: 50px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .section_title {
    font-size: 30px;
  }
}

.block_title {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.block_title span {
  color: var(--red, #CB1939);
}

.grey_bg {
  margin-top: 33px;
  background: var(--grey, #E3E3E3);
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  padding: 50px 0;
  font-size: 20px;
}
.grey_bg span {
  font-family: "HeraclitoMedium";
}
@media (max-width: 580px) {
  .grey_bg {
    font-size: 16px;
    padding: 35px 0;
  }
}

.block_title {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 40px;
}
.block_title span {
  color: var(--red, #CB1939);
}
.block_title.right {
  text-align: end;
}
@media (max-width:1045px) {
  .block_title.right {
    text-align: start;
  }
}
@media (max-width: 580px) {
  .block_title {
    font-size: 30px;
  }
}

.block_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  margin-top: 30px;
}
.block_name span {
  color: var(--red, #CB1939);
}
.block_name.right {
  text-align: right;
}
@media (max-width:1045px) {
  .block_name.right {
    text-align: start;
  }
}
.block_name.center {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 580px) {
  .block_name.center {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .block_name {
    font-size: 20px;
  }
}

.personal_info_text {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 348px;
}
@media (max-width: 580px) {
  .personal_info_text {
    font-size: 15px;
    margin-bottom: 100px;
  }
}

header {
  padding: 15px 0;
  border-radius: 0px 0px 20px 20px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(205, 13, 10, 0.2);
}
header .header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width:1045px) {
  header .header_block .header_logo img {
    width: 150px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  header .header_block .header_logo img {
    width: 105px;
  }
}
header .header_block .header_nav {
  display: flex;
  gap: 0 31px;
}
header .header_block .header_nav a {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s all ease;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
header .header_block .header_nav a.services_href {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
header .header_block .header_nav a.services_href span {
  margin-top: -7px;
  transition: 0.3s all ease;
}
header .header_block .header_nav a:hover {
  color: var(--red, #CB1939);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #CB1939;
}
header .header_block .header_nav a:hover span {
  transform: rotate(-180deg);
  margin-top: -5px;
}
@media (max-width:1045px) {
  header .header_block .header_nav a {
    font-size: 15px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  header .header_block .header_nav a {
    font-size: 12px;
  }
}
header .header_block .header_nav .services_nav {
  position: relative;
}
header .header_block .header_nav .services_nav .opened_service {
  display: none;
  transition: 0.3s all ease;
}
header .header_block .header_nav .services_nav:hover .opened_service {
  display: block;
  position: absolute;
  width: 180px;
  padding: 9px 0px 8px 17px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  top: 1;
  left: 0;
  z-index: 5;
}
header .header_block .header_nav .services_nav:hover .opened_service a {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 0;
  width: fit-content;
}
header .header_block .header_nav .services_nav:hover .opened_service a:hover {
  color: var(--red, #CB1939);
  font-family: "Steppe";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width:1210px) {
  header .header_block .header_nav {
    gap: 0 15px;
  }
}
@media (max-width:1210px) and (max-width:800px) {
  header .header_block .header_nav {
    gap: 0 6px;
  }
}
@media (max-width:1210px) and (max-width:800px) and (max-width: 580px) {
  header .header_block .header_nav {
    display: none;
  }
}
header .header_block .header_contacts {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 2px 0;
}
header .header_block .header_contacts a {
  text-decoration: none;
  color: #4F4F4F;
}
@media (max-width:1045px) {
  header .header_block .header_contacts {
    font-size: 15px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  header .header_block .header_contacts {
    font-size: 12px;
  }
}
@media (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  header .header_block .header_contacts {
    display: none;
  }
}
header .header_block .header_for_mb {
  display: none;
  margin-right: 10px;
}
@media (max-width: 580px) {
  header .header_block .header_for_mb {
    display: flex;
    gap: 0 15px;
  }
}
header .header_block .header_for_mb .contacts_inner_menu {
  display: flex;
  gap: 0 15px;
}
header .header_block .header_for_mb a {
  text-decoration: none;
}
header .header_block .header_for_mb .menu {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #FFF;
  padding: 30px 20px;
  width: 70%;
  height: 100vh;
  z-index: 10;
  display: none;
}
header .header_block .header_for_mb .menu .menu_navs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
header .header_block .header_for_mb .menu .menu_navs a {
  text-decoration: none;
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  transition: 0.3s all ease;
}
header .header_block .header_for_mb .menu .menu_navs a img {
  transition: 0.3s all ease;
}
header .header_block .header_for_mb .menu .menu_navs a:hover {
  color: var(--red, #CB1939);
  border-bottom: 1px solid #CB1939;
}
header .header_block .header_for_mb .menu .menu_navs a.clicked img {
  transform: rotate(-90deg);
}
header .header_block .header_for_mb .menu .service_menu {
  position: absolute;
  left: 20px;
  top: -550px;
  transition: 0.3s all ease;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  list-style: none;
}
header .header_block .header_for_mb .menu .service_menu.open {
  right: 0;
  top: 200px;
  left: 20px;
}
header .header_block .header_for_mb .menu .service_menu a {
  color: var(--Gray-2, #4F4F4F);
  font-family: Steppe;
  font-size: 14px;
  transition: 0.3s all ease;
}
header .header_block .header_for_mb .menu .service_menu a:hover {
  color: #CB1939;
  border-bottom: 1px solid #CB1939;
}
@media (max-width:800px) {
  header {
    position: relative;
  }
}

.hero {
  position: relative;
  padding-bottom: 265px;
}
.hero .container {
  position: relative;
}
.hero .container .yellow_star_1 {
  position: absolute;
  top: 30px;
  left: 20%;
}
@media (max-width:1045px) {
  .hero .container .yellow_star_1 {
    left: 17%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .hero .container .yellow_star_1 {
    width: 120px;
    left: 14%;
  }
}
@media (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .container .yellow_star_1 {
    width: 100px;
    top: 10px;
  }
}
.hero .container .red_star_1 {
  position: absolute;
  left: 10%;
  bottom: -270px;
}
@media (max-width:1210px) {
  .hero .container .red_star_1 {
    width: 290px;
    bottom: -220px;
  }
}
@media (max-width:1210px) and (max-width:800px) {
  .hero .container .red_star_1 {
    width: 190px;
    bottom: -140px;
    left: 7%;
  }
}
@media (max-width:1210px) and (max-width:800px) and (max-width: 580px) {
  .hero .container .red_star_1 {
    width: 160px;
    bottom: -218px;
  }
}
.hero .container .yellow_star_2 {
  position: absolute;
  bottom: -200px;
  right: 250px;
}
@media (max-width:1045px) {
  .hero .container .yellow_star_2 {
    right: 140px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .hero .container .yellow_star_2 {
    width: 100px;
    right: 70px;
    bottom: -230px;
  }
}
.hero .hero_block {
  display: flex;
  justify-content: space-between;
}
.hero .hero_block .hero_left {
  padding-top: 500px;
}
.hero .hero_block .hero_left .unique {
  color: #1E1E1E;
  font-family: Heraclito;
  font-size: 85px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_left .unique {
    font-size: 72px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_left .unique {
    font-size: 58.6px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_left .unique {
    font-size: 44.6px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_left .unique {
    font-size: 31.6px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .hero_block .hero_left .unique {
    font-size: 42.6px;
  }
}
.hero .hero_block .hero_left .performance {
  color: #CB1939;
  font-family: Chakra Petch;
  font-size: 57.5px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_left .performance {
    font-size: 49px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_left .performance {
    font-size: 39.7px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_left .performance {
    font-size: 30.5px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_left .performance {
    font-size: 21.5px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .hero_block .hero_left .performance {
    font-size: 29.1px;
  }
}
.hero .hero_block .hero_left .digital {
  color: #1E1E1E;
  font-family: Heraclito;
  font-size: 57.5px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_left .digital {
    font-size: 48.5px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_left .digital {
    font-size: 39.3px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_left .digital {
    font-size: 30.1px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_left .digital {
    font-size: 21.1px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .hero_block .hero_left .digital {
    font-size: 29.1px;
  }
}
.hero .hero_block .hero_left .marketing {
  color: #1E1E1E;
  font-family: Heraclito;
  font-size: 63px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_left .marketing {
    font-size: 53px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_left .marketing {
    font-size: 43px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_left .marketing {
    font-size: 33px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_left .marketing {
    font-size: 23px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .hero_block .hero_left .marketing {
    font-size: 32px;
  }
}
@media (max-width:1340px) {
  .hero .hero_block .hero_left {
    padding-top: 440px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_left {
    padding-top: 353px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_left {
    padding-top: 305px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_left {
    padding-top: 195px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .hero_block .hero_left {
    width: 100%;
    padding-top: 98px;
  }
}
.hero .hero_block .hero_right {
  padding-top: 245px;
  position: relative;
}
.hero .hero_block .hero_right .hero_women {
  position: relative;
}
.hero .hero_block .hero_right .hero_women > div {
  z-index: 100;
}
.hero .hero_block .hero_right .hero_women img {
  position: relative;
  z-index: 50;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_right .hero_women img {
    width: 430px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_right .hero_women img {
    width: 390px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_right .hero_women img {
    width: 350px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_right .hero_women img {
    width: 250px;
  }
}
.hero .hero_block .hero_right .hero_women .women_name {
  padding: 22px 60px 25px 42px;
  border-radius: 20px;
  background: #EBEBEB;
  color: #1E1E1E;
  font-family: "Steppe";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: -60px;
  right: -30px;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_right .hero_women .women_name {
    font-size: 32px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_right .hero_women .women_name {
    padding: 18px 48px 18px 39px;
    font-size: 26px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_right .hero_women .women_name {
    padding: 14px 35px 14px 35px;
    font-size: 21px;
    top: -40px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_right .hero_women .women_name {
    font-size: 18px;
    padding: 12px 29px 12px 29px;
  }
}
.hero .hero_block .hero_right .hero_women .expert {
  position: absolute;
  padding: 26px 13px 17px 29px;
  color: #FFF;
  font-family: "Steppe";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  bottom: 130px;
  left: -180px;
  border-radius: 20px;
  background: #CB1939;
}
@media (max-width:1340px) {
  .hero .hero_block .hero_right .hero_women .expert {
    padding: 24px 13px 17px 22px;
    left: -160px;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .hero .hero_block .hero_right .hero_women .expert {
    left: -147px;
    font-size: 22px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_right .hero_women .expert {
    left: -115px;
    font-size: 18px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_right .hero_women .expert {
    font-size: 16px;
    left: -100px;
    padding: 12px 11px 12px 15px;
    bottom: 90px;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .hero_block .hero_right .hero_women .expert {
    left: -75px;
  }
}
.hero .hero_block .hero_right .hero_women .author {
  color: #1E1E1E;
  font-family: Steppe;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 40px 18px 33px;
  border-radius: 20px;
  background: #EBEBEB;
  position: absolute;
  bottom: 50px;
  left: -50px;
}
@media (max-width:1210px) {
  .hero .hero_block .hero_right .hero_women .author {
    font-size: 22px;
    left: -39px;
    padding: 12px 34px 16px 29px;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_right .hero_women .author {
    font-size: 18px;
    left: -29px;
    padding: 12px 34px 16px 29px;
    bottom: 62px;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_right .hero_women .author {
    font-size: 16px;
    left: -29px;
    padding: 10px 28px 10px 29px;
    bottom: 35px;
  }
}
.hero .hero_block .hero_right .hero_women .new_market {
  position: absolute;
  color: #FFF;
  font-family: "Steppe";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 24px 35px;
  border-radius: 20px;
  background: #CB1939;
  bottom: -56px;
  right: -64px;
  z-index: 100;
}
@media (max-width:1210px) {
  .hero .hero_block .hero_right .hero_women .new_market {
    font-size: 22px;
    padding: 18px 25px;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .hero .hero_block .hero_right .hero_women .new_market {
    font-size: 18px;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .hero_block .hero_right .hero_women .new_market {
    font-size: 16px;
    padding: 12px 18px;
    bottom: -36px;
    right: -31px;
  }
}
@media (max-width:1045px) {
  .hero .hero_block .hero_right {
    padding-top: 200px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .hero .hero_block .hero_right {
    padding-top: 120px;
  }
}
@media (max-width: 580px) {
  .hero .hero_block {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero .red_star_2 {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
}
@media (max-width:1210px) {
  .hero .red_star_2 {
    width: 850px;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .hero .red_star_2 {
    width: 676px;
    top: -72px;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .hero .red_star_2 {
    width: 522px;
    top: -28px;
    right: -26px;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .hero .red_star_2 {
    width: 561px;
    top: 261px;
    right: -149px;
    transform: rotate(52deg);
  }
}

.services {
  margin: 40px 0 70px 0;
}
.services .about_service {
  color: #4F4F4F;
  text-align: center;
  font-family: "HeraclitoMedium";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  padding-bottom: 90px;
  position: relative;
}
.services .about_service::before {
  content: "";
  position: absolute;
  width: 70%;
  top: 0;
  left: 0;
  right: 0;
  bottom: -80px;
  margin: auto;
  height: 1px;
  background-color: #ECD31F;
}
@media (max-width: 580px) {
  .services .about_service::before {
    bottom: -185px;
  }
}
@media (max-width:1045px) {
  .services .about_service {
    font-size: 24px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .services .about_service {
    font-size: 19px;
    padding-bottom: 60px;
  }
}
.services .service_block {
  margin-top: 30px;
  display: flex;
  gap: 58px 56px;
  flex-wrap: wrap;
}
.services .service_block .service_item {
  width: 29%;
  position: relative;
}
.services .service_block .service_item .service_card {
  height: 314px;
  border-radius: 10px;
  background: rgba(201, 201, 201, 0.8);
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 23px 89px 0 21px;
  margin-right: 26px;
  position: relative;
  overflow: hidden;
}
.services .service_block .service_item .service_card .service_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media (max-width:1045px) {
  .services .service_block .service_item .service_card .service_name {
    font-size: 19px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .services .service_block .service_item .service_card .service_name {
    font-size: 25px;
  }
}
.services .service_block .service_item .service_card .service_description {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 17px;
}
.services .service_block .service_item .service_card .service_description .medium {
  display: none;
}
@media (max-width:1340px) {
  .services .service_block .service_item .service_card .service_description .medium {
    display: block;
  }
}
@media (max-width:1045px) {
  .services .service_block .service_item .service_card .service_description {
    font-size: 15px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .services .service_block .service_item .service_card .service_description {
    font-size: 17px;
  }
}
@media (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .services .service_block .service_item .service_card .service_description {
    font-size: 16px;
  }
}
.services .service_block .service_item .service_card br {
  display: none;
}
@media (max-width:1500px) {
  .services .service_block .service_item .service_card {
    padding: 23px 41px 0 21px;
  }
}
@media (max-width:1500px) and (max-width:1340px) {
  .services .service_block .service_item .service_card {
    padding: 23px 28px 0 10px;
  }
}
@media (max-width:1500px) and (max-width:1340px) and (max-width:1210px) {
  .services .service_block .service_item .service_card {
    padding: 23px 89px 0 21px;
  }
}
@media (max-width:1500px) and (max-width:1340px) and (max-width:1210px) and (max-width: 580px) {
  .services .service_block .service_item .service_card {
    padding-top: 10px;
    padding-left: 7px;
    padding-right: 19px;
    height: 295px;
    margin-right: 0;
  }
}
@media (max-width:1500px) {
  .services .service_block .service_item .service_card br {
    display: block;
  }
}
.services .service_block .service_item .animated_ellipse {
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: 2;
}
@media (max-width: 580px) {
  .services .service_block .service_item .animated_ellipse {
    width: 81px;
    right: -5px;
  }
}
@media (max-width: 580px) {
  .services .service_block .service_item .animated_ellipse .ellipse_text {
    width: 81px;
    top: -2px;
  }
}
.services .service_block .service_item::before {
  position: absolute;
  content: "";
  width: 175px;
  height: 175px;
  background-color: #fff;
  border-radius: 50%;
  bottom: -55px;
  right: -40px;
  z-index: 2;
}
@media (max-width: 580px) {
  .services .service_block .service_item::before {
    width: 135px;
    height: 133px;
    bottom: -47px;
    right: -46px;
  }
}
.services .service_block .service_item::after {
  position: absolute;
  content: "";
  width: 166px;
  height: 165px;
  background-color: #fff;
  border-radius: 50%;
  bottom: -40px;
  right: -22px;
  z-index: 1;
  box-shadow: inset 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
}
@media (max-width: 580px) {
  .services .service_block .service_item::after {
    width: 131px;
    height: 131px;
    right: -38px;
  }
}
@media (max-width:1340px) {
  .services .service_block .service_item {
    width: 30%;
  }
}
@media (max-width:1340px) and (max-width:1210px) {
  .services .service_block .service_item {
    width: 47%;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) {
  .services .service_block .service_item {
    width: 46%;
  }
}
@media (max-width:1340px) and (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .services .service_block .service_item {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .services .service_block {
    gap: 52px 0;
  }
}
.services .animation_text {
  background: var(--GRAD-YL, linear-gradient(180deg, #ECD31F 0%, rgba(236, 211, 31, 0.4) 100%));
  margin-top: 70px;
  padding: 33px 0;
  gap: 0 30px;
  display: flex;
  width: max-content;
}
.services .animation_text .animated_block {
  display: flex;
  animation: textLinearTransition 30s linear infinite;
}
.services .animation_text .animated_block .animation_item {
  display: flex;
  gap: 0 22px;
  color: var(--GREY, #4F4F4F);
  font-family: Heraclito;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.services .animation_text .animated_block .animation_item .main_text {
  font-family: "HeraclitoMedium";
}
@media (max-width: 580px) {
  .services .animation_text .animated_block .animation_item {
    font-size: 17px;
  }
}
@keyframes textLinearTransition {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 9px));
  }
}
@media (max-width: 580px) {
  .services .animation_text {
    margin-top: 55px;
  }
}
@media (max-width: 580px) {
  .services {
    margin-top: 30px;
  }
}

.advantages.service {
  padding-bottom: 65px;
}
.advantages .section_title {
  text-align: right;
}
@media (max-width:1045px) {
  .advantages .section_title {
    text-align: center;
  }
}
.advantages .advantage_block {
  margin-top: 63px;
  display: flex;
  gap: 0 50px;
}
.advantages .advantage_block .advantage_item {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(236, 211, 31, 0.48) 0%, #F7DDC6 50%, rgba(205, 13, 10, 0) 100%);
  background-size: cover;
  text-align: center;
  width: 21%;
  padding-top: 26px;
  padding: 26px 10px 0 10px;
  transition: 1s all ease;
}
.advantages .advantage_block .advantage_item.even {
  margin-top: 33px;
}
.advantages .advantage_block .advantage_item .advantage_logo {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #CB1939;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.advantages .advantage_block .advantage_item .advantage_name {
  color: var(--GREY, #4F4F4F);
  text-align: center;
  font-family: "HeraclitoMedium";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 14px;
  padding-bottom: 20px;
  position: relative;
}
.advantages .advantage_block .advantage_item .advantage_name::before {
  content: "";
  height: 1px;
  background-color: #CD0D0A;
  position: absolute;
  width: 141px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width:1045px) {
  .advantages .advantage_block .advantage_item .advantage_name {
    font-size: 20px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .advantages .advantage_block .advantage_item .advantage_name {
    font-size: 25px;
  }
}
.advantages .advantage_block .advantage_item .advantage_description {
  margin-top: 20px;
  height: 126px;
  color: var(--Gray-2, #4F4F4F);
  text-align: center;
  font-family: "Steppe";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width:1045px) {
  .advantages .advantage_block .advantage_item .advantage_description {
    font-size: 16px;
  }
}
.advantages .advantage_block .advantage_item:hover {
  transform: scale(1.1);
}
@media (max-width:1045px) {
  .advantages .advantage_block .advantage_item {
    width: 28%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .advantages .advantage_block .advantage_item {
    width: 44%;
  }
}
@media (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .advantages .advantage_block .advantage_item {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .advantages .advantage_block {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.company {
  margin-top: 100px;
}
.company .about_company {
  background: var(--lin-black, linear-gradient(180deg, #2D2D2D 0%, rgba(73, 72, 72, 0) 100%));
  color: #FFF;
  padding-bottom: 60px;
  position: relative;
}
.company .about_company .company_block {
  display: flex;
  justify-content: space-between;
}
.company .about_company .company_block .block_left {
  width: 50%;
}
.company .about_company .company_block .block_left .block_name {
  margin-top: 50px;
  font-family: "HeraclitoMedium";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
@media (max-width:1045px) {
  .company .about_company .company_block .block_left .block_name {
    font-size: 50px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .company .about_company .company_block .block_left .block_name {
    font-size: 30px;
    text-align: center;
    margin-top: 35px;
  }
}
.company .about_company .company_block .block_left .block_texts {
  margin-top: 105px;
  font-family: "Steppe";
  font-size: 25px;
  font-style: normal;
  line-height: normal;
}
@media (max-width:1045px) {
  .company .about_company .company_block .block_left .block_texts {
    font-size: 18px;
    margin-top: 60px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .company .about_company .company_block .block_left .block_texts {
    margin-top: 23px;
  }
}
@media (max-width:800px) {
  .company .about_company .company_block .block_left {
    width: 100%;
  }
}
.company .about_company .company_block .block_right {
  width: 40%;
}
.company .about_company .company_block .block_right .about_us {
  margin-top: 128px;
  font-family: "HeraclitoMedium";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width:1045px) {
  .company .about_company .company_block .block_right .about_us {
    margin-top: 90px;
    font-size: 25px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .company .about_company .company_block .block_right .about_us {
    margin-top: 25px;
    text-align: center;
  }
}
.company .about_company .company_block .block_right ul {
  margin-top: 31px;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
.company .about_company .company_block .block_right ul li {
  display: flex;
  align-items: baseline;
  gap: 0 7px;
  font-family: "Steppe";
  font-size: 20px;
  font-style: normal;
  line-height: normal;
}
@media (max-width:1045px) {
  .company .about_company .company_block .block_right ul li {
    font-size: 16px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .company .about_company .company_block .block_right ul li {
    font-size: 15px;
  }
}
@media (max-width: 580px) {
  .company .about_company .company_block .block_right ul li img {
    width: 8px;
  }
}
@media (max-width: 580px) {
  .company .about_company .company_block .block_right ul {
    gap: 15px 0;
    margin-top: 24px;
  }
}
@media (max-width:1045px) {
  .company .about_company .company_block .block_right {
    width: 45%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .company .about_company .company_block .block_right {
    width: 100%;
  }
}
@media (max-width:800px) {
  .company .about_company .company_block {
    flex-wrap: wrap;
  }
}
.company .about_company video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 580px) {
  .company .about_company {
    padding-bottom: 40px;
  }
}
.company .partners {
  background: var(--grey, #E3E3E3);
  padding: 50px 0 71px 0;
}
.company .partners .section_title {
  text-align: end;
}
@media (max-width: 580px) {
  .company .partners .section_title {
    text-align: center;
  }
}
.company .partners .companies {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}
.company .partners .companies img {
  max-width: 200px;
}
@media (max-width:800px) {
  .company .partners .companies {
    display: none;
  }
}
.company .partners .partner_mb {
  display: none;
  position: relative;
}
@media (max-width:800px) {
  .company .partners .partner_mb {
    display: block;
  }
}
.company .partners .partner_mb .swiper-wrapper {
  align-items: center;
}
.company .partners .partner_mb .swiper-wrapper img {
  max-width: 222px !important;
}
@media (max-width: 580px) {
  .company .partners .partner_mb .swiper-wrapper img.tencent {
    width: 146px;
    margin-top: 15px !important;
  }
}
@media (max-width: 580px) {
  .company .partners .partner_mb .swiper-wrapper img.baidu {
    width: 140px;
  }
}
@media (max-width: 580px) {
  .company .partners .partner_mb .swiper-wrapper img.wiebo {
    width: 117px;
  }
}
@media (max-width: 580px) {
  .company .partners .partner_mb .swiper-wrapper img.byte_dance {
    width: 162px;
    margin-top: 15px !important;
  }
}
.company .partners .partner_mb .partners_pagination {
  bottom: -30px;
}
.company .partners .partner_mb .partners_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #FFF;
}
.company .partners .partner_mb .partners_pagination .swiper-pagination-bullet-active-next {
  transform: scale(1);
  background-color: #fff;
  opacity: 0.6;
}
.company .partners .partner_mb .partners_pagination .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.company .partners .partner_mb .partners_pagination .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}
@media (max-width: 580px) {
  .company .partners {
    padding-top: 33px;
  }
}

.cases {
  margin-top: 50px;
}
.cases.service {
  margin-bottom: 150px;
}
@media (max-width:800px) {
  .cases.service {
    margin-bottom: 50px;
  }
}
.cases .case_block {
  display: flex;
  flex-wrap: wrap;
}
.cases .case_block.first {
  margin-top: 75px;
  justify-content: center;
  gap: 0 34px;
}
@media (max-width:1045px) {
  .cases .case_block.first {
    gap: 20px 34px;
  }
}
.cases .case_block.second {
  margin-top: 40px;
  justify-content: space-between;
}
.cases .case_block .case_card {
  width: 23%;
  border-radius: 15px;
  background: var(--white, #FFF);
  box-shadow: 0px 4px 4px 0px rgba(255, 37, 34, 0.2);
  padding: 0 8.5px 10px 27px;
}
.cases .case_block .case_card .case_logo {
  height: 123px;
  text-align: center;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
}
.cases .case_block .case_card .case_text {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 24px;
  min-height: 218px;
}
.cases .case_block .case_card .case_text span {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width:1210px) {
  .cases .case_block .case_card {
    width: 26%;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .cases .case_block .case_card {
    width: 40%;
  }
}
@media (max-width:1210px) {
  .cases .case_block {
    justify-content: center !important;
    gap: 30px;
  }
}
@media (max-width:1210px) and (max-width:800px) {
  .cases .case_block {
    display: none;
  }
}
.cases .for_mobile {
  display: none;
  margin-top: 30px;
  position: relative;
}
@media (max-width:800px) {
  .cases .for_mobile {
    display: block;
  }
}
.cases .for_mobile .case_swiper {
  padding-bottom: 50px;
}
.cases .for_mobile .case_card {
  border-radius: 15px;
  background: var(--white, #FFF);
  box-shadow: 0px 4px 4px 0px rgba(255, 37, 34, 0.2);
  width: 90%;
  margin: 0 auto;
  padding: 30px 8.5px 10px 27px;
  min-height: 310px;
}
.cases .for_mobile .case_card .case_logo {
  height: 123px;
  text-align: center;
  margin: auto;
}
.cases .for_mobile .case_card .case_text {
  color: var(--GREY, #4F4F4F);
  font-family: Steppe;
  font-size: 20px;
}
.cases .for_mobile .case_card .case_text span {
  font-family: "HeraclitoMedium";
}
.cases .for_mobile .case_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.cases .for_mobile .case_pagination .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.cases .for_mobile .case_pagination .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.cases .for_mobile .case_pagination .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}

.form {
  margin-top: 140px;
  background: var(--line-black, linear-gradient(95deg, #2D2D2D 5.12%, rgba(48, 48, 48, 0.71) 61.83%, rgba(73, 72, 72, 0) 93.6%)), url(../images/form_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
}
.form.services {
  margin-top: 50px;
  background: var(--line-black, linear-gradient(95deg, #2D2D2D 5.12%, rgba(48, 48, 48, 0.71) 61.83%, rgba(73, 72, 72, 0) 93.6%)), url(../images/form_bg_services.jpg);
  background-size: cover;
}
.form.services textarea {
  height: 84px;
}
.form.services .icon_form {
  bottom: 40%;
}
@media (max-width:1045px) {
  .form.services .icon_form {
    right: 90px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .form.services .icon_form {
    right: 0;
    bottom: 50px;
  }
}
@media (max-width: 580px) {
  .form.services {
    margin-top: 0;
  }
}
.form.last {
  margin-bottom: 0;
}
.form .form_title {
  color: #FFF;
  font-family: "HeraclitoRegular";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 580px) {
  .form .form_title {
    font-size: 18px;
    text-align: center;
  }
}
.form form {
  max-width: 576px;
  margin-top: 40px;
}
.form form input {
  border-radius: 5px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(203, 25, 57, 0.5), 0px 4px 4px 0px rgba(203, 25, 57, 0.25) inset;
  padding: 16px 14px 4px 14px;
  width: 100%;
  margin-top: 15px;
  height: 40px;
  font-size: 24px;
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form form textarea {
  border-radius: 5px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(203, 25, 57, 0.5), 0px 4px 4px 0px rgba(203, 25, 57, 0.25) inset;
  height: 147px;
  width: 100%;
  margin-top: 15px;
  padding: 8px 12px;
  font-size: 24px;
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form form .checkbox {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  color: #FFF;
  font-family: "Steppe";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form form .checkbox input {
  margin-top: 0;
  height: 23px;
  width: 23px;
}
.form form .checkbox input:checked ~ .chekmark {
  background-image: url(../images/checkied.svg);
  background-size: cover;
  border-radius: 4px;
  border: 1px solid var(--red, #CB1939);
  background-color: #CB1939;
}
.form form .checkbox input ~ .chekmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 23px;
  border-radius: 4px;
  border: 1px solid var(--red, #FFF);
  background-color: #fff;
  cursor: pointer;
}
.form form .checkbox a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
@media (max-width: 580px) {
  .form form .checkbox {
    font-size: 10px;
  }
}
.form form .red_button {
  margin-top: 35px;
  border-radius: 10px;
  background-color: #FF2522;
  color: #FFF;
  font-family: "Steppe";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 14px 17px;
  border: none;
  cursor: pointer;
  transition: 0.9s all ease;
}
@media (max-width:800px) {
  .form form .red_button {
    margin-left: calc(50% - 80px);
  }
}
@media (max-width: 580px) {
  .form form {
    margin-top: 28px;
  }
}
.form .icon_form {
  position: absolute;
  right: 192px;
  bottom: 72px;
  transition: 0.7s all ease;
}
.form .icon_form:hover {
  transform: scale(1.1);
}
@media (max-width:800px) {
  .form .icon_form {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 50px;
  }
}
@media (max-width:800px) {
  .form {
    padding-bottom: 200px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .form {
    margin-top: 60px;
    padding-top: 40px;
  }
}

footer {
  background: linear-gradient(1deg, #CB1939 44.31%, #FF2522 99.36%);
  color: #fff;
  font-family: "Steppe";
  padding-top: 7px;
  padding-bottom: 15px;
  position: relative;
}
footer .container {
  position: relative;
}
footer .footer_block {
  display: flex;
  min-height: 310px;
}
footer .footer_block .footer_mini_block_name {
  color: #FFF;
  font-family: "HeraclitoRegular";
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 18px;
}
@media (max-width: 580px) {
  footer .footer_block .footer_mini_block_name {
    font-size: 18px;
  }
}
footer .footer_block .footer_about {
  padding-right: 21px;
}
footer .footer_block .footer_about .text {
  margin-top: 13px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 580px) {
  footer .footer_block .footer_about .text {
    font-size: 14px;
  }
  footer .footer_block .footer_about .text br {
    display: none;
  }
}
footer .footer_block .footer_about .consultation {
  margin-top: 17px;
  display: inline-block;
  border-radius: 10px;
  background: var(--white, #FAFAFA);
  color: #e294a3;
  text-decoration: none;
  padding: 15px 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s all ease;
}
footer .footer_block .footer_about .consultation:hover {
  background-color: #fff;
  color: var(--red, #CB1939);
}
@media (max-width: 580px) {
  footer .footer_block .footer_about .consultation {
    margin-top: 12px;
  }
}
footer .footer_block .footer_about .text_2 {
  margin-top: 22px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 580px) {
  footer .footer_block .footer_about .text_2 {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media (max-width:1500px) {
  footer .footer_block .footer_about {
    padding-right: 6px;
  }
}
@media (max-width:1500px) and (max-width:1210px) {
  footer .footer_block .footer_about {
    padding-right: 50px;
  }
}
@media (max-width:1500px) and (max-width:1210px) and (max-width:800px) {
  footer .footer_block .footer_about {
    width: 100%;
    padding-bottom: 15px;
  }
}
footer .footer_block .footer_services {
  border-left: 1px solid #fff;
  padding: 0 21px;
}
footer .footer_block .footer_services .footer_nav_services {
  display: flex;
  margin-top: 13px;
}
footer .footer_block .footer_services .footer_nav_services ul {
  font-size: 16px;
  width: 176px;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  font-size: 16px;
  font-style: normal;
  list-style: none;
}
footer .footer_block .footer_services .footer_nav_services ul a {
  text-decoration: none;
  color: #fff;
}
@media (max-width:1500px) {
  footer .footer_block .footer_services .footer_nav_services ul {
    width: 166px;
  }
}
@media (max-width:1500px) and (max-width: 580px) {
  footer .footer_block .footer_services .footer_nav_services ul {
    font-size: 14px;
    width: -webkit-fill-available;
  }
}
@media (max-width:1210px) {
  footer .footer_block .footer_services {
    padding-left: 50px;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  footer .footer_block .footer_services {
    padding: 0;
    border: none;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  footer .footer_block .footer_services {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-bottom: 15px;
  }
}
footer .footer_block .footer_contacts {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #fff;
  padding: 0 34px 0 21px;
}
footer .footer_block .footer_contacts .footer_mini_block_name {
  padding-bottom: 6px;
}
footer .footer_block .footer_contacts a {
  margin-top: 7px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  display: flex;
  gap: 0 9px;
}
@media (max-width: 580px) {
  footer .footer_block .footer_contacts a {
    font-size: 14px;
  }
}
footer .footer_block .footer_contacts .address {
  margin-top: 15px;
  font-size: 15px;
}
@media (max-width:1210px) {
  footer .footer_block .footer_contacts {
    border: none;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  footer .footer_block .footer_contacts {
    padding-left: 0;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  footer .footer_block .footer_contacts {
    width: 100%;
  }
}
footer .footer_block .footer_map {
  margin-top: 18px;
}
footer .footer_block .footer_map div {
  width: 290px;
  height: 235px;
  border-radius: 15px;
}
@media (max-width: 580px) {
  footer .footer_block .footer_map div {
    height: 100px;
  }
}
@media (max-width:800px) {
  footer .footer_block .footer_map {
    width: 100%;
  }
}
@media (max-width:1210px) {
  footer .footer_block {
    flex-wrap: wrap;
  }
}
footer .footer_bottoom {
  display: flex;
  gap: 0 14px;
  align-items: center;
  margin-top: 36px;
  font-size: 15px;
}
@media (max-width: 580px) {
  footer .footer_bottoom {
    flex-direction: column;
    align-items: baseline;
  }
  footer .footer_bottoom img {
    width: 118px;
  }
}
footer .button_up {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width:1210px) {
  footer .button_up {
    bottom: 150px;
    right: 200px;
  }
}
@media (max-width:1045px) {
  footer .button_up {
    bottom: 150px;
    right: 50px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  footer .button_up {
    bottom: 350px;
  }
}
@media (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  footer .button_up {
    right: 20px;
    bottom: 290px;
  }
}

.service_hero {
  padding-top: 120px;
  padding-bottom: 35px;
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_1_bg.jpg), no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.service_hero.second {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_2.jpg);
  background-size: cover;
  background-position: center;
}
.service_hero.third {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_3_bg.jpg);
  background-position-y: -90px;
}
@media (max-width:800px) {
  .service_hero.third {
    background-position: center;
    background-size: cover;
  }
}
.service_hero.fourth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_4_bg.jpg);
}
@media (max-width:800px) {
  .service_hero.fourth {
    background-position: center;
    background-size: cover;
  }
}
.service_hero.fifth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_5_bg.jpg);
  background-position: center;
  background-size: cover;
}
.service_hero.sixth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_6_bg.jpg);
  background-size: cover;
  background-position: center;
}
.service_hero.seventh {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_7_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.service_hero.eighth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_8_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service_hero.ninth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_9_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.service_hero.tenth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_10_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.service_hero.eleventh {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_11_bg.jpg);
  background-position: center;
  background-size: cover;
}
.service_hero.twelfth {
  background: linear-gradient(95deg, #950E26 2.85%, rgba(203, 25, 57, 0.4) 96.04%), url(../images/service_12_bg.jpg);
  background-size: cover;
  background-position: center;
}
.service_hero .service_name {
  font-family: "HeraclitoRegular";
  font-size: 90px;
  font-style: normal;
  color: #fff;
}
@media (max-width:800px) {
  .service_hero .service_name {
    font-size: 75px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .service_hero .service_name {
    font-size: 35px;
  }
}
.service_hero .big_text {
  font-family: "HeraclitoRegular";
  color: #FFF;
  font-size: 50px;
}
@media (max-width: 580px) {
  .service_hero .big_text {
    font-size: 18px;
  }
}
.service_hero .service_text {
  color: #FFF;
  font-family: "HeraclitoRegular";
  margin-top: 40px;
  font-size: 32px;
}
@media (max-width: 580px) {
  .service_hero .service_text {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_hero .service_tex_2 {
  margin-top: 30px;
  color: #FFF;
  font-family: "Steppe";
  font-size: 25px;
}
@media (max-width:1340px) {
  .service_hero .service_tex_2 br {
    display: none;
  }
}
@media (max-width:1340px) and (max-width: 580px) {
  .service_hero .service_tex_2 {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_hero .mini_text {
  color: #FFF;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 40px;
}
@media (max-width:1340px) {
  .service_hero .mini_text br {
    display: none;
  }
}
@media (max-width:1340px) and (max-width: 580px) {
  .service_hero .mini_text {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_hero .service_description {
  margin-top: 40px;
  font-family: "Steppe";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  margin-bottom: 13px;
}
@media (max-width:800px) {
  .service_hero .service_description {
    font-size: 25px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .service_hero .service_description {
    display: none;
  }
  .service_hero .service_description.save {
    display: block;
    font-size: 16px;
  }
  .service_hero .service_description.save br {
    display: none;
  }
}
.service_hero .block_description {
  display: none;
  color: #FFF;
  font-family: Steppe;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 580px) {
  .service_hero .block_description {
    display: block;
  }
}
.service_hero .animated_ellipse {
  width: 177px;
  margin: 0 auto;
}
.service_hero .animated_ellipse .ellipse_text {
  width: 190px;
  left: -6px;
  bottom: 3px;
}
@media (max-width:800px) {
  .service_hero .animated_ellipse .ellipse_text {
    width: 152px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .service_hero .animated_ellipse .ellipse_text {
    width: 112px;
    right: 0;
    top: 0;
  }
}
@media (max-width:800px) {
  .service_hero .animated_ellipse {
    width: 137px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .service_hero .animated_ellipse {
    width: 100px;
  }
}
@media (max-width: 580px) {
  .service_hero {
    padding-top: 25px;
  }
}

.platform_numbers .platform_block {
  display: flex;
  justify-content: space-between;
}
.platform_numbers .platform_block .platform_left {
  width: 58%;
  margin-top: 63px;
}
.platform_numbers .platform_block .platform_left .section_title {
  display: flex;
  align-items: center;
}
.platform_numbers .platform_block .platform_left .block_description {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  line-height: normal;
  margin-top: 30px;
}
.platform_numbers .platform_block .platform_left .block_description span {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
.platform_numbers .platform_block .platform_left .block_description span.second {
  font-size: 20px;
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_left .block_description span.second {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_left .block_description {
    font-size: 16px;
    margin-top: 15px;
  }
}
.platform_numbers .platform_block .platform_left .row {
  display: flex;
  margin-left: 90px;
  gap: 0 40px;
  margin-top: 20px;
}
@media (max-width:1210px) {
  .platform_numbers .platform_block .platform_left .row {
    margin-left: 0;
    gap: 0 30px;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .platform_numbers .platform_block .platform_left .row {
    justify-content: center;
  }
}
.platform_numbers .platform_block .platform_left .main_text {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
.platform_numbers .platform_block .platform_left .main_text .laptop {
  display: none;
}
@media (max-width:1500px) {
  .platform_numbers .platform_block .platform_left .main_text .laptop {
    display: block;
  }
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_left .main_text {
    font-size: 25px;
    text-align: center;
  }
}
.platform_numbers .platform_block .platform_left .red_text {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 40px;
  margin-top: 50px;
}
.platform_numbers .platform_block .platform_left .red_text span {
  color: var(--GREY, #4F4F4F);
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_left .red_text {
    font-size: 30px;
  }
}
@media (max-width:1210px) {
  .platform_numbers .platform_block .platform_left.douyin {
    width: 44%;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .platform_numbers .platform_block .platform_left.douyin {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width: 580px) {
  .platform_numbers .platform_block .platform_left.douyin {
    display: none;
  }
}
@media (max-width:1045px) {
  .platform_numbers .platform_block .platform_left {
    width: 100%;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .platform_numbers .platform_block .platform_left {
    display: none;
  }
  .platform_numbers .platform_block .platform_left.save {
    display: block;
  }
}
.platform_numbers .platform_block .platform_right {
  margin-top: 50px;
  width: 590px;
  overflow: hidden;
}
.platform_numbers .platform_block .platform_right .block_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.platform_numbers .platform_block .platform_right .block_name.end {
  text-align: end;
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_right .block_name.end {
    text-align: center;
  }
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_right .block_name {
    font-size: 20px;
    text-align: center !important;
  }
}
.platform_numbers .platform_block .platform_right .block_card_numbers {
  display: flex;
  gap: 0 18px;
  margin-top: 55px;
  justify-content: end;
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(236, 211, 31, 0.48) 0%, #F7DECB 50%, rgba(205, 13, 10, 0) 100%);
  background-size: cover;
  padding: 14px 12px 25px 12px;
  text-align: center;
  width: 180px;
  height: -webkit-min-content;
  display: inline-block;
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item.first {
  position: relative;
  animation-name: example_1;
  animation-duration: 0.3s;
  left: 0;
  z-index: 3;
}
@keyframes example_1 {
  0% {
    left: -200px;
    top: 0px;
    opacity: -1;
  }
  100% {
    left: 0;
    top: 0;
    position: relative;
  }
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item.middle {
  margin-top: 20px;
  position: relative;
  animation-name: example_2;
  animation-duration: 3s;
  z-index: 2;
}
@keyframes example_2 {
  0% {
    left: -800px;
    top: 0px;
  }
  100% {
    left: 0px;
    top: 0;
  }
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item.last {
  animation-name: example_3;
  position: relative;
  animation-duration: 8s;
  z-index: 1;
}
@keyframes example_3 {
  0% {
    left: -1000px;
    top: 0px;
  }
  100% {
    left: 0;
    top: 0;
  }
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item .card_name {
  color: var(--red, #CB1939);
  text-align: center;
  font-family: "HeraclitoMedium";
  font-size: 25px;
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item .card_text {
  color: var(--Gray-2, #4F4F4F);
  text-align: center;
  font-family: "Steppe";
  font-size: 17px;
  margin-top: 23px;
}
.platform_numbers .platform_block .platform_right .block_card_numbers .card_item .card_text span {
  color: #CB1939;
  font-family: "HeraclitoMedium";
}
@media (max-width: 580px) {
  .platform_numbers .platform_block .platform_right .block_card_numbers .card_item {
    margin: auto;
  }
}
@media (max-width:1045px) {
  .platform_numbers .platform_block .platform_right .block_card_numbers {
    justify-content: center;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .platform_numbers .platform_block .platform_right .block_card_numbers {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }
}
@media (max-width:1045px) {
  .platform_numbers .platform_block .platform_right {
    width: 100%;
    text-align: center;
  }
}
@media (max-width:1045px) {
  .platform_numbers .platform_block {
    flex-wrap: wrap;
  }
  .platform_numbers .platform_block.reverse {
    flex-wrap: wrap-reverse;
  }
}

.possibilities {
  margin-top: 50px;
  background: rgba(221, 221, 221, 0.8);
  padding: 50px 0;
}
.possibilities .block_title {
  text-align: right;
}
@media (max-width: 580px) {
  .possibilities .block_title {
    text-align: start;
  }
}
.possibilities .posibilities_cards {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
.possibilities .posibilities_cards .card_item {
  width: calc(33% - 33px);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 20px 24px 17px 27px;
  min-height: 314px;
}
.possibilities .posibilities_cards .card_item .card_top {
  display: flex;
  gap: 0 40px;
  padding-bottom: 20px;
  position: relative;
  align-items: baseline;
}
.possibilities .posibilities_cards .card_item .card_top .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
.possibilities .posibilities_cards .card_item .card_top .card_name {
  color: var(--Gray-2, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
}
@media (max-width:1210px) {
  .possibilities .posibilities_cards .card_item .card_top .card_name {
    font-size: 20px;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .possibilities .posibilities_cards .card_item .card_top .card_name {
    font-size: 22px;
  }
}
.possibilities .posibilities_cards .card_item .card_top::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 251px;
  bottom: 0;
  left: 0;
  background-color: #CB1939;
}
@media (max-width: 580px) {
  .possibilities .posibilities_cards .card_item .card_top::before {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .possibilities .posibilities_cards .card_item .card_top {
    gap: 0 20px;
  }
}
.possibilities .posibilities_cards .card_item .card_description {
  margin-top: 15px;
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 15px;
}
@media (max-width:1210px) {
  .possibilities .posibilities_cards .card_item {
    padding: 20px 20px 17px 20px;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .possibilities .posibilities_cards .card_item {
    width: calc(50% - 25px);
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .possibilities .posibilities_cards .card_item {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .possibilities .posibilities_cards {
    margin-top: 25px;
    gap: 15px 0;
  }
}
@media (max-width: 580px) {
  .possibilities {
    padding-top: 15px;
  }
}

.example_1 {
  margin-top: 24px;
}
.example_1 .row {
  display: flex;
  justify-content: center;
  gap: 0 100px;
  align-items: center;
}
@media (max-width:800px) {
  .example_1 .row {
    display: none;
  }
}
.example_1 .text {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
}
.example_1 .example_1_mb {
  display: none;
}
.example_1 .example_1_mb .example_swiper {
  text-align: center;
  padding-bottom: 40px;
}
@media (max-width:800px) {
  .example_1 .example_1_mb {
    display: block;
    position: relative;
  }
}
@media (max-width: 580px) {
  .example_1 .example_1_mb img {
    width: 132px;
  }
}
.example_1 .example_1_mb .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.example_1 .example_1_mb .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.example_1 .example_1_mb .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.example_1 .example_1_mb .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}
.example_1 .example_1_2_mb {
  display: none;
}
.example_1 .example_1_2_mb .example_2_swiper {
  text-align: center;
  padding-bottom: 40px;
}
@media (max-width: 580px) {
  .example_1 .example_1_2_mb img {
    width: 132px;
  }
}
@media (max-width:800px) {
  .example_1 .example_1_2_mb {
    display: block;
    position: relative;
  }
}
.example_1 .example_1_2_mb .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.example_1 .example_1_2_mb .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.example_1 .example_1_2_mb .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.example_1 .example_1_2_mb .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}

.business {
  margin-top: 60px;
}
.business .row {
  display: flex;
  gap: 0 110px;
}
.business .row .block_left {
  max-width: 741px;
}
.business .row .block_left .block_title {
  font-family: "HeraclitoRegular";
}
.business .row .block_left .description {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .business .row .block_left .description {
    font-size: 16px;
  }
}
.business .row .block_right {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  text-align: center;
}
@media (max-width: 580px) {
  .business .row .block_right img {
    width: 280px;
  }
}
@media (max-width: 580px) {
  .business .row .block_right div {
    display: none;
  }
}
@media (max-width:1045px) {
  .business .row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 0;
  }
}

.difference {
  margin-top: 50px;
}
.difference .top_block {
  margin-top: 75px;
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  margin-bottom: 43px;
}
.difference .main_text {
  color: var(--red, #CB1939);
  text-align: right;
  font-family: "HeraclitoRegular";
  font-size: 30px;
  text-align: end;
  margin-bottom: 30px;
}
@media (max-width:1045px) {
  .difference .main_text {
    text-align: center;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .difference .main_text {
    font-size: 19px;
    text-align: start;
  }
}
.difference p {
  font-family: "Steppe";
  color: #4F4F4F;
  font-size: 20px;
}
.difference .yellow_bg {
  margin: 15px 0;
  background: var(--GRAD-YL, linear-gradient(180deg, #ECD31F 0%, rgba(236, 211, 31, 0.4) 100%));
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 0;
}
@media (max-width: 580px) {
  .difference .yellow_bg {
    font-size: 16px;
    padding: 10px 0;
    margin: 10px 0;
  }
}

.advertising {
  margin-top: 40px;
}
.advertising .top_block {
  background: var(--grey, #E3E3E3);
  padding: 60px 0;
}
.advertising .top_block p {
  color: var(--GREY, #4F4F4F);
  font-family: Steppe;
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .advertising .top_block p {
    font-size: 16px;
    margin-top: 17px;
  }
}
@media (max-width: 580px) {
  .advertising .top_block {
    padding: 30px 0;
  }
}
.advertising .advertisement_types {
  margin-top: 50px;
  margin-bottom: 45px;
}
.advertising .advertisement_types .block_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: end;
}
.advertising .advertisement_types .block_name span {
  color: var(--red, #CB1939);
}
@media (max-width: 580px) {
  .advertising .advertisement_types .block_name {
    font-size: 20px;
    text-align: start;
  }
}
.advertising .advertisement_types .block_description {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .advertising .advertisement_types .block_description {
    font-size: 16px;
    margin-top: 15px;
  }
}
.advertising .advertisement_types .row {
  display: flex;
  justify-content: space-between;
  gap: 0 26px;
  margin-top: 30px;
}
.advertising .advertisement_types .row .card_item {
  width: 22%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 7px 0 20px 16px;
}
.advertising .advertisement_types .row .card_item .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  width: 56px;
  border-bottom: 3px solid #CB1939;
  padding-bottom: 16px;
}
.advertising .advertisement_types .row .card_item p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  margin-top: 16px;
}
@media (max-width:1045px) {
  .advertising .advertisement_types .row .card_item {
    width: calc(50% - 13px);
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .advertising .advertisement_types .row .card_item {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .advertising .advertisement_types .row {
    flex-wrap: wrap;
    gap: 26px;
  }
}
@media (max-width: 580px) {
  .advertising .advertisement_types {
    margin-top: 35px;
  }
}
@media (max-width: 580px) {
  .advertising {
    margin-top: 10px;
  }
}

.audience {
  margin-top: 26px;
}
.audience .main_text {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  text-align: end;
  font-size: 30px;
}
.audience .main_text span {
  color: var(--red, #CB1939);
}
@media (max-width: 580px) {
  .audience .main_text {
    text-align: start;
    font-size: 20px;
  }
}
.audience .row {
  display: flex;
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  justify-content: space-between;
}
.audience .row .block_left {
  margin-top: 30px;
  width: 50%;
}
.audience .row .block_left .row {
  justify-content: center;
  gap: 0 44px;
  margin-top: 20px;
}
@media (max-width: 580px) {
  .audience .row .block_left .row {
    margin-top: 15px;
  }
}
@media (max-width:1045px) {
  .audience .row .block_left {
    width: 100%;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .audience .row .block_left {
    margin-top: 15px;
  }
}
.audience .row .block_right {
  width: 42%;
  margin-top: 45px;
}
.audience .row .block_right .row {
  justify-content: center;
  gap: 0 44px;
  margin-top: 25px;
}
.audience .row .block_right p {
  margin-top: 81px;
}
@media (max-width: 580px) {
  .audience .row .block_right p {
    margin-top: 0;
  }
}
@media (max-width:1045px) {
  .audience .row .block_right {
    width: 100%;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .audience .row .block_right {
    margin-top: 30px;
  }
}
@media (max-width:1045px) {
  .audience .row {
    flex-wrap: wrap;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .audience .row {
    font-size: 16px;
  }
  .audience .row img {
    width: 128px;
  }
}
.audience .bottom_audience {
  margin-top: 25px;
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
}
@media (max-width: 580px) {
  .audience .bottom_audience {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 580px) {
  .audience {
    margin-top: 46px;
  }
}

.basic {
  margin-top: 46px;
}
.basic .row {
  display: flex;
  justify-content: space-between;
}
.basic .row .block_left {
  width: 40%;
  margin-top: 80px;
}
.basic .row .block_left .row {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
@media (max-width: 580px) {
  .basic .row .block_left .row img {
    width: 124px;
    height: 231px;
  }
  .basic .row .block_left .row img:nth-child(2) {
    margin-top: 100px;
  }
}
.basic .row .block_left p {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 580px) {
  .basic .row .block_left p {
    display: none;
  }
}
@media (max-width:1210px) {
  .basic .row .block_left {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .basic .row .block_left {
    margin-top: 200px;
  }
}
.basic .row .block_right {
  margin-top: 40px;
  width: 57%;
}
.basic .row .block_right p {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 20px;
}
.basic .row .block_right p span {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
}
@media (max-width: 580px) {
  .basic .row .block_right p {
    font-size: 16px;
    position: absolute;
    top: 0;
    width: 100%;
    margin: auto;
  }
}
.basic .row .block_right .basic_card {
  margin-top: 40px;
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 20px 25px 30px 15px;
}
.basic .row .block_right .basic_card .main_text {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
@media (max-width: 580px) {
  .basic .row .block_right .basic_card .main_text {
    font-size: 20px;
    margin-left: 20px;
  }
}
.basic .row .block_right .basic_card ul {
  list-style: none;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  gap: 17px 0;
  font-family: "Steppe";
  font-size: 17px;
  color: var(--GREY, #4F4F4F);
}
.basic .row .block_right .basic_card ul li {
  display: flex;
  gap: 0 10px;
}
@media (max-width: 580px) {
  .basic .row .block_right .basic_card ul li {
    align-items: baseline;
  }
}
@media (max-width: 580px) {
  .basic .row .block_right .basic_card ul {
    font-size: 15px;
  }
}
@media (max-width:1210px) {
  .basic .row .block_right {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .basic .row .block_right {
    margin-top: 25px;
  }
}
@media (max-width:1210px) {
  .basic .row {
    flex-wrap: wrap;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .basic .row {
    position: relative;
  }
}

.service_advantage {
  margin-top: 40px;
  background: var(--grey, #E3E3E3);
  padding: 50px 0;
}
.service_advantage .block_description {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_advantage .block_description {
    font-size: 16px;
    margin-top: 24px;
  }
}
.service_advantage .row {
  display: flex;
  justify-content: space-between;
}
.service_advantage .row .block_left {
  width: 52%;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.service_advantage .row .block_left .advantage_card {
  width: calc(50% - 10px);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 15px 23px 17px 17px;
}
.service_advantage .row .block_left .advantage_card .advantage_top {
  display: flex;
  gap: 0 10px;
}
.service_advantage .row .block_left .advantage_card .advantage_top .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  min-width: 56px;
  border-bottom: 3px solid #CB1939;
  padding-bottom: 8px;
}
.service_advantage .row .block_left .advantage_card .advantage_top .card_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 20px;
}
.service_advantage .row .block_left .advantage_card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  margin-top: 16px;
}
@media (max-width: 580px) {
  .service_advantage .row .block_left .advantage_card p {
    font-size: 16px;
  }
}
@media (max-width:800px) {
  .service_advantage .row .block_left .advantage_card {
    width: 100%;
  }
}
@media (max-width:1210px) {
  .service_advantage .row .block_left {
    width: 58%;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .service_advantage .row .block_left {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width: 580px) {
  .service_advantage .row .block_left {
    margin-top: 23px;
  }
}
.service_advantage .row .block_right {
  width: 41%;
  margin-top: 66px;
}
.service_advantage .row .block_right .cilent {
  margin-left: 20px;
  margin-top: 6px;
}
@media (max-width: 580px) {
  .service_advantage .row .block_right .cilent {
    text-align: center;
  }
}
.service_advantage .row .block_right p {
  color: var(--GREY, #4F4F4F);
  font-size: 17px;
  margin-top: 13px;
}
.service_advantage .row .block_right p span {
  color: var(--red, #CB1939);
}
@media (max-width: 580px) {
  .service_advantage .row .block_right p {
    text-align: start;
  }
}
@media (max-width:1210px) {
  .service_advantage .row .block_right {
    width: 38%;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .service_advantage .row .block_right {
    width: 100%;
    text-align: center;
  }
}
@media (max-width:1210px) {
  .service_advantage .row .block_right img {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .service_advantage .row .block_right img {
    width: fit-content;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width: 580px) {
  .service_advantage .row .block_right img {
    width: 273px;
  }
}
@media (max-width:1045px) {
  .service_advantage .row {
    flex-wrap: wrap;
  }
}

.advertising_2 {
  margin: 50px 0 60px 0;
}
.advertising_2 .block_description {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .advertising_2 .block_description {
    font-size: 16px;
    margin-top: 25px;
  }
}
.advertising_2 .row {
  display: flex;
  justify-content: center;
  gap: 0 50px;
  margin-top: 30px;
}
.advertising_2 .row .advertising_card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 28px 20px 50px 20px;
  width: 39%;
}
.advertising_2 .row .advertising_card .card_name {
  color: var(--Gray-2, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
}
.advertising_2 .row .advertising_card .card_name::before {
  position: absolute;
  content: "";
  height: 3px;
  background-color: #CB1939;
  width: 250px;
  bottom: 0;
  left: 0;
}
@media (max-width:1500px) {
  .advertising_2 .row .advertising_card .card_name {
    min-height: 75px;
    display: flex;
    align-items: center;
  }
}
@media (max-width:1500px) and (max-width: 580px) {
  .advertising_2 .row .advertising_card .card_name {
    font-size: 20px;
  }
}
.advertising_2 .row .advertising_card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  margin-top: 12px;
}
@media (max-width: 580px) {
  .advertising_2 .row .advertising_card p {
    font-size: 16px;
  }
}
@media (max-width:1045px) {
  .advertising_2 .row .advertising_card {
    width: 50%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .advertising_2 .row .advertising_card {
    width: 100%;
  }
}
@media (max-width:1045px) and (max-width:800px) and (max-width: 580px) {
  .advertising_2 .row .advertising_card {
    padding: 20px 10px;
  }
}
@media (max-width:800px) {
  .advertising_2 .row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .advertising_2 .row {
    gap: 15px;
  }
}
@media (max-width: 580px) {
  .advertising_2 {
    margin-top: 26px;
  }
}

.service_2_blocks .block_description {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_2_blocks .block_description {
    font-size: 16px;
    margin-top: 25px;
  }
}
.service_2_blocks .row {
  display: flex;
  justify-content: center;
  gap: 30px 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.service_2_blocks .row .card_item {
  width: calc(33% - 33px);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 20px 24px 20px 27px;
}
.service_2_blocks .row .card_item .card_top {
  display: flex;
  gap: 0 40px;
  position: relative;
  padding-bottom: 20px;
  color: var(--Gray-2, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  font-style: normal;
}
.service_2_blocks .row .card_item .card_top::before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #CB1939;
  width: 250px;
  left: 0;
  bottom: 0;
}
.service_2_blocks .row .card_item .card_top .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
@media (max-width:1210px) {
  .service_2_blocks .row .card_item .card_top {
    font-size: 19px;
  }
}
.service_2_blocks .row .card_item .card_description {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 15px;
  margin-top: 18px;
}
@media (max-width:1045px) {
  .service_2_blocks .row .card_item {
    width: calc(50% - 33px);
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_2_blocks .row .card_item {
    width: 100%;
  }
}
.service_2_blocks .grey_account_block {
  background: var(--grey, #E3E3E3);
  padding: 50px 0 35px 0;
}
.service_2_blocks .grey_account_block .block_title {
  text-align: end;
}
@media (max-width: 580px) {
  .service_2_blocks .grey_account_block .block_title {
    text-align: start;
  }
}
.service_2_blocks .promote_block {
  margin-top: 50px;
}
.service_2_blocks .conclusion_block {
  background: var(--grey, #E3E3E3);
  padding: 50px 0 60px 0;
  margin-top: 33px;
}
.service_2_blocks .conclusion_block .block_name {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: end;
}
@media (max-width: 580px) {
  .service_2_blocks .conclusion_block .block_name {
    font-size: 20px;
    text-align: start;
  }
}
.service_2_blocks .conclusion_block p {
  margin-top: 15px;
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
}
@media (max-width:1500px) {
  .service_2_blocks .conclusion_block p br {
    display: none;
  }
}
@media (max-width:1500px) and (max-width: 580px) {
  .service_2_blocks .conclusion_block p {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .service_2_blocks .conclusion_block {
    padding: 35px 0;
  }
}

.service_3_blocks {
  margin-top: 30px;
  color: #4F4F4F;
  font-family: Steppe;
  font-size: 20px;
  margin-bottom: -40px;
}
.service_3_blocks .block_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  margin-top: 30px;
  text-align: right;
}
.service_3_blocks .block_name.left {
  text-align: left;
}
.service_3_blocks .block_name span {
  color: var(--red, #CB1939);
}
@media (max-width:1210px) {
  .service_3_blocks .block_name {
    text-align: start;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .service_3_blocks .block_name {
    font-size: 20px;
    margin-top: 20px;
  }
}
.service_3_blocks .block_description {
  margin-top: 30px;
  width: 93.4%;
}
@media (max-width: 580px) {
  .service_3_blocks .block_description {
    width: 100%;
    margin-top: 20px;
  }
}
.service_3_blocks .yellow_bg {
  background: var(--GRAD-YL, linear-gradient(180deg, #ECD31F 0%, rgba(236, 211, 31, 0.4) 100%));
  color: #4F4F4F;
  font-family: "HeraclitoRegular";
  font-size: 30px;
  padding: 10px 0;
  margin: 15px 0;
}
@media (max-width:1210px) {
  .service_3_blocks .yellow_bg {
    font-size: 20px;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .service_3_blocks .yellow_bg {
    font-size: 16px;
  }
}
.service_3_blocks .service_promote {
  background: var(--grey, #E3E3E3);
  padding: 50px 0 36px 0;
  margin-top: 45px;
}
.service_3_blocks .service_promote .row {
  display: flex;
  justify-content: space-between;
}
.service_3_blocks .service_promote .row .block_left {
  width: 50%;
  margin-top: 30px;
}
.service_3_blocks .service_promote .row .block_left .row {
  display: flex;
  gap: 0 20px;
}
.service_3_blocks .service_promote .row .block_left .row .card_item {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 15px 20px 17px 17px;
}
.service_3_blocks .service_promote .row .block_left .row .card_item .card_top {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 20px;
  display: flex;
  gap: 0 20px;
  position: relative;
  padding-bottom: 10px;
}
.service_3_blocks .service_promote .row .block_left .row .card_item .card_top .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-size: 30px;
}
.service_3_blocks .service_promote .row .block_left .row .card_item .card_top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #CB1939;
  width: 56px;
}
.service_3_blocks .service_promote .row .block_left .row .card_item p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  margin-top: 16px;
}
.service_3_blocks .service_promote .row .block_left .row .left {
  width: calc(50% - 10px);
}
@media (max-width:1210px) {
  .service_3_blocks .service_promote .row .block_left .row .left {
    width: 100%;
  }
}
.service_3_blocks .service_promote .row .block_left .row .right {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media (max-width:1210px) {
  .service_3_blocks .service_promote .row .block_left .row .right {
    width: 100%;
  }
}
@media (max-width:1210px) {
  .service_3_blocks .service_promote .row .block_left .row {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width:800px) {
  .service_3_blocks .service_promote .row .block_left {
    width: 100%;
  }
}
.service_3_blocks .service_promote .row .block_right {
  width: 40%;
  margin-top: 66px;
  text-align: center;
}
.service_3_blocks .service_promote .row .block_right p {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 17px;
  margin-top: 10px;
  margin-left: 20px;
}
.service_3_blocks .service_promote .row .block_right p span {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
}
@media (max-width:1210px) {
  .service_3_blocks .service_promote .row .block_right {
    width: 45%;
  }
  .service_3_blocks .service_promote .row .block_right img {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width:800px) {
  .service_3_blocks .service_promote .row .block_right {
    width: 100%;
  }
  .service_3_blocks .service_promote .row .block_right img {
    width: fit-content;
  }
}
@media (max-width:1210px) and (max-width:800px) and (max-width: 580px) {
  .service_3_blocks .service_promote .row .block_right img {
    width: 100%;
  }
}
@media (max-width:800px) {
  .service_3_blocks .service_promote .row {
    flex-wrap: wrap;
  }
}
.service_3_blocks .documents_block {
  margin: 25px 0 50px 0;
}
.service_3_blocks .documents_block .main_text {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 40px;
}
@media (max-width: 580px) {
  .service_3_blocks .documents_block .main_text {
    font-size: 30px;
  }
}
.service_3_blocks .documents_block .documents_card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(203, 25, 57, 0.19);
  margin-top: 35px;
  padding: 10px 0 15px 15px;
}
.service_3_blocks .documents_block .documents_card ul {
  display: flex;
  flex-direction: column;
  color: #4F4F4F;
  font-family: Steppe;
  font-size: 20px;
  gap: 20px 0;
}
.service_3_blocks .documents_block .documents_card ul li {
  display: flex;
  gap: 0 10px;
}
@media (max-width: 580px) {
  .service_3_blocks .documents_block .documents_card ul {
    font-size: 16px;
  }
}
.service_3_blocks .grey_block {
  background: var(--grey, #E3E3E3);
  padding: 30px 0;
}
.service_3_blocks .grey_block .red_main_name {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: end;
}
@media (max-width: 580px) {
  .service_3_blocks .grey_block .red_main_name {
    font-size: 20px;
    text-align: start;
  }
}
.service_3_blocks .grey_block p {
  color: #4F4F4F;
  font-family: Steppe;
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_3_blocks .grey_block p {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .service_3_blocks {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.service_4_blocks {
  padding-top: 30px;
  margin-bottom: -40px;
}
@media (max-width: 580px) {
  .service_4_blocks .section_title {
    text-align: start;
  }
}
.service_4_blocks .name {
  margin-top: 30px;
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
.service_4_blocks .name span {
  color: var(--red, #CB1939);
}
.service_4_blocks .name:first-child {
  text-align: right;
}
@media (max-width: 580px) {
  .service_4_blocks .name:first-child {
    text-align: start;
  }
}
@media (max-width: 580px) {
  .service_4_blocks .name {
    font-size: 20px;
  }
}
.service_4_blocks p {
  color: #4F4F4F;
  font-family: Steppe;
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_4_blocks p {
    font-size: 16px;
    margin-top: 25px;
  }
}
.service_4_blocks .phones {
  display: none;
}
@media (max-width: 580px) {
  .service_4_blocks .phones {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    gap: 0 25px;
  }
  .service_4_blocks .phones img {
    width: 126px;
    height: 235px;
  }
}
.service_4_blocks .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 50px;
  margin-top: 30px;
}
.service_4_blocks .row.left {
  justify-content: left;
  position: relative;
  padding-bottom: 213px;
}
.service_4_blocks .row.left .card .card_top {
  padding-bottom: 15px;
  font-size: 22px;
  min-height: 70px;
}
@media (max-width: 580px) {
  .service_4_blocks .row.left .card .card_top {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .service_4_blocks .row.left {
    padding-bottom: 0;
  }
}
.service_4_blocks .row .card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 10px 24px 20px 30px;
  width: calc(33% - 33px);
}
.service_4_blocks .row .card .card_top {
  display: flex;
  gap: 0 40px;
  color: var(--Gray-2, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  position: relative;
  padding-bottom: 30px;
  align-items: center;
}
.service_4_blocks .row .card .card_top .card_number {
  color: rgba(203, 25, 57, 0.5);
}
.service_4_blocks .row .card .card_top::before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #CB1939;
  left: 0;
  width: 251px;
  bottom: 0;
}
@media (max-width:1500px) {
  .service_4_blocks .row .card .card_top {
    gap: 0 19px;
  }
}
@media (max-width:1500px) and (max-width: 580px) {
  .service_4_blocks .row .card .card_top {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
.service_4_blocks .row .card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 15px;
  margin-top: 10px;
}
@media (max-width:1045px) {
  .service_4_blocks .row .card {
    width: calc(50% - 25px);
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_4_blocks .row .card {
    width: 100%;
  }
}
.service_4_blocks .row .laptop {
  position: absolute;
  padding-top: 10px;
  width: calc(33% - 33px);
  right: 60px;
  bottom: 40px;
}
.service_4_blocks .row .laptop p {
  margin-top: 15px;
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 17px;
}
.service_4_blocks .row .laptop p span {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
}
@media (max-width: 580px) {
  .service_4_blocks .row .laptop p {
    font-size: 15px;
  }
}
@media (max-width:1210px) {
  .service_4_blocks .row .laptop {
    bottom: 195px;
    right: 0;
  }
  .service_4_blocks .row .laptop img {
    width: 100%;
  }
}
@media (max-width:1210px) and (max-width:800px) {
  .service_4_blocks .row .laptop img {
    width: 90%;
  }
}
@media (max-width:1210px) and (max-width:1045px) {
  .service_4_blocks .row .laptop {
    width: calc(45% - 33px);
    bottom: 120px;
    right: 30px;
  }
}
@media (max-width:1210px) and (max-width:1045px) and (max-width:800px) {
  .service_4_blocks .row .laptop {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    text-align: center;
  }
}
.service_4_blocks .advantages_grey_bg {
  margin-top: 25px;
  background: var(--grey, #E3E3E3);
  padding: 40px 0 50px 0;
}
@media (max-width: 580px) {
  .service_4_blocks .advantages_grey_bg .section_title {
    text-align: start;
  }
}
@media (max-width: 580px) {
  .service_4_blocks .advantages_grey_bg {
    margin-top: 15px;
  }
}
.service_4_blocks .phones_block {
  margin-top: 14px;
  margin-bottom: 50px;
}
.service_4_blocks .phones_block .row {
  display: flex;
  justify-content: center;
  gap: 0 150px;
  align-items: center;
}
.service_4_blocks .phones_block .row img:nth-child(2n+1) {
  margin-top: 60px;
}
@media (max-width:800px) {
  .service_4_blocks .phones_block .row {
    display: none;
  }
}
.service_4_blocks .phones_block p {
  color: var(--GREY, #4F4F4F);
  font-family: "Steppe";
  font-size: 15px;
  text-align: center;
}
.service_4_blocks .phones_block .phone_mb {
  display: none;
  position: relative;
  margin-top: 40px;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width:800px) {
  .service_4_blocks .phones_block .phone_mb {
    display: block;
  }
}
@media (max-width: 580px) {
  .service_4_blocks .phones_block .phone_mb img {
    width: 132px;
  }
}
.service_4_blocks .phones_block .phone_mb .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.service_4_blocks .phones_block .phone_mb .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.service_4_blocks .phones_block .phone_mb .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.service_4_blocks .phones_block .phone_mb .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}
.service_4_blocks .grey_bg {
  background: var(--grey, #E3E3E3);
  padding: 40px 0;
}
.service_4_blocks .grey_bg .name {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: end;
}
@media (max-width: 580px) {
  .service_4_blocks .grey_bg .name {
    font-size: 20px;
    text-align: start;
  }
}
@media (max-width: 580px) {
  .service_4_blocks .grey_bg {
    padding: 25px 0;
  }
}
@media (max-width: 580px) {
  .service_4_blocks {
    margin-bottom: 0;
  }
}

.service_5_blocks .block_name {
  margin: 30px 0;
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: end;
}
.service_5_blocks .block_name span {
  color: var(--red, #CB1939);
}
.service_5_blocks .block_name.left {
  text-align: left;
}
@media (max-width:1045px) {
  .service_5_blocks .block_name {
    text-align: start;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_5_blocks .block_name {
    font-size: 20px;
    margin: 15px 0;
  }
}
.service_5_blocks .row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.service_5_blocks .row .img_block {
  text-align: center;
  width: 43%;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
.service_5_blocks .row .img_block.small {
  width: 35%;
}
@media (max-width:1045px) {
  .service_5_blocks .row .img_block.small {
    width: 100%;
    order: 2;
  }
}
.service_5_blocks .row .img_block img {
  width: 100%;
  object-fit: contain;
}
.service_5_blocks .row .img_block img.phone {
  width: 200px;
}
@media (max-width: 580px) {
  .service_5_blocks .row .img_block img.phone {
    width: 127px;
  }
}
@media (max-width:1045px) {
  .service_5_blocks .row .img_block img {
    width: fit-content;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_5_blocks .row .img_block img {
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width:1045px) {
  .service_5_blocks .row .img_block {
    width: 100%;
    order: 2;
    margin-top: 20px;
  }
}
.service_5_blocks .row .block_text {
  width: 50%;
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
}
.service_5_blocks .row .block_text.big {
  width: 60%;
}
@media (max-width:1045px) {
  .service_5_blocks .row .block_text.big {
    width: 100%;
    order: 1;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_5_blocks .row .block_text.big {
    font-size: 16px;
  }
}
.service_5_blocks .row .block_text.medium {
  width: 53%;
}
@media (max-width:1045px) {
  .service_5_blocks .row .block_text.medium {
    width: 100%;
  }
}
.service_5_blocks .row .block_text .main_text {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 40px;
  margin-bottom: 15px;
}
.service_5_blocks .row .block_text .main_text span {
  color: var(--red, #CB1939);
}
@media (max-width: 580px) {
  .service_5_blocks .row .block_text .main_text {
    font-size: 30px;
  }
}
.service_5_blocks .row .block_text span {
  color: #CB1939;
  font-family: "HeraclitoRegular";
}
@media (max-width:1045px) {
  .service_5_blocks .row .block_text {
    width: 100%;
    order: 1;
  }
}
@media (max-width:1045px) {
  .service_5_blocks .row {
    flex-wrap: wrap;
  }
}
.service_5_blocks p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
}
@media (max-width: 580px) {
  .service_5_blocks p {
    font-size: 16px;
  }
}
.service_5_blocks .dark_text {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: end;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_5_blocks .dark_text {
    font-size: 20px;
    color: #CB1939;
    text-align: start;
  }
}
.service_5_blocks .description {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin: 30px 0;
}
@media (max-width: 580px) {
  .service_5_blocks .description {
    font-size: 16px;
    margin: 15px 0 25px 0;
  }
}

.service_6_blocks {
  margin-bottom: -40px;
}
.service_6_blocks .block_name {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  margin-top: 30px;
}
.service_6_blocks .block_name span {
  color: var(--GREY, #4F4F4F);
}
.service_6_blocks .block_name.right {
  text-align: end;
}
@media (max-width:1045px) {
  .service_6_blocks .block_name.right {
    text-align: start;
  }
}
.service_6_blocks p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_6_blocks p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_6_blocks .block_title {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 40px;
  margin-top: 23px;
}
.service_6_blocks .block_title span {
  color: var(--red, #CB1939);
}
@media (max-width: 580px) {
  .service_6_blocks .block_title {
    font-size: 25px;
  }
}
.service_6_blocks .row {
  display: flex;
  justify-content: space-between;
}
.service_6_blocks .row .block_image {
  width: 40%;
  margin-top: 20px;
}
.service_6_blocks .row .block_image img.first {
  width: 100%;
}
@media (max-width:1045px) {
  .service_6_blocks .row .block_image img.first {
    width: fit-content;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_6_blocks .row .block_image img.first {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .service_6_blocks .row .block_image img {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_6_blocks .row .block_image {
    width: 100%;
    text-align: center;
    order: 2;
  }
}
.service_6_blocks .row .block_text {
  width: 58%;
}
.service_6_blocks .row .block_text p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width:1500px) {
  .service_6_blocks .row .block_text p br {
    display: none;
  }
}
@media (max-width:1500px) and (max-width: 580px) {
  .service_6_blocks .row .block_text p {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width:1045px) {
  .service_6_blocks .row .block_text {
    width: 100%;
    order: 1;
  }
}
@media (max-width:1045px) {
  .service_6_blocks .row {
    flex-wrap: wrap;
  }
}
.service_6_blocks .grey_bg {
  padding-top: 30px;
}
@media (max-width: 580px) {
  .service_6_blocks {
    margin-bottom: 0;
  }
}

.service_7_blocks {
  margin-top: 50px;
}
.service_7_blocks p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_7_blocks p {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 580px) {
  .service_7_blocks .block_title {
    font-size: 20px;
  }
}
.service_7_blocks .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width:1045px) {
  .service_7_blocks .row .block_image {
    width: 100%;
    order: 2;
    text-align: center;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_7_blocks .row .block_image img {
    width: 100%;
  }
}
.service_7_blocks .row .block_texts {
  max-width: 844px;
}
@media (max-width:1045px) {
  .service_7_blocks .row .block_texts {
    width: 100%;
    order: 1;
  }
}
@media (max-width:1045px) {
  .service_7_blocks .row {
    flex-wrap: wrap;
  }
}
.service_7_blocks .grey_bg .red_text {
  color: var(--red, #CB1939);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
@media (max-width: 580px) {
  .service_7_blocks .grey_bg .red_text {
    font-size: 20px;
  }
}

.service_8_blocks {
  margin-bottom: -50px;
}
.service_8_blocks p {
  margin-top: 30px;
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
}
.service_8_blocks p span {
  color: var(--red, #CB1939);
  font-family: "HeraclitoRegular";
}
.service_8_blocks p.right {
  text-align: end;
}
@media (max-width:800px) {
  .service_8_blocks p {
    text-align: start !important;
  }
}
@media (max-width:800px) and (max-width: 580px) {
  .service_8_blocks p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_8_blocks .row {
  display: flex;
  justify-content: space-between;
}
.service_8_blocks .row .block_texts {
  width: 57%;
}
@media (max-width:1210px) {
  .service_8_blocks .row .block_texts {
    width: 100%;
  }
}
.service_8_blocks .row .block_image {
  display: flex;
  align-items: center;
}
@media (max-width:1210px) {
  .service_8_blocks .row .block_image {
    margin: auto;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .service_8_blocks .row .block_image img {
    width: 100%;
  }
}
@media (max-width:1210px) {
  .service_8_blocks .row {
    flex-wrap: wrap;
  }
}
.service_8_blocks .company_row {
  display: flex;
  justify-content: center;
  gap: 0 45px;
  margin-top: 30px;
  margin-bottom: 50px;
}
.service_8_blocks .company_row .company_item {
  width: 44%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 15px 36px 15px 28px;
}
.service_8_blocks .company_row .company_item .company_name {
  position: relative;
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  padding-bottom: 15px;
}
.service_8_blocks .company_row .company_item .company_name::before {
  width: 95px;
  content: "";
  height: 3px;
  background-color: #CB1939;
  position: absolute;
  bottom: 0;
  left: 0;
}
.service_8_blocks .company_row .company_item p {
  margin-top: 15px;
}
@media (max-width:1045px) {
  .service_8_blocks .company_row .company_item {
    width: 47%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_8_blocks .company_row .company_item {
    width: 100%;
  }
}
@media (max-width:800px) {
  .service_8_blocks .company_row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service_8_blocks .practice_row {
  display: flex;
  justify-content: center;
  gap: 0 26px;
  margin-top: 30px;
}
.service_8_blocks .practice_row .card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  width: 22%;
  padding: 15px 16px;
}
.service_8_blocks .practice_row .card .number {
  position: relative;
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  padding-bottom: 8px;
}
.service_8_blocks .practice_row .card .number::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 56px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
.service_8_blocks .practice_row .card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  position: relative;
}
@media (max-width:1045px) {
  .service_8_blocks .practice_row .card {
    width: calc(50% - 13px);
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_8_blocks .practice_row .card {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_8_blocks .practice_row {
    flex-wrap: wrap;
    gap: 26px;
  }
}
.service_8_blocks .serm_row {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.service_8_blocks .serm_row .card {
  width: calc(33% - 22px);
  padding: 30px 20px 20px 27px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
}
.service_8_blocks .serm_row .card p {
  position: relative;
}
.service_8_blocks .serm_row .card p::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  height: 3px;
  width: 251px;
  background-color: #CB1939;
}
@media (max-width:800px) {
  .service_8_blocks .serm_row .card p::after {
    width: 164px;
  }
}
@media (max-width:1045px) {
  .service_8_blocks .serm_row .card {
    width: calc(50% - 15px);
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_8_blocks .serm_row .card {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_8_blocks .serm_row {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
@media (max-width: 580px) {
  .service_8_blocks .block_title.minor {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .service_8_blocks {
    margin-bottom: 0;
  }
}

.service_9_blocks {
  margin-top: 50px;
}
.service_9_blocks p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
@media (max-width: 580px) {
  .service_9_blocks p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_9_blocks .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_9_blocks .row .block_texts {
  width: 58%;
}
@media (max-width:1210px) {
  .service_9_blocks .row .block_texts {
    width: 100%;
  }
}
@media (max-width:1210px) {
  .service_9_blocks .row .block_images {
    margin: auto;
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .service_9_blocks .row .block_images img {
    width: 100%;
  }
}
@media (max-width:1210px) {
  .service_9_blocks .row {
    flex-wrap: wrap;
  }
}

.service_10_blocks p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 30px;
}
.service_10_blocks p span {
  color: var(--red, #CB1939);
  font-family: "HeraclitoRegular";
  font-size: 25px;
}
@media (max-width: 580px) {
  .service_10_blocks p span {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .service_10_blocks p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_10_blocks .block_title {
  margin-top: 30px;
}
.service_10_blocks .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_10_blocks .row .block_texts {
  width: 58%;
}
@media (max-width:1045px) {
  .service_10_blocks .row .block_texts {
    width: 100%;
  }
}
.service_10_blocks .row .block_image {
  width: 35%;
  text-align: center;
}
@media (max-width:1045px) {
  .service_10_blocks .row .block_image {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_10_blocks .row .block_image img {
    width: 127px;
  }
}
@media (max-width:1045px) {
  .service_10_blocks .row {
    flex-wrap: wrap;
  }
}
.service_10_blocks .card_row {
  display: flex;
  justify-content: space-between;
}
.service_10_blocks .card_row .card {
  max-width: 45%;
  margin-top: 30px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  width: 100%;
  padding: 14px 41px 20px 31px;
  min-height: 477px;
}
.service_10_blocks .card_row .card .card_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  padding-bottom: 15px;
  position: relative;
}
.service_10_blocks .card_row .card .card_name::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 107px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
.service_10_blocks .card_row .card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
}
@media (max-width: 580px) {
  .service_10_blocks .card_row .card p {
    font-size: 16px;
  }
}
.service_10_blocks .card_row .card.last {
  min-height: fit-content;
  height: fit-content;
}
@media (max-width:1045px) {
  .service_10_blocks .card_row .card {
    max-width: 100%;
    order: 1;
  }
}
.service_10_blocks .card_row .images {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
@media (max-width:1045px) {
  .service_10_blocks .card_row .images {
    width: 100%;
    order: 2;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_10_blocks .card_row .images {
    display: none;
  }
}
.service_10_blocks .card_row .images_mb {
  display: none;
  order: 3;
  text-align: center;
  margin: auto;
  width: 100%;
  position: relative;
  padding-bottom: 70px;
}
@media (max-width: 580px) {
  .service_10_blocks .card_row .images_mb {
    display: block;
  }
  .service_10_blocks .card_row .images_mb img {
    width: 127px;
  }
}
.service_10_blocks .card_row .images_mb .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.service_10_blocks .card_row .images_mb .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.service_10_blocks .card_row .images_mb .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.service_10_blocks .card_row .images_mb .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}
@media (max-width:1045px) {
  .service_10_blocks .card_row {
    flex-wrap: wrap;
    gap: 35px;
  }
}
.service_10_blocks .card_ul {
  border-radius: 10px;
  background: #FFF;
  /* blur */
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 10px 13px 20px 8px;
  width: -webkit-fit-content;
  margin-left: 35%;
  margin-top: 30px;
}
.service_10_blocks .card_ul ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  list-style: none;
}
.service_10_blocks .card_ul ul li {
  display: flex;
  gap: 0 14px;
}
@media (max-width:800px) {
  .service_10_blocks .card_ul {
    margin-left: 0;
    width: 100%;
  }
}
.service_10_blocks .mini_card_row {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.service_10_blocks .mini_card_row .card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  width: 23%;
  padding: 16px 17px;
}
.service_10_blocks .mini_card_row .card .card_top {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 20px;
  padding-bottom: 15px;
  position: relative;
}
.service_10_blocks .mini_card_row .card .card_top:before {
  content: "";
  position: absolute;
  width: 56px;
  height: 3px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
@media (max-width:1210px) {
  .service_10_blocks .mini_card_row .card {
    width: calc(50% - 13px);
  }
}
@media (max-width:1210px) and (max-width: 580px) {
  .service_10_blocks .mini_card_row .card {
    width: 100%;
  }
}

.service_11_blocks {
  margin-top: 50px;
}
.service_11_blocks p {
  color: #4F4F4F;
  font-family: "Steppe";
  font-size: 20px;
  margin-top: 20px;
}
.service_11_blocks p.red {
  color: #CB1939;
}
@media (max-width: 580px) {
  .service_11_blocks p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.service_11_blocks .block_title br {
  display: none;
}
@media (max-width: 580px) {
  .service_11_blocks .block_title br {
    display: block;
  }
}
@media (max-width: 580px) {
  .service_11_blocks .block_title.mb_red {
    font-size: 20px;
    color: #CB1939;
  }
}
.service_11_blocks .card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 13px 36px 15px 28px;
}
.service_11_blocks .card .card_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  padding-bottom: 15px;
}
@media (max-width: 580px) {
  .service_11_blocks .card .card_name {
    font-size: 20px;
  }
}
.service_11_blocks .card .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
  padding-bottom: 10px;
  position: relative;
}
.service_11_blocks .card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  margin-top: 15px;
}
@media (max-width: 580px) {
  .service_11_blocks .card p {
    font-size: 16px;
  }
}
.service_11_blocks .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_11_blocks .row .block_text {
  width: 58%;
}
@media (max-width:1045px) {
  .service_11_blocks .row .block_text {
    width: 100%;
    order: 1;
  }
}
@media (max-width:1045px) {
  .service_11_blocks .row .image {
    margin: auto;
    order: 2;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_11_blocks .row .image img {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_11_blocks .row {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
.service_11_blocks .second_row {
  display: flex;
  gap: 0 43px;
  justify-content: center;
  margin-top: 30px;
}
.service_11_blocks .second_row .card {
  width: 41.4%;
}
.service_11_blocks .second_row .card .card_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
}
.service_11_blocks .second_row .card .card_name::before {
  content: "";
  height: 3px;
  background-color: #CB1939;
  width: 95px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width:800px) {
  .service_11_blocks .second_row .card {
    width: 100%;
  }
}
@media (max-width:800px) {
  .service_11_blocks .second_row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service_11_blocks .format_row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 0 43px;
}
.service_11_blocks .format_row .card {
  width: 41%;
  height: fit-content;
}
.service_11_blocks .format_row .card .card_name {
  position: relative;
}
.service_11_blocks .format_row .card .card_name::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 95px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
@media (max-width:1045px) {
  .service_11_blocks .format_row .card {
    width: 47%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_11_blocks .format_row .card {
    width: 100%;
  }
}
@media (max-width:800px) {
  .service_11_blocks .format_row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service_11_blocks .advertising_row {
  display: flex;
  justify-content: center;
  gap: 0 65px;
  margin-top: 30px;
}
.service_11_blocks .advertising_row .card {
  width: 28%;
}
.service_11_blocks .advertising_row .card .card_name {
  position: relative;
}
.service_11_blocks .advertising_row .card .card_name::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 65px;
  left: 0;
  bottom: 0;
  background-color: #CB1939;
}
@media (max-width:1045px) {
  .service_11_blocks .advertising_row .card {
    width: calc(50% - 34px);
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_11_blocks .advertising_row .card {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_11_blocks .advertising_row {
    flex-wrap: wrap;
    gap: 30px 65px;
  }
}
.service_11_blocks .image_row {
  margin-top: 30px;
  display: flex;
  gap: 0 200px;
  margin-left: 200px;
  align-items: center;
}
.service_11_blocks .image_row img {
  height: fit-content;
}
.service_11_blocks .image_row img:nth-child(1) {
  margin-right: 100px;
}
@media (max-width:1210px) {
  .service_11_blocks .image_row {
    flex-wrap: wrap;
    margin-left: 0;
    gap: 20px 200px;
  }
}
@media (max-width:1210px) and (max-width:800px) {
  .service_11_blocks .image_row {
    display: none;
  }
}
.service_11_blocks .image_for_mb {
  display: none;
  text-align: center;
  position: relative;
  padding-bottom: 50px;
  margin-top: 40px;
}
@media (max-width:800px) {
  .service_11_blocks .image_for_mb {
    display: block;
  }
}
.service_11_blocks .image_for_mb .swiper-wrapper {
  align-items: baseline;
}
.service_11_blocks .image_for_mb .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.service_11_blocks .image_for_mb .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.service_11_blocks .image_for_mb .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.service_11_blocks .image_for_mb .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}
@media (max-width: 580px) {
  .service_11_blocks .image_for_mb .laptop {
    width: 275px;
  }
}
@media (max-width: 580px) {
  .service_11_blocks .image_for_mb .phone {
    width: 127px;
  }
}
.service_11_blocks .monetization_row {
  display: flex;
  justify-content: center;
  gap: 0 26px;
  margin-top: 55px;
}
.service_11_blocks .monetization_row .card {
  width: 23%;
  height: fit-content;
}
.service_11_blocks .monetization_row .card .card_number::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 56px;
  background-color: #CB1939;
}
@media (max-width:1045px) {
  .service_11_blocks .monetization_row .card {
    width: 45%;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_11_blocks .monetization_row .card {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_11_blocks .monetization_row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_11_blocks .monetization_row {
    margin-top: 25px;
  }
}
@media (max-width: 580px) {
  .service_11_blocks .block_name.big_mb {
    font-size: 30px;
  }
}
.service_11_blocks .grey_bg {
  padding: 22px 0;
}
.service_11_blocks .grey_bg p {
  margin-top: 0;
}
.service_11_blocks .team_row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 0 26px;
}
.service_11_blocks .team_row .card {
  width: 23%;
}
.service_11_blocks .team_row .card .card_number::before {
  content: "";
  height: 3px;
  background-color: #CB1939;
  width: 56px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width:1045px) {
  .service_11_blocks .team_row .card {
    width: calc(50% - 13px);
  }
}
@media (max-width:1045px) and (max-width: 580px) {
  .service_11_blocks .team_row .card {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_11_blocks .team_row {
    gap: 26px;
    flex-wrap: wrap;
  }
}
@media (max-width: 580px) {
  .service_11_blocks {
    margin-bottom: 50px;
  }
}

.service_12_blocks {
  margin-top: 20px;
  margin-bottom: -45px;
}
.service_12_blocks p {
  margin-top: 30px;
  color: #4F4F4F;
  font-family: Steppe;
  font-size: 20px;
}
.service_12_blocks p.right {
  text-align: end;
}
@media (max-width: 580px) {
  .service_12_blocks p.right {
    text-align: start;
  }
}
@media (max-width: 580px) {
  .service_12_blocks p {
    font-size: 16px;
  }
}
.service_12_blocks .card_row {
  display: flex;
  justify-content: center;
  gap: 0 26px;
  margin-top: 30px;
}
.service_12_blocks .card_row.second {
  gap: 0 50px;
}
@media (max-width:1045px) {
  .service_12_blocks .card_row.second {
    gap: 40px;
  }
}
@media (max-width:1045px) {
  .service_12_blocks .card_row.second .card {
    width: 100%;
  }
}
.service_12_blocks .card_row .card {
  width: 22%;
  padding: 8px 17px 10px 17px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  height: fit-content;
}
.service_12_blocks .card_row .card .card_top {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  position: relative;
  padding-bottom: 16px;
}
.service_12_blocks .card_row .card .card_top .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
.service_12_blocks .card_row .card .card_top .card_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 20px;
  overflow: -webkit-paged-x;
}
.service_12_blocks .card_row .card .card_top::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 57px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
.service_12_blocks .card_row .card p {
  color: var(--Gray-2, #4F4F4F);
  font-family: "Steppe";
  font-size: 18px;
  margin-top: 16px;
}
@media (max-width: 580px) {
  .service_12_blocks .card_row .card p {
    font-size: 16px;
  }
}
@media (max-width:1500px) {
  .service_12_blocks .card_row .card {
    width: 24%;
  }
}
@media (max-width:1500px) and (max-width:1045px) {
  .service_12_blocks .card_row .card {
    width: calc(50% - 13px);
  }
}
@media (max-width:1500px) and (max-width:1045px) and (max-width: 580px) {
  .service_12_blocks .card_row .card {
    width: 100%;
  }
}
@media (max-width:1045px) {
  .service_12_blocks .card_row {
    flex-wrap: wrap;
    gap: 26px;
  }
}
.service_12_blocks .image_row {
  display: flex;
  justify-content: center;
  gap: 0 90px;
}
.service_12_blocks .image_row img {
  width: fit-content;
  height: fit-content;
}
@media (max-width:1045px) {
  .service_12_blocks .image_row {
    margin-top: 30px;
  }
}
@media (max-width:1045px) and (max-width:800px) {
  .service_12_blocks .image_row {
    display: none;
  }
}
.service_12_blocks .image_phone {
  display: none;
  margin-top: 45px;
  padding-bottom: 70px;
}
@media (max-width:800px) {
  .service_12_blocks .image_phone {
    display: block;
    position: relative;
    text-align: center;
  }
}
.service_12_blocks .image_phone .swiper-wrapper {
  align-items: baseline;
}
.service_12_blocks .image_phone .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CB1939;
}
.service_12_blocks .image_phone .swiper-pagination-bullet-active-next {
  transform: scale(1);
  opacity: 0.6;
}
.service_12_blocks .image_phone .swiper-pagination-bullet-active-prev {
  transform: scale(1);
  opacity: 0.6;
}
.service_12_blocks .image_phone .swiper-pagination-bullet-active-next-next {
  opacity: 0.2 !important;
  transform: scale(1) !important;
}
.service_12_blocks .row {
  display: flex;
  justify-content: center;
  gap: 0 43px;
  margin-top: 30px;
}
.service_12_blocks .row .card {
  width: 45%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 13px 36px 30px 28px;
}
.service_12_blocks .row .card .card_name {
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
}
.service_12_blocks .row .card .card_name::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 95px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
@media (max-width:800px) {
  .service_12_blocks .row .card {
    width: 100%;
  }
}
@media (max-width:800px) {
  .service_12_blocks .row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service_12_blocks .game_row {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.service_12_blocks .game_row .card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(255, 37, 34, 0.2);
  padding: 12px 24px;
  width: calc(33% - 33px);
}
.service_12_blocks .game_row .card .card_top {
  position: relative;
  display: flex;
  gap: 0 40px;
  padding-bottom: 20px;
}
.service_12_blocks .game_row .card .card_top .card_number {
  color: rgba(203, 25, 57, 0.5);
  font-family: "HeraclitoMedium";
  font-size: 30px;
}
.service_12_blocks .game_row .card .card_top .card_name {
  color: var(--Gray-2, #4F4F4F);
  font-family: "HeraclitoMedium";
  font-size: 25px;
}
.service_12_blocks .game_row .card .card_top::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 251px;
  background-color: #CB1939;
  left: 0;
  bottom: 0;
}
@media (max-width:1210px) {
  .service_12_blocks .game_row .card {
    width: calc(50% - 15px);
  }
}
@media (max-width:1210px) and (max-width:800px) {
  .service_12_blocks .game_row .card {
    width: 100%;
  }
}
@media (max-width:1210px) {
  .service_12_blocks .game_row {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
@media (max-width: 580px) {
  .service_12_blocks .boys_image {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .service_12_blocks {
    margin-bottom: 0;
  }
}

.privacy {
  margin-top: 50px;
  margin-bottom: 262px;
}
.privacy .privacy_title {
  color: #000;
  font-family: "HeraclitoMedium";
  font-size: 30px;
  text-align: center;
}
@media (max-width: 580px) {
  .privacy .privacy_title {
    font-size: 20px;
  }
}
.privacy .privacy_name {
  margin: 20px 0;
  color: var(--GREY, #4F4F4F);
  font-family: "HeraclitoRegular";
  font-size: 20px;
}
@media (max-width: 580px) {
  .privacy .privacy_name {
    font-size: 15px;
  }
}
.privacy p {
  color: var(--GREY, #4F4F4F);
  font-family: Steppe;
  font-size: 20px;
}
@media (max-width: 580px) {
  .privacy p {
    font-size: 15px;
  }
}/*# sourceMappingURL=main.css.map */