@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat/Montserrat-Light.ttf) format("ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat/Montserrat-Regular.ttf) format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat/Montserrat-SemiBold.ttf) format("ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat/Montserrat-Bold.ttf) format("ttf");
  font-weight: 700;
}

:root {
  --main--font-color: #040404;
  --link--font-color: #272727;
  --link--hover-color: #3b3626;
  --second-color: #ffd800;
  --third-color: #f5f5f5;
  --bg-color: #f5f5f5;
  --second-bg-color: #040404;
  --markered-color: #ffc400;

  --main-gradient-color: linear-gradient(270deg, #f86e01 0%, #ffd800 95.4%);
  --main-gradient-reverse: linear-gradient(90deg, #ffd800 0%, #ffc400 95.45%);
  --second-gradient-color: linear-gradient(270deg, #6425d0 0%, #d82424 95.45%);
  --btn-gradient-color: linear-gradient(180deg, #ffd800 0%, #ffc400 95.45%);
  --btn-h-gradient-color: linear-gradient(270deg, #f86e01 0%, #ffd800 95.4%);
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--main--font-color);
  background: var(--bg-color);
}

a {
  text-decoration: none;
  color: var(--link--font-color);
}

a:hover {
  text-decoration: none;
  color: var(--link--hover-color);
}

b {
  font-weight: 600;
}
.bold-text {
  font-weight: 600;
}

.font_white {
  color: #ffffff;
}

.markered-list li {
  list-style: none;
  padding-left: 3rem;
  margin-left: 0;
  line-height: 2rem;
  background-image: url(img/icon/svg/checkmark.svg);
  background-position: 0 0;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  white-space: nowrap;
  margin-top: 8px;
}

.container {
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 15px;
}

.fluid__container {
  width: 100%;
}

.fluid__container_grey {
  background: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url(img/worker_full.jpg);
  /* background: #e6e6e6; */
  background-size: cover;
}

.container__title {
  padding: 15px;
  font-size: 2.2rem;
  text-align: center;
}

button {
  border: 0;
}

.btn__wrapper {
  display: flex;
  position: relative;
}

.btn {
  background: var(--btn-gradient-color);
  display: inline;
  align-items: center;
  box-sizing: border-box;
  padding: 13px 25px;
  border-bottom: 4px solid #dca900;
  color: var(--main-color);
  text-align: center;
  transition: 0.5s;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  z-index: 1;
  -webkit-box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.2);
  -moz-box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.2);
  box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.2);
}

.btn:hover {
  background: var(--btn-h-gradient-color);
  -webkit-box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.2);
  -moz-box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.2);
  box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.2);
}
/* 
.btn:after {

} */

.btn__wrapper:after,
.btn__wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  /* border: 3px solid rgba(255, 255, 255, 0.1); */
  -webkit-animation: pulse1 2s linear infinite;
  -moz-animation: pulse1 2s linear infinite;
  animation: pulse1 2s linear infinite;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  /* -webkit-box-shadow: inset 0px 0px 15px 10px rgba(226, 194, 10, 0.41);
  -moz-box-shadow: inset 0px 0px 15px 10px rgba(226, 194, 10, 0.41);
  box-shadow: inset 0px 0px 15px 10px rgba(226, 194, 10, 0.41); */
  filter: blur(0.5rem);
  background: var(--main-gradient-color);
  /* -webkit-box-shadow:0px 0px 15px 10px rgba(226, 194, 10, 0.41);
  -moz-box-shadow:0px 0px 15px 10px rgba(226, 194, 10, 0.41);
  box-shadow:  0px 0px 15px 10px rgba(226, 194, 10, 0.41);  */
}

/* .btn__wrapper:before {
  animation-delay: 0.5s;
  animation: pulse1 1.7s linear infinite;
} */

@-webkit-keyframes pulse1 {
  0% {
    -webkit-transform: scale(0.4, 0.5);

    opacity: 0;
  }

  50% {
    -webkit-transform: scale(0.5, 0.6);

    opacity: 0;
  }

  55% {
    -webkit-transform: scale(0.7, 0.8);
    opacity: 0.5;
  }

  65% {
    -webkit-transform: scale(0.9, 1);
    opacity: 0.85;
  }

  80% {
    -webkit-transform: scale(1.1, 1.2);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1.3, 1.4);
    opacity: 0;
  }
}

.btn__lighting {
  overflow: hidden;
}

