/* =============reset================ */
html {
  box-sizing: border-box;
}
*,
*::after,
*::before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  border: none;
}
aside,
nav,
footer,
header,
section,
main {
  display: block;
}
ul,
li {
  list-style: none;
}
img {
  max-width: 100%;
  vertical-align: top;
}
address,
cite {
  font-style: normal;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: inherit;
  font-size: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  outline: transparent;
}
/* =============global================ */
html,
body {
  height: 100%;
}
body {
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
body._lock {
  overflow: hidden;
}
.main {
  flex-grow: 1;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.container {
  max-width: 1250px;
  padding: 0 10px;
  margin: 0 auto;
}
.top-inner {
  min-height: calc(100vh - 100px);
}
.section {
  margin-bottom: 120px;
}
.title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 60px;
}
.big-title {
  font-weight: 700;
  font-size: 160px;
  line-height: 1;
}
.top-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
}
.btn {
  font-weight: 700;
  color: #ffffff;
  min-width: 220px;
  line-height: 60px;
  align-self: start;
  border-radius: 40px;
  padding: 0 60px 0 27px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease 0s;
}
.btn::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  right: 5px;
  top: 5px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease 0s;
}
.btn:focus {
  opacity: 0.8;
}
.btn:active {
  opacity: 0.6;
}
/* =============global media================ */
@media (min-width: 992px) {
  .btn:hover::after {
    width: calc(100% - 10px);
    border-radius: 40px;
  }
}
@media (max-width: 992px) {
  .top-inner {
    min-height: calc(100vh - 60px);
  }
  .section {
    margin-bottom: 60px;
  }
  .big-title {
    font-size: 85px;
  }
  .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }
  .top-title {
    font-size: 40px;
  }
}
@media (max-width: 414px) {
  .title {
    font-size: 24px;
  }
}
/* =============header================ */
.header {
  font-weight: 500;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* =============header media================ */
@media (min-width: 992px) {
  .header__inner {
    height: 100px;
  }
  .custom-logo-link {
    transition: opacity 0.3s ease 0s;
  }
  .custom-logo-link:hover {
    opacity: 0.8;
  }
  .custom-logo-link:focus {
    opacity: 0.6;
  }
  .custom-logo-link:active {
    opacity: 0.5;
  }
  .header .menu-list {
    display: flex;
    justify-content: center;
    gap: 0 20px;
  }
  .header .menu-list a {
    transition: all 0.3s ease 0s;
  }
  .header .menu-list a:hover,
  .header__phone-link:hover {
    color: #e5491f;
  }
  .header .menu-list a:focus,
  .header__phone-link:focus {
    opacity: 0.6;
  }
  .header .menu-list a:active,
  .header__phone-link:active {
    opacity: 0.5;
  }
  .header__menu-phone {
    display: none;
  }
  .header__phone-info {
    font-weight: 400;
    font-size: 14px;
    color: #717171;
    display: block;
  }
  .header__phone-link {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    padding-left: 25px;
    background-image: url('../images/icons/phone.svg');
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: 20px;
    transition: all 0.3s ease 0s;
  }
  .mobile__btn {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header .menu-list {
    gap: 0 40px;
  }
}
@media (max-width: 992px) {
  .header__inner {
    height: 60px;
  }
  .header .custom-logo {
    height: 40px;
  }
  .header__menu {
    position: absolute;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100% - 60px);
    background-color: #e5491f;
    text-align: center;
    padding: 100px 20px;
    transition: left 0.3s ease 0s;
    color: #ffffff;
    overflow: auto;
    z-index: 5;
  }
  .header__menu.active {
    left: 0;
  }
  .header .menu-list li {
    margin-bottom: 20px;
  }
  .header .menu-list a,
  .header__menu-phone {
    font-size: 20px;
    display: block;
    transition: opacity 0.3s ease 0s;
  }
  .header .menu-list a:focus,
  .header__menu-phone:focus {
    opacity: 0.8;
  }
  .header .menu-list a:active,
  .header__menu-phone:active {
    opacity: 0.7;
  }
  .header__menu-phone span {
    display: block;
    font-size: 14px;
    opacity: 0.8;
  }
  .header__phone {
    display: none;
  }
  .mobile__btn {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #e5491f;
    border-radius: 50%;
    transition: all 0.2s;
  }
  .mobile__btn:focus {
    opacity: 0.9;
  }
  .mobile__btn:active {
    opacity: 0.8;
  }
  .mobile__line {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }
  .mobile__line,
  .mobile__line::before,
  .mobile__line::after {
    display: block;
    width: 12px;
    height: 2px;
    background-color: #ffffff;
  }
  .mobile__line::before {
    content: '';
    position: absolute;
    bottom: 6px;
  }
  .mobile__line::after {
    content: '';
    position: absolute;
    top: 6px;
  }
  .mobile__line,
  .mobile__line::before,
  .mobile__btn.active .mobile__line::after {
    transition: all 0.3s;
  }
  .mobile__btn.active .mobile__line::before {
    transform: rotate(45deg);
    bottom: 0;
    left: 0;
  }
  .mobile__btn.active .mobile__line::after {
    transform: rotate(-45deg);
    top: 0;
    left: 0;
  }
  .mobile__btn.active .mobile__line {
    background-color: transparent;
  }
}
/* =============footer================ */
.footer a {
  transition: all 0.3s ease 0s;
}
.footer a:focus {
  opacity: 0.8;
}
.footer a:active {
  opacity: 0.6;
}
.footer-top {
  background-color: #f2efe8;
  border-radius: 40px 40px 0px 0px;
}
.footer-top__inner {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
}
.footer .custom-logo-link {
  display: inline-block;
}
.footer .menu-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, 24px);
  grid-auto-flow: column;
  gap: 20px 0;
}
.footer-top__contacts-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, 24px);
  grid-auto-flow: column;
  position: relative;
  padding-top: 35px;
  gap: 10px 0;
}
.footer-top__contacts-list::before {
  content: 'Täglich, rund um die Uhr';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #4f4f4f;
}
.footer-top__contacts-list li a {
  padding-left: 30px;
  position: relative;
  background-repeat: no-repeat;
  background-position: left center;
}
.footer-top__contacts-list li:last-child {
  text-align: end;
}
.footer-bottom__links {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 0 75px;
}
.footer-bottom a:last-child {
  margin-left: auto;
}
/* =============footer media================ */
@media (min-width: 992px) {
  .footer a:hover {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .footer-top__inner {
    padding: 40px 0 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer .menu-list {
    display: block;
  }
  .footer .menu-list li {
    margin-bottom: 20px;
  }
  .footer-top__contacts-list {
    display: block;
  }
  .footer-top__contacts-list li {
    margin-bottom: 10px;
  }
  .footer-top__contacts-list li:last-child {
    text-align: left;
  }
  .footer-bottom__links {
    gap: 0 30px;
  }
}
@media (max-width: 768px) {
  .footer-top__inner {
    padding: 20px 0 10px;
    display: block;
  }
  .footer .custom-logo-link {
    margin-bottom: 20px;
  }
  .footer-bottom__links {
    display: block;
    padding-bottom: 0;
  }
  .footer-bottom a {
    display: inline-block;
    margin: 0 40px 20px 0;
    white-space: nowrap;
  }
}
/* =============HOME PAGE================ */
/* =============hero================ */
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 120px;
  gap: 0 10px;
}
.hero-slider {
  max-width: 500px;
  margin-left: 0;
}
.hero-slider__wrapper {
  padding-bottom: 50px;
}
.hero-slider__title {
  margin-bottom: 20px;
}
.hero-slider__text {
  color: #4f4f4f;
}
.hero-slider .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 80px;
}
.hero-slider .swiper-pagination-bullet {
  background-color: #4f4f4f;
  vertical-align: middle;
}
.hero-slider .swiper-pagination-bullet-active {
  background-color: #e5491f;
  height: 10px;
  width: 10px;
}
.hero__btn {
  background-color: #e5491f;
}
.hero__btn::after {
  background-image: url('../images/icons/arrow-btn-orange.svg');
}
.hero__images {
  flex-basis: 590px;
  min-height: 555px;
  position: relative;
}
.hero__img {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.25);
/*   filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.25)); */
  z-index: 2;
}
.hero__img:nth-child(1) {
  width: 248px;
  height: 264px;
  object-fit: cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hero__img:nth-child(2) {
  width: 220px;
  height: 220px;
  object-fit: cover;
  right: 0;
  top: 0;
}
.hero__img:nth-child(3) {
  width: 198px;
  height: 211px;
  object-fit: cover;
  bottom: 0;
  right: 66px;
}
.hero__images::after {
  content: '';
  position: absolute;
  background-image: url('../images/decor/hero.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 480px;
  height: 480px;
  top: 16px;
  right: 5px;
}
/* =============hero media================ */
@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    gap: 10px 0;
  }
  .hero-slider {
    max-width: 100%;
  }
  .hero__images {
    flex-basis: content;
    max-width: 590px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .hero__img:nth-child(3) {
    right: 25px;
  }
}
@media (max-width: 500px) {
  .hero__images {
    min-height: 450px;
  }
  .hero__images::after {
    width: 390px;
    height: 390px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .hero__img:nth-child(1) {
    width: 200px;
    height: 200px;
  }
  .hero__img:nth-child(2) {
    width: 180px;
    height: 180px;
  }
  .hero__img:nth-child(3) {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 414px) {
  .hero__images {
    min-height: 360px;
  }
  .hero__images::after {
    width: 360px;
    height: 360px;
  }
  .hero__img:nth-child(1) {
    width: 180px;
    height: 180px;
  }
  .hero__img:nth-child(2) {
    width: 160px;
    height: 160px;
  }
  .hero__img:nth-child(3) {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 375px) {
  .hero__inner {
    padding-top: 20px;
  }
  .hero__images {
    min-height: 240px;
  }
  .hero__images::after {
    width: 240px;
    height: 240px;
  }
  .hero__img:nth-child(1) {
    width: 140px;
    height: 140px;
  }
  .hero__img:nth-child(2) {
    width: 110px;
    height: 110px;
  }
  .hero__img:nth-child(3) {
    width: 110px;
    height: 110px;
  }
}
/* =============services================ */
.services__items {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
}
.services__item {
  max-width: 600px;
  display: flex;
  gap: 0 20px;
  background-color: #f2efe8;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
.services__img {
  border-radius: 20px;
  width: 260px;
  height: 320px;
}
.services__content {
  max-width: 280px;
}
.services__subtitle {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}
.services__text {
  color: #4f4f4f;
  padding-bottom: 90px;
}
.services__btn-box {
  font-weight: 700;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 40px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
}
.services__btn {
  border-radius: 40px;
  transition: all 0.3s ease 0s;
}
.services__btn:focus {
  opacity: 0.8;
}
.services__btn:active {
  opacity: 0.6;
}
.services__btn-order {
  line-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background-color: #e5491f;
  border: 4px solid #e5491f;
}
.services__btn-more {
  line-height: 50px;
  padding: 0 80px 0 10px;
  position: relative;
}
.services__btn-more::after {
  content: '';
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  background-image: url('../images/icons/arrow-btn-white.svg');
  background-repeat: no-repeat;
  background-position: right 8px top 15px;
  transition: all 0.3s ease 0s;
}
/* =============services media================ */
@media (min-width: 992px) {
  .services__btn-order:hover {
    color: #e5491f;
    background-color: #ffffff;
  }
  .services__btn-more:hover::after {
    width: 100%;
    border-radius: 40px;
    z-index: -1;
  }
  .services__btn-more:hover {
    color: #ffffff;
  }
}
@media (max-width: 992px) {
  .services__items {
    flex-direction: column;
    gap: 40px 0;
  }
  .services__item {
    max-width: 100%;
  }
  .services__content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .services {
    margin-bottom: 90px;
  }
  .services__items {
    gap: 70px 0;
  }
  .services__item {
    flex-direction: column;
    gap: 30px 0;
  }
  .services__img {
    margin: 0 auto;
  }
  .services__text {
    padding-bottom: 30px;
  }
  .services__btn-box {
    bottom: -30px;
  }
  .services__btn-more {
    padding: 0 20px;
  }
  .services__btn-more::after {
    display: none;
  }
}
/* =============about-us================ */
.about-us__inner {
  background-color: #e7e0eb;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
.about-us__title {
  flex-basis: 410px;
  margin: 0 auto;
}
.about-us__content {
  flex-basis: 540px;
}
.about-us__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-us p {
  margin-bottom: 20px;
}
.about-us__btn {
  background-color: #000000;
}
.about-us__btn::after {
  background-image: url('../images/icons/arrow-btn-black.svg');
}
/* =============about-us media================ */
@media (max-width: 992px) {
  .about-us__inner {
    padding: 20px;
  }
  .about-us__title {
    flex-basis: 220px;
  }
}
@media (max-width: 768px) {
  .about-us__inner {
    display: block;
  }
  .about-us__title {
    margin: 0 0 20px 0;
  }
}
/* =============advantages================ */
.advantages__title {
  text-align: center;
}
.advantages__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  border-bottom: 2px solid #bcbcbc;
  padding: 20px 0;
}
.advantages__item:first-child {
  border-top: 2px solid #bcbcbc;
}
.advantages__item dt {
  font-weight: 500;
  line-height: 1.2;
  font-size: 24px;
}
.advantages__item dd {
  font-weight: 600;
  line-height: 1;
  font-size: 160px;
  white-space: nowrap;
}
/* =============advantages media================ */
@media (max-width: 992px) {
  .advantages__item dd {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .advantages__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
  }
  @media (max-width: 414px) {
    .advantages__item dt {
      font-size: 18px;
    }
    .advantages__title {
      text-align: left;
    }
  }
}
/* =============reviews================ */
.reviews__container {
  position: relative;
}
.reviews__slider {
  padding-top: 120px;
  position: relative;
}
.reviews__title {
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 60px;
}
.blockquote {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  min-height: 230px;
  background-color: #e7e0eb;
  padding: 20px;
  border-radius: 20px;
}
.blockquote__text {
  color: #4f4f4f;
}
.blockquote__name {
  font-weight: 700;
  padding-left: 50px;
  position: relative;
}
.blockquote__name img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.blockquote__name span {
  font-weight: 400;
  color: #a1a1a1;
  display: block;
}
.reviews__slider-buttons {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 60px;
  background-color: #e5491f;
  border-radius: 40px;
}
.reviews__slider-btn {
  position: absolute;
  top: 5px;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  background-image: url('../images/icons/arrow-btn-orange.svg');
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease 0s;
}
.reviews__slider-btn:focus {
  opacity: 0.7;
}
.reviews__slider-btn:active {
  opacity: 0.6;
}
.reviews__slider-btn--prev {
  left: 5px;
  transform: rotate(180deg);
}
.reviews__slider-btn--next {
  right: 5px;
}
/* =============reviews media================ */
@media (min-width: 992px) {
  .reviews__slider-btn:hover {
    opacity: 0.8;
  }
}

@media (max-width: 992px) {
  .reviews__slider {
    padding-top: 90px;
  }
}
@media (max-width: 375px) {
  .reviews__slider-buttons {
    width: 120px;
  }
}
/* =============question================ */
.question__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
.question__title {
  flex-basis: 350px;
  margin: 0 auto;
}
.question__list {
  flex-basis: 600px;
}
.question__item {
  padding: 20px 0;
  border-bottom: 2px solid #bcbcbc;
}
.question__btn {
  font-weight: 500;
  font-size: 24px;
  padding-right: 70px;
  display: block;
  min-height: 50px;
  width: 100%;
  text-align: left;
  position: relative;
  transition: all 0.3s ease 0s;
}
.question__btn:focus {
  opacity: 0.9;
  color: #e5491f;
}
.question__btn:active {
  opacity: 0.8;
}
.question__btn span {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}
.question__btn span::before,
.question__btn span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fe5244;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}
.question__btn span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.question__btn.open span::after {
  transform: translate(-50%, -50%) rotate(0);
}
.question__text {
  display: none;
  color: #4f4f4f;
  padding: 10px 70px 0 0;
}
/* =============question media================ */
@media (min-width: 992px) {
  .question__btn:hover {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .question__title {
    flex-basis: 190px;
  }
}
@media (max-width: 768px) {
  .question__inner {
    display: block;
  }
  .question__title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .question__btn {
    font-size: 18px;
  }
}
/* =============form-box================ */
.form-box__inner {
  padding: 60px 100px;
  background-color: #e7e0eb;
  border-radius: 20px;
}
.form-box .wpcf7-form {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  position: relative;
}
.form-box .wpcf7-response-output {
  position: absolute;
  bottom: -40px;
}
.form-box .wpcf7 form .wpcf7-response-output {
  font-weight: 500;
  margin: 0;
  padding: 0;
  border: 0;
}
.form__label {
  max-width: 340px;
  width: 100%;
}
.form__input {
  line-height: 60px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 0 20px;
  transition: all 0.3s ease 0s;
}
.form__input::placeholder {
  color: #4f4f4f;
  transition: all 0.3s ease 0s;
}
.form__input:focus {
  outline-color: #e5491f;
}
.form__btn {
  background-color: #000000;
}
.form__btn::after {
  background-image: url('../images/icons/arrow-btn-black.svg');
}
/* =============form-box media================ */
@media (min-width: 992px) {
  .form__input:hover::placeholder {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .form-box__inner {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .form-box .wpcf7-form {
    flex-direction: column;
    gap: 20px 0;
  }
  .form__label {
    max-width: 100%;
  }
  .form__btn {
    width: 100%;
  }
  .form-box__title {
    text-align: center;
  }
  .form-box .wpcf7-response-output {
    bottom: -70px;
  }
}
@media (max-width: 360px) {
  .form-box .wpcf7-response-output {
    bottom: -92px;
  }
}
/* =============service================ */
.service-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 120px;
  gap: 0 70px;
}
.service-top__info {
  flex-basis: 500px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.service-top__text {
  color: #4f4f4f;
}
.service-top__btn {
  background-color: #e5491f;
}
.service-top__btn::after {
  background-image: url('../images/icons/arrow-btn-orange.svg');
}
.service-top__decor {
  position: relative;
  height: 590px;
  width: 495px;
  background: linear-gradient(139.8deg, #ffe8e1 -0.1%, #efe4c6 101.24%);
  border-radius: 40px;
}
.service-top__img {
  position: absolute;
  bottom: 90px;
  left: -60px;
  width: 420px;
  height: 320px;
  border-radius: 20px;
  filter: drop-shadow(20px 20px 50px rgba(0, 0, 0, 0.25));
}
/* =============service media================ */
@media (max-width: 992px) {
  .service-top__inner {
    flex-direction: column;
    gap: 40px 0;
  }
  .service-top__info {
    flex-basis: content;
  }
  .service-top__decor {
    margin-left: 60px;
  }
}
@media (max-width: 768px) {
  .service-top__inner {
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .service-top__decor {
    height: 319px;
    width: 267px;
  }
  .service-top__img {
    width: 240px;
    height: 180px;
    left: -32px;
    bottom: 40px;
  }
  .service-top__decor {
    margin-left: 32px;
  }
}
/* =============estimate media================ */
@media (max-width: 346px) {
  .estimate__title {
    font-size: 36px;
  }
}
/* =============conditions================ */
.conditions__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
.conditions ul {
  flex-basis: 620px;
}
.conditions ul li {
  padding-left: 70px;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  background-image: url('../images/icons/check-mark.svg');
  background-repeat: no-repeat;
  background-position: left top;
}
.conditions ul li:not(:last-child) {
  margin-bottom: 40px;
}

.conditions__title {
  flex-basis: 500px;
  margin: 0 auto;
}
/* =============conditions media================ */
@media (max-width: 992px) {
  .conditions__title {
    flex-basis: 270px;
  }
}
@media (max-width: 768px) {
  .conditions__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .conditions__title {
    flex-basis: content;
    word-spacing: -23px;
    order: -1;
    margin: 0 0 30px 0;
  }
  .conditions ul {
    flex-basis: content;
  }
  .conditions ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
/* =============steps================ */
.steps__title {
  text-align: center;
}
.steps__list {
  counter-reset: my-counter;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.steps__list li {
  counter-increment: my-counter;
  flex-basis: 285px;
  padding: 20px;
  border-radius: 40px;
  text-align: center;
  color: #4f4f4f;
  position: relative;
}
.steps__list li:nth-child(odd) {
  background: linear-gradient(180deg, #e7e0eb 0%, #f9efff 100%);
}
.steps__list li:nth-child(4n + 2) {
  background: linear-gradient(280.79deg, #efe4c6 8%, #e0efd9 95.05%);
}
.steps__list li:nth-child(4n + 4) {
  background: linear-gradient(229.8deg, #ffe8e1 -0.1%, #efe4c6 101.24%);
}
.steps__list li::before {
  content: '0' counter(my-counter);
  font-weight: 600;
  font-size: 160px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05), 0px 20px 25px rgba(0, 0, 0, 0.05);
}
.steps__list li p {
  padding-top: 30px;
  border-top: 2px solid #ffffff;
}
/* =============steps media================ */
@media (max-width: 1200px) {
  .steps__list {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
/* =============big-form-box================ */
.big-form-box__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background-color: #e7e0eb;
  border-radius: 20px;
  gap: 0 60px;
}
.big-form-box__info {
  flex-basis: 50%;
}
.big-form-box__title {
  margin-bottom: 20px;
}
.big-form-box__info p {
  color: #4f4f4f;
}
.big-form-box__info p:not(:last-child) {
  margin-bottom: 20px;
}
.big-form-box .wpcf7-form {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.big-form-box .wpcf7 form .wpcf7-response-output {
  font-weight: 500;
  margin: 0;
  padding: 0;
  border: 0;
}
.big-form__input {
  line-height: 60px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 0 20px;
  transition: all 0.3s ease 0s;
}
.big-form__input::placeholder {
  color: #4f4f4f;
  transition: all 0.3s ease 0s;
}
.big-form__input:focus {
  outline-color: #e5491f;
}
.big-form__select {
  width: 100%;
  height: 60px;
  color: #4f4f4f;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 0 20px;
  transition: all 0.3s ease 0s;
}
.big-form__btn {
  background-color: #000000;
  width: 100%;
  text-align: left;
}
.big-form__btn::after {
  background-image: url('../images/icons/arrow-btn-black.svg');
}
/* =============big-form-box media================ */
@media (min-width: 992px) {
  .big-form__input:hover::placeholder {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .big-form-box__inner {
    padding: 30px;
    gap: 0 30px;
  }
}
@media (max-width: 768px) {
  .big-form-box__inner {
    display: block;
  }
  .big-form-box__info {
    margin-bottom: 20px;
  }
}
/* =============contact================ */
.contact__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  padding: 80px 0 120px;
}
.contact__title {
  flex-basis: 360px;
}
.contact__title span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #4f4f4f;
  margin: 0 0 20px 5px;
}
.address {
  flex-basis: 705px;
}
.address__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  padding: 40px 0;
  border-bottom: 2px solid #bcbcbc;
}
.address__item dt {
  color: #4f4f4f;
}
.address__item dd {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  text-align: right;
}
.address__item dd a {
  transition: all 0.3s ease 0s;
}
.address__item dd a:focus {
  opacity: 0.8;
}
.address__item dd a:active {
  opacity: 0.6;
}
/* =============contact media================ */
@media (min-width: 992px) {
  .address__item dd a:hover {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .contact__inner {
    flex-direction: column;
    gap: 20px 0;
  }
  .address,
  .contact__title {
    flex-basis: content;
  }
}
@media (max-width: 576px) {
  .contact__inner {
    padding: 40px 0 60px;
  }
  .address__item {
    display: block;
    padding: 20px 0;
  }
  .address__item dt {
    margin-bottom: 10px;
  }
  .address__item dd {
    text-align: left;
  }
}
/* =============about================ */
.about__inner {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.about__decor {
  position: absolute;
  z-index: -1;
}
.about__decor:nth-child(1) {
  left: 0px;
  top: 50%;
  transform: translateY(-25%);
}
.about__decor:nth-child(2) {
  top: -140px;
  left: 50%;
  transform: translateX(-100%);
}
.about__decor:nth-child(3) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about__decor:nth-child(4) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__title {
  margin-bottom: 40px;
}
.about__text {
  max-width: 580px;
  color: #4f4f4f;
  margin: 0 auto;
}
/* =============about media================ */
@media (max-width: 768px) {
  .about__decor:nth-child(3) {
    display: none;
  }
  .about__decor:nth-child(4) {
    left: 47%;
    transform: translate(0, -50%);
  }
}
@media (max-width: 414px) {
  .about__decor:nth-child(4) {
    left: 30%;
    transform: translate(0, -50%);
  }
}
/* =============datenschutz================ */
.datenschutz {
  margin-top: 120px;
}
.datenschutz__content p:not(:last-child) {
  margin-bottom: 20px;
}
.datenschutz__content a {
  transition: all 0.3s ease 0s;
}
.datenschutz__content a:focus {
  opacity: 0.8;
}
.datenschutz__content a:active {
  opacity: 0.6;
}
/* =============datenschutz media================ */
@media (min-width: 992px) {
  .datenschutz__content a:hover {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .datenschutz {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  .datenschutz__title {
    font-size: 24px;
  }
  .datenschutz__content {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .datenschutz__title {
    font-size: 20px;
  }
  .datenschutz__content {
    font-size: 12px;
  }
  .datenschutz__content p:not(:last-child) {
    margin-bottom: 10px;
  }
}
/* =============terms================ */
.terms {
  margin-top: 120px;
  color: #4f4f4f;
}
.terms p:not(:last-child) {
  margin-bottom: 20px;
}
.terms__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 60px;
}
.terms__top li:not(:last-child) {
  margin-bottom: 40px;
}
.terms__top p,
.terms__content p:first-child {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.terms__top a,
.terms__content a {
  transition: all 0.3s ease 0s;
}
.terms__top a:focus,
.terms__content a:focus {
  opacity: 0.8;
}
.terms__top a:active,
.terms__content a:active {
  opacity: 0.6;
}
.terms__top .custom-logo-link {
  align-self: flex-start;
  order: 1;
}
.terms__top .custom-logo {
  width: 352px;
}
/* =============terms media================ */
@media (min-width: 992px) {
  .terms__top a:hover,
  .terms__content a:hover {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .terms {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .terms__top {
    display: block;
    margin-bottom: 30px;
  }
  .terms__top li:not(:last-child) {
    margin-bottom: 30px;
  }
  .terms__top .custom-logo-link {
    display: inline-block;
    margin-bottom: 30px;
  }
  .terms__top .custom-logo {
    width: 140px;
  }
}
/* =============page-404================ */
.page-404 {
  margin-top: 120px;
  text-align: center;
}
.page-404__title {
  color: #e5491f;
  margin-bottom: 40px;
}
.page-404 p {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}
.page-404 a {
  font-size: 24px;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.page-404 a:focus {
  opacity: 0.8;
}
.page-404 a:active {
  opacity: 0.6;
}
/* =============page-404 media================ */
@media (min-width: 992px) {
  .page-404 a:hover {
    color: #e5491f;
  }
}
@media (max-width: 992px) {
  .page-404 {
    margin-top: 60px;
  }
}
