.home-video-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 560px;
  padding: 96px 24px 72px;
  display: flex;
  align-items: center;
  background-color: #111111;
}

.home-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
}

.home-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-video-text-box {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(100%, 790px);
  color: white;
}

.home-video-text-box h1 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-video-text-box p {
  margin: 34px 0 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.home-video-text-box ul {
  margin: 14px 0 0;
  padding-left: 27px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
}

.home-video-text-box li::marker {
  font-size: 0.85em;
}

.home-video-text-box .button-green {
  width: min(100%, 504px);
  min-height: 56px;
  margin-top: 64px;
  border-radius: 4px;
  font-size: 18px;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .home-video-text-box h1 {
    max-width: 100%;
    font-size: clamp(22px, 7vw, 28px);
    overflow-wrap: anywhere;
  }

  .home-video-text-box p {
    font-size: 17px;
  }

  .home-video-text-box ul {
    font-size: 15px;
  }

  .home-video-text-box .button-green {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .home-video-wrapper {
    min-height: 680px;
    padding: 120px 7.5vw 96px;
  }

  .home-video-text-box h1 {
    font-size: 44px;
    line-height: 1.32;
  }
}

@media screen and (min-width: 1400px) {
  .home-video-wrapper {
    min-height: min(808px, 75vh);
    padding-left: 12.5vw;
    padding-right: 12.5vw;
  }

  .home-video-text-box h1 {
    font-size: 52px;
  }

  .home-video-text-box p {
    font-size: 22px;
  }

  .home-video-text-box ul {
    font-size: 18px;
  }
}

.home-mailboxes-section {
  width: 100%;
  background: #ffffff;
  padding: 42px 18px 58px;
}

.home-mailboxes-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.home-mailboxes-image {
  width: 100%;
}

.home-mailboxes-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
}

.home-mailboxes-content {
  width: 100%;
}

.home-mailboxes-heading h1 {
  margin: 0;
  color: #000000;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.08;
}

.home-mailboxes-heading div {
  margin-top: 7px;
  color: #4ABBAD;
  font-size: 25px;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.075em;
}

.home-mailboxes-line {
  width: 86px;
  height: 2px;
  margin-top: 20px;
  background: #4ABBAD;
}

.home-mailboxes-list {
  margin-top: 28px;
}

.home-mailboxes-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  column-gap: 16px;
  min-height: 86px;
  border-bottom: 1px solid #d8d8d8;
}

.home-mailboxes-item:last-child {
  border-bottom: 0;
}

.home-mailboxes-item img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.home-mailboxes-item strong,
.home-mailboxes-item span {
  display: block;
  color: #000000;
  font-size: 16px;
  line-height: 1.32;
}

.home-mailboxes-item strong {
  font-weight: 900;
}

.home-mailboxes-item span {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .home-mailboxes-section {
    padding: 72px 7.5vw 86px;
  }

  .home-mailboxes-image img {
    aspect-ratio: 650 / 600;
  }

  .home-mailboxes-heading h1 {
    font-size: 32px;
  }

  .home-mailboxes-heading div {
    font-size: 31px;
  }

  .home-mailboxes-line {
    margin-top: 24px;
  }

  .home-mailboxes-list {
    margin-top: 36px;
  }

  .home-mailboxes-item {
    grid-template-columns: 72px 1fr;
    column-gap: 20px;
    min-height: 93px;
  }

  .home-mailboxes-item img {
    width: 72px;
    height: 72px;
  }

  .home-mailboxes-item strong,
  .home-mailboxes-item span {
    font-size: 17px;
  }
}

@media screen and (min-width: 1024px) {
  .home-mailboxes-section {
    padding: 110px 2.5vw 120px;
  }

  .home-mailboxes-inner {
    grid-template-columns: 58fr 32fr;
    gap: 36px;
  }

  .home-mailboxes-content {
    padding-top: 9px;
  }
}

@media screen and (min-width: 1700px) {
  .home-mailboxes-section {
    padding: 144px 0 160px;
  }

  .home-mailboxes-inner {
    grid-template-columns: 650px 316px;
    gap: 103px;
    justify-content: center;
  }

  .home-mailboxes-list {
    margin-top: 48px;
  }
}

.home-space-section {
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 72px 18px;
  color: #ffffff;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.2)), var(--home-space-bg);
  background-position: 28% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-space-content {
  width: 100%;
}

.home-space-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
}

.home-space-heading div {
  margin-top: 8px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.home-space-line {
  width: 86px;
  height: 2px;
  margin-top: 26px;
  background: #ffffff;
}

.home-space-subtitle {
  margin-top: 36px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.home-space-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 34px;
}

.home-space-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  column-gap: 14px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
}

.home-space-feature img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .home-space-section {
    min-height: 600px;
    padding: 86px 7.5vw;
    background-position: 22% center;
  }

  .home-space-content {
    width: 58vw;
    margin-left: 34vw;
  }

  .home-space-features {
    grid-template-columns: 1fr 1fr;
    column-gap: 7vw;
    row-gap: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .home-space-section {
    min-height: 640px;
    padding: 110px 4vw;
    background-position: center center;
  }

  .home-space-content {
    width: 44vw;
    margin-left: 48vw;
  }

  .home-space-heading h2 {
    font-size: 42px;
  }

  .home-space-heading div {
    font-size: 40px;
  }

  .home-space-subtitle {
    margin-top: 40px;
    font-size: 22px;
  }

  .home-space-feature {
    font-size: 18px;
  }
}

@media screen and (min-width: 1700px) {
  .home-space-section {
    min-height: 657px;
    padding: 136px 7vw;
  }

  .home-space-content {
    width: 43vw;
    margin-left: 43.9vw;
  }

  .home-space-line {
    margin-top: 25px;
  }

  .home-space-features {
    column-gap: 8.5vw;
    row-gap: 32px;
    margin-top: 36px;
  }
}

.home-solutions-section {
  width: 100%;
  padding: 72px 18px 64px;
  background: #ffffff;
}

.home-solutions-heading {
  text-align: center;
}

.home-solutions-heading h2 {
  margin: 0;
  color: #000000;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.08;
}

.home-solutions-heading div {
  margin-top: 8px;
  color: #202020;
  font-size: 29px;
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.home-solutions-line {
  width: 86px;
  height: 2px;
  margin: 30px auto 0;
  background: #000000;
}

.home-solutions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 58px;
}

.home-solutions-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 480 / 345;
  background: #eeeeee;
  border-radius: 1rem;
}

.home-solutions-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.42) 100%);
}

.home-solutions-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-solutions-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 1;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.12;
}

@media screen and (min-width: 768px) {
  .home-solutions-section {
    padding: 92px 7.5vw 82px;
  }

  .home-solutions-list {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 70px;
  }

  .home-solutions-card:last-child {
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .home-solutions-section {
    padding: 112px 4vw 90px;
  }

  .home-solutions-heading h2 {
    font-size: 42px;
  }

  .home-solutions-heading div {
    font-size: 40px;
  }

  .home-solutions-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 86px;
  }

  .home-solutions-card:last-child {
    grid-column: auto;
  }

  .home-solutions-card div {
    left: 28px;
    right: 28px;
    bottom: 30px;
    font-size: 26px;
  }
}

@media screen and (min-width: 1700px) {
  .home-solutions-section {
    padding: 143px 11.7vw 78px;
  }

  .home-solutions-line {
    margin-top: 42px;
  }

  .home-solutions-list {
    gap: 2.1vw;
    margin-top: 90px;
  }

  .home-solutions-card div {
    left: 43px;
    bottom: 37px;
    font-size: 28px;
  }
}

.home-offer-section {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.home-offer-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.home-offer-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 960 / 756;
  object-fit: cover;
}

.home-offer-content {
  width: 100%;
  padding: 64px 18px 72px;
  text-align: center;
}

.home-offer-content h2 {
  margin: 0;
  color: #000000;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.18;
}

.home-offer-content h2 strong {
  font-weight: 900;
}

.home-offer-content p {
  margin: 34px auto 0;
  color: #171717;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.34;
}

.home-offer-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 54px;
  border-radius: 5px;
  background: #69beb5;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .home-offer-gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .home-offer-gallery img {
    aspect-ratio: 512 / 396;
  }

  .home-offer-content {
    padding: 96px 16vw 82px;
  }

  .home-offer-content h2 {
    font-size: 42px;
  }

  .home-offer-content p {
    font-size: 27px;
  }

  .home-offer-content a {
    width: 344px;
  }
}

@media screen and (min-width: 1024px) {
  .home-offer-content {
    padding: 142px 12vw 0;
  }

  .home-offer-content h2 {
    font-size: 43px;
  }

  .home-offer-content p {
    margin-top: 46px;
    font-size: 28px;
  }

  .home-offer-content a {
    width: 344px;
    min-height: 60px;
    margin-top: 64px;
  }
}

