:root {
  --black: #2f2e2e;
  --last-black: #666;
  --white: #fdfdfd;
  --base1: #ab6ceb;
  --blue-base: #04abc8;
  --blue-light: #5ce1e6;
  --blue-light2: #e3f7fc;
  --base1-light: #e0ccf5;
  --bg-light: #f9f9fa;
  --font-family: "Rubik";
  --second-family: "Open Sans";
}
.page {
  font-family: var(--font-family);
  max-inline-size: 1440px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu__area {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.header {
  inline-size: 100%;
  padding-inline: 70px 79px;
  padding-block-start: 30px;
  min-height: 11vh;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media screen and (width <= 665px) {
  .header {
    padding-inline: 15px;
    padding-block-start: 15px;
  }
}

.header__contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.menu {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding-block-end: 0;
  justify-content: flex-end;
  margin-inline-start: 45px;
}

@media screen and (width <= 1254px) {
  .menu {
    padding-block-start: 15px;
    padding-block-end: 20px;
  }
}

@media screen and (width <= 500px) {
  .menu {
    padding-block-start: 10px;
    flex-grow: 0;
    padding-inline: 20px;
  }
}

.menu__list {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  list-style: none;
  position: relative;
  gap: 10px;
}

@media screen and (width <= 1054px) {
  .menu__list {
    display: none;
  }
}

.header__menu-toggle-position {
  visibility: hidden;
  position: absolute;
  inset: 150px 0 0 0;
  margin-inline: 5%;
  z-index: 10;
}

.header__menu-toggle-position {
  visibility: hidden;
  position: absolute;
  inset: 150px 0 0 0;
  margin-inline: 5%;
  z-index: 10;
}

.is-visible {
  visibility: visible;
}

.header__menu-toggle-content {
  display: none;
}

@media screen and (width <= 1054px) {
  .header__menu-toggle-content {
    display: block;
    padding-block: 40px;
    padding-inline: 70px;
    margin-block-start: 20px;
    background-color: rgb(224, 204, 245, 0.8);
  }
}

.header__menu-item_link {
  color: var(--black);
  text-decoration: none;
  font-size: 120%;
}

.header__menu-item_link {
  position: relative;
  color: var(--black);
  text-decoration: none;
  font-size: 120%;
}

.header__menu-item_link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.header__menu-item_link:hover::after {
  transform: scaleX(1);
}

.header__menu-toggle-items {
  display: none;
  color: #ffffff;
}

.header__menu-toggle-btn {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
  background-color: transparent;
  border-style: none;
}

.header__menu-toggle {
  display: none;
  margin-left: auto;
  width: 35px;
  height: 4px;
  background-color: var(--base1);
  position: relative;
  border-radius: 2px;
  border: none;
  transition: all 0.3s;
}

.toggle-rotate {
  transform: rotate(405deg);
}

@media screen and (width <= 1054px) {
  .header__menu-toggle-btn {
    display: block;
  }

  .header__menu-toggle {
    display: block;
  }

  .header__menu-toggle-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-inline-start: 0;
  }
}

.header__menu-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--base1);
  top: -10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.header__menu-toggle.toggle-rotate::before {
  transform: rotate(270deg);
  top: 0;
}

.header__menu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--base1);
  top: 10px;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__menu-toggle.toggle-rotate::after {
  display: none;
}

.menu__list-item-link {
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.menu__list-item-link::after.active {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 20px;
  height: 1px;
  background-color: var(--black);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.5s ease;
}

.menu__list-item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 20px;
  height: 1px;
  background-color: var(--black);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.5s ease;
}

.menu__list-item-link:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.menu__list-item-link.active {
  pointer-events: none;
  cursor: default;
  color: var(--last-black);
}

.menu__list-item-link.active::after {
  content: none;
}

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 25px;
}

@media screen and (width <= 650px) {
  .contact-info {    
    flex-wrap: wrap;
    justify-content: center;    
    gap: 15px;
  }
}

.phone-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.phone-hours__winter {
  color: var(--base1);
}

.phone-hours__winter-note {
  color: var(--base1);
  font-weight: 600;
  padding-inline-start: 7px;
  padding-inline-end: 7px;
}

.contact-icon {
  width: 15px;
  height: 15px;
  margin-inline-end: 10px;
}