.btn__lighting:hover:after {
  content: "";
  display: block;
  width: 20px;
  height: 100px;
  margin-left: 30px;
  background: #fff;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
  left: -10px;
  top: -30px;
  z-index: 1;
  transform: rotate(331deg);
  position: absolute;
  animation: movingFlare 3s ease-in-out 0.05s infinite;
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes movingFlare {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 0px;
  }
  100% {
    left: 110%;
    margin-left: 0px;
  }
}

.btn_markered {
  background: var(--second-gradient-color);
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 57px 0px rgba(220, 34, 146, 0.6);
  -moz-box-shadow: 1px 1px 57px 0px rgba(220, 34, 146, 0.6);
  box-shadow: 1px 1px 57px 0px rgba(220, 34, 146, 0.6);
}

.btn_large {
  font-size: 1.5rem;
  padding: 15px 30px;
  font-weight: 700;
}

.btn-phone::before {
  display: inline-flex;
  content: "";
  height: 14px;
  width: 14px;
  margin-right: 5px;
  background-image: url(img/icon/svg/phone.svg);
  background-size: 14px 14px;
}
.header__wrapper {
  width: 100%;

  /* background: url(img/bg.jpg); */
  background-size: auto 100%;

  background-repeat: no-repeat;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.fixed {
  position: fixed;
}

.header__logo {
  padding: 0 15px;
}

.header__logo img {
  width: 100%;
  max-width: 350px;
}

.header__time {
  padding: 0 15px;
}

.header__contacts {
  padding: 0 15px;
  min-width: 260px;
}

.phone__number_header {
  padding: 5px 0;
}

.header__nav {
  display: flex;
  justify-content: space-around;
}

.nav__link {
  padding: 15px;
  margin: 15px;
  border-bottom: 2px solid var(--second-color);
}

.nav__link:hover {
  padding: 15px;
  margin: 15px;
  border-bottom: 2px solid var(--link--hover-color);
}

.header__btn {
  padding: 0 15px;
}

.phone {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.phone__number {
  display: flex;
  flex-direction: column;
}

.phone__number {
  padding: 5px 0;
}

.footer__wrapper .phone__item {
  justify-content: center;
}

.phone__item {
  align-items: center;
  display: flex;
}

.phone__number,
.phone__viber,
.phone__tg {
  margin: 0 5px;
}

.phone__viber {
  width: 24px;
  height: 24px;
}

.time__meta {
  padding: 5px 0;
  margin-right: 5px;
}

.time__number {
  padding: 5px 0;
}

.main {
  width: 100%;
  background-image:url(img/carbg.jpg); 
  /* background-size: auto 100%; */
  background-size: contain;
  background-position-x: 100%;
  background-repeat: no-repeat;
}

.main-light {
 
  background-image: linear-gradient(rgba(245, 245, 245, 0.85), rgba(245, 245, 245, 0.85)), url(img/carbg-s.jpg);

}

      




.main__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.main__meta {
  width: 50%;
}

.main__btn,
.meta__title,
.meta__desc {
  padding: 30px 0;
  display: flex;
}

.meta {
  line-height: 4rem;
}

.meta__pre {
  font-size: 2.25rem;
  line-height: 3.5rem;
}

.meta__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
}

.meta__desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
  text-shadow: 0 2px 0 0px hsl(0, 0%, 100%),
    0 3px 2px 0px hsla(330, 100%, 15%, 0.5);
}

.meta__phone {
  font-size: 1.5rem;
}

.meta__phone-number {
  padding: 8px 0;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1.5rem;
}

.meta__phone-number_big {
  font-size: 2rem;
}

.advantages {
  padding: 30px 15px;
}
.advantages__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.advantages__single {
  width: 25%;
  flex-grow: 1;
  min-width: 250px;
  padding: 25px 35px;
  margin: 15px 0;
  box-sizing: border-box;
}

.advantage__item {
  display: flex;
}

.advantage__icon {
  text-align: center;
  padding: 25px;
}

.advantage__img {
  width: 64px;
  height: 64px;
}

.advantage__meta {
  display: flex;
  flex-direction: column;
}

.advantage__title {
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 15px;
  font-weight: 700;
  color: var(--main--font-color);
}

.advantage__desc {
  color: var(--main-color);
  line-height: 2rem;
  text-align: center;
}

.advantages__under {
  color: #89c76f;
  text-align: center;
}

.worker__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.worker__half_left {
  width: 20%;
  min-width: 250px;
  padding: 15px 15px 0 15px;
  flex: 1;
}
.worker__half_right {
  width: 80%;
  flex: 3;
}

