.main-container-wrapper {
    background-color: #F1F3F5;
    background-image: url(https://rvremovalpros.com/wp-content/uploads/2024/08/round-layout-bg-gray.webp);
    background-position: top center;
    background-repeat: no-repeat;
  }
  .main-block-container {
    display: grid;
    grid-template-columns: 45% 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 0px 40px;
    row-gap: 0px;
    column-gap: 40px;
    grid-auto-flow: row;
    padding: 90px 10px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .title-h2 {
    font-family: "Inter", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 51px;
  }

  .text-p {
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
  }

  .text-p-black {
    color: #000;
  }

  .title-black {
    color: #000;
  }

  .title-white {
    color: #ffffff;
  }

  .text-p-white {
    color: #ffffff;
  }

  .title-center {
    text-align: center;
    margin-bottom: 20px;
  }
  .nearby-cities-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-overlay {
    position: relative;
    width: 590px;
    height: 445px;
    max-width: 800px;
    aspect-ratio: 16/9;
    /*border-radius: 15px;*/
    overflow: hidden;
  }

  .video-toggle {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  .video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3; /* поверх видео */
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    position: relative;
  }
  .play-button::after {
    content: "";
    position: absolute;
    left: 33%;
    top: 25%;
    width: 0;
    height: 0;
    border-left: 28px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
  }

  .video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
  }

  .video-toggle:checked ~ .video-container {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  @media (max-width: 1024px) {
    .main-block-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .video-overlay {
      width: 100%;
      height: auto;
    }

    .title-h2 {
      font-size: 30px;
      line-height: 40px;
    }
  }

  .city-container-2-wrapper {
    background-image: url(https://rvremovalpros.com/wp-content/uploads/2024/08/round-layout-bg-gray.webp);
    background-position: top right;
    background-repeat: no-repeat;
  }

  .city-block-2-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 0px 80px;
    row-gap: 0px;
    column-gap: 40px;
    grid-auto-flow: row;
    padding: 60px 10px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
  }

  .city-block-2-image {
width: 90%;
    object-fit: cover;
    /*border-radius: 15px !important;*/
  }

  @media (max-width: 1024px) {
    .city-block-2-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }
