h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(26px, 5vw, 60px);
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
h1 span {
  color: var(--prime);
}
h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 48px);
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
}
h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(14px, 2.8vw, 30px);
  line-height: 150%;
  color: var(--white);
}
h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(12px, 3.5vw, 40px);
  line-height: 120%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
}
p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(8px, 1.6vw, 18px);
  line-height: 150%;
  color: var(--white);
}
@media (max-width: 769px) {
  h1 {
    font-size: clamp(16px, 10vw, 36px);
    letter-spacing: -0.02em;
  }
  h2 {
    font-size: clamp(10px, 6.2vw, 24px);
  }
  h3 {
    font-size: clamp(8px, 6vw, 18px);
  }
  h4 {
    font-size: clamp(10px, 6.5vw, 24px);
  }
  p {
    font-size: clamp(6px, 4.5vw, 16px);
  }
}
.hero-wrapper {
  display: flex;
  justify-content: space-between;
  margin: -155px auto 160px;
  padding: 0 clamp(25px, 6vw, 71px);
  gap: clamp(25px, 4vw, 44px);
}
.hero-wrapper-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: clamp(150px, 40vw, 465px) 0 0 0;
}
.hero-wrapper-title {
  display: flex;
}
.hero-wrapper-contacts {
  display: flex;
  gap: 0;
}
.hero-wrapper-contacts-left,
.hero-wrapper-contacts-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  border-left: 1px solid var(--prime);
  padding: clamp(6px, 1vw, 10px) clamp(6px, 1vw, 10px);
  max-width: 217px;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-wrapper-contacts-address span {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(6px, 1vw, 10px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--white);
}
.hero-wrapper-contacts-phone {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.5vw, 5px);
  transition: all 0.3s ease;
}
.phone-hero-icon,
.arrow-phone-hero {
  max-width: 100%;
  transition: all 0.3s ease;
}
.phone-hero {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(10px, 1.5vw, 18px);
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  color: var(--white);
  transition: all 0.3s ease;
}
.hero-wrapper-time-work {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 7px;
  gap: 20px;
  padding-top: 17px;
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  background: transparent;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.hero-wrapper-time-work-block {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-wrapper-time-work-block:nth-child(2) img,
.hero-wrapper-time-work-block:nth-child(3) img {
  visibility: hidden;
}
.hero-wrapper-time-work-block img {
  max-width: 100%;
}
.hero-wrapper-time-work-block p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(10px, 1vw, 16px);
  color: var(--white);
  margin: 0;
}

.hero-wrapper-contacts-left:hover .hero-wrapper-time-work,
.hero-wrapper-contacts-right:hover .hero-wrapper-time-work {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-wrapper-contacts-left:hover .phone-hero,
.hero-wrapper-contacts-right:hover .phone-hero {
  color: var(--prime);
}

.hero-wrapper-contacts-left:hover .phone-hero-icon path,
.hero-wrapper-contacts-right:hover .phone-hero-icon path {
  fill: var(--prime);
}

.hero-wrapper-contacts-left:hover .arrow-phone-hero path,
.hero-wrapper-contacts-right:hover .arrow-phone-hero path {
  stroke: var(--prime);
}
.hero-wrapper-right {
  display: inline-block;
  justify-self: auto;
  position: relative;
}

.hero-wrapper-right img {
  max-width: 100%;
  width: 100%;
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
  object-fit: cover;
  height: 100%;
  display: block;
}

@media (max-width: 870px) {
  .hero-wrapper {
    margin: -182px auto 160px;
    padding: 0 71px;
  }
  .hero-wrapper-left {
    margin: clamp(150px, 35vw, 400px) 0 0 0;
  }
}
@media (max-width: 769px) {
  .hero-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    gap: 0;
    padding: 0 20px;
  }
  .hero-wrapper-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

  .mobile-title-container {
    position: absolute;
    bottom: 31px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}

/* our-clinics-section */

.our-clinics-wrapper .our-clinics-wrapper-interior {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 5vw, 60px);
  padding: 0 clamp(30px, 6vw, 73px) 0 clamp(20px, 6vw, 50px);
  margin: 0 auto 160px;
}
.our-clinics-wrapper-title {
  display: flex;
  padding-left: clamp(20px, 3.5vw, 41px);
}
.our-clinics-wrapper-content {
  display: flex;
  flex-direction: column;
}
.our-clinics-wrapper-content-top {
  display: flex;
  gap: clamp(20px, 3.5vw, 48px);
  z-index: 10;
  padding-right: clamp(35px, 6vw, 83px);
}
.our-clinics-wrapper-content-top-img {
  display: flex;
}
.our-clinics-wrapper-content-top-img img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
  box-shadow: 20px 20px 4px 0px rgba(0, 0, 0, 0.25);
}