.worker__half {
  padding: 15px;
}

.worker__photo {
  position: relative;
}

.worker__img {
  z-index: 1;
  position: relative;
}

.worker__pic {
  width: 100%;
  border-radius: 30px;
}

.worker__bg {
  position: absolute;
  width: 90%;
  height: 70%;
  bottom: 15%;
  left: 0;
  /* background: red; */
  border: 3px solid #ffc400;
}

.worker__text {
  text-align: center;
}

.worker__bg::after {
  content: "Дмитрий. Руководитель.";
  position: absolute;
  bottom: -35px;
}

.pain {
  padding: 5px 15px;
}

.pain__ache {
  font-size: 2rem;
  font-weight: 700;
  padding: 5px 0;
}

.pain__decision {
  font-size: 1.4rem;
  /* padding: 5px 0; */
  position: relative;
  list-style: none;
  padding-left: 2rem;
  margin-left: 0;
  line-height: 1.6rem;
  background-image: url(img/icon/svg/x.svg);
  
  background-position: 0 0;
  background-size: 1.6rem;
  background-repeat: no-repeat;
  /* margin-top: 8px; */
}

.pain__under {
  padding: 15px;
  font-size: 1.2rem;
  text-align: center;
  color: #e66604;
}

.car__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.car__single {
  width: 25%;
  flex-grow: 1;
  min-width: 340px;
  /* padding: 0px 15px; */
  margin: 0 0 15px;
  box-sizing: border-box;
}

.car__meta {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.car__set {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.car__item {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  position: relative;
  height: 100%;
  transition-duration: 2.5;
  transition: 2s;
}

.car__item:hover .car__img {
  transform: scale(1.1);

  transition: 1s;
}

/* 
.car__item:hover .car__bg {
  background: linear-gradient(90deg, #f86e01 0%, #ffd800 95.4%);
 
} */
/* .car__item:after {
  display: block;
  content: "";
  position: absolute;
  border: 5px;
  border-style: solid;
  border-color: #ffd800 #dcc04b #dcc04b #ffd800;
 
  height: 100%;
  width: 100%;
  z-index: -2;
  left: 0;
  top: 0;
 opacity: 0.4;
} */

/* .car__item:after {
  display: block;
  content: "";
  position: absolute;
  border: 0px;
  border-radius: 50%;
  border-style: solid;
  border-color: #ffd800 #dcc04b #dcc04b #ffd800;
   background: linear-gradient(270deg, #ffd800 0%, #ffc400 95.4%);
  height: 60%;
  width: 60%;
  z-index: -2;
  left: 25%;
  top: 0;
 opacity: 0.4;
} */

.car__bg {
  position: absolute;
  background: var(--btn-gradient-color);
  background: linear-gradient(270deg, #f86e01 0%, #ffd800 95.4%);

  /* height: 220px; */
  width: 180px;
  aspect-ratio: 1 / 1;
  /* border-radius: 50%; */
  /* border-radius: 50% 20% / 10% 40%; */
  border-radius: 25% 10%;
  top: 5px;
  z-index: -2;
  opacity: 0.5;
}

.car__img {
  max-width: 350px;
}

.car__item img {
  width: 100%;
}

.car {
}

.car__title {
}
.car__desc {
}

.park__wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.park__item {
  width: 20%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--markered-color);
  padding: 15px;
  flex-grow: 1;
  min-width: 300px;
  margin: 15px;
}

.park__pic {
}
.park__img {
  width: 100%;
}

.park__title {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 0;
}
.park__desc {
  padding: 5px 0;
}

.park__btn-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 5px 0;
  gap: 15px;
}

.park__list {
  padding: 15px 0 15px 20px;
  list-style: disc;
}

.park__list-item {
  padding: 5px 0;
}

.park__btn {
  display: block;
  padding: 10px 10px;
}

.services__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.service__item {
  padding: 8px;
}
.service__item .park__btn {
  border-bottom: 0px;
}

.service__item .park__btn {
  background: #fff;
  border: 1px solid #dca900;
  box-shadow: none;
  /* -webkit-box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.1); 
      -moz-box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.1);
     
       box-shadow: 0px 5px 8px 0px rgba(220, 169, 0, 0.1);  */
}

.rent__wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.rent__item {
  display: flex;
  padding: 15px;
  box-sizing: border-box;
  background: #ffffff;
  flex-direction: row;
  border: 1px solid rgba(220, 169, 0, 0.2);
  flex-grow: 1;
  margin: 15px;
  width: 45%;
  line-height: 1.3rem;
}

.rent__item_full li {
  list-style: disc;
  margin-left: 20px;
}

.rent__item_full {
width: 100%;
}

.rent__order-2 {
  order: 2;
}

.rent__pic {
  width: 50%;
  padding: 15px;
}

.rent__img {
  border-radius: 5px;
  width: 100%;
}

.rent__meta {
  width: 50%;
  padding: 15px;
}

.rent__title {
  padding: 0 0 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.rent__desc {
  padding: 15px 0;
  line-height: 1.4rem;
}

.rent__operator {
  padding: 15px 0;
}

.question {
  border-bottom: 1px solid #e1e1cd;
  padding: 30px 0 25px 10px;
  background: linear-gradient(
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.85)
  );
  margin: 5px 0;
  border-radius: 15px;
}

.question__wrapper {
  padding: 0 15px;
}

.question__text {
  position: relative;
  display: block;
  font-weight: 700;

  color: #32353f;
  padding-left: 70px;
  cursor: pointer;
}
.question__text::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("img/icon/svg/plus.svg");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center center;
  border-radius: 50%;
  transition: 0.2s ease-out;
}
.question__text:hover::before {
  transform: rotate(45deg);
  background-color: #f0f2f4;
}

