.about {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: 40px;
  margin-right: 40px;
}
.about h2 {
  text-align: center;
  width: 50%;
  margin-top: 1rem;
}

.about h2 a {
  text-decoration: underline !important;
  font-weight: bold !important;
}

.controls {
  display: flex;
  flex-direction: row;
  padding-bottom: 3rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cdots ul {
  display: flex !important;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cdots ul li button {
  width: 12px !important;
  height: 12px !important;
  text-indent: -9999em;
  text-transform: uppercase;
  border-radius: 100%;
  outline: none;
  border: none;
  background: var(--light-gray);
  cursor: pointer;
  padding: 0;
}

.arrowPrev,
.arrowNext {
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  border-radius: 100%;
  background: #e5e5e5;
  cursor: pointer;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrowPrev:hover,
.arrowNext:hover {
  background: var(--text);
  color: var(--light-gray);
}

.carousel {
  display: none;
}
.carousel-item {
  display: flex !important;
  flex-direction: row;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  background: var(--white);
}

.user_info {
  display: flex;
  flex-direction: column;
  width: 240px;
  max-height: 400px;
}

.user_name {
  font-weight: bold;
}

.user_address {
  color: var(--gray);
}

.ellipsis {
  overflow: hidden;
  height: 250px;
  line-height: 25px;
}

.ellipsis:before {
  content: "";
  float: left;
  width: 5px;
  height: 250px;
}

.ellipsis > *:first-child {
  float: right;
  width: 100%;
  margin-left: -5px;
}

.ellipsis:after {
  content: "\02026";
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  float: right;
  position: relative;
  top: -25px;
  left: 100%;
  width: 3em;
  margin-left: -3em;
  padding-right: 5px;
  text-align: right;
  background-size: 100% 100%;
  /* 512x1 image,gradient for IE9. Transparent at 0% -> white at 50% -> white at 100%.*/
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAABCAMAAACfZeZEAAAABGdBTUEAALGPC/xhBQAAAwBQTFRF////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wDWRdwAAAP90Uk5TgsRjMZXhS30YrvDUP3Emow1YibnM9+ggOZxrBtpRRo94gxItwLOoX/vsHdA2yGgL8+TdKUK8VFufmHSGgAQWJNc9tk+rb5KMCA8aM0iwpWV6dwP9+fXuFerm3yMs0jDOysY8wr5FTldeoWKabgEJ8RATG+IeIdsn2NUqLjQ3OgBDumC3SbRMsVKsValZplydZpZpbJOQco2KdYeEe36BDAL8/vgHBfr2CvTyDu8R7esU6RcZ5ecc4+Af3iLcJSjZ1ivT0S/PMs3LNck4x8U7wz7Bv0G9RLtHuEq1TbJQr1OtVqqnWqRdoqBhnmSbZ5mXapRtcJGOc4t2eYiFfH9AS7qYlgAAARlJREFUKM9jqK9fEGS7VNrDI2+F/nyB1Z4Fa5UKN4TbbeLY7FW0Tatkp3jp7mj7vXzl+4yrDsYoVx+JYz7mXXNSp/a0RN25JMcLPP8umzRcTZW77tNyk63tdprzXdmO+2ZdD9MFe56Y9z3LUG96mcX02n/CW71JH6Qmf8px/cw77ZvVzB+BCj8D5vxhn/vXZh6D4uzf1rN+Cc347j79q/zUL25TPrJMfG/5LvuNZP8rixeZz/mf+vU+Vut+5NL5gPOeb/sd1dZbTs03hBuvmV5JuaRyMfk849nEM7qnEk6IHI8/qn049hB35QGHiv0yZXuMdkXtYC3ebrglcqvYxoj1muvC1nDlrzJYGbpcdHHIMo2FwYv+j3QAAOBSfkZYITwUAAAAAElFTkSuQmCC);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(white),
    color-stop(50%, white)
  );
  background: -moz-linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    white 50%,
    white
  );
  background: -o-linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    white 50%,
    white
  );
  background: -ms-linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    white 50%,
    white
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    white 50%,
    white
  );
}

.user_comment {
  margin-top: 1rem;
}

.user_read {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  color: var(--text);
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--text);
  justify-self: end;
  cursor: pointer;
}

.user_read:hover {
  background: var(--text);
  color: var(--white);
}

.user_read_info {
  color: var(--light-gray);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
}

.images_block {
  display: flex;
  margin-left: 2rem;
  width: 560px;
  height: 400px;
}

.images_block img {
  cursor: zoom-in;
}

.images_block_main {
  border-radius: 10px;
  overflow: hidden;
  width: 420px;
  margin-right: 1rem;
}

.images_block_second_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.images_block_second {
  border-radius: 10px;
  width: 200px;
  overflow: hidden;
}

@media only screen and (max-width: 1280px) {
  .about {
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: 0px;
    margin-right: 0px;
  }
  .about h2 {
    width: 100%;
  }

  .carousel-item {
    flex-direction: column;
    padding: 1.5rem;
  }

  .user_info {
    width: 100%;
    max-height: unset;
  }

  .user_comment {
    height: 130px;
  }

  .ellipsis {
    height: 130px;
  }

  .ellipsis::before {
    height: 130px;
  }

  .slick-slide {
    margin: 0 10px !important;
  }

  .images_block {
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    width: 100%;
    margin-top: 2rem;
  }

  .images_block_main {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-right: 1rem;
  }

  .images_block_second_wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
  }

  .images_block_second {
    border-radius: 10px;
    overflow: hidden;
    width: 50%;
  }
}