.our-clinics-wrapper-content-top-discription {
  display: flex;
  flex-direction: column;
  padding-top: clamp(20px, 4vw, 48px);
  gap: clamp(8px, 1.2vw, 15px);
  max-width: 483px;
  width: 100%;
}
.phone-address-time {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
  border: 1px solid var(--prime);
  background: rgba(245, 177, 181, 0.1);
  padding: clamp(14px, 2vw, 26px) clamp(18px, 3vw, 33px)
    clamp(12px, 1.8vw, 21px);
}

.phone-address-time-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 30px);
  color: var(--white);
}
.phone-address-time-map {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(10px, 1.5vw, 16px);
  line-height: 150%;
  color: var(--white);
}
.phone-address-time-time {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.our-clinics-wrapper-content-bottom {
  display: flex;
  gap: clamp(18px, 3.5vw, 43px);
  margin: clamp(-90px, 4vw, -136px) 0 0 clamp(60px, 4px, 111px);
}
.our-clinics-wrapper-content-bottom-img {
  display: flex;
}
.our-clinics-wrapper-content-bottom-img img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
  box-shadow: 20px 20px 4px 0px rgba(0, 0, 0, 0.25);
}
.our-clinics-wrapper-content-bottom-discription {
  display: flex;
  flex-direction: column;
  padding-top: clamp(10px, 4vw, 17px);
  gap: clap(8px, 1.2vw, 15px);
  min-width: 460px;
  width: 100%;
}
.our-clinics-wrapper-content-bottom-discription-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--prime);
  background: rgba(245, 177, 181, 0.1);
  padding: 36px 33px;
}
.our-clinics-wrapper-content-bottom-discription-contacts-phone {
  display: flex;
  align-items: center;
  gap: 5px;
}
.our-clinics-wrapper-content-bottom-discription-contacts-map {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1090px) {
  .our-clinics-wrapper-content-bottom {
    margin: clamp(-55px, 4vw, -105px) 0 0 clamp(50px, 4px, 80px);
  }
}
@media (max-width: 940px) {
  .our-clinics-wrapper-content-bottom {
    margin: clamp(-40px, 4vw, -90px) 0 0 clamp(30px, 4px, 50px);
  }
}
@media (max-width: 769px) {
  .our-clinics-wrapper {
    padding: 0 20px;
  }
  .our-clinics-wrapper .our-clinics-wrapper-interior {
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    gap: 30px;
    padding: 60px 20px 0;
  }
  .our-clinics-wrapper-title {
    display: flex;
    padding-left: 0;
  }
  .our-clinics-wrapper-title h2 {
    font-size: clamp(14px, 6.5vw, 24px);
  }
  .our-clinics-wrapper-content {
    gap: clamp(70px, 33vw, 118px);
  }
  .our-clinics-wrapper-content-top {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 7vw, 25px);
    z-index: 0;
    padding-right: 0;
  }
  .our-clinics-wrapper-content-top-img {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .our-clinics-wrapper-content-top-img img {
    max-width: 100%;
    width: 100%;
  }
  .our-clinics-wrapper-content-top-img h3,
  .our-clinics-wrapper-content-bottom-img h3 {
    font-size: clamp(10px, 5vw, 18px);
    text-align: left;
  }
  .our-clinics-wrapper-content-top-discription {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    gap: 0;
  }

  .phone-address-time,
  .our-clinics-wrapper-content-bottom-discription-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--prime);
    background: rgba(245, 177, 181, 0.1);
    padding: clamp(12px, 5.5vw, 20px) clamp(12px, 5.7vw, 21px)
      clamp(15px, 7vw, 25px);
  }
  .phone-address-time-phone,
  .our-clinics-wrapper-content-bottom-discription-contacts-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(12px, 5.5vw, 20px);
    color: var(--white);
  }
  .phone-address-time-map,
  .our-clinics-wrapper-content-bottom-discription-contacts-map {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(8px, 3.5vw, 12px);
    line-height: 150%;
    color: var(--white);
  }
  .phone-address-time-time p,
  .our-clinics-wrapper-content-bottom-discription-contacts-time p {
    font-size: clamp(8px, 3.3vw, 12px);
  }
  .our-clinics-wrapper-content-bottom {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 7vw, 25px);
    margin: 0;
  }
  .our-clinics-wrapper-content-bottom-img {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .our-clinics-wrapper-content-bottom-img img {
    max-width: 100%;
    width: 100%;
  }
  .our-clinics-wrapper-content-bottom-discription {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    gap: 0;
  }
}