.question__checkbox {
  top: -9999px;
  display: none;
}

.question__checkbox:checked ~ .question__text::before {
  transform: rotate(45deg);
}

.question__answer {
  display: none;

  line-height: 150%;
  color: #585858;
  margin-top: 20px;
  padding-left: 70px;
}

.question__answer ul {
  padding: 15px 0;
}

.question__answer li {
  padding: 5px 0;
  list-style: disc;
}

.question__checkbox:checked ~ .question__answer {
  display: block;
}

.contacts {
}

.contacts__fluid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.contacts__wrapper,
.form__wrapper {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  
  flex-direction: row;

  flex-grow: 1;
  margin: 15px;
  width: 45%;
}

.contacts__info {
color: #ffffff;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.contacts__pic {
  width: 30%;
  max-width: 200px;
}

.contacts__meta {
  width: 70%;
}

.contacts__pic,
.contacts__meta {

  flex-grow: 1;

  padding: 0px 15px;
  margin: 15px 0;
  box-sizing: border-box;
}

.contacts__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* min-width: 376px; */
}

.contacts__pic {
  text-align: center;
  display: flex;
    align-items: center;
  }

.contacts__img {
  width: 100%;

}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 15px;
  background: var(--main--font-color);
}

.footer__lofo {
  width: 100%;
}