@media screen and (min-width: 1700px) {
  .home-offer-content {
    padding: 150px 30.4vw 0;
  }

  .home-offer-content h2 {
    font-size: 44px;
  }

  .home-offer-content p {
    margin-top: 48px;
  }
}

#home .product-tabs-wrapper {
  padding: 1rem;
}

#home .product-tabs-check-more-button {
  color: #fe5b00;
  border: 1.5px solid #fe5b00;
  border-radius: 1.5rem;
  padding: 0.7rem 1rem;
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

#home .product-tabs-check-more-button:hover {
  background-color: #fe5b00;
  color: white;
}

#home .product-tabs-comment {
  color: #fe5b00;
  font-size: 22px;
}

#home .product-tab-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

#home .product-tab-buttons > div {
  cursor: pointer;
  padding: 0.4rem 0rem;
  font-weight: 200;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4ABBAD;
}

#home #newProductTabButton {
  border-color: #da027e;
}

#home #popularProductTabButton {
  border-color: #4ABBAD;
}

.home-squares-wrapper {
  width: 100%;
}

.home-square-wrapper {
  display: block;
  background-color: #4ABBAD;
  border-radius: 0.7rem;
  position: relative;
  height: 40vh;
  margin-bottom: 2rem;
  background-size: cover;
}

.home-square-inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: white;
}

.home-square-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.home-square-badge {
  background-color: #91ab1c;
  padding: 0.5rem 1.2rem 0.5rem 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 1rem;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.4rem;
}

.home-square-title {
  font-size: 28px;
}

.home-square-button {
  color: white;
  font-family: inherit;
  background: transparent;
  border: 1.5px solid white;
  padding: 0.7rem 1.5rem;
  border-radius: 1rem;
  width: fit-content;
  font-size: 16px;
}

.home-square-button:hover {
  color: #4ABBAD;
  background-color: white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.contact-form-message {
  width: fit-content;
  border-radius: 0.5rem;
  padding: 0.3rem;
}

#home {
  padding-bottom: 1rem;
}

.home-under-slideshow {
  background-color: #4ABBAD14;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.under-slideshow-icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 12px;
}

.under-slideshow-icon-text img {
  width: 3rem;
}

.button-blue,
.button-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 10px 24px rgba(74, 187, 173, 0.18);
  background-color: #4ABBAD;
  border-color: #4ABBAD;
  color: #ffffff;
  margin-top: 1rem;
  width: fit-content;
}

.button-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  border: 1px solid #9fa6ad;
  border-radius: 0.4rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  color: #1f2328;
  margin-top: 1rem;
  width: fit-content;
}

.button-blue:hover,
.button-blue:focus-visible,
.button-green:hover,
.button-green:focus-visible {
  background-color: #4ABBAD;
  border-color: #4ABBAD;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(74, 187, 173, 0.24);
  transform: translateY(-2px);
}

.button-empty:hover,
.button-empty:focus-visible {
  background-color: #f3f6f8;
  border-color: #7f8891;
  color: #111418;
  box-shadow: 0 12px 24px rgba(31, 35, 40, 0.12);
  transform: translateY(-2px);
}

.button-blue:active,
.button-green:active,
.button-empty:active {
  transform: translateY(0);
  box-shadow: none;
}

.review-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-size: 16px;
  color: #1f2328;
}

.review-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  text-align: center;
}

.review-content {
  min-width: 0;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.65;
  color: #4f5d6b;
  align-items: center;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
}

.review-content > :first-child {
  margin-top: 0;
}