.phone-number {
  font-family: var(--font-family);
  text-decoration: none;
  transition: color 0.5s ease;
}

.phone-number:hover {
  color: var(--base1);
  transition: color 0.5s ease;
}

.location {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.location-link {
  text-decoration: none;
  transition: color 0.5s ease;
}

.location-link:hover {
  color: var(--base1);
  transition: color 0.5s ease;
}

.location-icon {
  margin-inline-end: 10px;
  margin-inline-start: -5px;
  width: 30px;
  height: 30px;
}

.intro {
  display: flex;
  min-height: 80vh;
  inline-size: 100%;
  position: relative;
  flex-direction: column;
  align-items: center;
  overflow: unset;
  justify-content: center;
  gap: 5px;
}

@media screen and (width <= 660px) {
  .intro {
    overflow: hidden;
    min-height: 90vh;
  }
}

.intro-internal {
  min-height: 70vh;
  justify-content: center;
}

.bg-image {
  position: absolute;
  width: 650px;
  height: 100%;
  top: -45px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/bubble1.svg);
}

.bg-image-internal {
  position: absolute;
  width: 650px;
  height: 90%;
  top: 15px;
  left: 40%;
  transform: translateX(-50%);
  z-index: -1;
  background-image: url("../images/bubble5.svg");
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  background-position: right;
}

.stamp-wbo {
  position: absolute;
  width: 185px;
  height: 100%;
  top: 40px;
  right: auto;
  left: 70px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/stamp-WBO.png);
}

@media screen and (width <= 1254px) {
  .stamp-wbo {
    top: -35px;
    width: 150px;
  }
}

@media screen and (width <= 660px) {
  .stamp-wbo {
    right: 10px;
    left: auto;
    top: 20px;
    width: 140px;
  }
}

.stamp-wbo-internal {
  position: absolute;
  width: 185px;
  height: 100%;
  top: 50px;
  right: 70px;
  left: auto;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/stamp-WBO.png);
}

@media screen and (width <= 1254px) {
  .stamp-wbo-internal {
    top: 20px;
    width: 150px;
  }
}

@media screen and (width <= 660px) {
  .stamp-wbo-internal {
    right: 10px;
    top: 10px;
    width: 140px;
  }
}

.stamp-sanitize {
  position: absolute;
  width: 290px;
  height: 100%;
  top: -20px;
  right: -135px;
  left: auto;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/stamp-sanitize.png);
}

@media screen and (width <= 880px) {
  .stamp-sanitize {    
    width: 150px;
    top: -30px;
    right: -30px;
  }
}

.intro-decor-left {
  position: absolute;
  width: 330px;
  height: 773px;
  top: 10px;
  left: 92px;
  background-image: url("../images/intro-decor-left.svg");
  z-index: -2;
}

.intro-decor-right {
  position: absolute;
  width: 351px;
  height: 773px;
  top: 10px;
  right: 85px;
  background-image: url("../images/intro-decor-right.svg");
  z-index: -2;
}

.bold {
  font-weight: 600;
}

.main-title {
  font-family: "Open Sans ExtraBold", Arial, sans-serif;
  font-size: clamp(3.125rem, 1.583rem + 6.852vw, 7.75rem);
  font-stretch: 200%;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--base1);
}

.internal-title {
  text-transform: inherit;
  font-size: clamp(1.875rem, 1.2219rem + 2.809vw, 3.75rem);
  line-height: 2.2;
  padding-block-start: 0;
}

.sub-title {
  text-align: center;
  margin-block-start: -20px;
  font-family: var(--second-family);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue-base);
}

.internal-sub-title {
  font-size: clamp(1.125rem, 0.9508rem + 0.7491vw, 1.625rem);
  font-weight: 300;
}

.sub-title_text {
  font-size: 30px;
  font-weight: 600;
  color: var(--base1);
  padding-block-start: 10px;
  padding-block-end: 10px;
}

.align-center {
  text-align: center;
}


.more-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-block-start: 35px;
  block-size: auto;
  text-decoration: none;
}

.more-info-text {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 19px;
  color: var(--black);
}

.more-info-icon {
  margin-block-start: 5px;
  height: 18px;
  width: 18px;
}

.section-background {
  width: 100vw;
  position: relative;
  margin-block-start: 30px;
}

.background-color-light {
  background-color: var(--bg-light);
}