/* comprehensive-section */

.comprehensive-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(30px, 6vw, 73px);
  margin: 0 auto 150px;
}
.comprehensive-wrapper-left .comprehensive-wrapper-lef-interiort {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  max-width: 658px;
  width: 100%;
}
.heading-desktop {
  display: block;
}
.heading-mobile {
  display: none;
}
.comprehensive-wrapper-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--prime);
  border-radius: 1000px;
  padding: 21px 20px;
  background-color: var(--prime);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: var(--black-800);
  margin-right: auto;
  max-width: 251px;
  width: 100%;
  transition: all 0.3s ease;
}
.comprehensive-wrapper-btn:hover {
  background-color: rgba(245, 177, 181, 0.6);
}
.comprehensive-wrapper-btn:active {
  background-color: rgba(245, 177, 181, 0.4);
}

.comprehensive-wrapper-right {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 446px;
  width: 100%;
}
.comprehensive-wrapper-right img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 769px) {
  .comprehensive-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 0 clamp(12px, 6vw, 20px);
    margin: 0 auto;
  }
  .comprehensive-wrapper-left .comprehensive-wrapper-lef-interiort {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px 60px;
  }
  .heading-desktop {
    display: none;
  }
  .heading-mobile {
    display: flex;
    font-size: clamp(16px, 7vw, 24px);
    line-height: 150%;
    letter-spacing: -0.09em;
    padding: 0 0 30px 20px;
  }
  .comprehensive-wrapper-right .heading-mobile {
      background: rgba(0, 0, 0, 0.5);
  }
  .comprehensive-wrapper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--prime);
    border-radius: 1000px;
    padding: 21px 20px;
    background: var(--prime);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: var(--black-800);
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    height: 55px;
  }
  .comprehensive-wrapper-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    width: 100%;
    order: -1;
  }
  .comprehensive-wrapper-right img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .comprehensive-wrapper-right img:nth-child(2) {
    margin-bottom: 14px;
  }
}

/* about-section */

.about-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(13px, 2.5vw, 30px) 0 clamp(30px, 6vw, 73px);
  margin: 0 auto 150px;
}
.about-wrapper-left .about-wrapper-left-interior {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  max-width: 658px;
  width: 100%;
}

.about-wrapper-right {
  display: flex;
  align-items: flex-start;
  max-width: 481px;
  width: 100%;
}
.about-wrapper-right img {
  max-width: 100%;
  min-height: 100%;
  object-fit: cover;
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 769px) {
  .about-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 0 clamp(12px, 5.5vw, 20px);
    margin: 0 auto;
  }
  .about-wrapper-left .about-wrapper-left-interior {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px 0;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  .about-wrapper-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    order: -1;
    background: rgba(0, 0, 0, 0.5);
  }
  .about-wrapper-right img {
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
}
/* team-section */

