.review {
    position: relative;
    padding-top: 95px;
    padding-bottom: 120px;
    color: white;
      background-image: url('../../images/fon.svg');
      /* overflow: hidden; */
}

.review .wrapper{
    max-width: 1340px;
}

.review_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-self: stretch;
}

.review_container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review_arrow {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.g_arrow.prev-btn{
    left: 0;
}

.g_arrow.next-btn{
    right: 0;
}

.g_arrow {
    position: absolute;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  display: flex;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 100px;
  border: 1px solid var(--P, #676767);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
}

.g_arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

.swiper {
    width: 100%;
    padding: 0 22px !important;
}

.swiper-slide {
    width: 100%;
    height: auto; 
}

.review_block {
    width: 100%; 
    min-height: 298px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box; 
    border: 1px solid transparent;
    transition: .4s;
    padding: 30px;
}

.review_block:hover {
    border-color: rgba(241, 56, 64, 1);    
}

.block-content{
width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.block-content p{
color: #CBD5E1;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}

.review_user {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: center;
}

.review_user .avatar{
    display: flex;
width: 48px;
height: 48px;
flex-direction: column;
justify-content: center;
align-items: flex-start;
border-radius: 9999px;
border: 1px solid rgba(242, 13, 13, 0.30);
    overflow: hidden;
}

.review_user .avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ru_name{
    width: 245px;
}

.ru_name h3{
    color: #F1F5F9;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}

.ru_name p{
    color: #64748B;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.bg_review{
    position: absolute;
    width: 22px;
    height: 100%;
    z-index: 99;
    top: 0;
}

.review_wrap .br_right{
    background: linear-gradient(to right, #fff0, rgb(33, 26, 27));
}

.br_left{
    left: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 1), #fff0);
}
.br_right{
    right: 0; 
    background: linear-gradient(to right, #fff0, rgba(26, 26, 26, 1));
}

.svg_bg_top_info_review{
    position: absolute;
    right: 0;
    top: 0;
}

.svg_bg_top_info_review::after{
  content: "";
  position: absolute;
  top: 9%;
  width: 844.664px;
  height: 944.406px;
  transform: rotate(-26deg);
  border-radius: 50%;

  opacity: 0.6;
  background: rgba(255, 43, 64, 0.05);

  filter: blur(200px);
  left: -394px;
}


@media (max-width: 800px) {
    .review {
        padding-top: 0;
        padding-bottom: 46px;
    }
    .review_wrap{
        gap: 32px;
    }
    .br_left{
        background: linear-gradient(to right, #221010, #fff0);
    }
    .br_right{
        background: linear-gradient(to right, #fff0, #221010);
    }
    .review .wrapper{
        /* padding: 0; */
    }
}