/* === DESKTOP FIRST === */
/* xl <= Extra extra large (xxl) */
/* lg <= Extra large (xl) */
@media (max-width: 1200px) {
  .menu {
    margin-right: 10px;
  }
  .menu__toggle {
    display: flex;
  }
  .menu__list {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    position: absolute;
    top: 55px;
    left: 0;
    padding: 10px;
    border-radius: var(--radius);
    background-color: var(--white);
    box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }
  .menu__list::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 12px;
    width: 0;
    height: 0;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #FFFFFF transparent;
    border-style: solid;
  }
  .menu__list-show {
    opacity: 1;
    visibility: visible;
  }
  .menu__link {
    font-size: 16px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: var(--text);
  }
  .menu__link:hover, .menu__link:focus {
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.05);
  }
  .home-slider__title {
    font-size: 35px;
  }
  .home-slider__subtitle {
    font-size: 22px;
  }
}
/* md <= Large (lg) */
@media (max-width: 992px) {
  .title {
    font-size: 32px;
  }
  .home-slider__logo {
    margin-bottom: 40px;
  }
  .home-slider__title {
    font-size: 32px;
  }
  .home-slider__form {
    max-width: 320px;
    margin-left: 30px;
  }
  .home-about__image {
    margin-left: 0;
  }
  .home-service::before {
    content: none;
  }
}
/* sm <= Medium (md) */
@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }
  .navbar__phone-num {
    display: none;
  }
  .home-slider__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-slider__form {
    max-width: none;
    margin-left: 0px;
    margin-top: 30px;
  }
}
/* xs <= Small (sm) */
@media (max-width: 576px) {
  .navbar {
    padding: 15px 0;
  }
  .navbar__logo .logo {
    flex-direction: column;
    align-items: flex-start;
    font-size: 11px;
    font-weight: 500;
    max-width: 150px;
  }
  .navbar__logo .logo img {
    width: auto;
  }
  .navbar__logo .logo__text {
    margin-left: 0;
    margin-top: 2px;
  }
  .navbar__lang {
    margin-left: 5px;
  }
  .menu {
    margin-left: 5px;
  }
  .home-slider__title {
    font-size: 26px;
  }
  .home-slider__subtitle {
    font-size: 18px;
  }
  .home-slider__arrows-arrow {
    width: 70px;
  }
  .home-about__image {
    padding-left: 0;
    padding-bottom: 35px;
  }
  .home-about__work {
    left: 15px;
    right: 15px;
    bottom: 0px;
  }
  .home-service__right {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .price-list-item {
    flex-direction: column;
  }
  .price-list-item__price {
    margin-left: 0;
  }
}
@media (max-width: 420px) {
  .home-slider__arrows {
    display: none;
  }
}
/* === MOBILE FIRST === */
/* Custom (xs) */
/* Small (sm) */
/* Medium (md) */
/* Large (lg) */
/* Extra large (xl) */
/* Extra extra large (xxl) */