* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Airfool";
  src: url("../fonts/Airfool.woff2") format("woff2"), url("../fonts/Airfool.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Montserrat Alternates", sans-serif;
}

.form {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 995px) {
  .form {
    max-width: none;
  }
}

.form input {
  border: none;
  font-size: 18px;
  font-weight: 400;
  border: 2px solid #FF5094;
  padding: 16px;
  margin-bottom: 15px;
  border-radius: 16px;
  color: #000;
}

.form input::placeholder {
  color: #000;
}

@media (max-width: 1280px) {
  .form input {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .form input {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 18px;
  font-weight: 400;
  border: 2px solid #FF5094;
  background-image: url("../icons/vector.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 12px center;
  background-color: #fff !important;
  color: #000;
  padding: 16px;
  margin-bottom: 15px;
  border-radius: 16px;
}

@media (max-width: 575px) {
  .form select {
    font-size: 16px;
  }
}

.form button {
  cursor: pointer;
  border-radius: 16px;
  background-color: #FF5094;
  color: white;
  padding: 18px;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .form button {
    font-size: 16px;
  }
}

.form button:hover {
  background-color: rgb(255, 29, 116.8171428571);
  color: #FFE5F0;
}

#birthDate {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-image: url("../icons/bx_calendar.svg");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: right 12px center;
  background-color: #fff !important;
  position: relative;
  width: 100%;
  font-weight: 400;
  color: #000;
  text-align: left;
  padding: 20px 40px 20px 20px;
  border: 2px solid #FF5094;
  border-radius: 16px;
}

#birthDate::placeholder,
#birthDate::-webkit-input-placeholder,
#birthDate::-moz-placeholder,
#birthDate:-ms-input-placeholder {
  color: #000;
  opacity: 1;
  transform: none;
  transition: none;
}

#birthDate:not(:placeholder-shown)::placeholder {
  opacity: 0;
}

.contact__row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 995px) {
  .contact__row {
    flex-direction: column;
  }
}

.contact__row h2 {
  color: #FF5094;
  margin-bottom: 20px;
}

.contact__right {
  width: 100%;
  max-width: 540px;
}

@media screen and (max-width: 1280px) {
  .contact__right {
    max-width: 400px;
  }
}

@media screen and (max-width: 995px) {
  .contact__right {
    display: none;
  }
}

.img-servise {
  width: 280px;
  height: 280px;
  border-radius: 30px
}

.cleaning-services__img {
  border-radius: 30px;
  height: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 75px;
  background-color: #FFE2EE;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 70px;
}

@media (max-width: 575px) {
  .tabs {
    height: 60px;
    margin-bottom: 40px;
  }
}

.tab {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #FF5094;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .tab {
    font-size: 20px;
  }
}

@media (max-width: 995px) {
  .tab {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .tab {
    font-size: 14px;
  }
}

.active {
  background-color: #FF5094;
  color: white;
  font-weight: 700;
  text-align: center;
}

.tabs-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 75px;
  background-color: #FFE2EE;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 70px;
}

@media (max-width: 995px) {
  .tabs-services {
    height: 60px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .tabs-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tabs-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 70%;
  height: 75px;
  background-color: #FFE2EE;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .tabs-windows {
    height: 50px;
    margin-bottom: 40px;
  }
}

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

.container-1 {
  width: 100%;
  padding: 0 60px;
}

@media screen and (max-width: 995px) {
  .container-1 {
    padding: 0 20px;
  }
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FF5094;
  border-radius: 45px;
  padding: 10px 10px 10px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-logo {
  width: 90px;
  height: auto;
}

@media (max-width: 768px) {
  .header-logo {
    width: 60px;
  }
}

.header-btn {
  padding: 10px 20px;
  background-color: white;
  color: #FF5094;
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 768px) {
  .header-btn {
    display: none;
  }
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 66px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 115%;
    right: 9%;
    width: 35%;
    background: #FF5094;
    padding: 30px 20px;
    border-radius: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
  }
}

@media (max-width: 575px) {
  .nav-menu {
    width: 90%;
  }
}

.nav-menu__list {
  position: re;
  display: flex;
  gap: 66px;
}

