@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#about,
#advantages,
#catalog,
#terms,
#price {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1281px) {
  #about,
  #advantages,
  #catalog,
  #terms,
  #price {
    scroll-margin-top: 90px;
  }
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

input {
  font-family: "Montserrat";
}

.button--outline {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 20px;
  color: #42876e;
  border: 1px solid #42876e;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.button--outline:hover {
  background-color: #51a184;
  color: #ffffff;
}
@media screen and (max-width: 1281px) {
  .button--outline {
    font-size: 14px;
  }
}

.button--green {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 16px 24px;
  background-color: #42876e;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.button--green:hover {
  background-color: #51a184;
}

.button--arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.button--arrow:hover {
  gap: 15px;
}

a {
  text-decoration: none;
}

.container {
  margin: auto;
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}

.logo-img {
  width: 203px;
}
@media screen and (max-width: 769px) {
  .logo-img {
    width: 165px;
  }
}
@media screen and (max-width: 391px) {
  .logo-img {
    width: 120px;
  }
}

.title-text {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-size: 48px;
}
@media screen and (max-width: 1025px) {
  .title-text {
    font-size: 30px;
  }
}

.description {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .description {
    font-size: 16px;
    line-height: 24px;
  }
}

.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1000;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1281px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  font-family: "Montserrat";
  font-weight: 400;
  color: #2c2c2c;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__nav-link:hover {
  color: #42876e;
}
.header__actions {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 681px) {
  .header__button {
    display: none;
  }
}
.header__phone {
  display: flex;
  align-items: center;
  color: #2c2c2c;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  gap: 6px;
  transition: all 0.3s ease;
}
.header__phone:hover {
  color: #42876e;
}
@media screen and (max-width: 1281px) {
  .header__phone {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 622px) {
  .header__phone {
    font-size: 12px;
    line-height: 20px;
  }
}
.header__phone-icon {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 622px) {
  .header__phone-icon {
    width: 20px;
    height: 20px;
  }
}
.header .burger {
  width: 18px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
@media screen and (max-width: 1281px) {
  .header .burger {
    display: flex;
  }
}
.header .burger span {
  height: 1.5px;
  width: 100%;
  background: #2c2c2c;
  border-radius: 2px;
  transition: 0.3s ease;
}
@media screen and (max-width: 769px) {
  .header .burger span {
    height: 1px;
  }
}
.header .burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header .burger.active span:nth-child(2) {
  opacity: 0;
}
.header .burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media screen and (max-width: 1281px) {
  .header .nav-mobile {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #f0f7f4;
    border-radius: 20px;
    padding: 20px 0;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  .header .nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .header__nav-link {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper {
    gap: 150px;
  }
}
@media screen and (max-width: 568px) {
  .page-wrapper {
    gap: 80px;
  }
}
.page-wrapper .hero {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 622px) {
  .page-wrapper .hero {
    flex-direction: column;
    gap: 80px;
  }
}
.page-wrapper .hero::before {
  content: "";
  position: absolute;
  left: -200px;
  width: 833px;
  height: 536px;
  top: 20px;
  background-image: url("/img/circle.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .hero::before {
    width: 628px;
    left: -350px;
  }
}
@media screen and (max-width: 491px) {
  .page-wrapper .hero::before {
    width: 568px;
    left: -400px;
  }
}
.page-wrapper .hero__container {
  position: relative;
  max-width: 722px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .hero__container {
    max-width: 443px;
    gap: 40px;
  }
}
.page-wrapper .hero__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .hero__content {
    gap: 16px;
  }
}
.page-wrapper .hero__title {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-size: 60px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .hero__title {
    font-size: 40px;
  }
}
.page-wrapper .hero__subtitle {
  max-width: 396px;
  width: 100%;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .hero__subtitle {
    font-size: 16px;
  }
}
.page-wrapper .hero__feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
}
.page-wrapper .hero__feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .hero__feature:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .hero__feature-icon {
  width: 50px;
  height: 49px;
}
.page-wrapper .hero__feature-text {
  max-width: 146px;
  width: 100%;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .hero__feature-text {
    font-weight: 400;
    font-size: 16px;
  }
}
.page-wrapper .hero .flower-mobile {
  display: none;
}
@media screen and (max-width: 622px) {
  .page-wrapper .hero .flower-mobile {
    display: block;
    max-width: 250px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 27px;
  }
}
.page-wrapper .about-advantages {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.page-wrapper .about {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.page-wrapper .about__container {
  display: flex;
  justify-content: space-between;
  gap: 193px;
}
@media screen and (max-width: 769px) {
  .page-wrapper .about__container {
    gap: 20px;
  }
}
.page-wrapper .about__content {
  max-width: 421px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 769px) {
  .page-wrapper .about__content {
    max-width: 240px;
  }
}
@media screen and (max-width: 391px) {
  .page-wrapper .about__content {
    max-width: 165px;
  }
}
.page-wrapper .about__image {
  max-width: 560px;
  width: 100%;
  position: absolute;
  left: 25%;
  z-index: 1;
  will-change: transform;
}
@media screen and (max-width: 1281px) {
  .page-wrapper .about__image {
    max-width: 384px;
    left: 32%;
  }
}
@media screen and (max-width: 769px) {
  .page-wrapper .about__image {
    max-width: 270px;
    left: 32%;
  }
}
@media screen and (max-width: 725px) {
  .page-wrapper .about__image {
    display: none;
  }
}
.page-wrapper .about__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-wrapper .about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background-color: #f1f6f7;
  border-radius: 25px;
}
.page-wrapper .about__stat-title {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-size: 52px;
  color: #42876e;
}
@media screen and (max-width: 568px) {
  .page-wrapper .about__stat-title {
    font-size: 46px;
  }
}
.page-wrapper .about__stat-description {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .about__stat-description {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .advantages {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .advantages {
    gap: 40px;
  }
}
@media screen and (max-width: 622px) {
  .page-wrapper .advantages__list {
    display: none;
  }
}
.page-wrapper .advantages__list--mobile {
  display: none;
}
@media screen and (max-width: 622px) {
  .page-wrapper .advantages__list--mobile {
    display: block;
  }
}
.page-wrapper .advantages__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .advantages__item {
    padding: 30px 0;
  }
}
.page-wrapper .advantages__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .advantages__item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .advantages__item-header {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 769px) {
  .page-wrapper .advantages__item-header {
    gap: 20px;
  }
}
.page-wrapper .advantages__item-number {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #42876e;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .advantages__item-number {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .advantages__item-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .advantages__item-title {
    font-size: 14px;
    line-height: 24px;
  }
}
.page-wrapper .advantages__item-description {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
  max-width: 420px;
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .advantages__item-description {
    font-size: 16px;
    line-height: 24px;
    max-width: 257px;
  }
}
.page-wrapper .advantages__accordion-item {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.page-wrapper .advantages__accordion-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .advantages__accordion-item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .advantages__accordion-item.is-open {
  gap: 16px;
}
.page-wrapper .advantages__accordion-item.is-open .advantages__accordion-icon {
  transform: rotate(180deg);
}
.page-wrapper .advantages__accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.page-wrapper .advantages__accordion-number {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #42876e;
}
.page-wrapper .advantages__accordion-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #2c2c2c;
  text-transform: uppercase;
}
.page-wrapper .advantages__accordion-icon {
  width: 10px;
  height: 6px;
  margin-left: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.page-wrapper .advantages__accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.page-wrapper .advantages__accordion-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2c2c2c;
}
.page-wrapper .geography {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-wrapper .geography__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-wrapper .geography__map {
  width: 100%;
}
.page-wrapper .catalog {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-wrapper .catalog__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}
.page-wrapper .catalog__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__grid {
    grid-template-columns: 1fr;
  }
}
.page-wrapper .catalog__item {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  background: #f1f6f7;
  max-height: 360px;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item {
    flex-direction: row;
    grid-column: span 1;
  }
}
@media screen and (max-width: 481px) {
  .page-wrapper .catalog__item {
    flex-direction: column;
  }
}
.page-wrapper .catalog__item--wide {
  grid-column: span 3;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item--wide {
    grid-column: span 1;
  }
}
.page-wrapper .catalog__item--plants {
  padding: 0;
}
.page-wrapper .catalog__item-label {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .catalog__item-label {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .catalog__item-label--plants {
  padding: 30px;
}
.page-wrapper .catalog__item-image {
  margin-top: auto;
  margin-left: auto;
}
.page-wrapper .catalog__item-image--flowers {
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item-image--flowers {
    max-width: 200px;
  }
}
.page-wrapper .catalog__item-image--plants {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-wrapper .catalog__item-image--plants {
    max-width: 210px;
  }
}
@media screen and (max-width: 769px) {
  .page-wrapper .catalog__item-image--plants {
    max-width: 150px;
  }
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item-image--plants {
    max-width: 180px;
  }
}
.page-wrapper .catalog__item-image--dried {
  max-width: 355px;
  width: 100%;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item-image--dried {
    max-width: 200px;
  }
}
.page-wrapper .catalog__item-image--greenery {
  max-width: 393px;
  width: 100%;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item-image--greenery {
    max-width: 200px;
  }
}
.page-wrapper .catalog__item-image--potted {
  max-width: 398px;
  width: 100%;
}
@media screen and (max-width: 680px) {
  .page-wrapper .catalog__item-image--potted {
    max-width: 200px;
  }
}
.page-wrapper .catalog .arrow-button {
  width: 15px;
  height: 15px;
  color: #ffffff;
}
.page-wrapper .terms {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .terms {
    gap: 40px;
  }
}
.page-wrapper .terms__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .terms__list {
    gap: 20px;
  }
}
.page-wrapper .terms__item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.page-wrapper .terms__item-number {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #42876e;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .terms__item-number {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .terms__item-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .terms__item-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .terms__background {
  max-width: 560px;
  width: 100%;
  position: absolute;
  right: 0;
  transform: translateX(5vw);
  z-index: -1;
}
@media screen and (max-width: 1447px) {
  .page-wrapper .terms__background {
    transform: translateX(2vw);
  }
}
@media screen and (max-width: 1356px) {
  .page-wrapper .terms__background {
    transform: translateX(0vw);
  }
}
@media screen and (max-width: 1128px) {
  .page-wrapper .terms__background {
    max-width: 500px;
  }
}
@media screen and (max-width: 1025px) {
  .page-wrapper .terms__background {
    max-width: 400px;
  }
}
@media screen and (max-width: 801px) {
  .page-wrapper .terms__background {
    max-width: 315px;
  }
}
@media screen and (max-width: 769px) {
  .page-wrapper .terms__background {
    max-width: 280px;
  }
}
@media screen and (max-width: 692px) {
  .page-wrapper .terms__background {
    display: none;
  }
}
.page-wrapper .steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-wrapper .steps__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 20px;
}
.page-wrapper .steps__item {
  position: relative;
  max-width: 400px;
  width: 100%;
  background-color: #f1f6f7;
  border-radius: 25px;
  padding: 40px 20px;
}
.page-wrapper .steps__item-number {
  position: absolute;
  top: -45px;
  left: 40%;
  max-width: 90px;
  width: 100%;
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-size: 52px;
  color: #ffffff;
  padding: 20px 36px;
  border-radius: 100%;
  line-height: 100%;
  background-image: url("/img/step-background.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .steps__item-number {
    font-size: 40px;
  }
}
.page-wrapper .steps__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}
.page-wrapper .steps__item-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #42876e;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .steps__item-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .steps__item-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .steps__item-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .clients {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
.page-wrapper .clients__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-wrapper .clients__image {
  max-width: 703px;
  width: 100%;
  position: absolute;
  z-index: 1;
  margin-left: -310px;
  top: 120px;
}
@media screen and (max-width: 1281px) {
  .page-wrapper .clients__image {
    max-width: 664px;
  }
}
@media screen and (max-width: 865px) {
  .page-wrapper .clients__image {
    margin-left: -350px;
  }
}
@media screen and (max-width: 801px) {
  .page-wrapper .clients__image {
    max-width: 604px;
    margin-left: -390px;
  }
}
@media screen and (max-width: 715px) {
  .page-wrapper .clients__image {
    max-width: 500px;
    margin-left: -340px;
  }
}
@media screen and (max-width: 663px) {
  .page-wrapper .clients__image {
    display: none;
  }
}
@media screen and (max-width: 622px) {
  .page-wrapper .clients__list {
    display: none;
  }
}
.page-wrapper .clients__list--mobile {
  display: none;
}
@media screen and (max-width: 622px) {
  .page-wrapper .clients__list--mobile {
    display: block;
  }
}
.page-wrapper .clients__item {
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-wrapper .clients__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .clients__item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .clients__item-header {
  max-width: 460px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .clients__item-header {
    max-width: 237px;
  }
}
.page-wrapper .clients__item-icon {
  width: 41px;
  height: 40px;
}
.page-wrapper .clients__item-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .clients__item-title {
    font-size: 14px;
    line-height: 24px;
  }
}
.page-wrapper .clients__item-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
  max-width: 420px;
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .clients__item-text {
    max-width: 290px;
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .clients__accordion-item {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.page-wrapper .clients__accordion-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .clients__accordion-item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
}
.page-wrapper .clients__accordion-item.is-open {
  gap: 16px;
}
.page-wrapper .clients__accordion-item.is-open .clients__accordion-collapse {
  transform: rotate(180deg);
}
.page-wrapper .clients__accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.page-wrapper .clients__accordion-icon {
  width: 30px;
  height: 30px;
}
.page-wrapper .clients__accordion-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #2c2c2c;
  text-transform: uppercase;
}
.page-wrapper .clients__accordion-collapse {
  width: 10px;
  height: 6px;
  margin-left: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.page-wrapper .clients__accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.page-wrapper .clients__accordion-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2c2c2c;
}
.page-wrapper .reviews {
  display: flex;
  flex-direction: column;
  gap: 60px;
  overflow: hidden;
}
.page-wrapper .reviews__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 568px) {
  .page-wrapper .reviews__list {
    padding: 20px;
  }
}
.page-wrapper .reviews-swiper {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  height: 100%;
}
.page-wrapper .reviews .swiper-slide {
  max-width: 1000px;
  width: 100%; /* Fixed width for desktop cards */
  height: auto;
  background-color: #f1f6f7;
  padding: 60px 40px;
  border-radius: 30px;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: scale(0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1500px) {
  .page-wrapper .reviews .swiper-slide {
    max-width: 860px;
  }
}
@media screen and (max-width: 1200px) {
  .page-wrapper .reviews .swiper-slide {
    max-width: 800px;
  }
}
@media screen and (max-width: 1025px) {
  .page-wrapper .reviews .swiper-slide {
    padding: 40px;
    max-width: 600px;
  }
}
@media screen and (max-width: 769px) {
  .page-wrapper .reviews .swiper-slide {
    padding: 30px;
    max-width: 500px;
  }
}
.page-wrapper .reviews .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}
.page-wrapper .reviews .reviews__controls {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 24px;
}
@media screen and (max-width: 769px) {
  .page-wrapper .reviews .reviews__controls {
    justify-content: space-between;
  }
}
.page-wrapper .reviews .slider-nav {
  display: flex;
  gap: 10px;
  z-index: 10;
}
.page-wrapper .reviews .swiper-btn-custom-prev,
.page-wrapper .reviews .swiper-btn-custom-next {
  width: 40px;
  height: 40px;
  border: 1px solid #42876e;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #42876e;
}
.page-wrapper .reviews .swiper-btn-custom-prev svg,
.page-wrapper .reviews .swiper-btn-custom-next svg {
  width: 8px;
  height: 15px;
  fill: currentColor;
}
.page-wrapper .reviews .swiper-btn-custom-prev:hover,
.page-wrapper .reviews .swiper-btn-custom-next:hover {
  background: #42876e;
  color: white;
}
.page-wrapper .reviews .swiper-btn-custom-next {
  transform: rotate(180deg);
}
.page-wrapper .reviews .custom-pagination {
  max-width: 100px;
  width: 100%;
}
.page-wrapper .reviews .custom-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #a0c8b9;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.page-wrapper .reviews .custom-pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 10px;
  background: #42876e;
  border-radius: 10px;
}
.page-wrapper .review {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background-color: #f1f6f7;
  border-radius: 30px;
  max-width: 860px;
  width: 100%;
}
.page-wrapper .review__marks {
  color: #42876e;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .review__marks {
    width: 30px;
    height: 30px;
  }
}
.page-wrapper .review__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-wrapper .review__text {
  font-family: "Montserrat";
  font-style: italic;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .review__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .review__author {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-wrapper .review__name {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .review__name {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wrapper .review__company {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .page-wrapper .review__company {
    font-size: 14px;
  }
}
.page-wrapper .price-request {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-wrapper .price-request__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-wrapper .form {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-wrapper .form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 568px) {
  .page-wrapper .form__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-wrapper .form__field {
  display: flex;
  flex-direction: column;
}
.page-wrapper .form__field--error .form__input {
  border-color: #fa6161;
}
.page-wrapper .form__field--error .form__error {
  display: block;
}
.page-wrapper .form__label {
  color: #2c2c2c;
  font-size: 14px;
  margin-bottom: 10px;
}
.page-wrapper .form__input {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
.page-wrapper .form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.page-wrapper .form__checkbox--error .form__checkbox-input {
  border: 1px solid #fa6161;
}
.page-wrapper .form__checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #2c2c2c;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.page-wrapper .form__checkbox-input:checked {
  background-color: #42876e;
  border-color: #42876e;
}
.page-wrapper .form__checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.page-wrapper .form__checkbox-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.4);
}
.page-wrapper .form__checkbox-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
  color: #333;
  max-width: 600px;
  width: 100%;
}
.page-wrapper .form__button {
  align-self: flex-start;
}
.page-wrapper .form__error {
  color: #fa6161;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.page-wrapper .form__flowers {
  max-width: 400px;
  width: 100%;
  position: absolute;
  right: 0;
  transform: translateX(5vw);
  bottom: -80px;
}
@media screen and (max-width: 1447px) {
  .page-wrapper .form__flowers {
    transform: translateX(2vw);
  }
}
@media screen and (max-width: 1356px) {
  .page-wrapper .form__flowers {
    transform: translateX(0vw);
  }
}
@media screen and (max-width: 769px) {
  .page-wrapper .form__flowers {
    display: none;
  }
}
.page-wrapper .form__flowers--mobile {
  display: none;
  max-width: 304px;
  width: 100%;
  position: absolute;
  right: 0;
  transform: translateX(0vw);
  bottom: -80px;
}
@media screen and (max-width: 769px) {
  .page-wrapper .form__flowers--mobile {
    display: block;
  }
}
@media screen and (max-width: 568px) {
  .page-wrapper .form__flowers--mobile {
    display: none;
  }
}

.footer {
  padding: 40px 0;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer__content {
  display: flex;
  align-items: center;
  gap: 5vw;
}
@media screen and (max-width: 1025px) {
  .footer__content {
    flex-direction: column;
  }
}
.footer__contacts {
  max-width: 530px;
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .footer__contacts {
    max-width: 100%;
  }
}
.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .slider-nav {
  display: flex;
  gap: 10px;
  z-index: 10;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.footer .swiper-btn-custom-prev,
.footer .swiper-btn-custom-next {
  width: 40px;
  height: 40px;
  border: 1px solid #42876e;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #42876e;
}
.footer .swiper-btn-custom-prev svg,
.footer .swiper-btn-custom-next svg {
  width: 8px;
  height: 15px;
  fill: currentColor;
}
.footer .swiper-btn-custom-prev:hover,
.footer .swiper-btn-custom-next:hover {
  background: #42876e;
  color: white;
}
.footer .swiper-btn-custom-next {
  transform: rotate(180deg);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background-color: #f1f6f7;
  border-radius: 15px;
}
.footer__contact-city {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .footer__contact-city {
    font-size: 25px;
  }
}
.footer__contact-label {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #2c2c2c;
  opacity: 60%;
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .footer__contact-label {
    font-size: 12px;
  }
}
.footer__contact-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #2c2c2c;
}
@media screen and (max-width: 1025px) {
  .footer__contact-text {
    font-size: 14px;
  }
}
.footer__contact-link {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #2c2c2c;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.footer__social-label {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #2c2c2c;
  opacity: 60%;
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .footer__social-label {
    font-size: 12px;
  }
}
.footer__social-icons {
  display: flex;
  align-items: center;
  gap: 23px;
}
.footer__social-icon {
  color: #42876e;
  width: 43px;
  height: 43px;
}
.footer__map {
  max-width: 640px;
}
.footer__map-img {
  width: 100%;
}
.footer__copyright {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #2c2c2c;
  opacity: 60%;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.active {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  background: #efefef;
  padding: 40px;
  border-radius: 20px;
  max-width: 530px;
  text-align: center;
  z-index: 2;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 18px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}
.modal__close .close {
  width: 40px;
  height: 40px;
}
.modal__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
}
.modal__tick {
  width: 61px;
  height: 60px;
}
.modal__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
}/*# sourceMappingURL=style.css.map */