.background-color-blue {
  background-color: var(--blue-base);
}

.background-color-pink {
  background-color: var(--base1);
}

.section-margin-top {
  margin-block-start: 100px;
}

@media screen and (width <= 660px) {
  .section-margin-top {
    margin-block-start: 0;
  }
}

.services {
  display: flex;
  max-inline-size: 1440px;
  inline-size: 100%;
  block-size: 583px;
  padding-inline: 80px;
  margin: 0 auto;
  padding-block-start: 130px;
  padding-block-end: 150px;
  box-sizing: border-box;
  justify-content: space-between;
}

@media screen and (width <= 660px) {
  .services {
    padding-inline: 30px;
  }
}

@media screen and (width <= 1160px) {
  .services {
    flex-direction: column;
    block-size: fit-content;
    align-items: center;
    padding-block-start: 75px;
    padding-block-end: 115px;
  }
}

.services-2 {
  display: flex;
  inline-size: 100%;
  padding-inline: 80px;
  padding-block-start: 20px;
  padding-block-end: 65px;
  flex-direction: column;
  align-items: center;
}

@media screen and (width <= 660px) {
  .services-2 {
    padding-inline: 20px;
    padding-block-start: 0;
    padding-block-end: 45px;
  }
}

.services-2__images-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding-block-start: 15px;
  gap: 35px;
}

.services-2__img {
  height: 40vh;
  object-fit: cover;
}

.service__image-contener {
  position: relative;
  display: block;
}

.services-types-image {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 200%;
}

@media screen and (width <= 1440px) {
  .services-types-image {
    height: 180%;
    top: -250px;
  }
}

@media screen and (width <= 1355px) {
  .services-types-image {
    height: 160%;
    top: -235px;
  }
}

@media screen and (width <= 1265px) {
  .services-types-image {
    height: 140%;
    top: -225px;
  }
}

@media screen and (width <= 1220px) {
  .services-types-image {
    height: 120%;
    top: -210px;
  }
}

@media screen and (width <= 1160px) {
  .services-types-image {
    position: inherit;
    width: 80%;
    top: 0;
    padding-block-start: 25px;
  }
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 30px;
  max-width: 357px;
}

.service-2 {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 30px;
  align-items: center;
}

.section-title {
  font-size: clamp(2.25rem, 0.3792rem + 3.7453vw, 3.75rem);
  font-weight: 600;
  font-stretch: 100%;
  line-height: 1.1;
  color: var(--blue-base);
}

.section-title__main-galary {
  font-size: clamp(2.25rem, 0.3792rem + 3.7453vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--blue-base);
  text-align: center;
}

.service__description {
  font-size: 22px;
  font-weight: 300;
  font-stretch: 100%;
  line-height: 26px;
  color: var(--black);
}

.pick-up-servise {
  text-align: center;
  max-width: 1000px;
}

.button {
  cursor: pointer;
  background-color: var(--base1);
  border-radius: 10px;
  border: none;
  transition: background-color 0.5s ease;
}

.button:hover {
  background-color: var(--blue-base);
  transition: background-color 0.5s ease;
}

.button__contact {
  cursor: pointer;
  background-color: var(--blue-light);
  border-radius: 10px;
  border: none;
  transition: background-color 0.5s ease;
}

.button__contact:hover {
  background-color: var(--white);
  transition: background-color 0.5s ease;
}

.service-button {
  width: 133px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.pickup-button {
  width: 175px;
  height: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.service-button-icon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-inline-start: 15px;
}

.service__link {
  color: var(--white);
  text-decoration: none;
  width: fit-content;
}

.about {
  position: relative;
  inline-size: 100%;
  padding-inline: 79px;
  background-color: var(--bg-light);
  height: fit-content;
  padding-block-end: 200px;
  padding-block-start: 60px;
}

.on-about-page {
  padding-block-start: 0;
}

.about__title {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4.0625rem, 0.0569rem + 17.2285vw, 15.5625rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--base1);
  opacity: 70%;
  z-index: 1;
  white-space: nowrap;
}

.about__cards-list {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  max-inline-size: 1440px;
  padding-inline: 50px;
  margin-block-start: 120px;
  z-index: 2;
}

@media screen and (width <= 1160px) {
  .about__cards-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}

.about__card-item {
  position: relative;
  display: flex;
  flex-shrink: 1;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  inline-size: 320px;
}