@media (max-width: 768px) {
  .nav-menu__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.nav-menu__list li a {
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-decoration: none;
}

@media (max-width: 1280px) {
  .nav-menu__list li a {
    font-size: 20px;
  }
}

@media (max-width: 995px) {
  .nav-menu__list li a {
    font-size: 18px;
  }
}

.nav-menu__mobile-btn {
  display: none;
  padding: 10px 20px;
  background-color: white;
  color: #FF5094;
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu__mobile-btn {
    display: block;
  }
}

.menu-toggle {
  display: none;
}

.menu-icon {
  background: white;
  color: #FF5094;
  display: none;
  cursor: pointer;
  font-size: 24px;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
}

.menu-icon i {
  position: absolute;
  transition: 0.3s ease;
}

.menu-icon .fa-times {
  display: none;
}

.menu-toggle:checked~.menu-icon .fa-bars {
  display: none;
}

.menu-toggle:checked~.menu-icon .fa-times {
  display: block;
}

.menu-toggle:checked~.nav-menu {
  display: flex;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background: #f3e9e9;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
  z-index: 1000;
  min-width: 200px;
}

.submenu li a {
  font-size: 18px;
  color: #000;
}

.submenu li {
  margin-bottom: 14px;
}

.submenu li:last-child {
  margin-bottom: 0;
}

.submenu li a:hover {
  color: #FF5094;
}

#services-menu {
  position: relative;
}

#services-menu:hover .submenu {
  display: block;
}

.main-section {
  padding-top: 80px;
}

.main-section__row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

@media screen and (max-width: 995px) {
  .main-section__row {
    flex-direction: column;
  }
}

.main-section__img {
  width: 100%;
  max-width: 490px;
}

@media screen and (max-width: 995px) {
  .main-section__img {
    display: none;
  }
}

.main-section__content {
  width: 100%;
  max-width: 536px;
}

@media screen and (max-width: 995px) {
  .main-section__content {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.main-section__content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .main-section__content h1 {
    font-size: 28px;
  }
}

.main-section__content p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .main-section__content p {
    font-size: 16px;
  }
}

.main-section__link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat Alternates", sans-serif;
  width: 100%;
  padding: 20px 40px;
  border-radius: 45px;
  text-align: center;
  background-color: #FF5094;
  color: white;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1280px) {
  .main-section__link {
    font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  .main-section__link {
    width: 90%;
    font-size: 14px;
    padding: 20px;
  }
}

.breadcrumbs h1 {
  font-family: "Airfool", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #FF5094;
  margin-bottom: 20px;
}

@media (max-width: 1280px) {
  .breadcrumbs h1 {
    font-size: 48px;
  }
}

@media (max-width: 995px) {
  .breadcrumbs h1 {
    font-size: 38px;
  }
}

.breadcrumbs__content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  gap: 40px;
}

@media (max-width: 575px) {
  .breadcrumbs__content {
    flex-direction: column;
  }
}

.breadcrumbs__text {
  width: 100%;
  max-width: 650px;
}

.breadcrumbs__text p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 1280px) {
  .breadcrumbs__text p {
    font-size: 20px;
  }
}

@media (max-width: 995px) {
  .breadcrumbs__text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs__text p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .breadcrumbs__text p {
    font-size: 14px;
  }
}

.breadcrumbs__box-image {
  width: 100%;
  max-width: 450px;
  border-radius: 100%;
  overflow: hidden;
  border: 10px solid #FF5094;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1280px) {
  .breadcrumbs__box-image {
    max-width: 400px;
  }
}

@media (max-width: 995px) {
  .breadcrumbs__box-image {
    max-width: 350px;
  }
}

.features-section__box {
  padding: 30px;
  background-color: #FF5094;
  border-radius: 40px;
}

@media (max-width: 995px) {
  .features-section__box {
    padding: 20px 10px;
  }
}

.features-section__box h2 {
  color: #FFE2EE;
  margin-bottom: 20px;
  text-align: center;
}

.features-section__desc {
  font-size: 20px;
  font-weight: 700;
  color: #FFE2EE;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 995px) {
  .features-section__desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .features-section__desc {
    font-size: 16px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1280px) {
  .cards {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .cards {
    display: none;
  }
}

.cards-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  padding: 60px 30px;
  height: 330px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 1280px) {
  .cards-item {
    padding: 60px 25px;
  }
}

@media (max-width: 995px) {
  .cards-item {
    background-color: #FFE2EE;
    padding: 20px;
    height: auto;
    border-radius: 20px;
  }
}

.cards-item-1 {
  background-image: url("../icons/rectangle1.svg");
}

.cards-item-2 {
  background-image: url("../icons/rectangle2.svg");
}

.cards-titel {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 1280px) {
  .cards-titel {
    font-size: 17px;
  }
}

@media (max-width: 995px) {
  .cards-titel {
    font-size: 14px;
  }
}

.cards-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 1280px) {
  .cards-desc {
    font-size: 13px;
  }
}