.review-content > :last-child {
  margin-bottom: 0;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.star-rating img {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.home-tips-wrapper {
  width: 100%;
  padding: 64px 18px 72px;
  background-color: #ffffff;
}

.home-tips-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
  width: min(1354px, 100%);
  margin: 0 auto;
  align-items: center;
}

.home-tips-content {
  width: 100%;
}

.home-tips-title {
  margin: 0 0 34px;
  color: #000000;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
}

.home-tips-title strong {
  font-weight: 900;
}

.home-tips-wrapper .accordion {
  gap: 24px;
}

.home-tips-wrapper .accordion__item {
  border-radius: 4px;
}

.home-tips-wrapper .accordion__trigger {
  min-height: 66px;
  padding: 16px 20px 16px 22px;
}

.home-tips-wrapper .accordion__title {
  font-size: 20px;
  line-height: 1.3;
}

.home-tips-wrapper .accordion__content {
  padding: 0 22px 28px;
}

.home-tips-wrapper .accordion__text {
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.45;
}

.home-tips-wrapper .button-blue {
  width: min(100%, 258px);
  min-height: 42px;
  margin-top: 26px;
  font-size: 14px;
}

.home-tips-image {
  display: block;
  width: min(100%, 584px);
  height: auto;
  margin: 0 auto;
}

.home-reviews-section {
  background-color: #ffffff;
  padding: 64px 18px 70px;
}

.home-reviews-section .content-carousel-upper-wrapper {
  display: block;
  width: 100%;
  margin: 0;
}

.home-reviews-section .content-carousel-title {
  display: block;
  text-align: center;
}

.home-reviews-section .content-carousel-title-line {
  display: none;
}

.home-reviews-section .content-carousel-title h2 {
  margin: 0;
  color: #000000;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.home-reviews-section .content-carousel-title h2 strong {
  font-weight: 900;
}

.home-reviews-section .content-carousel-wrapper {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  width: min(100%, 930px);
  margin: 32px auto 0;
  align-items: center;
}

.home-reviews-section .content-carousel-track-wrapper {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.home-reviews-section .content-carousel-track {
  min-width: 0;
  max-width: 100%;
  margin: 0;
}

.home-reviews-section .review-item {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  gap: 20px;
  color: #000000;
  font-size: 18px;
  vertical-align: top;
}

.home-reviews-section .review-name {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.home-reviews-section .review-content {
  width: min(100%, 640px);
  font-size: 16px;
  line-height: 1.45;
  color: #555555;
}

.home-reviews-section .star-rating {
  margin-top: 22px;
  gap: 5px;
  color: #f09a70;
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  #home .product-tab-buttons > div {
    cursor: pointer;
    padding: 0.4rem 0rem;
    font-size: 18px;
  }
}

@media screen and (min-width: 1024px) {
  #home .product-tabs-wrapper {
    padding: 3rem calc((100% - 85%) / 2);
  }

  #home .product-tab-buttons > div {
    cursor: pointer;
    padding: 0.4rem 0rem;
    font-size: 42px;
    font-weight: 700;
  }

  #home .product-tabs-check-more-button {
    float: right;
  }

  .home-squares-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 600px;
    gap: 1.9rem;
  }

  .home-squares-wrapper.reverse {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "second first";
  }

  .home-square-wrapper {
    height: auto;
    margin-bottom: 0;
  }

  .home-square-row-2 {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.9rem;
  }

  .main-square .home-square-inner {
    left: 20px;
    right: 20px;
    bottom: 20px;
    transform: none;
  }

  .main-square .home-square-title {
    font-size: 32px;
  }

  .home-under-slideshow {
    flex-direction: row;
    justify-content: space-around;
  }

  .home-tips-wrapper {
    padding: 88px 7.5vw 92px;
  }

  .home-tips-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 56px;
  }

  .home-tips-title {
    margin-bottom: 42px;
    font-size: 38px;
  }

  .home-tips-image {
    width: 100%;
    max-width: 700px;
    justify-self: end;
  }

  .home-reviews-section {
    padding: 120px 24px !important;
  }

  .home-reviews-section .content-carousel-title h2 {
    font-size: 40px;
  }

  .home-reviews-section .content-carousel-wrapper {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 40px;
    margin-top: 46px;
  }

  .home-reviews-section .review-item {
    gap: 28px;
  }

  .home-reviews-section .review-name {
    font-size: 26px;
  }

  .home-reviews-section .review-content {
    font-size: 18px;
    line-height: 1.35;
  }

  .home-reviews-section .star-rating {
    margin-top: 36px;
  }
}

@media screen and (min-width: 1400px) {
  .home-tips-wrapper {
    padding: 172px 24px 140px;
  }

  .home-tips-inner {
    grid-template-columns: minmax(0, 642px) minmax(0, 584px);
    gap: 128px;
  }

  .home-tips-wrapper .accordion__trigger {
    min-height: 66px;
  }

  .home-tips-title {
    margin-bottom: 55px;
    font-size: 40px;
  }

  .home-reviews-section {
    padding-top: 154px;
    padding-bottom: 108px;
  }
}

@media screen and (min-width: 1700px) {

}
