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

a {
    text-decoration: none !important;
}

#contact_form_pop{
    width: 400px;
    background: #fff;
    padding: 25px;
    border-radius:15px;
    margin: 50px auto 10px;
}

#contact_form_pop .form_block .form_boxs {
    gap: 15px;
}

#contact_form_pop .form_block .form_box {
    height:70px;
    gap: 5px;
    padding: 10px 16px 10px 14px;
    border: 1px solid #ECE3E9;
    width: 100%;
    border-radius: 15px;
    margin-bottom:25px;
}

#contact_form_pop .forma-title{
    font-size:40px;
    line-height:42px;
}

#contact_form_pop .form_check{
    display:flex;
}

#contact_form_pop .form_check label {
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.4px;
    color: #362832;
}

#contact_form_pop .form_check input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    width: 15px;
    height: 15px;
    border: 1.5px solid #292D32;
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.form_btn2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    text-align: center;
    color: #FFF;
    border-radius: 27px;
    padding: 17px;
    width: 212px;
    border:none;
    background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
}

#contact_form_pop .forma-title-min{
     font-size:20px;
    margin-bottom:25px;   
}

#contact_form_pop .form_block .form_box label {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.4px;
    color: #362832;
    cursor: pointer;
}

#contact_form_pop .form_block .form_box input {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    color: #362832;
    border: none;
    width: 100%;
    height: 100%;
    outline: none;
    cursor: pointer;
    background: none;
}


html {
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  font-family: "Steppe", sans-serif;
  font-weight: 400;
}
body.hidden {
  overflow: hidden;
}

button, a {
  background: none;
  outline: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, svg, p, span {
  transition: 0.3s ease all;
}

.container {
  max-width: 1460px;
  padding: 0px 20px;
  margin: 0 auto;
}

.header {
  position: absolute;
  margin-top: 35px;
  top: 0;
  left: 0;
  width: 100%;
}
.header .header_block {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.header .header_block .header_logo {
  display: flex;
  align-items: center;
  gap: 21px;
}
.header .header_block .header_navs {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .header_block .header_navs a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: #FFFFFF;
}
.header .header_block .header_navs a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
  transition: 0.3s ease all;
}
.header .header_block .header_navs a:hover::after {
  width: 100%;
}
.header .header_block .header_contact {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header .header_block .header_contact .header_num {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px;
  color: #FFFFFF;
}
.header .header_block .header_contact .header_btn {
  width: 200px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E32D29;
  border-radius: 27px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  text-align: center;
  color: #FFFFFF;
  transition: 0.3s ease all;
}
.header .header_block .header_contact .header_btn:hover {
  border-color: transparent;
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
}
.header .header_block #burger {
  display: none;
  width: 34px;
  height: 24px;
  position: relative;
  z-index: 6;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .header_block #burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #FFF;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .header_block #burger span:nth-child(1) {
  top: 0px;
}
.header .header_block #burger span:nth-child(2), .header .header_block #burger span:nth-child(3) {
  top: 10px;
}
.header .header_block #burger span:nth-child(4) {
  top: 20px;
}
.header .header_block #burger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.header .header_block #burger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header .header_block #burger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header .header_block #burger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header2 .header_block .header_navs a {
  color: #362832;
}
.header2 .header_block .header_contact .header_btn,
.header2 .header_block .header_contact .header_num {
  color: #362832;
}
.header2 .header_block .header_contact .header_btn:hover {
  color: #FFF;
}
.header2 .header_block #burger span {
  background: #362832;
}
.header2 .header_block #burger.open span {
  background: #FFF;
}

.header_mob {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 5;
  display: none;
  background: #362832;
  padding: 100px 0;
  transition: 0.3s ease all;
}
.header_mob.open {
  right: 0;
}
.header_mob-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header_mob-block .header_navs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.header_mob-block .header_navs a {
  font-size: 18px;
  line-height: 22px;
  color: #FFF;
}
.header_mob-block .header_contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.header_mob-block .header_contact .header_num {
  font-size: 20px;
  line-height: 24px;
  color: #FFF;
}
.header_mob-block .header_contact .header_btn {
  width: 250px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E32D29;
  border-radius: 27px;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  transition: 0.3s ease all;
}
.header_mob-block .header_contact .header_btn:hover {
  border-color: transparent;
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
}