.card-image {
  width: 30%;
}

.card-image-set {
  display: flex;
  justify-content: center;
  block-size: 285px;
  inline-size: 287px;
}

.card-decor-1 {
  position: absolute;
  inset: 0 0 0 36px;
}

.card-decor-2 {
  position: absolute;
  inset: 0 0 0 14px;
}

.card-decor-3 {
  position: absolute;
  inset: 0 57 0 0;
}

.card-decor-4 {
  position: absolute;
  block-size: 139px;
  inline-size: 164px;
  inset: -16px 0 0 -25px;
}

.card-decor-5 {
  position: absolute;
  block-size: 178px;
  inline-size: 168px;
  inset: -35px 0 0 -25px;
}

.bubble-1 {
  background-image: url("../images/bubble1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.bubble-2 {
  background-image: url("../images/bubble2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.bubble-3 {
  background-image: url("../images/bubble3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.bubble-4 {
  background-image: url("../images/bubble4.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  font-weight: 26px;
  color: var(--base1);
  text-align: center;
}

.card-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 23.7px;
  color: var(--last-black);
  text-align: center;
}

.why {
  position: relative;
  display: flex;
  justify-content: end;
  height: 100%;
  width: 100%;
  background-color: var(--blue-base);
  max-inline-size: 1550px;
  margin: 0 auto;
}

.why__image {
  position: absolute;
  top: -20px;
  right: 0;
  block-size: 903px;
  inline-size: 100%;
  background-image: url(../images/why-image.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}

.why__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  inline-size: 680px;
  block-size: 100%;
  margin-inline-end: 80px;
  padding-block: 46px;
}

@media screen and (width <= 800px) {
  .why__content {
    margin-inline-end: 0;
    margin-block-start: 0;
    inline-size: 100%;
    justify-content: center;
    padding-inline: 60px;
  }
}

.why__choose {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.why__choose-title {
  font-weight: 700;
  color: var(--white);
}

.why__choose-description {
  font-size: 20px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 23.7px;
  color: var(--white);
}

.why__choose-description-bold {
  font-weight: 600;
}

.why__services-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.why__services-list-item {
  position: relative;
}

.why__services-list-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-image: url("../images/checkbox.svg");
  background-repeat: no-repeat;
}

.why__services-description {
  padding-inline-start: 75px;
  font-size: 22px;
  font-weight: 600;
  font-stretch: 100%;
  line-height: 26px;
  color: var(--white);
}

.why__services-description-span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.service-in {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  max-inline-size: 1550px;
  margin: 0 auto;
}

.service-in__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-block-start: 100px;
  margin-block-end: 80px;
  margin-inline-start: 80px;
  justify-content: space-between;
}

@media screen and (width <= 880px) {
  .service-in__content {
    margin-inline: 50px;
    margin-block-start: 60px;
    gap: 10px;
  }
}

@media screen and (width <= 480px) {
  .service-in__content {
    margin-inline: 30px;
    margin-block-start: 60px;
    gap: 10px;
  }
}


.service-in__choose-title {
  font-weight: 700;
  color: var(--white);
}

.service-in__title {
  padding-block-end: 25px;
}

.service-in__subtitle {
  font-size: 22px;
  font-weight: 400;
  padding-block-start: 5px;
}

.service-in__image {
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  right: 0;
  width: 490px;
  height: 380px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  display: inline-block;
  background-image: url(../images/self-service-img.png);
  margin-inline-end: 80px;
}

@media screen and (width <= 1100px) {
  .service-in__image {
    top: 65%;
    margin-inline-end: 30px;
    width: 400px;
  }
}

@media screen and (width <= 880px) {
  .service-in__image {
    position: unset;
    transform: none;
    align-self: center;
    margin-inline-end: 0;
    height: 350px;
    background-size: 90%;
    width: 55vw;
  }
}

@media screen and (width <= 480px) {
  .service-in__image {
    height: 250px;
    background-size: 100%;
  }
}

.service-pickup__image {
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  right: 0;
  width: 550px;
  height: 380px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  display: inline-block;
  background-image: url(../images/pick-up-into.png);
  margin-inline-end: 65px;
}

@media screen and (width <= 1100px) {
  .service-pickup__image {
    top: 65%;
    margin-inline-end: 30px;
    width: 400px;
  }
}

@media screen and (width <= 880px) {
  .service-pickup__image {
    position: unset;
    transform: none;
    align-self: center;
    margin-inline-end: 0;
    height: 350px;
    background-size: 90%;
    width: 55vw;
  }
}

@media screen and (width <= 480px) {
  .service-pickup__image {
    height: 250px;
    background-size: 100%;
  }
}

.services-in__prices {
    display: flex;
    flex-direction: row;
    gap: 90px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.service-in__choose {
  display: flex;
  flex-direction: column;
  gap: 34px;
  inline-size: 50%;
}

@media screen and (width <= 1110px) {
  .service-in__choose {
    inline-size: 60%;
  }
}

@media screen and (width <= 880px) {
  .service-in__choose {
    inline-size: 100%;
  }
}

.service-in__choose-description {
  font-size: 22px;
  font-weight: 300;
  font-stretch: 100%;
  line-height: 1.2;
  color: var(--white);
}

.services-in__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.smallgap {
gap: 10px;
}

.services-in__list-title {
  font-size: 35px;
  font-weight: 500;
  color: var(--white);
}

.services-in__list-item {
  position: relative;
}

.services-in__list-item.services-in__list-item-image-1::before {
  content: "";
  position: absolute;
  background-image: url("../images/icon-washing-machine-1.svg");
  background-repeat: no-repeat;
  top: -10px;
  left: 2px;
  width: 100%;
  height: 45px;
}

.services-in__list-item.services-in__list-item-image-2::before {
  content: "";
  position: absolute;
  background-image: url("../images/icon-washing-machine-2.svg");
  background-repeat: no-repeat;
  top: -10px;
  left: 2px;
  width: 100%;
  height: 45px;
}

.services-in__list-item.services-in__list-item-image-3::before {
  content: "";
  position: absolute;
  background-image: url("../images/tag.svg");
  background-repeat: no-repeat;
  top: -15px;
  width: 100%;
  height: 55px;
}

.services-in__list-item.services-in__list-item-image-4::before {
  content: "";
  position: absolute;
  background-image: url("../images/armchair2.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -10px;
  left: 2px;
  width: 30%;
  height: 45px;
}

.services-in__list-item.services-in__list-item-image-5::before {
  content: "";
  position: absolute;
  background-image: url("../images/delivery-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -10px;
  width: 30%;
  height: 50px;
}

.services-in__list-description {
  padding-inline-start: 60px;
  font-size: 22px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 26px;
  color: var(--white);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.padding-start {
  padding-inline-start: 20px;
}

@media screen and (width <= 760px) {
  .services-in__list-description {
    margin-block-start: -12px;
  }
}

.services-in__list-description-span {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.promotions {
  position: relative;
  padding-inline-start: 78px;
  padding-inline-end: 78px;
  block-size: fit-content;
  inline-size: 100%;
  background-color: var(--bg-light);
  z-index: 0;
  margin: 0 auto;
  max-inline-size: 1550px;
}

@media screen and (width <= 960px) {
  .promotions {
    padding-inline-start: 50px;
    padding-inline-end: 0;
  }
}

@media screen and (width <= 760px) {
  .promotions {
    padding-inline-start: 15px;
  }
}

.promotions__title {
  position: absolute;
  top: 107px;
  font-size: clamp(3.125rem, 0.354rem + 12.315vw, 11.438rem);
  font-weight: 800;
  line-height: 217px;
  text-transform: uppercase;
  text-align: center;
  color: #2f2e2e;
  opacity: 70%;
  z-index: -1;
}

@media screen and (width <= 760px) {
  .promotions__title {
    top: 0;
  }
}

.promotions__content {
  display: flex;
  flex-direction: row;
  max-inline-size: 1550px;
  justify-content: space-between;
}

@media screen and (width <= 960px) {
  .promotions__content {
    flex-direction: column;
  }
}

.promotions__content-info {
  padding-block-start: 305px;
}

@media screen and (width <= 760px) {
  .promotions__content-info {
    padding-block-start: 175px;
  }
}

.promotions__content-description {
  padding-block-start: 20px;
  font-size: 20px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 23.7px;
  color: var(--last-black);
}

.galary-description {
  padding-block-end: 10px;
  padding-inline: 25px;
  font-size: 20px;
  font-weight: 400;
  line-height: 23.7px;
  color: var(--last-black);
  text-align: center;
}

.promotions__content-description-snap {
  font-weight: 700;
  color: var(--base1);
}

.promotions__content-image {
  padding-block-start: 135px;
  margin-inline-end: -79px;
}

@media screen and (width <= 960px) {
  .promotions__content-image {
    padding-block-start: 0;
    align-self: flex-end;
    margin-inline-end: 0;
  }
}

.promotions__more-info {
  padding-block: 60px 110px;
  font-size: 22px;
  font-weight: 500;
  font-stretch: 100%;
  line-height: 26px;
  text-align: center;
  color: var(--base1);
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  inline-size: 100%;
  padding-inline: 78px;
  margin-block-start: 150px;
}

@media screen and (width <= 760px) {
  .reviews {
    padding-inline: 20px;
    margin-block-start: 100px;
  }
}

.reviews-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 71px;
  text-align: center;
  color: var(--blue-base);
}

.reviews-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding-block-start: 53px;
}

.reviews-carousel-arrows {
  display: flex;
  gap: 245px;
}

.arrow {
  cursor: pointer;
  block-size: 50px;
  inline-size: 50px;
  background-color: transparent;
  border: none;
}
.right-arrow {
  transform: rotate(180deg);
}

/* Карусель */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  width: 100%;
  padding-inline-start: 30px;
  will-change: transform;
}

.review-card {
  width: calc(50% - 15px);
  flex-shrink: 0;
  position: relative;
  margin: 20px 0;
  background-color: var(--bg-light);
  border-radius: 30px;
  height: fit-content;
  box-sizing: border-box;
}

@media (max-width: 1800px) {
  .carousel-track {
    flex-direction: column;
    gap: 20px;
    padding-block-start: 30px;
  }

  .review-card {
    width: calc(100% - 0px);
  }

  .carousel-container {
    height: 630px;
    overflow: hidden;
  }
}

.profile {
  position: relative;
  display: flex;
  gap: 15px;
  padding-block-start: 44.5px;
  padding-inline-start: 27px;
}

.profile-picture {
  block-size: 60px;
  inline-size: 60px;
  border-radius: 50%;
  border: 1px solid var(--base1);
}

.profile-info {
  padding-block: 6px;
}

.profile-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--black);
}

.time-ago {
  font-family: Rubik;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.6px;
  color: var(--last-black);
  padding-block-start: 5px;
}

.review-text {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: var(--last-black);
  margin-inline: 77px 59px;
  margin-block-start: 20px;
  margin-block-end: 40px;
}

.review-text::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 28px;
  width: 100%;
  height: 100%;
  background-image: url("../images/double-quotes.svg");
  background-repeat: no-repeat;
}

.carousel-dots {
  display: flex;
  gap: 15px;
  padding-block-start: 20px;
}

.carousel-dot {
  cursor: pointer;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--base1);
}