@media (max-width: 995px) {
  .cards-desc {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .cards-desc {
    font-size: 14px;
  }
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.stats-card {
  width: 100%;
  max-width: 375px;
  text-align: center;
  color: #FFE2EE;
}

.stats-number {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 10px;
}

@media (max-width: 995px) {
  .stats-number {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .stats-number {
    font-size: 25px;
  }
}

.stats-text {
  max-width: 300px;
  font-size: 20px;
}

@media (max-width: 995px) {
  .stats-text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .stats-text {
    font-size: 9px;
  }
}

.feature-card {
  display: none;
  background-color: #FFE2EE;
  padding: 20px;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .feature-card {
    display: block;
  }
}

.features-pagination {
  display: none;
}

@media (max-width: 575px) {
  .features-pagination {
    display: block;
  }
}

.services-section {
  position: relative;
}

.services-section h2 {
  color: #FF5094;
  margin-bottom: 10px;
}

.services-section p {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .services-section p {
    font-size: 16px;
  }
}

.swiper-wrapper {
  display: flex;
}

.swiper-services {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1280px;
  overflow: hidden;
}

@media screen and (max-width: 1280px) {
  .swiper-services {
    max-width: 900px;
  }
}

@media (max-width: 995px) {
  .swiper-services {
    max-width: 940px;
  }
}

@media (max-width: 768px) {
  .swiper-services {
    max-width: 550px;
  }
}

@media (max-width: 575px) {
  .swiper-services {
    max-width: 280px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 65%;
  transform: translateY(-65%);
  color: #FF5094;
}

.swiper-pagination-services {
  position: absolute;
  margin-top: 40px;
}

.card-service {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 30px 20px;
  background: linear-gradient(319.2deg, rgba(255, 255, 255, 0) 1.3%, rgba(6, 185, 249, 0.2) 89.57%), linear-gradient(164.33deg, rgba(205, 25, 236, 0) 34.25%, rgba(205, 25, 236, 0.2) 115.11%), linear-gradient(329.64deg, rgba(72, 78, 247, 0) 20.7%, rgba(72, 78, 247, 0.2) 93.27%), radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.273) 52.88%, rgba(254, 186, 255, 0.3) 100%);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 40px;
}

@media (max-width: 1280px) {
  .card-service {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .card-service {
    padding: 20px 15px;
    border-radius: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .card-service {
    padding: 20px 10px;
  }
}

.card-service__img {
  height: 196px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-service__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 575px) {
  .card-service__content {
    width: 90%;
    margin: 0 auto;
  }
}

.card-service__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #000;
  width: 100%;
  margin-top: auto;
  padding: 10px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-service__link::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-left: 11px;
  border-radius: 100%;
  background-color: #FF5094;
  background-image: url("../icons/arrow-up.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

@media (max-width: 1280px) {
  .card-service__link {
    padding: 8px 10px;
    font-size: 14px;
  }
}

.services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.services-box {
  width: 100%;
  max-width: 700px;
  background-color: #FFE2EE;
  border-radius: 30px;
  padding: 30px;
}

@media (max-width: 995px) {
  .services-box {
    max-width: none;
  }
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 995px) {
  .services-columns {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .services-columns {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-bottom: 20px;
  }
}

.services-list {
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .services-list {
    margin-bottom: 0;
  }
}

.services-item {
  position: relative;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .services-item {
    margin-bottom: 5px;
  }
}

.services-item:last-child {
  margin-bottom: none;
}

.services-item::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../icons/circle-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}

@media (max-width: 575px) {
  .services-item::before {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 995px) {
  .services-item {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-item {
    font-size: 12px;
  }
}

.services-item2 {
  position: relative;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .services-item2 {
    margin-bottom: 5px;
  }
}

.services-item2:last-child {
  margin-bottom: none;
}

.services-item2::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/cross.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}

@media (max-width: 575px) {
  .services-item2::before {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 995px) {
  .services-item2::before {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-item2::before {
    font-size: 12px;
  }
}

@media (max-width: 995px) {
  .services-img {
    display: none;
  }
}

.services-img__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.services-titel {
  font-family: "Airfool", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #FF5094;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 1280px) {
  .services-titel {
    font-size: 20px;
  }
}

@media (max-width: 995px) {
  .services-titel {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-titel {
    font-size: 12px;
  }
}

.faq-section h2 {
  margin-bottom: 10px;
}

.faq-section__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (max-width: 995px) {
  .faq-section__row {
    flex-direction: column;
  }
}

.faq-section__right p {
  margin-bottom: 20px;
}

.faq-section__info {
  width: 362px;
  padding: 40px 30px;
  background: linear-gradient(319.2deg, rgba(255, 255, 255, 0) 1.3%, rgba(6, 185, 249, 0.2) 89.57%), linear-gradient(164.33deg, rgba(205, 25, 236, 0) 34.25%, rgba(205, 25, 236, 0.2) 115.11%), linear-gradient(329.64deg, rgba(72, 78, 247, 0) 20.7%, rgba(72, 78, 247, 0.2) 93.27%), radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.273) 52.88%, rgba(254, 186, 255, 0.3) 100%);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 40px;
}

@media (max-width: 1280px) {
  .faq-section__info {
    padding: 30px 25px;
  }
}

@media screen and (max-width: 995px) {
  .faq-section__info {
    width: 340px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 575px) {
  .faq-section__info {
    width: 100%;
    max-width: 320px;
    padding: 20px;
  }
}

.faq-section__info-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.faq-section__info-phone {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .faq-section__info-phone {
    padding: 10px;
    font-size: 18px;
  }
}

.faq-section__info-phone::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("../icons/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.faq {
  width: 60%;
}

@media screen and (max-width: 995px) {
  .faq {
    max-width: none;
    width: 90%;
    margin: 0 auto;
  }
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 16px;
  cursor: pointer;
  background-color: white;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 575px) {
  .faq-item {
    margin-bottom: 14px;
  }
}

.faq-question {
  position: relative;
  height: auto;
  padding: 20px;
  border-radius: 16px;
  background-color: #F9F6F8;
  padding-right: 70px;
}

.faq-question::after {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  color: black;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 14px;
  right: 20px;
  transition: 0.5s ease;
}

.faq-question.is-active::after {
  transform: rotate(45deg);
}

.faq-question-text {
  font-size: 20px;
  font-weight: 500;
  color: black;
}

@media (max-width: 1280px) {
  .faq-question-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 995px) {
  .faq-question-text {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .faq-question-text {
    font-size: 14px;
  }
}

.faq-answer {
  display: none;
  padding: 20px 30px;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 995px) {
  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .faq-answer p {
    font-size: 12px;
  }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

@media (max-width: 1280px) {
  .process {
    gap: 36px;
  }
}

@media (max-width: 995px) {
  .process {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .process {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.process-item {
  position: relative;
}

.process-number {
  position: absolute;
  font-family: "Airfool", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 74px;
  height: 74px;
  font-size: 50px;
  font-weight: 400;
  background-color: #FF5094;
  color: white;
  border-radius: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  top: -26px;
  left: -25px;
  z-index: 100;
}

@media (max-width: 1280px) {
  .process-number {
    font-size: 48px;
    width: 65px;
    height: 65px;
    left: -18px;
  }
}

@media (max-width: 575px) {
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 36px;
    top: -20px;
  }
}

.process-desc {
  height: 220px;
  padding: 50px 20px 20px 20px;
  background: linear-gradient(319.2deg, rgba(255, 255, 255, 0) 1.3%, rgba(6, 185, 249, 0.2) 89.57%), linear-gradient(164.33deg, rgba(205, 25, 236, 0) 34.25%, rgba(205, 25, 236, 0.2) 115.11%), linear-gradient(329.64deg, rgba(72, 78, 247, 0) 20.7%, rgba(72, 78, 247, 0.2) 93.27%), radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.273) 52.88%, rgba(254, 186, 255, 0.3) 100%);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1280px) {
  .process-desc {
    font-size: 14px;
  }
}

@media (max-width: 995px) {
  .process-desc {
    height: 240px;
    font-size: 12px;
    padding: 50px 10px 10px 10px;
  }
}

@media (max-width: 768px) {
  .process-desc {
    height: 140px;
  }
}

@media (max-width: 575px) {
  .process-desc {
    padding: 40px 10px 10px 10px;
  }
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 995px) {
  .row {
    flex-direction: column;
  }
}

.our-results {
  width: 100%;
  max-width: 480px;
}

@media (max-width: 995px) {
  .our-results {
    max-width: none;
    width: 80%;
    margin: 0 auto;
  }
}

.our-results__item {
  border-radius: 40px;
  overflow: hidden;
}

.callback {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

@media screen and (max-width: 995px) {
  .callback {
    max-width: none;
  }
}

.callback-text {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (max-width: 995px) {
  .callback-text {
    font-size: 18px;
  }
}

.callback-word {
  padding: 10px 0;
}

.callback__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 575px) {
  .callback__social {
    gap: 10px;
  }
}

.callback__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .callback__social a {
    padding: 10px 20px;
    font-size: 12px;
  }
}

.callback__social-telegram {
  background-color: #2BA3DF;
}

.callback__social-telegram:hover {
  background-color: rgb(28.1967213115, 133.9344262295, 186.8032786885);
  color: #E0F7FF;
}

.callback__social-instagram {
  background-color: #FD0060;
}

.callback__social-instagram:hover {
  background-color: rgb(212.2, 0, 80.5185770751);
  color: #ffd1e3;
}

.vacancie__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.vacancie__left {
  width: 100%;
  max-width: 540px;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 995px) {
  .vacancie__left {
    display: none;
  }
}

.vacancie__right {
  width: 100%;
  max-width: 760px;
  background-color: #FFE2EE;
  border-radius: 30px;
  padding: 40px;
}

@media screen and (max-width: 995px) {
  .vacancie__right {
    max-width: none;
  }
}

@media screen and (max-width: 575px) {
  .vacancie__right {
    padding: 20px;
  }
}

.vacancie__titel {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FF5094;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .vacancie__titel {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.vacancie__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .vacancie__columns {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.vacancie__list li {
  position: relative;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  padding-left: 35px;
}

@media screen and (max-width: 575px) {
  .vacancie__list li {
    font-size: 12px;
  }
}

.vacancie__list li:last-child {
  margin-bottom: none;
}

.vacancie__list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../icons/circle-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}

@media (max-width: 575px) {
  .vacancie__list li::before {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 995px) {
  .vacancie__list li::before {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .vacancie__list li::before {
    font-size: 12px;
  }
}

.vacancie__conditions {
  margin-bottom: 20px;
}

.vacancie-condition {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.vacancie-condition:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .vacancie-condition {
    gap: 10px;
  }
}

.vacancie-condition__one::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../icons/money-icons.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
  position: relative;
  top: -6px;
}

.vacancie-condition__two::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../icons/calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
  position: relative;
  top: -6px;
}

.vacancie-condition__three::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../icons/study.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
  position: relative;
  top: -6px;
}

.vacancie-condition p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

@media screen and (max-width: 575px) {
  .vacancie-condition p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.vacancie-condition i {
  font-size: 28px;
  font-weight: 800px;
  color: #FF5094;
  flex-shrink: 0;
}

.vacancie-link {
  display: block;
  padding: 12px;
  width: 100%;
  max-width: 484px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  background-color: #FF5094;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  .vacancie-link {
    font-size: 20px;
  }
}

@media screen and (max-width: 995px) {
  .vacancie-link {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .vacancie-link {
    font-size: 14px;
    padding: 15px;
  }
}

.price-section h2 {
  text-align: center;
}

.price-section__table {
  margin: 0 auto;
  width: 80%;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (max-width: 768px) {
  .price-section__table {
    width: 90%;
  }
}

.price-section__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  text-align: center;
  font-size: 20px;
}

.price-section__row:nth-child(even) {
  background-color: #FFE2EE;
}

@media (max-width: 995px) {
  .price-section__row {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .price-section__row {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .price-section__row {
    font-size: 12px;
  }
}

.price-section__header {
  background-color: #FF5094;
  color: white;
  font-weight: 800;
}

.price-three-columns h2 {
  text-align: center;
}

.price-three-columns .price-table-3col {
  margin: 0 auto;
  width: 80%;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (max-width: 768px) {
  .price-three-columns .price-table-3col {
    width: 90%;
  }
}

.price-three-columns .price-row-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  text-align: center;
  font-size: 20px;
}

.price-three-columns .price-row-3col:nth-child(even) {
  background-color: #FFE2EE;
}

@media (max-width: 995px) {
  .price-three-columns .price-row-3col {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .price-three-columns .price-row-3col {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .price-three-columns .price-row-3col {
    font-size: 12px;
  }
}

.price-three-columns .price-header-3col {
  background-color: #FF5094;
  color: white;
  font-weight: 800;
}

.cleaning-price-table {
  margin: 0 auto;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cleaning-price-table__row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  padding: 20px;
  text-align: center;
  font-size: 20px;
}

.cleaning-price-table__row:nth-child(even) {
  background-color: #FFE2EE;
}

@media (max-width: 995px) {
  .cleaning-price-table {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .cleaning-price-table {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .cleaning-price-table {
    font-size: 12px;
  }
}

.cleaning-price-table__header {
  font-size: 20px;
  background-color: #FF5094;
  color: white;
  font-weight: 800;
  font-size: 18px;
}

@media (max-width: 768px) {
  .cleaning-price-table__header {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .cleaning-price-table__header {
    font-size: 10px;
  }
}

.price-notes {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

@media (max-width: 995px) {
  .price-notes {
    font-size: 13px;
  }
}

@media (max-width: 995px) {
  .price-notes {
    font-size: 11px;
  }
}

.price-notes p {
  margin: 8px 0;
}

.footer {
  padding: 20px 0;
  background-color: #FF5094;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .footer-grid {
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .footer-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.footer__social {
  width: 100%;
  max-width: 225px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-item__logo {
  width: 120px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 995px) {
  .footer-item__logo {
    width: 80px;
  }
}

.footer-item__location {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
  color: white;
}

@media screen and (max-width: 995px) {
  .footer-item__location {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .footer-item__location {
    font-size: 12px;
  }
}

.footer-item__title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

@media screen and (max-width: 995px) {
  .footer-item__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .footer-item__title {
    font-size: 16px;
  }
}

.footer-item__list li {
  margin-bottom: 4px;
}

.footer-item__list li a {
  font-size: 20px;
  font-weight: 400;
  color: white;
}

@media screen and (max-width: 995px) {
  .footer-item__list li a {
    font-size: 17px;
  }
}

@media screen and (max-width: 995px) {
  .footer-item__list li a {
    font-size: 12px;
  }
}

.footer-item__line {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-item__line a {
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.footer-item__line img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 995px) {
  .footer-item__line img {
    width: 24px;
    height: 24px;
  }
}

.footer-item__link {
  font-size: 20px;
  font-weight: 400;
  color: white;
}

@media screen and (max-width: 995px) {
  .footer-item__link {
    font-size: 16px;
  }
}

@media screen and (max-width: 995px) {
  .footer-item__link {
    font-size: 12px;
  }
}

.footer-item__link span {
  color: white;
  font-size: 24px;
  font-weight: 400;
}

.windows {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

@media (max-width: 995px) {
  .windows {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .windows {
    flex-direction: column;
    justify-content: center;
  }
}

.windows__left {
  background-color: #FFE2EE;
  border-radius: 40px;
  padding: 40px;
}

@media (max-width: 1280px) {
  .windows__left {
    max-width: 550px;
  }
}

@media (max-width: 995px) {
  .windows__left {
    max-width: 350px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .windows__left {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .windows__left {
    max-width: none;
    width: 80%;
  }
}

@media (max-width: 575px) {
  .windows__right {
    width: 80%;
  }
}

.windows__left img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.windows-box {
  width: 100%;
  max-width: 440px;
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
  background-color: #FF5094;
  color: white;
  padding: 10px;
  border-radius: 30px;
  margin-bottom: 20px;
}

@media (max-width: 995px) {
  .windows-box {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .windows-box {
    width: 100%;
    font-size: 12px;
  }
}

.upholstery-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.upholstery-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.upholstery-item img {
  margin: o auto;
  margin-bottom: 10px;
}

.upholstery-text {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  max-width: 370px;
  text-align: center;
  background-color: #FFE2EE;
  border-radius: 0 0 30px 30px;
  padding: 10px;
  color: #FF5094;
  margin-top: auto;
}

@media (max-width: 575px) {
  .upholstery-text {
    font-size: 12px;
  }
}

.upholstery-info {
  display: flex;
  justify-content: space-between;
  width: 80%;
  font-size: 20px;
  font-weight: 400;
  background-color: #FFE2EE;
  color: #FF5094;
  border-radius: 20px;
  margin: 0 auto;
  padding: 20px 80px;
}

@media (max-width: 768px) {
  .upholstery-info {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .upholstery-info {
    width: 100%;
    font-size: 14px;
  }
}

.upholstery-margin {
  margin-bottom: 20px;
}

.cleaning-services__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 995px) {
  .cleaning-services__box {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .cleaning-services__box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cleaning-services__item {
  background: linear-gradient(319.2deg, rgba(255, 255, 255, 0) 1.3%, rgba(6, 185, 249, 0.2) 89.57%), linear-gradient(164.33deg, rgba(205, 25, 236, 0) 34.25%, rgba(205, 25, 236, 0.2) 115.11%), linear-gradient(329.64deg, rgba(72, 78, 247, 0) 20.7%, rgba(72, 78, 247, 0.2) 93.27%), radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.273) 52.88%, rgba(254, 186, 255, 0.3) 100%);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 30px;
  padding: 20px;
  text-align: center;
}

@media (max-width: 995px) {
  .cleaning-services__item {
    padding: 10px;
  }
}

.cleaning-services__item img {
  width: 100%;

  ;
  margin-bottom: 20px;
}

@media (max-width: 995px) {
  .cleaning-services__item img {
    height: 120px;
  }
}

.cleaning-services__item h3 {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 995px) {
  .cleaning-services__item h3 {
    font-size: 18px;
  }
}

@media (max-width: 995px) {
  .cleaning-services__item h3 {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  background: none;
  border: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.py-80px {
  padding: 80px 0;
}

@media (max-width: 1280px) {
  .py-80px {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .py-80px {
    padding: 40px 0;
  }
}

.py-100px {
  padding: 100px 0;
}

.margin-bottom-40px {
  margin-bottom: 40px;
}

.title {
  font-family: "Airfool", sans-serif;
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 39px;
}

@media screen and (max-width: 575px) {
  .title {
    font-size: 30px;
  }
}

.titel-1 {
  font-family: "Airfool", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #FF5094;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 1280px) {
  .titel-1 {
    font-size: 48px;
  }
}

@media (max-width: 995px) {
  .titel-1 {
    font-size: 38px;
  }
}

.titel-2 {
  font-size: 46px;
  font-weight: 400;
  color: #FF5094;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 400;
  color: #FF5094;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.titel-2 {
  font-size: 46px;
  font-weight: 400;
  color: #FF5094;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  h4 {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  h4 {
    font-size: 14px;
  }
}

.pink {
  color: #FF5094;
  font-weight: 700;
}

.visually-hidden {
  display: none;
}

.phone a {
  font-size: 28px;
  font-weight: 700;
}

.phone a img {
  min-width: 45px;
  height: 34px;
}

.job-application__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 995px) {
  .job-application__img {
    display: none;
  }
}

.order-btn {
  display: block;
  padding: 12px;
  width: 80%;
  padding: 10px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  background-color: #FF5094;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  margin: 0 auto;
}

@media (max-width: 995px) {
  .order-btn {
    font-size: 20px;
  }
}

.bold {
  font-weight: 700;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media screen and (max-width: 575px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.instagram-section {
  padding: 30px;
  background-color: #FFE2EE;
}

.instagram-section h2 {
  margin-bottom: 20px;
}

.tabs-services2 {
  display: grid;
}

.swiper-pagination-bullet {
  background-color: #FF5094;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-features {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.features-prev,
.features-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  color: #c21d1d;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
}

.features-pagination {
  text-align: center;
  margin-top: 20px;
  z-index: 10;
  position: relative;
}

.features-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  opacity: 0.4;
  margin: 0 6px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.features-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #d50000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 50px 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 360px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 6px solid #FF5094;
}

.modal-content p {
  line-height: 1.5;
}

.modal-icon {
  width: 100%;
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 20px;
}

#closeModal {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #FF5094;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

#closeModal:hover {
  border: none;
  background-color: #d02566;
}

/*# sourceMappingURL=style.css.map */