.home {
  padding: 224px 0px 104px;
  border-radius: 0px 0px 280px 280px;
  background-image: url(../img/home-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.home .home_content {
  display: flex;
  align-items: center;
  padding-right: 188px;
  gap: 50px;
}
.home .home_content .slide_info {
  display: flex;
  flex-direction: column;
  gap: 57px;
}
.home .home_content .slide_info .home_text {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  letter-spacing: -0.02em;
  color: #FFF;
}
.home .home_content .slide_info .home_title {
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -0.03em;
  color: #FFF;
}
.home .home_content .slide_info .home_link {
  width: 310px;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  text-align: center;
  color: #FFF;
}
.home .home_slide {
  position: relative;
}
.home .home_slide .swiper-pagination {
  position: absolute;
  bottom: -130px;
}
.home .home_slide .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.home .home_slide .swiper-pagination .swiper-pagination-bullet-active {
  background: #362832;
}
.home .home_slide .home_arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home .home_slide .home_arrow .swiper-button-next,
.home .home_slide .home_arrow .swiper-button-prev {
  position: static;
  width: 68px;
  height: 68px;
  border-radius: 100%;
  border: 1px solid #FFFFFF;
  margin: 0;
  transition: 0.3s ease all;
}
.home .home_slide .home_arrow .swiper-button-next.swiper-button-disabled,
.home .home_slide .home_arrow .swiper-button-prev.swiper-button-disabled {
  width: 48px;
  height: 48px;
}
.home .home_slide .home_arrow .swiper-button-next::after,
.home .home_slide .home_arrow .swiper-button-prev::after {
  font-size: 12px;
  color: #FFF;
}

.home2 {
  padding-top: 154px;
  padding-bottom: 61px;
  background: none;
}
.home2 .breadcrumb .breadcrumb_navs {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}
.home2 .breadcrumb .breadcrumb_navs span,
.home2 .breadcrumb .breadcrumb_navs a {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #362832;
}
.home2 .breadcrumb .breadcrumb_navs img {
  margin-top: -1px;
}
.home2 .home_content {
  margin-top: -40px;
  justify-content: space-between;
  padding-right: 0;
}
.home2 .home_content .slide_info {
  gap: 35px;
}
.home2 .home_content .slide_info .home_title {
  color: #362832;
}
.home2 .home_content .slide_info .home_text {
  color: #362832;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.home2 .home_content .error_img {
  margin-right: -238px;
}

.home-error {
  padding-bottom: 0;
}
.home-error .home_content {
  margin-top: -110px;
}

.experience {
  padding: 133px 0px 200px;
}
.experience_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.experience_content .experience_item {
  display: grid;
  grid-template-columns: 48% 48%;
  align-items: end;
  gap: 47px;
  max-width: 100%;
}
.experience_content .experience_item .experience_title {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #362832;
  padding-bottom: 26px;
}
.experience_content .experience_item .experience_title span {
  color: #DF2C2E;
}
.experience_content .experience_item .experience_boxs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.experience_content .experience_item .experience_boxs .experience_box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 50px;
  border: 1px solid #ECE3E9;
  padding: 42px 40px 64px;
  background-image: url(../img/experience-box-bg1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
}
.experience_content .experience_item .experience_boxs .experience_box:nth-child(2) {
  background-image: url(../img/experience-box-bg2.svg);
}
.experience_content .experience_item .experience_boxs .experience_box span {
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: -0.03em;
  color: #362832;
}
.experience_content .experience_item .experience_boxs .experience_box p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #362832;
}
.experience_content .experience_item .experience_card {
  padding: 70px 40px 37px;
  border-radius: 50px;
  border: 1px solid #ECE3E9;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background-image: url(../img/experience_card-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
.experience_content .experience_item .experience_card-info {
  max-width: 320px;
}
.experience_content .experience_item .experience_card-info span {
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: -0.03em;
  color: #362832;
}
.experience_content .experience_item .experience_card-info p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #362832;
}
.experience_content .experience_item .experience_card-link {
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 207px;
  padding: 17px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  text-align: center;
  color: #FFF;
}
.experience_content .experience_item-info {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-left: 40px;
}
.experience_content .experience_item-info p {
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #362832;
}
.experience_content .experience_item-info a {
  color: #362832;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  text-align: center;
  padding: 17px;
  border-radius: 27px;
  border: 1px solid #E32D29;
  width: 278px;
}

.product {
  padding-bottom: 193px;
}
.product .product_block {
  display: flex;
  flex-direction: column;
  gap: 112px;
}
.product .product_block .product_title {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #362832;
}
.product .product_block .product_cards {
  display: grid;
  grid-template-columns: 32.5% 32.5% 32.5%;
  gap: 15px;
}
.product .product_block .product_cards .product_card {
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding-bottom: 37px;
  border-radius: 50px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: 0.1s ease all;
  color: #362832;
}
.product .product_block .product_cards .product_card:hover {
  background-image: url(../img/product_card-bg.png);
  color: #FFF;
}
.product .product_block .product_cards .product_card-top {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 0px 40px 32px;
  border: 1px solid #ECE3E9;
  border-radius: 50px;
}
.product .product_block .product_cards .product_card-top img {
  margin-top: -64px;
  height: 200px;
  width: -moz-fit-content;
  width: fit-content;
}
.product .product_block .product_cards .product_card-top h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.02em;
  transition: 0.1s ease all;
  max-width: 350px;
}
.product .product_block .product_cards .product_card p {
  padding: 0px 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: -0.02em;
  transition: 0.1s ease all;
}

