.roboto-regular {
  font-family: "Roboto", sans-serif;
}

html{
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::after
*::before{
  box-sizing: inherit;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  color: var(--main-color);
  transition: 0.45s;
}

p{
    margin-bottom: 0;
}

li{
  list-style: none;
}

.container{
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

img{
  max-width: 100%;
}

body{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #1B1B1B;
  overflow-x: hidden;
}

:root {
  --main-color: #ff8800;
  --button-color: #ff5c21; /* Цвет рамки кнопки */
  --button-hover-color: #ff9900;
}

/* ------------- header ------------- */
.header{
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 80px;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 999;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.7s;
}

.header.scrolled .menu__list {
  color: black;
}

.header .container{
  max-width: 1400px;
}

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

.logo__img{
  width: 150px;
  height: auto;
}

/* По умолчанию скрываем лого для скролла */
.logo__img--scrolled {
  display: none;
}

.logo__img--default {
  display: block; /* Показываем обычный логотип по умолчанию */
}

.header.scrolled .logo__img--default {
  display: none; /* Скрываем обычный логотип при скролле */
}

.header.scrolled .logo__img--scrolled {
  display: block; /* Показываем тёмный логотип при скролле */
}



@media (min-width: 1098px){
  .logo__img-menu{
    display: none;
  }
}

.menu{
  position: relative;
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
}

.menu__list{
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.btn-secondary{
  background-color: var(--button-color);
  border: none;
}
.btn-secondary:hover{
  background-color: #de7700;
  border: none;
}

.btn.show{
  background-color: #de7700;
  color: #fff
}

/* -------------- burger menu -------------- */
.open{
  display: flex!important;
}
.burger{
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.burger span{
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #fff;
}
.header.scrolled .burger span {
  background-color: #000; /* Чёрная полоска, когда шапка прокручена */
}
.burger::before, .burger::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--main-color);
  transition: all 0.3s ease 0s;
}
.burger::before{
  top: 0;
}
.burger::after{
  bottom: 0;
}
.burger.active span{
  transform: scale(0);
}
.burger.active::before{
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after{
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}
@media (max-width: 1098px) {
  .burger {
    display: flex;
    cursor: pointer;
  }
  .logo__img-menu{
    width: 100px;
    height: auto;
    position: absolute;
    top: 0;
    margin-top: 20px;
  }
  .menu {
    display: none;
    /* flex-direction: column; */
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    animation: burgerAnimation 0.4s;
    background-color: #fff;
  }
  .menu ul {
    flex-direction: column;
    row-gap: 30px;
  }
  .menu__list {
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: 30px;
    }
  .menu__link {
    color: #000000;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.24s ease 0s;
    letter-spacing: 0.1em;
    line-height: 10px;
  }
  .menu__link::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 20px; 
    height: 1px; 
    width: 110%;
    background-color: #ffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease-in-out;
  }
  .menu__link:hover::after {
    transform: scaleX(1);
  }
  .translator {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 20px;
    color: var(--main-color);
    margin-top: -180px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1098px){
  .dropdown-center {
    position: absolute;
    right: 0;
    margin-right: 70px;
  }
}

@keyframes burgerAnimation{
  from {opacity: 0;}
  to {opacity: 1;}
}

/* --------------  bg -------------- */
.bg{
  background-image: url('/img/movers_parallax.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 800px;
  margin-bottom: 100px;
}

@media (max-width: 960px){
    .bg{
  background-attachment: scroll;
 }
}

.bg:after {
  /* bottom: -30%; */
  top: 0;
  background: linear-gradient(0deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 1) 100%);
}

.bg__inner{
  position: absolute;
  margin-top: 200px;
}

.bg__subtitle{
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.bg__title{
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: #fff;
  max-width: 700px;
  text-transform: uppercase;
}

@media (max-width: 460px){
  .bg__title{
    font-family: "Roboto", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    max-width: 700px;
    text-transform: uppercase;
  }
  .bg__text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    max-width: 600px;
    margin-bottom: 50px;
    padding: 0 50px 0 0;
  }
  .logo__img {
    width: 100px;
  }
}

.bg__short-line{
  width: 85px;
  height: 3px;
  background-color: var(--main-color);
  margin-top: 10px;
  margin-bottom: 20px;
}

.bg__text{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 50px;
}

.bg__items{
  display: flex;
  gap: 20px;
}

.bg__btn-one{
  font-family: "Roboto", sans-serif;
  background-color: var(--main-color);
  padding: 10px 20px;
  border-radius: 5px;
  color: #ffff;
  text-transform: uppercase;
}
.bg__btn-one:hover{
  background-color: #de7700;
  color: #ffff
}

.bg__btn-two{
  font-family: "Roboto", sans-serif;
  background-color: #b0b0b0;
  padding: 10px 20px;
  border-radius: 5px;
  color: #ffff;
  text-transform: uppercase;
}
.bg__btn-two:hover{
  background-color: #9c9c9c;
  color: #fff;
}

/* -------------- about -------------- */
.about__inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 100px;
}

.about__subtitle{
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: block;
  text-align: end;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about__title{
  font-family: "Roboto", sans-serif;
  display: block;
  text-align: end;
  font-size: 35px;
  text-transform: uppercase;
}

.about__text{
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: block;
  max-width: 400px;
  text-align: end;
}

.about__img{
  margin-top: -160px;
  max-width: 100%;
  height: auto;
  display: block;
  width: 350px;
}

@media (max-width: 809px){
  .about__img{
    margin-top: 10px;
    max-width: 100%;
    height: auto;
    display: block;
    width: 350px;
  }
}

/* -------------- price -------------- */
#price {
  position: relative;
  top: -120px;
} 

.price{
  margin-bottom: 50px;
}
.price__title{
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

.price__short-line{
  width: 150px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.price__items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.prices__item{
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.prices__items-info{
  display: flex;
  justify-content: center;
  background-color: #ff88030f;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  /* width: 100%; */
  margin: 0 auto;
  align-items: baseline;
  gap: 20px;
}

.prices__item-info {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.prices__item-info-text{
  font-size: 12px;
  font-weight: 600;
  color: var(--main-color);
}

.prices__item-info-img{
  width: 18px;
  height: 18px;
}

.price__text-one{
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
  text-align: center;
}

.price__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: 8px 4px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  border-radius: 10px;
}

.price__img-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100px;
  width: 100%;
  object-fit: contain;
  margin: 20px 0;
}

.price__img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.price__neme{
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  font-weight: 600;
  margin-top: auto;
  position: relative;
  text-align: center;
}

.price__text-two{
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.price__btn {
  margin-top: auto;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.price__btn:hover {
  background-color: #de7700;
  color: #fff;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Стили для модального окна */
.modal {
  display: none; 
  position: fixed; 
  /* z-index: 1;  */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.8); /* Темный фон */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Стили для формы */
form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
}

form input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #218838;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Стили для модального окна */
.modal {
  display: none; 
  position: fixed; 
  /* z-index: 1;  */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.8); /* Темный фон */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 350px;
  text-align: center;
}

.modal-content h2{
  font-size: 35px;
  margin-bottom: 10px;
  line-height: 1;
}

.modal-content p{
  font-size: 16px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Стили для формы */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form label {
  margin-top: 10px;
}

form input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 100;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.applicationForm.form.button {
    border: none;
    color: #fff;
    margin-top: 20px;
    background-color: var(--button-color);
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.applicationForm.form.button:hover {
    background-color: var(--main-color);
}

form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #de7700;
}

button:not(:disabled) {
  cursor: pointer;
  background-color: var(--button-color);
  border: none;
  border-radius: 5px;
  color: #fff;
}

button:not(:disabled):hover {
  cursor: pointer;
  background-color: var(--main-color);
  border: none;
  border-radius: 5px;
  color: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    /* border-color: #46b450; */
    border-radius: 5px;
    top: -20px;
    border: 1px solid #46b450;
    width: 88%;
    margin: 0 auto;
    position: relative;
}

.bg__social {
  position: absolute;
  margin-left: 200px;
  display: flex;
  gap: 20px;
  color: #fff;
  font-size: 30px;
}

@media (max-width: 460px){
  .bg__social {
    position: absolute;
    display: flex;
    gap: 20px;
    margin-top: 55px;
    color: #fff;
    font-size: 30px;
    margin-left: 0;
  }
}

/* -------------- loader -------------- */ 
.loader{
  margin-bottom: 50px;
}

.loader__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.loader__boxes-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 45px;
}

.loader__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 1024px) {
  .loader__inner {
    grid-template-columns: 1fr;
  }

  .loader__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .loader__title-price {
    margin-top: 20px;
  }

  .loader__box-price-items {
    grid-template-columns: 1fr;
  }
  .loader__footer {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .loader__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .loader__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .loader__boxes, .loader__boxes-price {
    grid-template-columns: 1fr;
  }
  .loader__boxes-price {
    gap: 1px;
    margin-top: 45px;
  }
  .loader__footer {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  .loader__footer-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -40px;
  }
  .loader__footer-item {
    background-color: #ff88030f;
    padding: 20px;
    border-radius: 10px;
    width: 100%!important;
    position: relative;
  }
}

.loader{
  padding: 50px 0;
}

.loader__inner {
  box-shadow: 0px 24px 64px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 20px;
}

.loader__title{
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.loader__box-price-items {
  display: grid;
  align-content: space-evenly;
}

.loader__box-price-text {
  width: 190px;
  position: relative;
  font-size: 14px;
  margin-bottom: 0;
}

.loader__box{
  background-color: #ff88030f;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  position: relative;
}

.loader__box-text{
  font-family: "Roboto", sans-serif;
  width: 230px;
}

.loader__box-text span{
  color: var(--main-color);
}

.loader__box-prices{
  color: var(--main-color);
  font-size: 31px;
  font-weight: 600;
  margin-top: 30px;
  height: 40px;
}

.loader__box-price-img{
  width: 40px;
  height: 40px;
}

.loader__box-price-text {
  max-width: 150px;
  position: relative;
}

.loader__title-price{
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.loader__box-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.loader__short-line{
  width: 100%;
  height: 1px;
  background-color: #ff880030;
  margin-top: 30px;
  margin-bottom: 30px;
}

.loader__text-footer{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  max-width: 500px;
  margin-bottom: 20px;
}

.loader__text-footer.loader__text-footer-one{
  font-size: 14px;
}

.loader__footer-text{
  background-color: transparent!important;
}

.loader__footer{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.loader__footer-items{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.loader__footer-item{
  background-color: #ff88030f;
  padding: 20px;
  border-radius: 10px;
  width: 70%;
  position: relative;
}

.loader__footer-item p{
  font-size: 12px;
  max-width: 450px;
}

@media (max-width: 460px){
  .loader__footer-item p{
    font-size: 14px;
    max-width: 450px;
  }
}

.loader__footer-item span{
  font-size: 14px;
  display: flex;
  font-weight: 600;
  margin-bottom: 10px;
}

/* -------------- min-order -------------- */
.min-order{
  margin-bottom: 100px;
  display: block;
}

.min-order__inner{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
}

.min-order__items{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.min-order__title{
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
}

.min-order__short-line{
  width: 150px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 60px;
}

.min-order__item1{
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
  max-width: 275px;
  width: 100%;
  border: 1px solid #ff88034d;
  text-align: center;
  justify-content: center;
}

.min-order__item2 {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
  max-width: 455px;
  width: 100%;
  border: 1px solid #ff88034d;
  text-align: center;
  justify-content: center;
}

.min-order__item3 {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #ff88034d;
  max-width: 760px;
  text-align: center;
  justify-content: center;
}

.min-order__item-img {
  width: 110px;
  height: 110px;
  display: flex;
  padding: 20px;
  position: relative;
  align-items: center;
  justify-content: center;
  max-width: 110px;
  max-height: 110px;
  min-width: 40px;
  min-height: 40px;
}


.min-order__item-img.worker {
  width: 90px;
  height: 90px;
  display: flex;
  padding: 20px;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.min-order__item-img.add{
  width: 50px;
  height: 50px;
  margin-left: -20px;
  margin-right: -20px;
}


.min-order__item-text {
  height: 100%;
  text-align: center;
  align-items: center;
  display: flex;
  position: relative;
  font-size: 26px;
  font-weight: 600;
  color: var(--main-color);
}

.min-order__item-img.equal{
  width: 50px;
  height: 50px;
  margin-left: -20px;
}

.discount__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.discount__item {
  display: flex;
  align-items: center;
  background-color: #ff88030f;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  position: relative;
  height: 80px;
}

.discount__img {
  width: 80px;
  height: 80px;
  display: flex;
  padding: 20px;
  position: relative;
  align-items: center;
  justify-content: center;
  max-width: 100px;
  max-height: 100px;
  min-width: 40px;
  min-height: 40px;
}

.discount__item-title span{
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.discount__item-minute{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.discount__openFormBtn-items {
  display: flex;
}

.discount__openFormBtn {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  width: 48%;
  font-size: 15px!important;
}

@media (max-width: 1197px){
  .min-order__inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px;
    flex-direction: column;
  }
  .discount__items {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .min-order__item1 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    max-width: none;
    width: 100%;
    border: 1px solid #ff88034d;
    text-align: center;
    justify-content: center;
  }
  .min-order__item2 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    max-width: none;
    width: 100%;
    border: 1px solid #ff88034d;
    text-align: center;
    justify-content: center;
  }
  .min-order__item3 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #ff88034d;
    max-width: none;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 1179px) {
  .min-order__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .min-order__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  .min-order__item-img.worker {
    width: 80px;
    height: 80px;
    display: flex;
    padding: 20px;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
  }
  .min-order__item-img {
    width: 90px;
    height: 90px;
  }
  .min-order__item-text {
    height: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    position: relative;
    font-size: 21px;
    font-weight: 600;
    color: var(--main-color);
    margin-left: -10px;
  }
  .discount__items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .discount__img {
    width: 90px;
    height: 90px;
    display: flex;
    padding: 20px;
    position: relative;
    align-items: center;
    justify-content: center;
    max-width: 100px;
    max-height: 100px;
    min-width: 40px;
    min-height: 40px;
  }
  .discount__item {
    display: flex;
    align-items: center;
    background-color: #ff88030f;
    padding: 10px 0;
    border-radius: 10px;
    width: 100%;
    position: relative;
  }
  .min-order__item1 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    max-width: none;
    width: 100%;
    border: 1px solid #ff88034d;
    text-align: center;
    justify-content: flex-start;
  }
  .min-order__item2 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    max-width: 440px;
    width: 100%;
    border: 1px solid #ff88034d;
    text-align: center;
    justify-content: flex-start;
  }
  .min-order__item3 {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #ff88034d;
    max-width: 760px;
    text-align: center;
    justify-content: flex-start;
  }
}

/* -------------- stageofwork -------------- */
#stageofwork {
  position: relative;
  top: -120px;
}

.stageofwork{
  margin-bottom: 100px;
}

.stageofwork__title{
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 33px;
  text-transform: uppercase;
  font-weight: 500;
}

.stageofwork__short-line{
  width: 150px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.stageofwork__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.stageofwork__item{
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ff88030f;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  max-width: 600px;
}

.stageofwork__item span{
  color: var(--main-color);
  font-size: 41px;
}

.tageofwork__img{
  width: 600px;
  height: auto;
}

.stageofwork__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  max-width: 450px;
  margin-bottom: 0;
}

@media (max-width: 867px){
  .stageofwork__inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 460px){
  .stageofwork__text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    max-width: 450px;
  }
}

/* -------------- packaging -------------- */
#packaging {
  position: relative;
  top: -120px;
}

.packaging{
  margin-bottom: 100px;
}

.packaging__title{
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

.packaging__short-line{
  width: 150px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 60px;
}

.packaging__img {
  border: 1px solid #ff88034d;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide span{
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.swiper-button-next:after, 
.swiper-button-prev:after{
  content: none;
}

.container-arrow {
  position: relative;
  padding: 0;
  max-width: 1200px;
}

.about__arrow {
  margin-top: 60px;
}

.swiper-button-next {
  left: 75px;
  right: auto;
}

.swiper-button-next, .swiper-button-prev, img{
  width: 55px;
  height: 33px;
}

/* -------------- appreciate -------------- */
#appreciate {
  position: relative;
  top: -120px;
}

.appreciate{
  margin-bottom: 100px;
  display: grid;
}

.appreciate__title{
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.appreciate__short-line{
  width: 150px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 60px;
}

.container__appreciate{
  box-shadow: 0px 24px 64px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 50px;
  width: 88%;
}

@media (max-width: 960px){
  .container__appreciate {
    box-shadow: 0px 24px 64px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 17px;
    width: 97.5%;
  }
}

@media (max-width: 460px){
  .container__appreciate {
    box-shadow: 0px 24px 64px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 17px;
    width: 95%;
  }
  .appreciate__title {
    font-size: 30px;
  }
}

.appreciate__inner{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.appreciate__item {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #ff88030f;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.appreciate__img{
  width: 40px;
  height: 40px;
}

.appreciate__text{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.clients__items{
  display: flex;
  align-items: baseline;
}

.clients__counter-title{
  position: relative;
  margin-bottom: 50px;
  font-size: 18px;
}

.clients__short-line{
  width: 100px;
  height: 1px;
  background-color: var(--main-color);
  margin-left: 20px;
}

.clients__counter-item {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
}

.clients__result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

img.clients__item-icons {
  width: 50px;
  height: auto;
}

.clients__item-numbers {
  font-size: 40px;
  font-weight: 500;
}

.clients__item-text {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 767px){
  .clients__counter-item {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}

@media (max-width: 460px){
  .clients__counter-item {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}

/* -------------- call-action -------------- */
.call-action{
  background-image: url(/img/movers_151-1080x540.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 300px;
}

@media (max-width: 960px){
    .call-action{
  background-attachment: scroll;
 }
}

.call-action:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: rgba(0, 0, 0, .7);
}

.call-action__items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1;
  gap: 0 180px;
  flex-direction: column;
}

.call-action__text{
  font-family: "Roboto", sans-serif;
  max-width: 580px;
  color: #fff;
  font-size: 31px;
  text-align: center;
}

.call-action__btn{
  width: 400px;
  font-size: 21px;
  text-transform: uppercase;
}

@media (max-width: 460px){
  .call-action__text {
    font-family: "Roboto", sans-serif;
    max-width: 300px;
    color: #fff;
    font-size: 21px;
    text-align: center;
  }
  .call-action__btn {
    width: 350px;
    font-size: 21px;
    text-transform: uppercase;
  }
}
/* -------------- scroll-box -------------- */
.scroll-box__text{
  margin-bottom: 100px;
}

.scroll-box {
  width: 100%;
  height: 400px;
  border: 1px solid #ff8803;
  padding: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #ffffff;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 6px;
}

/* Стиль для самой полосы прокрутки */
.scroll-box::-webkit-scrollbar {
  width: 10px; /* Ширина полосы прокрутки */
}

/* Стиль для бегунка (ползунка) */
.scroll-box::-webkit-scrollbar-thumb {
  background-color: var(--main-color); /* Цвет ползунка */
  border-radius: 5px; /* Округлённые края ползунка */
}

/* Стиль для области полосы прокрутки (задний фон) */
.scroll-box::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Цвет фона полосы прокрутки */
  border-radius: 10px; /* Округлённые края области прокрутки */
}

/* При наведении мыши на ползунок */
.scroll-box::-webkit-scrollbar-thumb:hover {
  background-color: #de7700; /* Более тёмный цвет при наведении */
}

@media (max-width: 1100px){
  .appreciate__inner {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px){
  .appreciate__inner {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
  }
}

/* -------------- faq -------------- */
#faq {
  position: relative;
  top: -120px;
}

.faq {
  margin-bottom: 100px;
}

.faq__bg{
  width: 50%;
  height: auto;
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 250px;
}

@media (max-width: 960px){
  .faq__bg{
    width: 70%;
    height: auto;
    display: block;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 250px;
  }
}

@media (max-width: 460px){
  .faq__bg{
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 200px;
  }
}

.faq__title {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.faq__short-line {
  width: 150px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.accordion {
  width: 100%;
  max-width: 700px;
  margin: 50px auto;
  border-radius: 10px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background-color: #fff8f2;
  /* border-radius: 10px; */
}

.accordion-item:first-of-type{
  border-radius: 10px;
}

.accordion-header:active{
  border-radius: 10px 10px 0 0;
}

.accordion-header h3 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  margin: 0;
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: #fff8f2;
  border-top: 1px solid #ff8803;
}

.accordion-content p{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.accordion-item:first-child .accordion-header {
  border-top: none;
}

.arrow {
  transition: transform 0.3s;
  color: #ff8803;
}

.accordion-header.active .arrow {
  transform: rotate(90deg);
}

.accordion-content.show {
  display: block;
}

/* -------------- reviews -------------- */
#reviews-box {
  position: relative;
  top: -120px;
}

.reviews-box{
  margin-bottom: 100px;
}

.reviews__title {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.reviews__short-line {
  width: 150px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.review {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  transition: max-height 0.5s ease;
}

.author {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 8px;
  opacity: 0.3;
}

.author span{
  font-size: 18px;
  font-weight: 600;
  margin-left: -30px;
}

.text {
  line-height: 1.5;
  color: #444;
  max-height: 84px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.read-more {
  margin-top: 8px;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: #444;
  background-color: transparent;
  transition: all 0.5s;
}

.read-more:hover {
  border: none;
  transition: all 0.5s;
}

@media (max-width: 768px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

/* -------------- footer -------------- */
.footer{
  display: grid;
  background-color: #252525;
  padding: 50px 20px 20px;
}

.footer__items{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  align-items: start;
}

.footer__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.footer__item-box{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-logo__img{
  width: 150px;
  height: auto;
}

.footer__text{
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  width: 270px;
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__img{
  width: 30px;
  height: 30px;
}

.footer__icon {
  width: 40px;
  height: 40px;
  font-size: 40px;
  margin-top: 10px;
}

.footer__img-social{
  width: 40px;
  height: 40px;
  font-size: 40px;
  margin-top: 10px;
}

.footer__img-car {
  width: 200px;
  height: auto;
}

.copyright__short-line{
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  margin-top: -40px;
  margin-bottom: 30px;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer__copyright{
  text-align: center;
  color: #fff;
}

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

.footer__copyright span{
  text-align: center;
  color: var(--main-color);
}

@media (max-width: 960px){
  .footer__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: start;
  }
  .copyright__short-line {
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px){
  .footer__items {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
  }
  .footer__item-box-logo{
    margin-bottom: 30px;
    gap: 10px;
  }
  .copyright__short-line{
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 460px){
  .footer__text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    width: 300px;
    color: #fff;
  }
  .footer__img-car {
    width: 330px;
    height: auto;
  }
  .footer__social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  .footer__copyright-items {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

/* ------------- кнопка чат ------------- */
.chat-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background-color: var(--button-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: spineer 2s infinite;
   /* animation: pulse 2s infinite; */
}

@media (max-width: 460px){
    .chat-button {
  bottom: 20px;
  right: 20px;
}
}

/* Отключаем анимацию при наведении на саму кнопку или иконки */
.chat-button:hover,
.chat-button:active {
    animation: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Стандартный box-shadow */
}

@keyframes spineer {
  from {
      box-shadow: 0 0 0 0 var(--button-color);
  }
  to {
      box-shadow: 0 0 0 45px rgba(114, 156, 41, .01);
  }
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.chat-button i {
    color: white;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.social-icons {
    position: fixed;
    bottom: 130px;
    right: 50px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9999999;
}

@media (max-width: 460px){
.social-icons {
    bottom: 110px;
    right: 30px;
}
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a i {
    font-size: 20px;
    color: var(--button-color);
}

.show-icons {
    display: flex;
}

.rotate {
    transform: rotate(45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный черный */
  display: none; /* Скрыт по умолчанию */
  z-index: 998; /* Под иконками, но над другим контентом */
}

/* Стиль подсказок */
.tooltip {
  position: absolute;
  padding: 5px 10px;
  /* background-color: rgba(0, 0, 0, 0.75);
  color: #fff; */
  background-color: var(--button-color);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  display: none; /* Скрыта по умолчанию */
}
@media (max-width: 960px){
  .tooltip {
     position: absolute;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 14px;
     white-space: nowrap;
     pointer-events: none;
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 1000;
     display: none!important;
}
	}
/* ------------- end кнопка чат ------------- */