.team-wrapper .team-wrapper-interior {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 clamp(30px, 6vw, 75px) 0 clamp(30px, 6vw, 74px);
  margin: 0 auto 133px;
}
.team-wrapper-title {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding-left: 71px;
}
.team-wrapper-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(15px, 2.5vw, 30px);
  row-gap: clamp(25px, 4vw, 43px);
}
.team-wrapper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(200px);
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
}

.team-wrapper-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.team-wrapper-item-discription {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(10px, 2.5vw, 22px) clamp(12px, 1.5vw, 25px);
  background: #181c1c;
}
.team-wrapper-item-discription p:nth-child(1) {
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}
.team-wrapper-item-discription p:nth-child(2),
.team-wrapper-item-discription p:nth-child(3) {
  line-height: 142%;
  color: var(--white-700);
}
@media (max-width: 769px) {
  .team-wrapper {
    padding: 0 20px;
  }
  .team-wrapper .team-wrapper-interior {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px clamp(12px, 6vw, 20px) 0;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .team-wrapper-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .team-wrapper-title {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
  }
}
@media (max-width: 450px) {
  .team-wrapper {
    padding: 0 20px;
  }
  .team-wrapper .team-wrapper-interior {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px clamp(12px, 6vw, 20px) 0;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .team-wrapper-title {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
  }
  .team-wrapper-list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 0px;
  }
  .team-wrapper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(200px);
    box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
  }

  .team-wrapper-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .team-wrapper-item-discription {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 8px;
    padding: clamp(10px, 2.5vw, 22px) clamp(12px, 1.5vw, 25px);
    background: #181c1c;
  }
  .team-wrapper-item-discription p:nth-child(1) {
    font-weight: 600;
  }
  .team-wrapper-item-discription p:nth-child(2) {
    line-height: 154%;
    color: var(--white-700);
  }
}

/* testimonials-section */
.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 0 0 clamp(30px, 6vw, 49px);
  margin: 0 auto 150px;
}
.testimonials-wrapper-title .testimonials-wrapper-title-interior {
  display: flex;
  padding-right: clamp(70px, 15vw, 190px);
}
.testimonials-wrapper-title .testimonials-wrapper-title-interior h2 {
  margin-left: auto;
}
.testimonials-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.testimonials-slider .slick-slide {
  transition: transform 0.3s ease;
  transform-origin: center;
  float: none;
}
.testimonials-slider {
  overflow: hidden;
}
.testimonials-wrapper.slider-scrolling .testimonials-slider {
  overflow: visible;
}
#testimonials-section {
  overflow: hidden;
}
.testimonials-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.testimonials-slider-item {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(200px);
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
  background: #181c1c;
  padding: 30px 30px 100px;
  /* min-height: 468px; */
  margin-right: 25px;
}
.testimonials-slider-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.apostrof-testimonials {
    font-family: var(--font3);
    font-weight: 700;
    font-size: 67px;
    color: var(--prime);
}

.testimonials-slider-item-header img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.testimonials-slider-item-content-autor {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.testimonials-slider-item-content {
  margin-bottom: 34px;
  padding-left: 28px;
}
.testimonials-slider-item-content-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
  max-width: 355px;
  width: 100%;
}
.testimonials-slider-item-autor {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 67px;
}
.testimonials-slider-item-autor-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  border: 4px solid var(--prime);
}
.testimonials-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.testimonials-slider-item-autor-name {
  display: flex;
  flex-direction: column;
}

.testimonials-autor-first-name,
.testimonials-autor-last-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
}
.testimonials-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 0 0 86px;
  position: absolute;
  top: -100px;
  left: 0;
}
.testimonials-slider .slick-dots li {
  display: flex;
  align-items: center;
  list-style: none;
}
.testimonials-slider .slick-dots li button {
  font-size: 0;
  width: 16px;
  height: 16px;
  background-color: #6a6a71;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonials-slider .slick-dots li.slick-active button {
  width: 25px;
  height: 25px;
  background-color: #b9b8b8;
}
.testimonials-slider .slick-dots li button:before {
  color: var(--prime);
  font-size: 12px;
}