.delivery {
  background: #362832;
  position: relative;
  padding: 140px 0px 161px;
  border-radius: 280px;
  overflow: hidden;
}
.delivery .delivery_left-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.delivery .delivery_right-bg {
  position: absolute;
  top: 0;
  right: 0;
}
.delivery .delivery_block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 195px;
}
.delivery .delivery_block .title {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #FFF;
}
.delivery .delivery_block .title span {
  color: #DF2C2E;
}
.delivery .delivery_block .team {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 96px 50px;
}
.delivery .delivery_block .team .team_boxs {
  display: flex;
  align-items: start;
  gap: 50px;
}
.delivery .delivery_block .team .team_boxs .team_box p {
  margin-top: 27px;
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px;
  letter-spacing: -0.02em;
  color: #FFF;
}
.delivery .delivery_block .delivery_map {
  display: flex;
  justify-content: space-between;
  gap: 56px;
}
.delivery .delivery_block .delivery_map .map_info {
  display: flex;
  flex-direction: column;
  gap: 71px;
}
.delivery .delivery_block .delivery_map .map_info .map_boxs {
  display: flex;
  align-items: start;
  gap: 71px;
}
.delivery .delivery_block .delivery_map .map_info .map_boxs .map_box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.delivery .delivery_block .delivery_map .map_info .map_boxs .map_box span {
  font-size: 80px;
  font-weight: 300;
  line-height: 80px;
  letter-spacing: -0.03em;
  color: #FFF;
}
.delivery .delivery_block .delivery_map .map_info .map_boxs .map_box p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #FFF;
}

.process {
  padding: 158px 0px 170px;
}
.process .process_block {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.process .process_block .process_title {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #362832;
}
.process .process_block .process_items {
  position: relative;
  display: grid;
  grid-template-columns: 47% 47%;
  gap: 60px;
}
.process .process_block .process_items .process_line {
  position: absolute;
  left: 22px;
  top: 95px;
}
.process .process_block .process_items .process_item {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.process .process_block .process_items .process_item:nth-child(2) {
  margin-top: -90px;
}
.process .process_block .process_items .process_item .process_boxs {
  display: flex;
  align-items: start;
  gap: 65px;
}
.process .process_block .process_items .process_item .process_boxs .process_box {
  display: flex;
  flex-direction: column;
  gap: 51px;
}
.process .process_block .process_items .process_item .process_boxs .process_box h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: #362832;
}
.process .process_block .process_items .process_item .process_boxs .process_box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: -0.02em;
  color: #362832;
}
.process .process_block .process_items .process_item .request_card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 45px 50px;
  border-radius: 50px;
  border: 1px solid #D9D9D9;
  background-image: url(../img/request_card-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  max-width: 538px;
}
.process .process_block .process_items .process_item .request_card p {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #362832;
  max-width: 403px;
}
.process .process_block .process_items .process_item .request_card a {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  text-align: center;
  color: #FFF;
  border-radius: 27px;
  padding: 17px;
  width: 212px;
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
}
.process .process_block .process_items .process_item .process_card {
  padding: 83px 52px 40px 50px;
  border-radius: 50px;
  border: 1px solid #ECE3E9;
  display: flex;
  align-items: start;
  gap: 35px;
}
.process .process_block .process_items .process_item .process_card p {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #362832;
  max-width: 206px;
}
.process .process_block .process_items .process_item .process_card img {
  margin-top: -123px;
}

.question {
  position: relative;
  padding: 148px 0px 163px;
  border-radius: 280px;
  border: 1px solid #ECE3E9;
  overflow: hidden;
}
.question .question-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.question .question_block {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 82px;
}
.question .question_block .question_info {
  display: flex;
  flex-direction: column;
  gap: 61px;
  max-width: 507px;
}
.question .question_block .question_info h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #362832;
}
.question .question_block .question_info p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #362832;
}
.question .question_block .question_form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 635px;
  width: 100%;
}
.question .question_block .question_form .form_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.question .question_block .question_form .form_block .form_boxs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.question .question_block .question_form .form_block .form_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 16px 10px 14px;
  border: 1px solid #ECE3E9;
  width: 100%;
  border-radius: 15px;
}
.question .question_block .question_form .form_block .form_box label {
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: #362832;
  cursor: pointer;
}
.question .question_block .question_form .form_block .form_box input {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #362832;
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
  background: none;
}
.question .question_block .question_form .form_block .form_box textarea {
  font-family: "Steppe", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #362832;
  min-height: 74px;
  resize: none;
  border: none;
  outline: none;
  background: none;
}
.question .question_block .question_form .form_bottom {
  display: flex;
  align-items: center;
  gap: 35px;
}
.question .question_block .question_form .form_bottom .form_btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  text-align: center;
  color: #FFF;
  padding: 22px;
  width: 190px;
  border-radius: 34px;
  background: linear-gradient(90deg, #E32D29 0%, #9A1374 100%);
      border:none;
}
.question .question_block .question_form .form_bottom .form_check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.question .question_block .question_form .form_bottom .form_check input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: 1.5px solid #292D32;
  border-radius: 5px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.question .question_block .question_form .form_bottom .form_check input[type=checkbox]::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #292D32;
  transform-origin: bottom left;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.question .question_block .question_form .form_bottom .form_check input[type=checkbox]:checked::before {
  transform: scale(1);
}
.question .question_block .question_form .form_bottom .form_check label {
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: #362832;
}
.question .question_block .question_form .form_bottom .form_check label a {
  color: #362832;
  text-decoration: underline;
}

