@import url(./fonts.css);

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

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  text-decoration: none;
}

.callback__icon {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 70px;
  bottom: 100px;
  cursor: pointer;
}

.title {
  background: linear-gradient(90deg, #222222 50%, #3f3f3f 100%);
}

.section__container {
  width: 1200px;
  position: relative;
}

.header__background {
  width: 100%;
  height: 89px;
  display: flex;
  justify-content: center;
}

.header__container {
  width: 1140px;
  display: flex;
  align-items: center;
}
.logo {
  width: 194px;
  height: 33px;
  margin-right: 107px;
  cursor: pointer;
}
.header__nav {
  display: flex;
  list-style-type: none;
  align-items: center;
  font-family: Inter-R;
  font-size: 16px;
  color: white;
}

.header__link{
  color: white;
}

.header__link:hover {
  cursor: pointer;
}
.header__link:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 26px 16px 0;
}
.header__link:nth-child(2) {
  padding-left: 25px;
}
.header__link:nth-child(3) {
  margin-left: 107px;
}
.header__link:nth-child(4) {
  margin-left: 50px;
}
.header__link:nth-child(5) {
  margin-left: 50px;
}

.section__title {
  margin-left: 50px;
  margin-top: 110px;
  width: 393px;
  font-family: Inter-M;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

.section__description {
  margin-left: 50px;
  margin-top: 32px;
  width: 486px;
  color: white;
  font-family: Inter-M;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.main__button {
  margin-top: 60px;
  margin-left: 50px;
  margin-bottom: 117px;
  width: 198px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Inter-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.main__button:hover {
  background-color: white;
  color: black;
}

.title__image {
  width: 420px;
  height: 539px;
  position: absolute;
  left: 800px;
  top: 147px;
  filter: drop-shadow(5px 10px 20px rgba(0, 0, 0, 0.5));
}


.wm__repair {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.repair__title,
.problems__title {
  margin-top: 135px;
  font-family: Inter-M;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}

.repair__container {
  width: 1200px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.repair__texts {
  width: 600px;
}

.repair__description,
.repair__text {
  margin-top: 49px;
  font-family: Inter-R;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.repair__main {
  margin-top: 19.2px;
  font-family: Inter-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.repair__text {
  margin-top: 19.2px;
  margin-left: 5px;
}

.repair__text::before {
  content: "•";
  margin-right: 5px;
}

.repair__image {
  width: 520px;
  height: 383px;
}

.common__problems {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problems__title {
  margin-top: 90px;
}

.problems__grid {
  margin-top: 70px;
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 75px;
  margin-bottom: 90px;
}

.washing__machine {
  width: 350px;
  height: 350px;
  background: url(../assets/images/washing.png);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

.circle {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translate(-50%, -50%);
  margin-top: 130px;
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50%;
  background: rgba(34, 34, 34, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: 0.4s;
  cursor: pointer;
}

.circle__description{
  width: 275px;
  margin-top: 40px;
  font-family: Inter-R;
font-size: 16px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0em;
text-align: left;
color: white;
opacity: 0;
transition: .4s;
overflow: hidden;
}

.circle:hover {
  width: 450px;
  height: 500px;
  border-radius: 10px;
  background: rgba(34, 34, 34, 0.85);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
}

.circle__title {
  width: 329px;
  margin-top: 101px;
  font-family: Inter-M;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
}

.circle:hover .circle__description{
  opacity: 1;
  overflow: visible;
}

.prices {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #222222;
}

.prices__title {
  margin-top: 90px;
  font-family: Inter-M;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

.prices__cntainer {
  margin-top: 70px;
  width: 1200px;
}

.service__price {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service__price.main {
  border: none;
}

.service__price.last {
  margin-bottom: 55px;
}

.service {
  margin-left: 50px;
  font-family: Inter-R;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

.service.main {
  font-family: Inter-SB;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.price {
  margin-right: 96px;
  font-family: Inter-R;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

.price.main {
  margin-right: 99px;
  font-family: Inter-SB;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.price.free {
  margin-right: 82px;
}
.price.far {
  margin-right: 86px;
}
.price.call {
  margin-right: 125px;
}
.price.large {
  margin-right: 89px;
}

.questions {
  margin-bottom: 75px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.questions__title {
  margin-top: 90px;
  font-family: Inter-M;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}

.question-answer {
  width: 1200px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.question-answer.first {
  margin-top: 50px;
}

.question {
  background: linear-gradient(90deg, #222222 0%, #3f3f3f 116.62%);
  color: white;
  width: 100%;
  height: 68px;
  display: flex;
  border-radius: 6px;
  padding-left: 20px;
  padding-right: 35.5px;
  align-items: center;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Inter-SB;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
}

.arrow{
  width: 20px;
  height: 17.32px;
  transition: .4s;
}

.arrow.active{
  transform: rotate(90deg);
}

.answer {
  padding-left: 20px;
  background-color: white;
  color: black;
  width: 100%;
  clear: both;
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease-in;
  display: flex;
  align-items: center;
  font-family: Inter-R;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.answer.active {
  height: 80px;
  border: 1px solid #222222;
  border-radius: 0px 0px 6px 6px;
}

.question.active {
  border-radius: 6px 6px 0px 0px;
}

.burger__main {
  overflow: hidden;
  height: 0px;
  opacity: 0;
}

/* BURGER */

/* POPUP */

.popup {
  visibility: hidden;
  height: 0px;
  opacity: 0;
  /* display: none; */
  overflow: hidden;
}

.popup.active {
  overflow: visible;
  z-index: 15;
  /* display: block; */
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 12, 15, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  top: 0%;
  left: 0%;
  opacity: 1;
  transition: 0.5s opacity, 0.5s visibility;
  visibility: visible;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.popup__content {
  position: relative;
  width: 320px;
  background-color: rgba(11, 12, 15, 1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 38px 40px 38px;
}

.popup__close {
  width: 16px;
  height: 16px;
  font-family: Inter-R;
  font-size: 16px;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(217, 217, 217, 1);
  position: absolute;
  top: 3.3%;
  left: 90%;
  cursor: pointer;
}

.tap__on,
.popup__or,
.popup__form {
  font-family: Inter-R;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

.popup__phone {
  margin-top: 20px;
  font-family: Inter-M;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

.popup__or {
  margin-top: 10px;
}

.popup__form {
  margin-top: 25px;
  text-align: center;
}

.name__input,
.number__input {
  margin-top: 33px;
  width: 244px;
  height: 40px;
  border-radius: 7px;
  border: 1px solid #ffffff;
  background-color: rgba(7, 8, 12, 1);
  padding: 0px 15px 0px 15px;
  outline: none;
  color: white;
}

.number__input {
  margin-top: 20px;
}

.callback__button {
  margin-top: 30px;
  width: 244px;
  background-color: #ffffff;
  color: black;
  border: none;
  border-radius: 7px;
  height: 50px;
  font-family: Inter-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.burger__tap {
  display: none;
}


.footer{
  width: 100%;
  height: 80px;
  background-color: #0C0C0C;
}

.footer__container{
  width: 100%;
  height: 100%;
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo{
  font-family: Inter-M;
font-size: 24px;
font-weight: 500;
line-height: 29px;
letter-spacing: 0em;
text-align: left;
color: white;
}

.footer__links{
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__link{
  width: 40px;
  height: 40px;
}

.footer__image{
  width: 40px;
  height: 40px;
}

@media (max-width: 1199px) {
  /* POPUP */
  .popup.active {
    top: 0px;
    display: block;
    visibility: visible;
  }

  .popup__body {
    margin-top: 100px;
    align-items: flex-start;
  }
  /* POPUP */

  /* BUGRER */
  .burger-menu {
    display: block;
  }

  .burger__tap {
    background-color: #0c0c0c;
    width: 42px;
    height: 42px;
    position: fixed;
    border-radius: 50%;
    z-index: 20;
    transition: 0.2s;
    left: unset;
    right: 20px;
    display: block;
  }

  .burger__tap.burger-menu_active {
    background-color: white;
  }

  .burger-menu_button {
    top: 1px;
    /* z-index: 30; */
    width: 30px;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }

  .burger-menu_button:hover {
    background-color: inherit;
  }

  .burger-menu_lines::before,
  .burger-menu_lines::after,
  .burger-menu_lines {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .burger-menu_lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .burger-menu_lines::before {
    content: "";
    top: -6px;
  }
  .burger-menu_lines::after {
    content: "";
    top: 6px;
  }

  .burger-menu_active .burger-menu_lines {
    background-color: transparent;
  }
  .burger-menu_active .burger-menu_lines::before {
    background-color: #0c0c0c;
    top: 0;
    transform: rotate(45deg);
  }
  .burger-menu_active .burger-menu_lines::after {
    background-color: #0c0c0c;
    top: 0;
    transform: rotate(-45deg);
  }

  .burger__main {
    height: 0px;
    opacity: 0;
    visibility: hidden;
  }

  .burger__main.active {
    z-index: 17;
    visibility: visible;
    display: block;
    overflow: visible;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 12, 15, 1);
    top: 0px;
    left: 0%;
    transition: 0.5s opacity, 0.5s visibility;
    opacity: 1;
    display: block;
  }

  .burger__body {
    padding: 10px 50px;
    min-height: 100%;
    display: flex;
    justify-content: center;
  }

  .burger__content {
    margin-top: 100px;
    position: relative;
    width: 260px;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .burger__link-item {
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Inter-R;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
    margin-top: 15px;
  }

  .burger__link-item:last-child {
    border: none;
  }
  /* BURGER */

  .title {
    background: linear-gradient(90deg, #222222 50%, #3f3f3f 126.67%);
  }

  .section__container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .logo {
    margin-left: 20px;
  }

  .service__link {
    display: none;
  }

  .header__container{
    width: 100%;
  }
  
  .header__nav{
    display: none;
  }
  

  .header__about {
    display: none;
  }


  .title__container {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .section__title {
    margin-left: 20px;
    margin-top: 40px;
    width: 194px;
    font-family: Inter-M;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
  }

  .section__description {
    margin-left: 20px;
    margin-top: 9px;
    width: 164px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
  }

  .main__button {
    margin: 0 auto;
    margin-top: 111px;
    margin-bottom: 40px;
    width: 198px;
    height: 54px;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    background-color: #ffffff;
    color: #0c0c0c;
  }

  .title__image {
    content: url(../assets/images/title__mobile.png);
    width: 164px;
    height: 298px;
    position: absolute;
    left: unset;
    top: 0px;
    right: -5%;
    filter: drop-shadow(5px 10px 20px rgba(0, 0, 0, 0.5));
  }

  .repair__title,
  .problems__title {
    margin-top: 50px;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
  }

  .repair__container {
    width: 100%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .repair__texts {
    width: 320px;
    margin-bottom: 30px;
  }

  .repair__description,
  .repair__text {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
  }

  .repair__main {
    margin-top: 16.8px;
    font-family: Inter-M;
    font-size: 14px;
    line-height: 16.8px;
  }

  .repair__text {
    margin-top: 16.8px;
    margin-left: 5px;
  }

  .repair__image {
    width: 100%;
    height: 265px;
    object-fit: cover;
  }

  .problems__title {
    margin-top: 50px;
  }

  .problems__grid {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 200px);
    gap: 30px;
    margin-bottom: 50px;
  }

  .washing__machine {
    width: 100%;
    height: 100%;
    background: url(../assets/images/wm-prblms.png);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
  }

  .circle {
    position: absolute;
    left: 50%;
    top: 50px;
    padding-bottom: 10px;
    transform: translate(-50%, -50%);
    margin-top: 71px;
    width: 260px;
    height: 100px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    background: rgba(34, 34, 34, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: 0.4s;
    cursor: pointer;
  }

  .circle:hover {
    width: 100%;
    height: 200px;
    margin-top: 50px;
    border-radius: 0px;
    background: rgba(34, 34, 34, 0.85);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
  }

  .circle__title {
    width: 100%;
    margin-top: 39px;
    font-family: Inter-M;
font-size: 18px;
font-weight: 500;
line-height: 22px;
letter-spacing: 0em;
text-align: center;

  }

  .circle__description{
    width: 320px;
    margin-top: 20px;
    font-family: Inter-R;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  opacity: 0;
  transition: .4s;
  overflow: hidden;
  }


  .circle:hover .circle__title{
    margin-top: 0px;
  }

  .prices__title {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
  }

  .prices__cntainer {
    margin-top: 35px;
    width: 100%;
  }

  .service__price {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service__price.last {
    margin-bottom: 50px;
  }

  .service {
    width: 158px;
    margin-left: 20px;
    font-family: Inter-R;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
  }

  .service.main {
    width: 200px;
    font-family: Inter-SB;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
  }

  .price {
    margin-right: 26px;
    font-family: Inter-R;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
  }

  .price.main {
    margin-right: 28px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
  }

  .price.free {
    margin-right: 14px;
  }

  .price.far {
    margin-right: 17px;
  }

  .price.call {
    margin-right: 52px;
  }

  .price.large {
    margin-right: 20px;
  }

  .questions{
    margin-bottom: 50px;
  }

  .questions__title {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
  }

  .question-answer {
    width: 320px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }

  .question-answer.first {
    margin-top: 30px;
  }

  .question {
    padding-right: 20px;
    background: linear-gradient(90deg, #222222 0%, #3f3f3f 116.62%);
    color: white;
    width: 320px;
    height: 68px;
    display: flex;
    border-radius: 6px;
    padding-left: 20px;
    align-items: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
  }

  .arrow{
    width: 17px;
    height: 14.45px;
  }

  p{
    width: 200px;
  }

  .answer {
    padding-left: 20px;
    background-color: white;
    color: black;
    width: 100%;
    clear: both;
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease-in;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
  }

  .answer.large.active{
    height: 125px;
  }

  .answer.active {
    height: 80px;
    border: 1px solid #222222;
    border-radius: 0px 0px 6px 6px;
  }


  .footer__logo{
    width: 100px;
    font-size: 16px;
    line-height: 19.2px;
  }
  
  .footer__container{
    padding: 0px 20px;
  }
  
  .footer{
    height: 60px;
  }
  
  .footer__image, .footer__link{
    width: 30px;
    height: 30px;
  }
  
  .footer__links{
    width: 186px;
  }

  .callback__icon{
    width: 55px;
    height: 55px;
    position: fixed;
    right: unset;
    left: 20px;
    bottom: 80px;
    cursor: pointer;
  }
  
}