.footer__wrapper {
  text-align: center;
  font-size: 1.5rem;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__contacts {
  display: flex;
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.footer__phone {
  font-size: 2.2rem;
}

.footer__social {
  display: flex;
}

.footer__credits {
  color: var(--second-color);
  flex-wrap: wrap;
}

.footer__donwload {
  font-style: italic;
  text-decoration: underline;
  padding: 15px 0;
  margin: 0 5px;
}

.footer__call {
  padding: 10px 0;
  color: var(--third-color);
}

.footer__phone-number {
  color: var(--third-color);
  padding: 8px 0;
  text-decoration: underline;
}

.footer__icon {
  margin-left: 15px;
}

.footer__logo {
  width: 100%;
}

.copyright {
  padding: 15px;
  text-align: center;
}

.copyright a {
  color: var(--main--font-color);
}

@media screen and (max-width: 1300px) {
  .pain__ache {
    font-size: 1.5rem;
  }
  .pain__decision {
    font-size: 1.2rem;
  }
  .rent__item {
    width: 100%;
  }
  .rent__pic, .rent__meta {
    width: 100%;
    flex-grow: 1;
  }
  .meta__phone_number {
    display: block;
  }

  .main {
    background-size: cover;
 
      background-position-x: 100%;

    background-image: linear-gradient(rgba(245, 245, 245, 0.85), rgba(245, 245, 245, 0.85)), url(img/carbg.jpg);
  }

  .main__meta {
    width: 100%;
}
}

@media screen and (max-width: 1040px) {
  .header__logo {
    width: 100%;
    text-align: center;
  }
  .pain__ache {
    font-size: 1.3rem;
  }
  .pain__decision {
    font-size: 1rem;
  }
  .contacts__pic {
width: 10%;
max-width: 100px;
  }
  .contacts__wrapper, .form__wrapper {
    width: 100%;
   }

}

@media screen and (max-width: 960px) {

  .footer {
    justify-content: center;
  }
  .footer__meta {
    align-items: center;
  }
  .footer__credits {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
  }

  .trigger__single {
    flex: 1;
    text-transform: none;
    font-weight: 400;
    min-width: 240px;
    max-width: 40%;
  }
  .trigger__container {
    width: 100%;
  }

  .main__btn {
    padding: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .main__meta {
    width: 100%;
  }
  .header__wrapper {
    background-position-x: 25%;
  }
  .main {
 
  }

  .meta__desc {
    font-size: 1.5rem;
  }

  .markered-list li {
  }

}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .rent__item {
    flex-direction: column;
    margin: 15px 0;
}
.rent__pic, .rent__meta {
padding: 5px 5px;
}
.advantage__desc {

  line-height: 1.5rem;
 
}

.rent__title {

  font-size: 1.1rem;

}
  .header__logo,
  .header__contacts {
    width: 50%;
    justify-content: center;
  }
  .header__btn,
  .header__contacts,
  .header__logo {
    padding: 15px;
  }

  .contacts__meta .phone__number {
    padding: 10px 0;
  }
  .phone__number_header {
    padding: 3px 0;
  }

  .phone__number_header {
    padding: 8px 0;
  }

  .icon-block {
    display: block;
    width: 24px;
    height: 24px;
  }
  .meta__desc {
    font-size: 1.2rem;
  }
  .markered-list li {
    list-style: none;
    padding-left: 0rem;
    margin-left: 0;
    line-height: 1.4rem;
    background-image: none;
    background-position: 0 0;
    background-repeat: no-repeat;
    white-space: unset;
    margin-top: 15px;
  }
  .contacts__meta {

    align-items: center;
}
}

@media screen and (max-width: 640px) {
  .main {
    position: relative;
  }
  .main__wrapper {
    position: relative;
    z-index: 10;
  }

  .header__time {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header__btn {
    padding: 15px 15px;
  }

  .meta__pre {
    font-size: 1.8rem;
  }

  .main__meta {
    text-align: center;
  }
  .meta__pre {
    font-size: 1.8rem;
    padding: 15px 0;
  }
  .meta__title {
    font-size: 2.4rem;
    line-height: 3rem;
  }

  .trigger__single {
    padding: 15px;

    line-height: 1.3rem;
  }
  .footer__contacts {
    justify-content: center;
  }
  .footer__phone {
    padding: 15px 0;
  }
  .footer__icon {
    margin: 15px;
  }
  .footer__credits {
    text-align: center;
  }

  .header {
    justify-content: center;
  }
  .contacts__info {
    flex-direction: column;
    align-content: center;    
    align-items: center;
  }
  .contacts__pic,
  .contacts__meta {
    width: 100%;
  }
  .container__title {
    padding: 15px;
    font-size: 1.8rem;
    text-align: center;
  }
  .pain__ache {
    font-size: 1.3rem;
  }
  .pain__decision {
    font-size: 1rem;
  }
  .worker__wrapper {
    flex-direction: column;
  }
  .worker__half_right {
    width: 100%;
  }
  .worker__half {
    padding: 0;
  }
  .service__item .service__item {
    padding: 15px 5px;
  }
  .service__item .park__btn {
    display: block;
    padding: 8px 8px;
    font-size: 0.9rem;

  }
  .meta__desc {

    display: block;
  }
}

@media screen and (max-width: 540px) {

  .main {
    background: none;
    background-image: none;
   
}


  .works__single {
    padding: 10px 35px;
  }

  .header {
    flex-direction: column;
  }
  .trigger {
    justify-content: center;
  }
  .form__fields-wrapper .form__fields {
    width: 100%;
  }
  .meta__desc {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }

  .markered-list li {
    margin-top: 10px;
}

.main__btn, .meta__title {
  padding: 15px 0;
  display: flex;
}
  .meta__desc {
    display: block;
    padding: 15px 0;
  }


  .meta__title {
    font-size: 2rem;
    line-height: 2rem;
  }
  .car__bg {
    background: linear-gradient(270deg, #ffd800 0%, #ffc400 95.4%);
    height: 180px;
    width: 180px;
    border-radius: 50%;
  }
  .advantages__single {
    padding:0px 35px;
    margin: 5px 0; 
  }
  .advantage__title {

    font-size: 1.1rem;
    padding-bottom: 5px;

}

}