.testimonials-slider .slick-dots li.slick-active button:before {
  color: var(--white);
}
.testimonials-block-mobile {
  display: none;
}
@media (max-width: 768px) {
  .testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0 auto;
  }
  .testimonials-wrapper-title {
    padding: 0 20px;
  }
  .testimonials-wrapper-title .testimonials-wrapper-title-interior {
    display: flex;
    padding: 60px 20px 33px;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .testimonials-wrapper-title .testimonials-wrapper-title-interior h2 {
    margin-left: 20px;
  }
  .testimonials-slider-container {
    position: relative;
    width: 100%;
    margin-left: -8px;
  }
  .testimonials-slider .slick-slide {
    transition: transform 0.3s ease;
    transform-origin: center;
    float: none;
  }
  .testimonials-slider {
    overflow: visible;
  }
  .testimonials-slider .slick-track {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.5);
  }

  .testimonials-slider-item {
    display: flex !important;
    flex-direction: column;
    backdrop-filter: blur(200px);
    box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
    background: #181c1c;
    min-height: 327px;
    padding: 20px 18px 45px;
  }
  .testimonials-slider-item .slick-slide:last-child {
    margin-right: 0 !important;
  }
  .testimonials-slider-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .testimonials-slider-item-header img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .testimonials-slider-item-content {
    margin-bottom: 30px;
    padding-left: 16px;
  }
  .testimonials-slider-item-content-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    max-width: 100%;
  }
  .testimonials-slider-item-autor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 38px;
  }
  .testimonials-slider-item-autor-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    stroke-width: 2.29px;
    stroke: var(--prime);
    overflow: hidden;
  }
  .testimonials-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .testimonials-autor {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
  }
  .testimonials-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0;
    position: absolute;
    top: 105%;
    left: 60%;
  }
  .testimonials-slider .slick-dots li {
    display: flex;
    align-items: center;
    list-style: none;
  }
  .testimonials-slider .slick-dots li button {
    font-size: 0;
    width: 16px;
    height: 16px;
    background-color: #6a6a71;
    border-radius: 100%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .testimonials-slider .slick-dots li.slick-active button {
    width: 25px;
    height: 25px;
    background-color: #b9b8b8;
  }
  .testimonials-slider .slick-dots li button:before {
    color: var(--prime);
    font-size: 12px;
  }

  .testimonials-slider .slick-dots li.slick-active button:before {
    color: var(--white);
  }
  .testimonials-block-mobile {
    display: flex;
    padding: 0 20px;
  }
  .testimonials-block-mobile-interior {
    display: flex;
    height: 113px;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 0 20px;
  }
}
/* faq-section */

.faq-wrapper .faq-wrapper-interior {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 clamp(30px, 6vw, 73px);
  margin: 0 auto 150px;
}
.faq-wrapper-title {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding-left: 133px;
}
.faq-wrapper-accordion {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 802px;
  width: 100%;
  margin: 0 auto;
}

.faq-wrapper-accordion-item {
  box-shadow: 0 3px 49px 9px rgba(0, 0, 0, 0.06);
  background: rgba(66, 66, 66, 0.5);
  transition: background-color 0.3s ease;
}

.faq-wrapper-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px 34px 50px;
  gap: 50px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
}

.faq-wrapper-accordion-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
}
.faq-wrapper-accordion-arrow {
  transition: transform 0.3s ease;
}

.faq-wrapper-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease, padding 0.5s ease;
  padding: 0 80px 0 0;
}
.faq-wrapper-accordion-item.active {
  background-color: var(--black-800);
}
.faq-wrapper-accordion-item.active .faq-wrapper-accordion-content {
  max-height: 1000px;
  padding: 5px 80px 20px 50px;
  background-color: var(--black-800);
  box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
}