.active-dot {
  background-color: var(--base1);
}
/* Карусель - Finish */

.google-reviews {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-block-size: 100px;
  min-width: 670px;
  padding-inline: 59px;
  margin-block-start: 56px;
  background-color: var(--bg-light);
  border-radius: 30px;
  padding-block-end: 0;
  margin-block-end: 70px;
}

@media screen and (width <= 720px) {
  .google-reviews {
    flex-direction: column;
    min-block-size: fit-content;
    min-width: auto;
    gap: 25px;
    padding-block: 30px;
  }
}

.google-reviews-text {
  display: flex;
  flex-direction: column;
}

.google-logo {
  display: flex;
  gap: 10px;
  align-items: center;
}
.review-span {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.33px;
  text-align: left;
  color: var(--last-black);
}

.review-button {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: var(--white);
  padding: 10px 15px;
}

.review-button-link {
  text-decoration: none;
}

.review-button-icon {
  margin-inline-start: 12px;
  vertical-align: middle;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-inline-size: 100%;
  background-color: var(--base1-light);
  margin-block-start: 100px;
  width: 100vw;
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  inline-size: 100%;
  padding-inline: 79px;
  max-inline-size: 1440px;
  gap: 60px;
  padding-block-start: 60px;
}

@media screen and (width <= 880px) {
  .footer-top {
    flex-direction: column;
    padding-inline: 60px;
    padding-block-start: 50px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10%;
  inline-size: 100%;
  padding-inline: 79px;
  padding-block-start: 90px;
  color: var(--white);
  max-inline-size: 1440px;
}

@media screen and (width <= 880px) {
  .footer-bottom {
    flex-direction: column;
    gap: 75px;
    padding-inline: 60px;
    padding-block-start: 70px;
  }
}

.footer-address-section {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

@media screen and (width <= 880px) {
  .footer-address-section {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer-title {
  font-weight: 500;
  color: var(--bg-light);
}

.footer-location {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black);
}

.footer-icon {
  block-size: 30px;
  inline-size: 30px;
  margin-inline-end: 15px;
}

.footer-address {
  display: flex;
  align-items: center;
}

.footer-contacts-section {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

@media screen and (width <= 880px) {
  .footer-contacts-section {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black);
}

.icon-text-align {
  display: flex;
  align-items: center;
}

a.icon-text-align {
  text-decoration: none;
  transition: color 0.5s ease;
}

a.icon-text-align:hover {
  color: var(--bg-light);
  transition: color 0.5s ease;
}

.footer-social-media {
  font-size: 20px;
  font-weight: 600;
}

.footer-facebook-link {
  font-weight: 400;
  transition: color 0.5s ease;
}

.footer-facebook-link:hover {
  color: var(--blue-base);
  transition: color 0.5s ease;
}

.footer-image {
  margin-block-start: -145px;
  display: block;
}

@media screen and (width <= 1100px) {
  .footer-image {
    display: none;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-sub-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin-block-end: 30px;
  color: var(--bg-light);
}

.footer-links-list {
  display: flex;
  flex-direction: row;
  gap: 35%;
}

@media screen and (width <= 720px) {
  .footer-links-list {
    gap: 25px;
    flex-direction: column;
  }
}

.list-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: clamp(0.875rem, 0.6004rem + 1.1811vw, 1.25rem);
  white-space: nowrap;
}

.list-column-item {
  transition: color 0.5s ease;
}

.list-column-item:hover {
  color: var(--black);
  transition: color 0.5s ease;
}

.footer-links-list a {
  text-decoration: none;
}

.footer-form-text {
  margin-block-end: 23px;
  padding-inline-end: 40px;
}

.contact-form {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.footer-contact-form {
  border-radius: 10px;
  width: 40%;
}

@media screen and (width <= 880px) {
  .footer-contact-form {
    width: 100%;
  }
}

.name-email {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-field {
  font-size: 16px;
  padding-block: 8px;
  padding-inline-start: 15px;
  inline-size: 100%;
  margin-bottom: 22px;
  border-radius: 5px;
  border: 1px solid var(--base1);
  color: var(--white);
  background-color: transparent;
}

.form-field:focus-visible {
  outline: none;
}

.form-field__contacts {
  font-size: 16px;
  padding-block: 8px;
  padding-inline-start: 15px;
  inline-size: 100%;
  margin-bottom: 22px;
  border-radius: 5px;
  border: 1px solid var(--white);
  background-color: transparent;
}

.form-field__contacts:focus-visible {
  outline: none;
}

.form-field__contacts-note {
  margin-block-start: -20px;
  padding-block-end: 15px;
  color: var(--bg-light);
}

.input {
  block-size: 40px;
}

.form-textarea {
  block-size: 70px;
  font-family: var(--font-family);
}

.form-textarea__contacts {
  block-size: 130px;
  font-family: var(--font-family);
}

.footer-time__winter {
  color: var(--base1);
}

input::placeholder,
textarea::placeholder {
  color: var(--white);
}

.footer-form-button {
  font-weight: 700;
  padding-block: 10px;
  inline-size: 100%;
  block-size: 40px;
}

.contact-form-button {
  font-weight: 500;
  padding-block: 10px;
  inline-size: 100%;
  block-size: 45px;
}

.bottom-text {
  font-weight: 300;
  margin-block: 108px 30px;
}

.bottom-text a {
  text-decoration: none;
  transition: color 0.5s ease;
}

.bottom-text a:hover {
  color: var(--base1);
  transition: color 0.5s ease;
}

.contact__content {
  display: flex;
  flex-direction: column;
  margin-block-start: 120px;
  margin-block-end: 125px;
  margin-inline: 80px;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (width <= 580px) {
  .contact__content {
    margin-block-start: 50px;
    margin-block-end: 80px;
    margin-inline: 40px;
  }
}

.contact__details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}

.contact__details-font {
  font-size: 20px;
}

@media screen and (width <= 980px) {
  .contact__details {
    flex-direction: column;
    gap: 80px;
  }
}

.contact__choose {
  display: flex;
  flex-direction: column;
  gap: 75px;
  justify-content: space-between;
}

.contact__sign {
  padding-inline-start: 60px;
  font-size: 20px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 26px;
  color: var(--white);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (width <= 788px) {
  .contact__sign {
    margin-block-start: -15px;
  }
}

.contact-icon {
  block-size: 25px;
  inline-size: 25px;
  margin-inline-end: 15px;
}

.content-section__map {
  margin-block-start: 50px;
  margin-block-end: 10px;
  margin-inline: 20px;
  display: grid;
  gap: 10px;
}

@media (width >= 768px) {
  .content-section__map {
    gap: 20px;
    margin-block-start: 100px;
    margin-block-end: 150px;
  }
}

.content-section__event {
  margin-block-start: 50px;
  margin-block-end: 10px;
  margin-inline: 20px;
  display: grid;
  gap: 10px;
}

@media (width >= 768px) {
  .content-section__event {
    gap: 15px;
    margin-block-start: 80px;
    margin-block-end: 80px;
  }
}

.content-section__event-body {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

@media (width <= 768px) {
  .content-section__event-body {
    flex-direction: column-reverse;
  }
}

.content-section__left-column {
  padding-block-start: 35px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.content-section__event-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-block-start: 35px;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content-section__sanitize {
  margin-block-start: 50px;
  margin-block-end: 10px;
  margin-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (width >= 768px) {
  .content-section__sanitize {
    gap: 15px;
    margin-block-start: 80px;
    margin-block-end: 80px;
  }
}

.content-section__sanitize-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-block-start: 50px;
  padding-block-end: 30px;
  width: 60%;
  position: relative;  
  z-index: 0;   
}

.content-section__sanitize-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 99%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%);
  pointer-events: none; 
  z-index: 1; 
  border-radius: 10px; 
}

@media (width <= 880px) {
  .content-section__sanitize-img {    
    padding-block-start: 5px;
    width: 90%;    
  }
}


.img-sanitize {
  position: relative;
  width: 100%; 
  height: 40vh; 
  object-fit: cover; 
  display: block;
  border-radius: 10px; 
}

.content-section__sanitize-body {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 80%;
  align-items: center;
}

@media (width <= 768px) {
  .content-section__sanitize-body {
    flex-direction: column-reverse;
    width: 90%;
  }
}

.event-title-decor {
  padding-block-start: 35px;
  color: var(--base1);
  font-style: italic;
}

.content-section__left-column-content {
  text-transform: uppercase;
  text-align: center;
  font-size: 110%;
}

.event-text-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--base1);
  padding-block-start: 15px;
  padding-block-end: 10px;
}

.galary-text-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--base1);
  padding-block-start: 15px;
  padding-block-end: 10px;
  text-align: center;
}

.event-text-ps {
  font-size: 35px;
  font-weight: 600;
  color: var(--base1);
  padding-block-start: 40px;
  text-align: center;
}

.event-description {
  font-size: 20px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 1.5;
  color: var(--last-black);
  padding-block-start: 3px;
}

.event-description-strong {
  font-weight: 600;
  color: black;
}

.white-popup2 {
  position: relative;
  width: auto;
  max-width: 500px;
  margin: auto auto;
  background: var(--base1);
  padding: 60px 40px 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.white-popup2-title {
  color: var(--bg-light);
  font-size: 28px;
  padding-block-end: 25px;
  text-align: center;
}

.check-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: #04abc8;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.trip-check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 5px;
}

.trip-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 14px;
  color: #333;
}

.trip-check-icon {
  width: 16px;
  height: 16px;
  background-color: #04abc8;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.trip-check-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.trip-check-list {
  list-style: none;
  padding-left: 60px;
  margin-top: 10px;
}

.trip-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 20px;
  color: #ffffff; 
}

.trip-check-icon-alt {
  width: 16px;
  height: 16px;
  background-color: #E3F7FC;
  border-radius: 10px; 
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.top-alt {
top: -5px;
}
