@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

::placeholder {
  color: #fff;
  opacity: 1;
  font-weight: 700;
}

a {
  color: #fff;
  text-decoration: none;
}

::selection {
  background: red;
}

body::-webkit-scrollbar {
  width: 0.4em;
}

body::-webkit-scrollbar-track {
  background-color: #000;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(255, 0, 0);
  outline: 1px solid rgb(255, 0, 0);
}

.redText {
  color: red;
  font-weight: 300;
}

.wrap {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.wrap .notification {
  width: 300px;
  height: 150px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 0 10px rgb(255, 68, 0);
  position: fixed;
  top: 20%;
  left: 50%;
  margin-left: -150px;
  font-size: calc(12px + 0.5vw);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}
.wrap .home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10px;
}
.wrap .home .header {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wrap .home .header .headerItem {
  display: flex;
  align-items: center;
  font-size: calc(10px + 0.5vw);
  font-weight: 600;
}
.wrap .home .header .headerItem .dot {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  margin-right: 10px;
}
.wrap .home .main {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: calc(18px + 0.5vw);
}
.wrap .home .main img {
  width: 200px;
}
.wrap .home .main p {
  margin-top: 30px;
}
.wrap .home .contact {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.wrap .home .contact a {
  text-decoration: none;
  color: #fff;
  margin-left: 5px;
  font-weight: 600;
}
.wrap .about {
  color: #fff;
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.wrap .about h2 {
  font-size: calc(28px + 0.5vw);
  text-shadow: 0 0 2px #fff, 0 0 1px #fff;
  width: 80%;
  text-align: center;
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.wrap .about p {
  font-weight: 200;
  text-align: center;
}
.wrap .about .green {
  color: rgb(81, 170, 81);
  font-weight: 799;
}
.wrap .about .aboutContainer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 20px;
}
.wrap .about .aboutContainer .adbutContaiterItem {
  width: 400px;
  height: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px #999;
  padding: 10px 20px;
  background-size: cover;
  transition: 0.5s;
}
.wrap .about .aboutContainer .adbutContaiterItem:hover {
  transform: scale(1.03);
  transition: 0.5s;
  cursor: pointer;
}
.wrap .about .aboutContainer .adbutContaiterItem video {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  background-size: cover;
}
.wrap .about .aboutContainer .adbutContaiterItem h3 {
  font-weight: 300;
  background-color: rgba(255, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 800;
}
.wrap .about .aboutContainer .adbutContaiterItem h4 {
  background-color: rgba(4, 133, 4, 0.737);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 800;
}
.wrap .about .aboutContainer .polishing {
  background-image: url(./img/polirol.webp);
}
.wrap .about .aboutContainer .dryСleaners {
  background-image: url(./img/clean.webp);
}
.wrap .about .aboutContainer .painting {
  background-image: url(./img/colorful.webp);
}
.wrap .about .btnView {
  background-color: red;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 30px;
}
.wrap .about .btnView i {
  margin-right: 5px;
}
.wrap .price {
  color: #fff;
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.wrap .price h2 {
  font-size: calc(28px + 0.5vw);
  text-shadow: 0 0 2px #fff, 0 0 1px #fff;
  width: 80%;
  text-align: center;
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.wrap .price .priceContainer {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .wrap .price .priceContainer {
    width: 100%;
  }
}
.wrap .price .priceContainer .priceHeader {
  width: 100%;
  display: flex;
  justify-content: space-around;
  font-size: calc(12px + 0.5vw);
  background-color: #222;
  padding: 10px;
  font-weight: 600;
}
.wrap .price .priceContainer .priceHeader .priceItem {
  width: 33.33%;
  text-align: center;
}
.wrap .price .priceContainer .priceHeader .priceItem i {
  margin-right: 10px;
}
.wrap .price .priceContainer .priceElement {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: calc(12px + 0.5vw);
  background-color: #222;
  margin-top: 10px;
  padding: 10px;
  font-weight: 200;
}
.wrap .price .priceContainer .priceElement:nth-child(2n) {
  background-color: #555;
}
.wrap .price .priceContainer .priceElement:hover {
  background-color: #999;
  cursor: pointer;
}
.wrap .price .priceContainer .priceElement:last-child {
  background-color: #fff;
  color: #000;
  font-weight: 800;
  justify-content: space-between;
}
.wrap .price .priceContainer .priceElement .priceItem {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap .price .fastRecord {
  width: 80%;
  background-color: #000;
  min-height: 200px;
  margin-top: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 20px;
  flex-direction: column;
}
.wrap .price .fastRecord ::placeholder {
  font-weight: 300;
}
.wrap .price .fastRecord h3 {
  margin: 30px 0;
  font-size: calc(14px + 0.5vw);
}
.wrap .price .fastRecord h3 i {
  margin-right: 10px;
}
.wrap .price .fastRecord form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.wrap .price .fastRecord form select {
  width: 300px;
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  outline: none;
  color: #fff;
  font-size: calc(12px + 0.5vw);
}
.wrap .price .fastRecord form input {
  width: 300px;
  height: 40px;
  font-weight: 200;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  outline: none;
  color: #fff;
  margin: 30px 0;
  font-size: calc(12px + 0.5vw);
  border-radius: 0;
}
.wrap .price .fastRecord form button {
  background-color: red;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.wrap .gallery {
  color: #fff;
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.wrap .gallery h2 {
  font-size: calc(28px + 0.5vw);
  text-shadow: 0 0 2px #fff, 0 0 1px #fff;
  width: 80%;
  text-align: center;
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.wrap .gallery .galleryContainer {
  width: 100%;
  min-width: 80vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.wrap .gallery .galleryContainer .sliderElement {
  width: 400px;
  height: 600px;
  background-color: #fff;
  margin: 20px;
}
@media screen and (max-width: 1200px) {
  .wrap .gallery .galleryContainer .sliderElement {
    width: 290px;
    height: 390px;
  }
}
.wrap .gallery .galleryContainer .sliderElement .swiper {
  width: 100%;
  height: 100%;
}
.wrap .gallery .galleryContainer .sliderElement .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  color: #000;
  user-select: none;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.wrap .gallery .galleryContainer .sliderElement .swiper-button-next,
.wrap .gallery .galleryContainer .sliderElement .swiper-button-prev {
  color: red;
}
.wrap .gallery .galleryContainer .sliderElement .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap .faq {
  color: #fff;
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.wrap .faq h2 {
  font-size: calc(28px + 0.5vw);
  text-shadow: 0 0 2px #fff, 0 0 1px #fff;
  width: 80%;
  text-align: center;
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.wrap .faq .questionGroup {
  width: 80%;
  margin: 5px 0;
}
@media screen and (max-width: 1200px) {
  .wrap .faq .questionGroup {
    width: 90%;
  }
}
.wrap .faq .questionGroup .question {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  user-select: none;
  padding-right: 20px;
  align-items: center;
}
.wrap .faq .questionGroup .question span i {
  transform: rotate(45deg);
  color: red;
  font-weight: 900;
  font-size: 20px;
}
.wrap .faq .questionGroup .answer {
  width: 100%;
  margin: 10px;
  user-select: none;
}
.wrap .contacts {
  color: #fff;
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.wrap .contacts h2 {
  font-size: calc(28px + 0.5vw);
  text-shadow: 0 0 2px #fff, 0 0 1px #fff;
  width: 80%;
  text-align: center;
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.wrap .contacts .contactsContainer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .wrap .contacts .contactsContainer {
    flex-direction: column;
  }
}
.wrap .contacts .contactsContainer .contactsInfo {
  width: 40%;
  min-height: 70vh;
  margin-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .wrap .contacts .contactsContainer .contactsInfo {
    width: 100%;
    align-items: center;
    margin-left: 0;
    min-height: 50vh;
    margin: 30px 0;
  }
}
.wrap .contacts .contactsContainer .contactsInfo p {
  margin: 5px 0;
  font-weight: 400;
  font-size: calc(12px + 0.5vw);
}
.wrap .contacts .contactsContainer .contactsInfo p i {
  margin-right: 10px;
}
.wrap .contacts .contactsContainer .contactsInfo iframe {
  width: 400px;
  height: 250px;
  border-radius: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .wrap .contacts .contactsContainer .contactsInfo iframe {
    width: 300px;
    height: 200px;
  }
}
.wrap .contacts .contactsContainer .contactsInfo .getGeo {
  border: 1px solid #fff;
  height: 60px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  margin-top: 20px;
  padding: 0 10px;
  font-weight: 500;
}
.wrap .contacts .contactsContainer .contactsInfo .getGeo i {
  margin-right: 5px;
  color: red;
}
.wrap .contacts .contactsContainer .formContainer {
  width: 40%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .wrap .contacts .contactsContainer .formContainer {
    width: 100%;
    align-items: center;
    margin-left: 0;
    min-height: 50vh;
    margin: 30px 0;
  }
}
.wrap .contacts .contactsContainer .formContainer h3 {
  font-size: calc(14px + 0.5vw);
  width: 100%;
  text-align: center;
}
.wrap .contacts .contactsContainer .formContainer form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrap .contacts .contactsContainer .formContainer form input {
  width: 400px;
  height: 40px;
  background-color: #000;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  outline: none;
  margin-top: 30px;
  font-weight: 700;
  border-radius: 0;
}
@media screen and (max-width: 1200px) {
  .wrap .contacts .contactsContainer .formContainer form input {
    width: 250px;
  }
}
.wrap .contacts .contactsContainer .formContainer form textarea {
  width: 400px;
  min-height: 200px;
  background-color: #000;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  outline: none;
  margin-top: 30px;
  resize: none;
  border-radius: 0;
}
@media screen and (max-width: 1200px) {
  .wrap .contacts .contactsContainer .formContainer form textarea {
    width: 250px;
  }
}
.wrap .contacts .contactsContainer .formContainer form button {
  width: 200px;
  height: 40px;
  border: 1px solid red;
  background-color: red;
  color: #fff;
  border-radius: 5px;
  margin-top: 30px;
}

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