.clients {
  padding: 150px 0;
}
.clients .clients_block {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.clients .clients_block .clients_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clients .clients_block .clients_top .clients_title {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #362832;
}
.clients .clients_block .clients_top .clients_arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.clients .clients_block .clients_top .clients_arrow .swiper-button-next,
.clients .clients_block .clients_top .clients_arrow .swiper-button-prev {
  position: static;
  width: 68px;
  height: 68px;
  border-radius: 100%;
  border: 1px solid #362832;
  transition: 0.3s ease all;
  background: #362832;
  margin: 0;
}
.clients .clients_block .clients_top .clients_arrow .swiper-button-next.swiper-button-disabled,
.clients .clients_block .clients_top .clients_arrow .swiper-button-prev.swiper-button-disabled {
  width: 48px;
  height: 48px;
  background: none;
}
.clients .clients_block .clients_top .clients_arrow .swiper-button-next.swiper-button-disabled::after,
.clients .clients_block .clients_top .clients_arrow .swiper-button-prev.swiper-button-disabled::after {
  color: #362832;
}
.clients .clients_block .clients_top .clients_arrow .swiper-button-next::after,
.clients .clients_block .clients_top .clients_arrow .swiper-button-prev::after {
  font-size: 12px;
  color: #FFF;
}
.clients .clients_block .clients_logo {
  border-radius: 50px;
  border: 1px solid #ECE3E9;
  height: 160px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients .clients_block .clients_logo:hover {
  background: #ECE3E9;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 154px 0px 171px;
  background: #362832;
  border-radius: 280px 280px 0 0;
}
footer .footer-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .footer_block {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
}
footer .footer_block .footer_content {
  display: flex;
  flex-direction: column;
  gap: 82px;
}
footer .footer_block .footer_content .footer_boxs {
  display: flex;
  align-items: start;
  gap: 68px;
}
footer .footer_block .footer_content .footer_boxs .footer_box {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
footer .footer_block .footer_content .footer_boxs .footer_box b {
  font-size: 22px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: -0.03em;
  color: #FFF;
}
footer .footer_block .footer_content .footer_boxs .footer_box .footer_links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer_block .footer_content .footer_boxs .footer_box .footer_links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.01em;
  color: #FFF;
  opacity: 0.7;
}
footer .footer_block .footer_content .footer_boxs .footer_contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
footer .footer_block .footer_content .footer_boxs .footer_contact .footer_phone {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #FFF;
}
footer .footer_block .footer_content .footer_boxs .footer_contact .contact_info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .footer_block .footer_content .footer_boxs .footer_contact .contact_info span {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  color: #FFF;
}
footer .footer_block .footer_content .footer_boxs .footer_contact .contact_info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.01em;
  color: #FFF;
  opacity: 0.7;
}
footer .footer_block .footer_content .footer_social {
  display: flex;
  align-items: center;
  gap: 40px;
}
footer .footer_block .footer_content .footer_social .social_links {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer_block .footer_content .footer_social .social_links .social_link {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1019607843);
}
footer .footer_block .footer_content .footer_social .links {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer_block .footer_content .footer_social .links a {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  opacity: 0.7;
}

@media only screen and (max-width: 1650px) {
  .home {
    border-radius: 0px 0px 100px 100px;
  }
  .experience {
    padding: 130px 0px 150px;
  }
  .product {
    padding-bottom: 100px;
  }
  .question,
  .delivery {
    border-radius: 100px;
  }
  .clients,
  .delivery {
    padding: 100px 0px;
  }
  .delivery .delivery_block {
    gap: 150px;
  }
  .delivery .delivery_block .team {
    gap: 50px 40px;
  }
  .delivery .delivery_block .delivery_map .map_img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .process {
    padding: 100px 0px 120px;
  }
  .question {
    padding: 100px 0;
  }
  footer {
    border-radius: 100px 100px 0 0;
    padding: 100px 0px;
  }
}
@media only screen and (max-width: 1450px) {
  .header .header_block .header_contact,
  .header .header_block {
    gap: 20px;
  }
  .header .header_block .header_contact .header_num {
    font-size: 18px;
    line-height: 22px;
  }
  .header .header_block .header_logo {
    gap: 15px;
  }
  .header .header_block .header_logo img:nth-child(1) {
    width: 50px;
  }
  .header .header_block .header_logo img:nth-child(2) {
    width: 250px;
  }
  .home {
    padding: 180px 0px 80px;
  }
  .home .home_content .slide_info .home_text {
    font-size: 20px;
    line-height: 23.8px;
  }
  .home .home_content .slide_info .home_title {
    font-size: 54px;
    line-height: 54px;
  }
  .home .home_content .slide_info {
    gap: 40px;
  }
  .home .home_content .slide_info .home_link {
    width: 270px;
    padding: 17px;
    border-radius: 27px;
    font-size: 16px;
    line-height: 18px;
  }
  .home .home_slide .swiper-pagination {
    bottom: -110px;
  }
  .experience {
    padding: 100px 0px 100px;
  }
  .delivery .delivery_block .title,
  .process .process_block .process_title,
  .product .product_block .product_title,
  .question .question_block .question_info h2,
  .clients .clients_block .clients_top .clients_title,
  .experience_content .experience_item .experience_title {
    font-size: 44px;
    line-height: 44px;
  }
  .experience_content .experience_item .experience_boxs .experience_box span,
  .experience_content .experience_item .experience_card-info span {
    font-size: 50px;
    line-height: 50px;
  }
  .experience_content .experience_item .experience_boxs .experience_box p,
  .experience_content .experience_item .experience_card-info p {
    font-size: 16px;
    line-height: 20px;
  }
  .experience_content .experience_item .experience_card-link {
    height: 44px;
    width: 200px;
    padding: 10px;
    font-size: 14px;
    line-height: 17.2px;
  }
  .experience_content .experience_item .experience_card {
    padding: 50px 30px 30px;
    border-radius: 40px;
    gap: 30px;
  }
  .experience_content .experience_item .experience_boxs .experience_box {
    gap: 8px;
    border-radius: 40px;
    padding: 30px 30px 40px;
  }
  .experience_content .experience_item-info p {
    font-size: 16px;
    line-height: 22px;
  }
  .experience_content .experience_item-info a {
    font-size: 14px;
    line-height: 17px;
    padding: 14px;
    width: 240px;
  }
  .experience_content .experience_item-info {
    gap: 30px;
    padding-left: 30px;
  }
  .product .product_block .product_cards .product_card-top img {
    height: 150px;
    margin-top: -40px;
  }
  .product .product_block .product_cards .product_card-top h4 {
    font-size: 24px;
    line-height: 30px;
    max-width: 300px;
  }
  .product .product_block .product_cards .product_card p {
    padding: 0px 30px;
    font-size: 16px;
    line-height: 20px;
  }
  .product .product_block .product_cards .product_card {
    gap: 20px;
    padding-bottom: 20px;
    border-radius: 30px;
  }
  .product .product_block .product_cards .product_card-top {
    gap: 20px;
    padding: 0px 30px 20px;
    border-radius: 30px;
  }
  .product .product_block {
    gap: 80px;
  }
  .delivery .delivery_block {
    gap: 100px;
  }
  .delivery .delivery_block .team .team_boxs .team_box img {
    width: 60px;
  }
  .delivery .delivery_block .team .team_boxs .team_box p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 20px;
  }
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box {
    gap: 8px;
  }
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box span {
    font-size: 60px;
    line-height: 60px;
    white-space: nowrap;
  }
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box p {
    font-size: 16px;
    line-height: 20px;
  }
  .delivery .delivery_block .delivery_map .map_img {
    width: 500px;
  }
  .process .process_block .process_items .process_line {
    display: none;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box p {
    font-size: 16px;
    line-height: 20px;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box {
    gap: 30px;
  }
  .process .process_block .process_items .process_item .request_card {
    gap: 20px;
    padding: 30px 35px;
    border-radius: 40px;
  }
  .process .process_block .process_items .process_item .process_card img {
    margin-top: -80px;
    width: 180px;
  }
  .process .process_block .process_items .process_item .process_card {
    padding: 50px 35px 30px 35px;
    border-radius: 40px;
    gap: 30px;
  }
  .question .question_block .question_info p,
  .process .process_block .process_items .process_item .process_card p {
    font-size: 18px;
    line-height: 22px;
  }
  .question .question_block .question_info {
    gap: 40px;
  }
  .clients .clients_block .clients_logo {
    border-radius: 30px;
    height: 120px;
  }
}
@media only screen and (max-width: 1250px) {
  .header_mob,
  .header .header_block #burger {
    display: block;
  }
  .header .header_block .header_navs {
    display: none;
  }
  .home {
    padding: 150px 0px 60px;
    border-radius: 0px 0px 60px 60px;
  }
  .home .home_content {
    padding-right: 120px;
  }
  .home2 .home_content {
    margin-top: 30px;
    padding-right: 0 !important;
  }
  .home .home_content .slide_info .home_text {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
  }
  .home .home_content .slide_info .home_title {
    font-size: 45px;
    line-height: 45px;
  }
  .home .home_content .slide_info {
    gap: 30px;
  }
  .home .home_content img {
    width: 300px;
  }
  .home2 .home_content img {
    width: 500px;
  }
  .home2 .home_content .error_img {
    margin-right: 0;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .clients .clients_block .clients_top .clients_arrow .swiper-button-next,
  .clients .clients_block .clients_top .clients_arrow .swiper-button-prev,
  .home .home_slide .home_arrow .swiper-button-next,
  .home .home_slide .home_arrow .swiper-button-prev {
    width: 58px;
    height: 58px;
  }
  .clients .clients_block .clients_top .clients_arrow .swiper-button-next.swiper-button-disabled,
  .clients .clients_block .clients_top .clients_arrow .swiper-button-prev.swiper-button-disabled,
  .home .home_slide .home_arrow .swiper-button-next.swiper-button-disabled,
  .home .home_slide .home_arrow .swiper-button-prev.swiper-button-disabled {
    width: 40px;
    height: 40px;
  }
  .delivery .delivery_block .title,
  .process .process_block .process_title,
  .product .product_block .product_title,
  .question .question_block .question_info h2,
  .clients .clients_block .clients_top .clients_title,
  .experience_content .experience_item .experience_card-info span,
  .experience_content .experience_item .experience_boxs .experience_box span,
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box span,
  .experience_content .experience_item .experience_title {
    font-size: 36px;
    line-height: 36px;
  }
  .experience_content .experience_item .experience_boxs .experience_box {
    border-radius: 20px;
    padding: 20px 20px 30px;
  }
  .experience_content .experience_item .experience_card {
    padding: 30px 20px 20px;
    border-radius: 20px;
    gap: 20px;
  }
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box p,
  .experience_content .experience_item .experience_boxs .experience_box p,
  .experience_content .experience_item .experience_card-info p {
    font-size: 14px;
    line-height: 16px;
  }
  .experience_content .experience_item-info {
    gap: 20px;
    padding-left: 20px;
  }
  .experience_content .experience_item-info p {
    font-size: 14px;
    line-height: 18px;
  }
  .product {
    padding-bottom: 60px;
  }
  .product .product_block .product_cards .product_card-top img {
    height: 110px;
  }
  .product .product_block .product_cards .product_card {
    border-radius: 20px;
  }
  .product .product_block .product_cards .product_card-top {
    padding: 0px 20px 20px;
    border-radius: 20px;
  }
  .product .product_block .product_cards .product_card-top h4 {
    font-size: 20px;
    line-height: 24px;
    max-width: 220px;
  }
  .product .product_block .product_cards .product_card p {
    padding: 0px 20px;
    font-size: 14px;
    line-height: 18px;
  }
  .clients, .delivery {
    padding: 60px 0px;
  }
  .delivery {
    border-radius: 60px;
  }
  .delivery .delivery_block .delivery_map .map_info {
    gap: 50px;
  }
  .delivery .delivery_block .delivery_map .map_img {
    width: 400px;
  }
  .process {
    padding: 80px 0px;
  }
  .process .process_block .process_items .process_item .process_card img {
    margin-top: -80px;
    width: 130px;
  }
  .process .process_block .process_items .process_item:nth-child(2) {
    margin-top: -55px;
  }
  .question {
    border-radius: 60px;
    padding: 60px 0;
  }
  .question .question_block {
    gap: 30px;
  }
  footer {
    border-radius: 60px 60px 0 0;
    padding: 60px 0px;
  }
  footer .footer-gradient {
    left: -20px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_contact .footer_phone {
    font-size: 28px;
    line-height: 32px;
  }
  footer .footer_block .footer_content .footer_boxs {
    justify-content: space-between;
    gap: 20px;
  }
  footer .footer_block .footer_content .footer_social .links {
    flex-wrap: wrap;
    gap: 15px;
  }
  .clients .clients_block .clients_logo {
    padding: 20px;
  }
  footer .footer_block .footer_logo img {
    width: 200px;
  }
  .clients .clients_block .clients_logo {
    border-radius: 20px;
    height: 100px;
  }
  .clients .clients_block .clients_logo img {
    width: 100%;
   
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    margin-top: 25px;
  }
  .header .header_block #burger {
    width: 26px;
    height: 15px;
  }
  .header .header_block #burger span {
    height: 2px;
  }
  .header .header_block #burger span:nth-child(2),
  .header .header_block #burger span:nth-child(3) {
    top: 7px;
  }
  .header .header_block #burger span:nth-child(4) {
    top: 14px;
  }
  .header .header_block .header_contact {
    display: none;
  }
  .header .header_block .header_logo img:nth-child(1) {
    width: 40px;
  }
  .header .header_block .header_logo img:nth-child(2) {
    width: 200px;
  }
  .home {
    padding: 130px 0px 60px;
  }
  .home .home_content .slide_info .home_text {
    font-size: 14px;
    line-height: 18px;
  }
  .home .home_content .slide_info .home_title {
    font-size: 32px;
    line-height: 38px;
  }
  .home .home_content .slide_info .home_link {
    width: 240px;
    padding: 14px;
    font-size: 14px;
  }
  .home .home_content img {
    width: 250px;
  }
  .clients .clients_block .clients_top .clients_arrow .swiper-button-next,
  .clients .clients_block .clients_top .clients_arrow .swiper-button-prev,
  .home .home_slide .home_arrow .swiper-button-next,
  .home .home_slide .home_arrow .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
  .home .home_slide .home_arrow .swiper-button-next::after,
  .home .home_slide .home_arrow .swiper-button-prev::after {
    font-size: 10px;
    color: #FFF;
  }
  .clients .clients_block .clients_top .clients_arrow .swiper-button-next.swiper-button-disabled,
  .clients .clients_block .clients_top .clients_arrow .swiper-button-prev.swiper-button-disabled,
  .home .home_slide .home_arrow .swiper-button-next.swiper-button-disabled,
  .home .home_slide .home_arrow .swiper-button-prev.swiper-button-disabled {
    width: 38px;
    height: 38px;
  }
  .home .home_slide .swiper-pagination {
    bottom: -90px;
  }
  .home2 .home_content img {
    width: 400px;
  }
  .experience {
    padding: 80px 0px 80px;
  }
  .delivery .delivery_block .title,
  .process .process_block .process_title,
  .product .product_block .product_title,
  .question .question_block .question_info h2,
  .clients .clients_block .clients_top .clients_title,
  .experience_content .experience_item .experience_card-info span,
  .experience_content .experience_item .experience_boxs .experience_box span,
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box span,
  .experience_content .experience_item .experience_title {
    font-size: 30px;
    line-height: 30px;
  }
  .experience_content .experience_item {
    grid-template-columns: 47% 47%;
    gap: 47px;
  }
  .experience_content .experience_item .experience_card {
    flex-direction: column;
    align-items: start;
  }
  .experience_content .experience_item .experience_card-link {
    height: 40px;
    width: 180px;
  }
  .delivery .delivery_block .team .team_boxs .team_box p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 18px;
  }
  .delivery .delivery_block .team .team_boxs {
    gap: 20px;
  }
  .delivery .delivery_block .team {
    gap: 40px 20px;
  }
  .delivery .delivery_block {
    gap: 60px;
  }
  .process .process_block .process_items {
    grid-template-columns: 100%;
  }
  .process .process_block .process_items .process_item:nth-child(2) {
    margin-top: 0;
  }
  .process .process_block .process_items .process_item .process_boxs,
  .process .process_block .process_items .process_item {
    gap: 30px;
  }
  .process .process_block .process_items .process_item .request_card {
    max-width: 100%;
    border-radius: 30px;
  }
  .process .process_block .process_items .process_item .process_card {
    border-radius: 30px;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box {
    gap: 15px;
  }
  .process .process_block .process_items .process_item .process_card p {
    max-width: 100%;
  }
  .process .process_block .process_items .process_item .request_card p,
  .process .process_block .process_items .process_item .process_boxs .process_box h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box p {
    font-size: 14px;
    line-height: 18px;
  }
  .process .process_block {
    gap: 40px;
  }
  .question .question_block {
    gap: 30px;
    flex-direction: column;
  }
  .question .question_block .question_form {
    max-width: 100%;
  }
  footer .footer_block {
    gap: 30px;
    flex-direction: column;
  }
  footer .footer_block .footer_content {
    gap: 50px;
  }
}
@media only screen and (max-width: 776px) {
  .home .home_content .slide_info .home_title {
    font-size: 30px;
    line-height: 34px;
  }
  
  #contact_form_pop{
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius:15px;
    margin: 50px auto 10px;
}

  
  .home .home_content img {
    width: 180px;
  }
  .home2 .home_content img {
    width: 300px;
  }
  .home .home_content {
    padding-right: 60px;
  }
  .home {
    padding: 100px 0px 50px;
    border-radius: 0 0 40px 40px;
  }
  .home .home_content .slide_info {
    gap: 20px;
  }
  .home .home_content .slide_info .home_link {
    width: 215px;
    padding: 12px;
    font-size: 14px;
  }
  .home .home_slide .swiper-pagination {
    bottom: -72px;
  }
  .experience_content .experience_item {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .experience_content .experience_item-info {
    padding-left: 0;
  }
  .experience_content {
    gap: 20px;
  }
  .experience_content .experience_item .experience_title {
    padding-bottom: 0;
  }
  .delivery .delivery_block .title,
  .process .process_block .process_title,
  .product .product_block .product_title,
  .question .question_block .question_info h2,
  .clients .clients_block .clients_top .clients_title,
  .experience_content .experience_item .experience_card-info span,
  .experience_content .experience_item .experience_boxs .experience_box span,
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box span,
  .experience_content .experience_item .experience_title {
    font-size: 26px;
    line-height: 28px;
  }
  .experience_content .experience_item-info a {
    line-height: 16px;
    padding: 14px 14px 12px;
    width: 220px;
  }
  .product .product_block .product_cards {
    grid-template-columns: 100%;
    gap: 70px;
  }
  .delivery {
    border-radius: 40px;
  }
  .delivery .delivery_block .team .team_boxs .team_box img {
    width: 40px;
  }
  .delivery .delivery_block .team {
    gap: 20px;
    grid-template-columns: 100%;
  }
  .delivery .delivery_block .delivery_map {
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }
  .process {
    padding: 60px 0px;
  }
  .process .process_block .process_items .process_item .request_card {
    border-radius: 20px;
    padding: 20px;
  }
  .process .process_block .process_items .process_item .process_card {
    padding: 30px 20px 20px 20px;
    border-radius: 20px;
    gap: 20px;
  }
  .process .process_block .process_items .process_item .process_card img {
    margin-top: -55px;
    width: 85px;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box h3 {
    font-weight: 500;
  }
  .question {
    border-radius: 40px;
  }
  .question .question_block .question_form .form_block .form_box textarea,
  .question .question_block .question_form .form_block .form_box input {
    font-size: 14px;
    line-height: 16px;
  }
  .question .question_block .question_form .form_block .form_box label {
    font-size: 10px;
    line-height: 12px;
  }
  .question .question_block .question_form .form_block .form_box {
    border-radius: 10px;
  }
  .process .process_block .process_items .process_item .request_card a {
    font-size: 14px;
    line-height: 16px;
    padding: 14px;
    width: 190px;
  }
  .process .process_block .process_items .process_item .request_card p {
    font-size: 16px;
    line-height: 20px;
  }
  .question .question_block .question_form {
    gap: 30px;
  }
  .question .question_block .question_form .form_bottom .form_btn {
    font-size: 16px;
    line-height: 18px;
    padding: 14px;
    width: 180px;
    border-radius: 27px;
    border:none;
  }
  .question .question_block .question_info {
    gap: 20px;
  }
  .question .question_block .question_info p,
  .process .process_block .process_items .process_item .process_card p {
    font-size: 16px;
    line-height: 18px;
  }
  .product .product_block .product_cards .product_card-top h4 {
    font-weight: 400;
  }
  .clients .clients_block {
    gap: 30px;
  }
  .clients .clients_block .clients_top .clients_arrow .swiper-button-next,
  .clients .clients_block .clients_top .clients_arrow .swiper-button-prev,
  .home .home_slide .home_arrow .swiper-button-next,
  .home .home_slide .home_arrow .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .clients .clients_block .clients_top .clients_arrow .swiper-button-next.swiper-button-disabled,
  .clients .clients_block .clients_top .clients_arrow .swiper-button-prev.swiper-button-disabled,
  .home .home_slide .home_arrow .swiper-button-next.swiper-button-disabled,
  .home .home_slide .home_arrow .swiper-button-prev.swiper-button-disabled {
    width: 30px;
    height: 30px;
  }
  .clients .clients_block .clients_logo {
    border-radius: 15px;
    height: 80px;
  }
  footer {
    border-radius: 40px 40px 0 0;
    padding: 40px 0px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_box b {
    font-size: 16px;
    line-height: 18px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_contact .footer_phone {
    font-size: 20px;
    line-height: 20px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_contact .contact_info span {
    font-size: 14px;
    line-height: 16px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_box .footer_links a,
  footer .footer_block .footer_content .footer_boxs .footer_contact .contact_info p {
    font-size: 12px;
    line-height: 14px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_contact {
    gap: 20px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_box {
    gap: 15px;
  }
  footer .footer_block .footer_content .footer_boxs .footer_box .footer_links {
    gap: 10px;
  }
  footer .footer_block .footer_content .footer_social {
    gap: 20px;
    flex-direction: column;
  }
  footer .footer_block .footer_content .footer_social .links {
    gap: 15px 20px;
    justify-content: center;
  }
}
@media only screen and (max-width: 576px) {
  .container {
    padding: 0px 15px;
  }
  .header .header_block .header_logo {
    gap: 10px;
  }
  .header .header_block .header_logo img:nth-child(1) {
    width: 35px;
  }
  .header .header_block .header_logo img:nth-child(2) {
    width: 170px;
  }
  .home .home_content .slide_info .home_title {
    font-size: 26px;
    line-height: 26px;
  }
  .home .home_content .slide_info .home_text {
    font-size: 12px;
    line-height: 14px;
  }
  .home .home_content .slide_info .home_link {
    width: 190px;
    padding: 10px;
    font-size: 12px;
  }
  .home .home_content img {
    width: 145px;
  }
  .home2 .home_content img {
    width: 300px;
  }
  .home .home_content {
    gap: 20px;
    flex-direction: column;
    padding-right: 0;
  }
  .home2 .home_content .slide_info .home_text {
    margin-bottom: 0;
  }
  .experience {
    padding: 60px 0px;
  }
  .delivery .delivery_block .delivery_map .map_info .map_boxs .map_box p,
  .experience_content .experience_item .experience_boxs .experience_box p,
  .experience_content .experience_item .experience_card-info p {
    font-size: 12px;
    line-height: 14px;
  }
  .experience_content .experience_item .experience_boxs .experience_box {
    min-height: 126px;
  }
  .experience_content .experience_item .experience_boxs .experience_box span {
    font-size: 22px;
    line-height: 24px;
  }
  .product .product_block {
    gap: 60px;
  }
  .product .product_block .product_cards .product_card-top img {
    height: 90px;
    margin-top: -25px;
  }
  .product .product_block .product_cards .product_card-top h4 {
    font-size: 18px;
    line-height: 20px;
    max-width: 220px;
  }
  .product .product_block .product_cards {
    gap: 55px;
  }
  .delivery {
    border-radius: 30px;
    padding: 40px 0;
  }
  .delivery .delivery_block .team .team_boxs .team_box p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 14px;
  }
  .delivery .delivery_block .delivery_map .map_img {
    width: 100%;
  }
  .delivery .delivery_right-bg {
    right: -100px;
  }
  .delivery .delivery_left-bg {
    left: -240px;
  }
  .process .process_block .process_items .process_item .process_boxs .process_box p {
    font-size: 12px;
    line-height: 14px;
  }
  .process .process_block .process_items .process_item .process_card img {
    margin-top: -45px;
    width: 70px;
  }
  .question {
    border-radius: 30px;
    padding: 40px 0;
  }
  .question .question_block .question_info p,
  .process .process_block .process_items .process_item .process_card p {
    font-size: 14px;
    line-height: 16px;
  }
  .question .question_block .question_form .form_bottom {
    align-items: start;
    gap: 20px;
    flex-direction: column-reverse;
  }
  .question .question_block .question_form .form_block {
    gap: 10px;
  }
  .question .question_block .question_form .form_block .form_boxs {
    flex-direction: column;
    gap: 10px;
  }
  footer {
    border-radius: 30px 30px 0 0;
  }
  footer .footer-gradient {
    left: -80px;
  }
  footer .footer_block .footer_content .footer_boxs {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */


