.web-site-develop {
  .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .swiper {
    border-radius: 30px;
  }

  .development {
    width: 100%;
    display: flex;
    gap: 20px;

    .text-wrapper {
      width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .card {
      position: relative;
      padding: 0;
      width: 50%;
      height: 22vw;
      max-width: 850px;
      max-height: 400px;

      &.scroll {
        .my-scrollbar {
          cursor: pointer;
        }
      }

      img {
        border-radius: 30px;
      }

      .my-scrollbar {
        position: absolute;
        bottom: 10px;
        left: 20px;
        top: 20px;
        height: 90%;
        width: 14px;
        border: 2px #fff solid;
        background-color: transparent;
        box-shadow: 0px 4px 4px 0px #00000040 inset;
        border-radius: 30px;

        .swiper-scrollbar-drag {
          background: var(--primary-blue);
          width: 100%;
          max-height: 30px;
          border-radius: 30px;
        }
      }
    }
  }

  .cards {
    position: relative;
    display: flex;
    gap: 20px;
    width: 100%;

    .card {
      cursor: pointer;
      transition: .4s all ease;
      width: 24%;
      height: 23vw;
      max-width: 415px;
      max-height: 400px;

      h3{
        font-size: clamp(12px, 1.5vw, 24px);
      }

      .picture-wrapper{
        width: 100%;
        height: 16vw;
        max-width: 290px;
        max-height: 290px;
      }

      a{
        @media (max-width: 1440px) {
          transform: scale(0.8);
        }
      }

      &:hover {
        background-color: var(--opacity-blue);
        transition: .4s all ease;

        h3 {
          color: #fff;
        }

        svg{
          circle{
            fill: white;
          }

          path{
            stroke: black;
          }
        }
      }
    }

    .circle {
      position: absolute;
      z-index: -1;
      bottom: -4%;
      left: 8%;
      width: 415px;
      height: 415px;
      border-radius: 50%;
      background: radial-gradient(50% 50% at 50% 50%, #0076DD 0%, rgba(0, 118, 221, 0) 100%);
    }
  }
}

.reviews {
  height: 100%;
  max-width: 1920px;
  margin: 0 auto 130px auto;

  h2 {
    margin-bottom: 80px;
  }

  .description {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 50px;

    .text-content {
      width: 50%;
    }

    .arrow-wrapper {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      width: 50%;
    }
  }

  .reviews-wrapper {
    display: flex;
    height: 410px;
    
    .review {
      width: 50%;
      max-height: 400px;
      height: 86%;
      justify-content: start;
      cursor: pointer;

      h3 {
        margin-bottom: 20px;
      }

      .text-content {
        margin-bottom: 10px;
      }

      .circle-play-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background-color: #fff;
      }

      .play {
        width: 0;
        height: 0;
        border-top: 35px solid transparent;
        border-bottom: 35px solid transparent;
        border-left: 60px solid var(--primary-gray, #888);
        border-radius: 10px;
        transform: translateX(5px);
      }
    }
  }
}

@keyframes message {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateY(-250px);
    width: 140px;
    height: 60px;
    opacity: 0;
  }
}