.faq-wrapper-accordion-item.active .faq-wrapper-accordion-arrow {
  transform: rotate(180deg);
}
.faq-wrapper-accordion-item.active .faq-wrapper-accordion-arrow path {
  fill: #f5b1b5;
}
.faq-wrapper-accordion-item.active .faq-wrapper-accordion-title {
  color: var(--prime);
}
@media (max-width: 768px) {
  .faq-wrapper {
    padding: 0 20px;
  }
  .faq-wrapper .faq-wrapper-interior {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 0 60px;
    margin: 0 auto;
    max-width: 733px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .faq-wrapper-title {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding-left: 20px;
  }
  .faq-wrapper-accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .faq-wrapper-accordion-item {
    box-shadow: 0 3px 49px 9px rgba(0, 0, 0, 0.06);
    background: rgba(66, 66, 66, 0.5);
    transition: background-color 0.3s ease;
  }

  .faq-wrapper-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 8vw, 35px) clamp(12px, 5vw, 20px)
      clamp(19px, 8vw, 34px);
    gap: clamp(16px, 3vw, 28px);
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
  }

  .faq-wrapper-accordion-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(10px, 4.2vw, 18px);
    color: var(--white);
    max-width: 268px;
    width: 100%;
  }
  .faq-wrapper-accordion-arrow {
    transition: transform 0.3s ease;
    width: 14px;
  }

  .faq-wrapper-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease, padding 0.5s ease;
    padding: 0;
  }
  .faq-wrapper-accordion-item.active {
    background-color: var(--black-800);
  }
  .faq-wrapper-accordion-item.active .faq-wrapper-accordion-content {
    max-height: 1000px;
    padding: 5px 20px 42px;
    background-color: var(--black-800);
    box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .faq-wrapper-accordion-item.active .faq-wrapper-accordion-content p {
    font-size: clamp(10px, 3.8vw, 16px);
  }
  .faq-wrapper-accordion-item.active .faq-wrapper-accordion-arrow {
    transform: rotate(180deg);
  }
  .faq-wrapper-accordion-item.active .faq-wrapper-accordion-arrow path {
    fill: #f5b1b5;
  }
  .faq-wrapper-accordion-item.active .faq-wrapper-accordion-title {
    color: var(--prime);
  }
}

/* discription-section" */

.discription-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 clamp(29px, 6vw, 76px);
  margin: 0 auto 150px;
}
.discription-wrapper-title {
  display: flex;
}
.discription-wrapper-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.show-more {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  background: transparent;
  border: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
}
.show-more:hover {
  color: var(--prime);
}
.show-more:hover svg path {
  stroke: var(--prime);
}
.show-more svg {
  transition: transform 0.3s ease;
}

.show-more.active svg {
  transform: rotate(180deg);
}

/* Контейнер для дополнительного контента */
.additional-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  border-radius: 8px;
  margin-top: 20px;
}

.additional-content.show {
  max-height: 500px;
  opacity: 1;
  padding: 25px;
}

.additional-info h3 {
  margin: 0 0 15px 0;
}

.additional-info p {
  margin: 0 0 10px 0;
}

@media (max-width: 769px) {
  .discription-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: clamp(25px, 17vw, 60px) clamp(12px, 5.5vw, 20px);
    margin: 0 clamp(12px, 6vw, 20px);
    background: rgba(0, 0, 0, 0.5);
  }
  .discription-wrapper-title h3 {
    font-size: clamp(10px, 5vw, 18px);
  }
  .discription-wrapper-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .show-more {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    background: transparent;
    border: none;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(10px, 5vw, 18px);
    line-height: 150%;
    color: var(--white);
  }

  .show-more img {
    transition: transform 0.3s ease;
  }

  .show-more.active img {
    transform: rotate(180deg);
  }

  .additional-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    margin-top: 0;
  }

  .additional-content.show {
    max-height: 500px;
    opacity: 1;
    padding: 10px;
  }
}



