body {
  background-color: #e0e0e0;
  background-image: linear-gradient(
      135deg,
      rgba(253, 251, 251, 0.6),
      rgba(235, 237, 238, 0.6)
    ),
    url(../photo/background.jpg);
  background-size: cover;
}
.container {
  @media screen and (min-width: 320px) {
    width: 320px;
  }
  @media screen and (min-width: 768px) {
    width: 768px;
  }
  @media screen and (min-width: 1200px) {
    width: 1200px;
  }
}
.header__container {
  gap: 50px;
  @media screen and (min-width: 768px) {
    display: flex;
    gap: 23px;
  }
  @media screen and (min-width: 1200px) {
    gap: 50px;
  }
}
.header__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 14px;
  }
  @media screen and (min-width: 1200px) {
    gap: 133px;
  }
}
.header {
  background-color: #c0c0c0;
  height: 207px;
  @media screen and (min-width: 768px) {
    height: 100px;
  }
}
.header__logo {
  height: 50px;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.header__link {
  color: var(--Color-Scheme-1-Text, #080303);
  font-family: Cantarell;
  font-size: var(--Text-Sizes-Text-Regular, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  font-family: inherit;
  @media screen and (min-width: 768px) {
    font-size: 15px;
  }
  @media screen and (min-width: 1200px) {
    font-size: 20px;
  }
}
.hero__title {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 20px;
  color: var(--Color-Scheme-1-Text, #080303);
  text-align: center;
  font-family: Poppins;
  font-size: var(--Text-Sizes-Heading-2, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.48px;
}
.slide__img {
  height: 400px;
  object-fit: cover;
}
.carousel-control-prev-icon {
  box-shadow: 0px 6px 10px rgba(128, 128, 128, 1);
  background-color: orange;
  border-radius: 3px;
}
.carousel-control-next-icon {
  box-shadow: 0px 6px 10px rgba(128, 128, 128, 1);
  background-color: orange;
  border-radius: 3px;
}
.service__title {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  color: var(--Color-Scheme-1-Text, #080303);
  font-family: Poppins;
  font-size: var(--Text-Sizes-Heading-3, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.4px;
  @media screen and (min-width: 320px) {
  }
}
.accordion-item {
  width: 200px;
  border-radius: 6px;
  border-radius: 6px;
  border: 1px solid var(--Color-Neutral-Darkest, #080303);
  @media screen and (min-width: 768px) {
    width: 500px;
  }
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.accordion-button {
  color: var(--Color-Scheme-1-Text, #080303);
  font-family: Poppins;
  font-size: var(--Text-Sizes-Heading-6, 15px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.2px;
}
.button__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.accordion-body {
  background-color: lightgray;
}
.slide__text {
  color: var(--Color-Scheme-1-Text, #080303);
  font-family: Cantarell;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  text-align: center;
}
.button_button {
  background-color: #c0c0c0;
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 160px;
  }
  @media screen and (min-width: 1200px) {
    gap: 377px;
  }
}
.footer__link {
  color: var(--Color-Scheme-1-Text, #080303);
  font-family: Cantarell;
  font-size: var(--Text-Sizes-Text-Regular, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  font-family: inherit;
  position: relative;
}
.footer__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  display: block;
  border-radius: 2px;
  background-color: orange;
  margin-top: 5px;
}
.footer__link:hover::after {
  opacity: 1;
}
.footer__link:hover {
  color: rgb(230, 103, 40);
}
.footer {
  background-color: #c0c0c0;
  height: 220px;
  margin-top: 30px;
  @media screen and (min-width: 768px) {
    height: 100px;
  }
}
.footer__item {
  padding-top: 25px;
}
